diff --git a/wp-content/plugins/event-list/admin/admin.php b/wp-content/plugins/event-list/admin/admin.php index fbdeb6e5030d39da40ef3c1ddafc778a780cc634..e2a7f8a9febeb3b603df9518bee488ead9c64eda 100644 --- a/wp-content/plugins/event-list/admin/admin.php +++ b/wp-content/plugins/event-list/admin/admin.php @@ -1,96 +1,105 @@ <?php -if(!defined('WP_ADMIN')) { +if ( ! defined( 'WP_ADMIN' ) ) { exit; } -require_once(EL_PATH.'includes/options.php'); -require_once(EL_PATH.'includes/events_post_type.php'); +require_once EL_PATH . 'includes/options.php'; +require_once EL_PATH . 'includes/events_post_type.php'; // This class handles all available admin pages class EL_Admin { + private static $instance; + private $options; + private $events_post_type; + private $show_upgr_message = false; + public static function &get_instance() { // Create class instance if required - if(!isset(self::$instance)) { + if ( ! isset( self::$instance ) ) { self::$instance = new self(); } // Return class instance return self::$instance; } + private function __construct() { - $this->options = &EL_Options::get_instance(); + $this->options = &EL_Options::get_instance(); $this->events_post_type = &EL_Events_Post_Type::get_instance(); // Register actions - add_action('init', array(&$this, 'plugin_upgrade_check'), 5); - add_action('admin_notices', array(&$this, 'show_plugin_upgrade_message')); - add_action('current_screen', array(&$this, 'register_events_post_type_mods')); - add_action('admin_head', array(&$this, 'add_dashboard_styles')); - add_action('admin_menu', array(&$this, 'register_pages')); - add_filter('dashboard_glance_items', array(&$this, 'add_events_to_glance')); - add_filter('removable_query_args', array(&$this, 'remove_upgrade_args')); + add_action( 'init', array( &$this, 'plugin_upgrade_check' ), 5 ); + add_action( 'admin_notices', array( &$this, 'show_plugin_upgrade_message' ) ); + add_action( 'current_screen', array( &$this, 'register_events_post_type_mods' ) ); + add_action( 'admin_head', array( &$this, 'add_dashboard_styles' ) ); + add_action( 'admin_menu', array( &$this, 'register_pages' ) ); + add_filter( 'dashboard_glance_items', array( &$this, 'add_events_to_glance' ) ); + add_filter( 'removable_query_args', array( &$this, 'remove_upgrade_args' ) ); } + public function plugin_upgrade_check() { // Upgrade check - $file_data = get_file_data(EL_PATH.'event-list.php', array('version'=>'Version')); - $last_upgr_version = get_option('el_last_upgr_version', ''); - if($file_data['version'] != $last_upgr_version || isset($_GET['resume-el-upgr'])) { + $file_data = get_file_data( EL_PATH . 'event-list.php', array( 'version' => 'Version' ) ); + $last_upgr_version = get_option( 'el_last_upgr_version', '' ); + if ( $file_data['version'] != $last_upgr_version || isset( $_GET['resume-el-upgr'] ) ) { // load upgrade class - require_once(EL_PATH.'admin/includes/upgrade.php'); + require_once EL_PATH . 'admin/includes/upgrade.php'; EL_Upgrade::get_instance()->upgrade(); } } + public function show_plugin_upgrade_message() { - if($this->show_upgr_message) { + if ( $this->show_upgr_message ) { // load upgrade class - require_once(EL_PATH.'admin/includes/upgrade.php'); - $logfile = str_replace(EL_PATH, EL_URL, EL_Upgrade::get_instance()->logfile); - $error = 2 == $this->show_upgr_message; - $class = $error ? 'error' : 'updated fade'; - $title = sprintf($error ? __('Errors during upgrade of plugin %1$s','event-list') : __('Upgrade of plugin %1$s successful','event-list'), '"Event List"'); - $logfile = ' (<a href="'.$logfile.'">upgrade log</a>)'; - echo '<div id="message" class="'.$class.'"><p><strong>'.$title.'</strong>'.$logfile.'</p></div>'; + require_once EL_PATH . 'admin/includes/upgrade.php'; + $error = 2 == $this->show_upgr_message; + $class = $error ? 'error' : 'updated fade'; + $title = sprintf( $error ? __( 'Errors during upgrade of plugin %1$s', 'event-list' ) : __( 'Upgrade of plugin %1$s successful', 'event-list' ), '"Event List"' ); + $logfile = ' (<a href="' . content_url( EL_Upgrade::get_instance()->logfile ) . '">upgrade log</a>)'; + echo '<div id="message" class="' . $class . '"><p><strong>' . $title . '</strong>' . $logfile . '</p></div>'; } } - public function remove_upgrade_args($args) { + + public function remove_upgrade_args( $args ) { // check required get parameters - $this->show_upgr_message = isset($_GET['el-upgr-finished']) ? intval($_GET['el-upgr-finished']) : false; + $this->show_upgr_message = isset( $_GET['el-upgr-finished'] ) ? intval( $_GET['el-upgr-finished'] ) : false; - array_push($args, 'el-upgr-finished', 'resume-el-upgr'); + array_push( $args, 'el-upgr-finished', 'resume-el-upgr' ); return $args; } - public function register_events_post_type_mods($current_screen) { + + public function register_events_post_type_mods( $current_screen ) { // load file depending on current screen - if(current_user_can('edit_posts')) { - switch($current_screen->id) { + if ( current_user_can( 'edit_posts' ) ) { + switch ( $current_screen->id ) { // Main/all events page case 'edit-el_events': - require_once(EL_PATH.'admin/includes/admin-main.php'); + require_once EL_PATH . 'admin/includes/admin-main.php'; EL_Admin_Main::get_instance(); break; // New/edit event page case 'el_events': // Additional required checks (only for add or edit action, and not for e.g. move event to trash) - $get_action = isset($_GET['action']) ? sanitize_key($_GET['action']) : ''; - $post_action = isset($_POST['action']) ? sanitize_key($_POST['action']) : ''; - if('add' === $current_screen->action || 'edit' === $get_action || 'editpost' === $post_action) { - require_once(EL_PATH.'admin/includes/admin-new.php'); + $get_action = isset( $_GET['action'] ) ? sanitize_key( $_GET['action'] ) : ''; + $post_action = isset( $_POST['action'] ) ? sanitize_key( $_POST['action'] ) : ''; + if ( 'add' === $current_screen->action || 'edit' === $get_action || 'editpost' === $post_action ) { + require_once EL_PATH . 'admin/includes/admin-new.php'; EL_Admin_New::get_instance(); } break; // Event category page - case 'edit-'.$this->events_post_type->taxonomy: - if('1' !== $this->options->get('el_use_post_cats')) { - require_once(EL_PATH.'admin/includes/admin-categories.php'); + case 'edit-' . $this->events_post_type->taxonomy: + if ( '1' !== $this->options->get( 'el_use_post_cats' ) ) { + require_once EL_PATH . 'admin/includes/admin-categories.php'; EL_Admin_Categories::get_instance(); } break; @@ -98,86 +107,96 @@ class EL_Admin { } } + /** * Add and register all admin pages in the admin menu */ public function register_pages() { // Settings subpage - $page = add_submenu_page('edit.php?post_type=el_events', __('Event List Settings','event-list'), __('Settings','event-list'), 'manage_options', 'el_admin_settings', array(&$this, 'show_settings_page')); - add_action('admin_print_scripts-'.$page, array(&$this, 'embed_settings_scripts')); + $page = add_submenu_page( 'edit.php?post_type=el_events', __( 'Event List Settings', 'event-list' ), __( 'Settings', 'event-list' ), 'manage_options', 'el_admin_settings', array( &$this, 'show_settings_page' ) ); + add_action( 'admin_print_scripts-' . $page, array( &$this, 'embed_settings_scripts' ) ); // About subpage - $page = add_submenu_page('edit.php?post_type=el_events', __('About Event List','event-list'), __('About','event-list'), 'edit_posts', 'el_admin_about', array(&$this, 'show_about_page')); - add_action('admin_print_scripts-'.$page, array(&$this, 'embed_about_scripts')); + $page = add_submenu_page( 'edit.php?post_type=el_events', __( 'About Event List', 'event-list' ), __( 'About', 'event-list' ), 'edit_posts', 'el_admin_about', array( &$this, 'show_about_page' ) ); + add_action( 'admin_print_scripts-' . $page, array( &$this, 'embed_about_scripts' ) ); // Import page (invisible in menu, but callable by import button on admin main page) - $page = add_submenu_page(null, null, null, 'edit_posts', 'el_admin_import', array(&$this, 'show_import_page')); - add_action('admin_print_scripts-'.$page, array(&$this, 'embed_import_scripts')); + $page = add_submenu_page( null, null, null, 'edit_posts', 'el_admin_import', array( &$this, 'show_import_page' ) ); + add_action( 'admin_print_scripts-' . $page, array( &$this, 'embed_import_scripts' ) ); // Sync Post Categories page (invisible in menu, but callable by sync button on admin categories page) - $page = add_submenu_page(null, null, null, 'manage_categories', 'el_admin_cat_sync', array(&$this, 'show_cat_sync_page')); - add_action('load-'.$page, array(&$this, 'handle_cat_sync_actions')); + $page = add_submenu_page( null, null, null, 'manage_categories', 'el_admin_cat_sync', array( &$this, 'show_cat_sync_page' ) ); + add_action( 'load-' . $page, array( &$this, 'handle_cat_sync_actions' ) ); } + public function add_dashboard_styles() { - if(current_user_can('edit_posts') && 'dashboard' === get_current_screen()->base) { + if ( current_user_can( 'edit_posts' ) && 'dashboard' === get_current_screen()->base ) { echo '<style>#dashboard_right_now .el-events-count:before {content: "\f508"}</style>'; } } + public function add_events_to_glance() { - if(current_user_can('edit_posts')) { - require_once(EL_PATH.'includes/events.php'); + if ( current_user_can( 'edit_posts' ) ) { + require_once EL_PATH . 'includes/events.php'; $num_events = EL_Events::get_instance()->get_num_events(); - $text = sprintf(_n('%s Event','%s Events',$num_events,'event-list'), number_format_i18n($num_events)); - if(current_user_can(get_post_type_object('el_events')->cap->edit_posts)) { - return array('<a class="el-events-count" href="'.admin_url('edit.php?post_type=el_events').'">'.$text.'</a>'); + $text = sprintf( _n( '%s Event', '%s Events', $num_events, 'event-list' ), number_format_i18n( $num_events ) ); + if ( current_user_can( get_post_type_object( 'el_events' )->cap->edit_posts ) ) { + return array( '<a class="el-events-count" href="' . admin_url( 'edit.php?post_type=el_events' ) . '">' . $text . '</a>' ); + } else { + return array( $text ); } - else { - return array($text); - } - } } + public function show_settings_page() { - require_once(EL_PATH.'admin/includes/admin-settings.php'); + require_once EL_PATH . 'admin/includes/admin-settings.php'; EL_Admin_Settings::get_instance()->show_settings(); } + public function embed_settings_scripts() { - require_once(EL_PATH.'admin/includes/admin-settings.php'); + require_once EL_PATH . 'admin/includes/admin-settings.php'; EL_Admin_Settings::get_instance()->embed_settings_scripts(); } + public function show_about_page() { - require_once(EL_PATH.'admin/includes/admin-about.php'); + require_once EL_PATH . 'admin/includes/admin-about.php'; EL_Admin_About::get_instance()->show_about(); } + public function embed_about_scripts() { - require_once(EL_PATH.'admin/includes/admin-about.php'); + require_once EL_PATH . 'admin/includes/admin-about.php'; EL_Admin_About::get_instance()->embed_about_scripts(); } + public function show_import_page() { - require_once(EL_PATH.'admin/includes/admin-import.php'); + require_once EL_PATH . 'admin/includes/admin-import.php'; EL_Admin_Import::get_instance()->show_import(); } + public function embed_import_scripts() { - require_once(EL_PATH.'admin/includes/admin-import.php'); + require_once EL_PATH . 'admin/includes/admin-import.php'; EL_Admin_Import::get_instance()->embed_import_scripts(); } + public function show_cat_sync_page() { - require_once(EL_PATH.'admin/includes/admin-category-sync.php'); + require_once EL_PATH . 'admin/includes/admin-category-sync.php'; EL_Admin_Category_Sync::get_instance()->show_cat_sync(); } + public function handle_cat_sync_actions() { - require_once(EL_PATH.'admin/includes/admin-category-sync.php'); + require_once EL_PATH . 'admin/includes/admin-category-sync.php'; EL_Admin_Category_Sync::get_instance()->handle_actions(); } + } -?> + diff --git a/wp-content/plugins/event-list/admin/includes/admin-about.php b/wp-content/plugins/event-list/admin/includes/admin-about.php index 85f7ce8cf33b54118d9a6d4efc14d9b8c2d25b0a..ce1d5f4e4a700ecaeeda341b41965bdd87bb9d42 100644 --- a/wp-content/plugins/event-list/admin/includes/admin-about.php +++ b/wp-content/plugins/event-list/admin/includes/admin-about.php @@ -1,49 +1,54 @@ <?php -if(!defined('WP_ADMIN')) { +if ( ! defined( 'WP_ADMIN' ) ) { exit; } -require_once(EL_PATH.'includes/options.php'); -require_once(EL_PATH.'includes/daterange.php'); +require_once EL_PATH . 'includes/options.php'; +require_once EL_PATH . 'includes/daterange.php'; // This class handles all data for the admin about page class EL_Admin_About { + private static $instance; + private $options; + private $daterange; + public static function &get_instance() { // Create class instance if required - if(!isset(self::$instance)) { + if ( ! isset( self::$instance ) ) { self::$instance = new self(); } // Return class instance return self::$instance; } + private function __construct() { - $this->options = EL_Options::get_instance(); + $this->options = EL_Options::get_instance(); $this->daterange = EL_Daterange::get_instance(); } + public function show_about() { - if(!current_user_can('edit_posts')) { - wp_die(__('You do not have sufficient permissions to access this page.')); + if ( ! current_user_can( 'edit_posts' ) ) { + wp_die( __( 'You do not have sufficient permissions to access this page.' ) ); } // check used get parameters - $tab = isset($_GET['tab']) ? sanitize_key($_GET['tab']) : 'general'; + $tab = isset( $_GET['tab'] ) ? sanitize_key( $_GET['tab'] ) : 'general'; echo '<div class="wrap"> - <div id="icon-edit-pages" class="icon32"><br /></div><h2>'.__('About Event List','event-list').'</h2>'; - echo $this->show_tabs($tab); - if('atts' == $tab) { + <div id="icon-edit-pages" class="icon32"><br /></div><h2>' . __( 'About Event List', 'event-list' ) . '</h2>'; + echo $this->show_tabs( $tab ); + if ( 'atts' == $tab ) { $this->daterange->load_formats_helptexts(); $this->show_atts(); $this->show_filter_syntax(); $this->show_date_syntax(); $this->show_daterange_syntax(); - } - else { + } else { $this->show_help(); $this->show_author(); } @@ -51,88 +56,96 @@ class EL_Admin_About { </div>'; } + public function embed_about_scripts() { - wp_enqueue_style('eventlist_admin_about', EL_URL.'admin/css/admin_about.css'); + wp_enqueue_style( 'eventlist_admin_about', EL_URL . 'admin/css/admin_about.css' ); } - private function show_tabs($current = 'general') { - $tabs = array('general' => __('General','event-list'), - 'atts' => __('Shortcode Attributes','event-list')); - $out = '<h3 class="nav-tab-wrapper">'; - foreach($tabs as $tab => $name){ - $class = ($tab == $current) ? ' nav-tab-active' : ''; - $out .= '<a class="nav-tab'.$class.'" href="'.add_query_arg('tab', $tab, add_query_arg(array())).'">'.$name.'</a>'; + + private function show_tabs( $current = 'general' ) { + $tabs = array( + 'general' => __( 'General', 'event-list' ), + 'atts' => __( 'Shortcode Attributes', 'event-list' ), + ); + $out = '<h3 class="nav-tab-wrapper">'; + foreach ( $tabs as $tab => $name ) { + $class = ( $tab == $current ) ? ' nav-tab-active' : ''; + $out .= '<a class="nav-tab' . $class . '" href="' . add_query_arg( 'tab', $tab, add_query_arg( array() ) ) . '">' . $name . '</a>'; } $out .= '</h3>'; return $out; } + private function show_help() { echo ' - <h3 class="el-headline">'.__('Help and Instructions','event-list').'</h3> - <p>'.sprintf(__('You can manage the events %1$shere%2$s','event-list'), '<a href="'.admin_url('edit.php?post_type=el_events').'">', '</a>').'.</p> - <p>'.__('To show the events on your site you have 2 possibilities','event-list').':</p> - <ul class="el-show-event-options"><li>'.sprintf(__('you can place the <strong>shortcode</strong> %1$s on any page or post','event-list'), '<code>[event-list]</code>').'</li> - <li>'.sprintf(__('you can add the <strong>widget</strong> %1$s in your sidebars','event-list'), '"Event List"').'</li></ul> - <p>'.__('The displayed events and their style can be modified with the available widget settings and the available attributes for the shortcode.','event-list').'<br /> - '.sprintf(__('A list of all available shortcode attributes with their descriptions is available in the %1$s tab.','event-list'), '<a href="'.admin_url('admin.php?page=el_admin_about&tab=atts').'">'.__('Shortcode Attributes','event-list').'</a>').'<br /> - '.__('The available widget options are described in their tooltip text.','event-list').'<br /> - '.sprintf(__('If you enable one of the links options (%1$s or %2$s) in the widget you have to insert an URL to the linked event-list page.','event-list'), '"'.__('Add links to the single events','event-list').'"', '"'.__('Add a link to the Event List page','event-list').'"') - .__('This is required because the widget does not know in which page or post the shortcode was included.','event-list').'<br /> - '.__('Additionally you have to insert the correct Shortcode id on the linked page. This id describes which shortcode should be used on the given page or post if you have more than one.','event-list') - .sprintf(__('The default value %1$s is normally o.k. (for pages with 1 shortcode only), but if required you can check the id by looking into the URL of an event link on your linked page or post.','event-list'), '[1]') - .sprintf(__('The id is available at the end of the URL parameters (e.g. %1$s).','event-list'), '<i>https://www.your-homepage.com/?page_id=99&event_id<strong>1</strong>=11</i>').' + <h3 class="el-headline">' . __( 'Help and Instructions', 'event-list' ) . '</h3> + <p>' . sprintf( __( 'You can manage the events %1$shere%2$s', 'event-list' ), '<a href="' . admin_url( 'edit.php?post_type=el_events' ) . '">', '</a>' ) . '.</p> + <p>' . __( 'To show the events on your site you have 2 possibilities', 'event-list' ) . ':</p> + <ul class="el-show-event-options"><li>' . sprintf( __( 'you can place the <strong>shortcode</strong> %1$s on any page or post', 'event-list' ), '<code>[event-list]</code>' ) . '</li> + <li>' . sprintf( __( 'you can add the <strong>widget</strong> %1$s in your sidebars', 'event-list' ), '"Event List"' ) . '</li></ul> + <p>' . __( 'The displayed events and their style can be modified with the available widget settings and the available attributes for the shortcode.', 'event-list' ) . '<br /> + ' . sprintf( __( 'A list of all available shortcode attributes with their descriptions is available in the %1$s tab.', 'event-list' ), '<a href="' . admin_url( 'admin.php?page=el_admin_about&tab=atts' ) . '">' . __( 'Shortcode Attributes', 'event-list' ) . '</a>' ) . '<br /> + ' . __( 'The available widget options are described in their tooltip text.', 'event-list' ) . '<br /> + ' . sprintf( __( 'If you enable one of the links options (%1$s or %2$s) in the widget you have to insert an URL to the linked event-list page.', 'event-list' ), '"' . __( 'Add links to the single events', 'event-list' ) . '"', '"' . __( 'Add a link to the Event List page', 'event-list' ) . '"' ) + . __( 'This is required because the widget does not know in which page or post the shortcode was included.', 'event-list' ) . '<br /> + ' . __( 'Additionally you have to insert the correct Shortcode id on the linked page. This id describes which shortcode should be used on the given page or post if you have more than one.', 'event-list' ) + . sprintf( __( 'The default value %1$s is normally o.k. (for pages with 1 shortcode only), but if required you can check the id by looking into the URL of an event link on your linked page or post.', 'event-list' ), '[1]' ) + . sprintf( __( 'The id is available at the end of the URL parameters (e.g. %1$s).', 'event-list' ), '<i>https://www.your-homepage.com/?page_id=99&event_id<strong>1</strong>=11</i>' ) . ' </p> - <p>'.sprintf(__('Be sure to also check the %1$s to get the plugin behaving just the way you want.','event-list'), '<a href="'.admin_url('admin.php?page=el_admin_settings').'">'.__('Settings page','event-list').'</a>').'</p>'; + <p>' . sprintf( __( 'Be sure to also check the %1$s to get the plugin behaving just the way you want.', 'event-list' ), '<a href="' . admin_url( 'admin.php?page=el_admin_settings' ) . '">' . __( 'Settings page', 'event-list' ) . '</a>' ) . '</p>'; } + private function show_author() { echo ' <br /> - <h3>'.__('About the plugin author','event-list').'</h3> + <h3>' . __( 'About the plugin author', 'event-list' ) . '</h3> <div class="help-content"> - <p>'.sprintf(__('This plugin is developed by %1$s, you can find more information about the plugin on the %2$s.','event-list'), 'mibuthu', '<a href="http://wordpress.org/plugins/event-list" target="_blank" rel="noopener">'.__('wordpress plugin site','event-list').'</a>').'</p> - <p>'.sprintf(__('If you like the plugin please rate it on the %1$s.','event-list'), '<a href="http://wordpress.org/support/view/plugin-reviews/event-list" target="_blank" rel="noopener">'.__('wordpress plugin review site','event-list').'</a>').'<br /> - <p>'.__('If you want to support the plugin I would be happy to get a small donation','event-list').':<br /> - <a class="donate" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=W54LNZMWF9KW2" target="_blank" rel="noopener"><img src="'.EL_URL.'admin/images/paypal_btn_donate.gif" alt="PayPal Donation" title="'.sprintf(__('Donate with %1$s','event-list'), 'PayPal').'" border="0"></a> - <a class="donate" href="https://liberapay.com/mibuthu/donate" target="_blank" rel="noopener"><img src="'.EL_URL.'admin/images/liberapay-donate.svg" alt="Liberapay Donation" title="'.sprintf(__('Donate with %1$s','event-list'), 'Liberapay').'" border="0"></a> - <a class="donate" href="https://flattr.com/submit/auto?user_id=mibuthu&url=https%3A%2F%2Fwordpress.org%2Fplugins%2Fevent-list" target="_blank" rel="noopener"><img src="'.EL_URL.'admin/images/flattr-badge-large.png" alt="Flattr this" title="'.sprintf(__('Donate with %1$s','event-list'), 'Flattr').'" border="0"></a></p> + <p>' . sprintf( __( 'This plugin is developed by %1$s, you can find more information about the plugin on the %2$s.', 'event-list' ), 'mibuthu', '<a href="http://wordpress.org/plugins/event-list" target="_blank" rel="noopener">' . __( 'WordPress plugin site', 'event-list' ) . '</a>' ) . '</p> + <p>' . sprintf( __( 'If you like the plugin please rate it on the %1$s.', 'event-list' ), '<a href="http://wordpress.org/support/view/plugin-reviews/event-list" target="_blank" rel="noopener">' . __( 'WordPress plugin review site', 'event-list' ) . '</a>' ) . '<br /> + <p>' . __( 'If you want to support the plugin I would be happy to get a small donation', 'event-list' ) . ':<br /> + <a class="donate" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=W54LNZMWF9KW2" target="_blank" rel="noopener"><img src="' . EL_URL . 'admin/images/paypal_btn_donate.gif" alt="PayPal Donation" title="' . sprintf( __( 'Donate with %1$s', 'event-list' ), 'PayPal' ) . '" border="0"></a> + <a class="donate" href="https://liberapay.com/mibuthu/donate" target="_blank" rel="noopener"><img src="' . EL_URL . 'admin/images/liberapay-donate.svg" alt="Liberapay Donation" title="' . sprintf( __( 'Donate with %1$s', 'event-list' ), 'Liberapay' ) . '" border="0"></a> + <a class="donate" href="https://flattr.com/submit/auto?user_id=mibuthu&url=https%3A%2F%2Fwordpress.org%2Fplugins%2Fevent-list" target="_blank" rel="noopener"><img src="' . EL_URL . 'admin/images/flattr-badge-large.png" alt="Flattr this" title="' . sprintf( __( 'Donate with %1$s', 'event-list' ), 'Flattr' ) . '" border="0"></a></p> </div>'; } + private function show_atts() { echo ' - <h3 class="el-headline">'.__('Shortcode Attributes', 'event-list').'</h3> + <h3 class="el-headline">' . __( 'Shortcode Attributes', 'event-list' ) . '</h3> <div> - '.__('You have the possibility to modify the output if you add some of the following attributes to the shortcode.','event-list').'<br /> - '.sprintf(__('You can combine and add as much attributes as you want. E.g. the shortcode including the attributes %1$s and %2$s would looks like this:','event-list'), '"num_events"', '"show_filterbar"').' + ' . __( 'You have the possibility to modify the output if you add some of the following attributes to the shortcode.', 'event-list' ) . '<br /> + ' . sprintf( __( 'You can combine and add as much attributes as you want. E.g. the shortcode including the attributes %1$s and %2$s would looks like this:', 'event-list' ), '"num_events"', '"show_filterbar"' ) . ' <p><code>[event-list num_events=10 show_filterbar=false]</code></p> - <p>'.__('Below you can find a list of all supported attributes with their descriptions and available options:','event-list').'</p>'; + <p>' . __( 'Below you can find a list of all supported attributes with their descriptions and available options:', 'event-list' ) . '</p>'; echo $this->show_atts_table(); echo ' </div>'; } + private function show_atts_table() { - require_once(EL_PATH.'includes/sc_event-list.php'); + require_once EL_PATH . 'includes/sc_event-list.php'; $shortcode = &SC_Event_List::get_instance(); $shortcode->load_sc_eventlist_helptexts(); $atts = $shortcode->get_atts(); - $out = ' + $out = ' <table class="el-atts-table"> <tr> - <th class="el-atts-table-name">'.__('Attribute name','event-list').'</th> - <th class="el-atts-table-options">'.__('Value options','event-list').'</th> - <th class="el-atts-table-default">'.__('Default value','event-list').'</th> - <th class="el-atts-table-desc">'.__('Description','event-list').'</th> + <th class="el-atts-table-name">' . __( 'Attribute name', 'event-list' ) . '</th> + <th class="el-atts-table-options">' . __( 'Value options', 'event-list' ) . '</th> + <th class="el-atts-table-default">' . __( 'Default value', 'event-list' ) . '</th> + <th class="el-atts-table-desc">' . __( 'Description', 'event-list' ) . '</th> </tr>'; - foreach($atts as $aname => $a) { + foreach ( $atts as $aname => $a ) { $out .= ' <tr> - <td>'.$aname.'</td> - <td>'.implode('<br />', $a['val']).'</td> - <td>'.$a['std_val'].'</td> - <td>'.$a['desc'].'</td> + <td>' . $aname . '</td> + <td>' . implode( '<br />', $a['val'] ) . '</td> + <td>' . $a['std_val'] . '</td> + <td>' . $a['desc'] . '</td> </tr>'; } $out .= ' @@ -140,50 +153,55 @@ class EL_Admin_About { return $out; } + private function show_filter_syntax() { echo ' - <h3 class="el-headline">'.__('Filter Syntax','event-list').'</h3> - <p>'.__('For date and cat filters you can specify complex filters with the following syntax:','event-list').'</p> - <p>'.sprintf(__('You can use %1$s and %2$s connections to define complex filters. Additionally you can set brackets %3$s for nested queries.','event-list'), __('AND','event-list').' ( "<strong>&</strong>" )', __('OR','event-list').' ( "<strong>|</strong>" '.__('or','event-list').' "<strong>,</strong>" )', '( "<strong>(</strong>" '.__('and','event-list').' "<strong>)</strong>" )').'</p> - '.__('Examples for cat filters:','event-list').' - <p><code>tennis</code>… '.sprintf(__('Show all events with category %1$s.','event-list'), '"tennis"').'<br /> - <code>tennis,hockey</code>… '.sprintf(__('Show all events with category %1$s or %2$s.','event-list'), '"tennis"', '"hockey"').'<br /> - <code>tennis|(hockey&winter)</code>… '.sprintf(__('Show all events with category %1$s and all events where category %2$s as well as %3$s is selected.','event-list'), '"tennis"', '"hockey"', '"winter"').'</p>'; + <h3 class="el-headline">' . __( 'Filter Syntax', 'event-list' ) . '</h3> + <p>' . __( 'For date and cat filters you can specify complex filters with the following syntax:', 'event-list' ) . '</p> + <p>' . sprintf( __( 'You can use %1$s and %2$s connections to define complex filters. Additionally you can set brackets %3$s for nested queries.', 'event-list' ), __( 'AND', 'event-list' ) . ' ( "<strong>&</strong>" )', __( 'OR', 'event-list' ) . ' ( "<strong>|</strong>" ' . __( 'or', 'event-list' ) . ' "<strong>,</strong>" )', '( "<strong>(</strong>" ' . __( 'and', 'event-list' ) . ' "<strong>)</strong>" )' ) . '</p> + ' . __( 'Examples for cat filters:', 'event-list' ) . ' + <p><code>tennis</code>… ' . sprintf( __( 'Show all events with category %1$s.', 'event-list' ), '"tennis"' ) . '<br /> + <code>tennis,hockey</code>… ' . sprintf( __( 'Show all events with category %1$s or %2$s.', 'event-list' ), '"tennis"', '"hockey"' ) . '<br /> + <code>tennis|(hockey&winter)</code>… ' . sprintf( __( 'Show all events with category %1$s and all events where category %2$s as well as %3$s is selected.', 'event-list' ), '"tennis"', '"hockey"', '"winter"' ) . '</p>'; } + private function show_date_syntax() { echo ' - <h3 class="el-headline">'.__('Available Date Formats','event-list').'</h3> - <p>'.__('For date filters you can use the following date formats:','event-list').'</p> + <h3 class="el-headline">' . __( 'Available Date Formats', 'event-list' ) . '</h3> + <p>' . __( 'For date filters you can use the following date formats:', 'event-list' ) . '</p> <ul class="el-formats"> - '.$this->show_formats($this->daterange->date_formats).' + ' . $this->show_formats( $this->daterange->date_formats ) . ' </ul>'; } + private function show_daterange_syntax() { echo ' - <h3 class="el-headline">'.__('Available Date Range Formats','event-list').'</h3> - <p>'.__('For date filters you can use the following daterange formats:','event-list').'</p> + <h3 class="el-headline">' . __( 'Available Date Range Formats', 'event-list' ) . '</h3> + <p>' . __( 'For date filters you can use the following daterange formats:', 'event-list' ) . '</p> <ul class="el-formats"> - '.$this->show_formats($this->daterange->daterange_formats).' + ' . $this->show_formats( $this->daterange->daterange_formats ) . ' </ul>'; } - private function show_formats(&$formats_array) { + + private function show_formats( &$formats_array ) { $out = ''; - foreach($formats_array as $format) { + foreach ( $formats_array as $format ) { $out .= ' - <li><div class="el-format-entry"><div class="el-format-name">'.$format['name'].':</div><div class="el-format-desc">'; - if(isset($format['value'])) { - $out .= __('Value','event-list').': <em>'.$format['value'].'</em><br />'; + <li><div class="el-format-entry"><div class="el-format-name">' . $format['name'] . ':</div><div class="el-format-desc">'; + if ( isset( $format['value'] ) ) { + $out .= __( 'Value', 'event-list' ) . ': <em>' . $format['value'] . '</em><br />'; } - $out .= $format['desc'].'<br />'; - if(isset($format['examp'])) { - $out .= __('Example','event-list').': <em>'.$format['examp'].'</em>'; + $out .= $format['desc'] . '<br />'; + if ( isset( $format['examp'] ) ) { + $out .= __( 'Example', 'event-list' ) . ': <em>' . $format['examp'] . '</em>'; } $out .= '</div></div></li>'; } return $out; } + } -?> + diff --git a/wp-content/plugins/event-list/admin/includes/admin-categories.php b/wp-content/plugins/event-list/admin/includes/admin-categories.php index d807cd75135f826ead481f151a623d2e4559e348..f412b6f51c87b7e6fc4c9b579b3f0602927a5465 100644 --- a/wp-content/plugins/event-list/admin/includes/admin-categories.php +++ b/wp-content/plugins/event-list/admin/includes/admin-categories.php @@ -1,87 +1,106 @@ <?php -if(!defined('WP_ADMIN')) { +if ( ! defined( 'WP_ADMIN' ) ) { exit; } -require_once(EL_PATH.'includes/options.php'); -require_once(EL_PATH.'includes/events_post_type.php'); +require_once EL_PATH . 'includes/options.php'; +require_once EL_PATH . 'includes/events_post_type.php'; // This class handles all data for the admin categories page class EL_Admin_Categories { + private static $instance; + private $events_post_type; + public static function &get_instance() { // Create class instance if required - if(!isset(self::$instance)) { + if ( ! isset( self::$instance ) ) { self::$instance = new self(); } // Return class instance return self::$instance; } + private function __construct() { $this->events_post_type = &EL_Events_Post_Type::get_instance(); - add_action('admin_print_scripts', array(&$this, 'embed_categories_scripts')); - add_action('after-'.$this->events_post_type->taxonomy.'-table', array(&$this, 'sync_cats_button')); - add_filter('term_updated_messages', array(&$this, 'prepare_syncdone_message')); - add_filter('removable_query_args', array(&$this, 'remove_message_args')); + add_action( 'admin_print_scripts', array( &$this, 'embed_categories_scripts' ) ); + add_action( 'after-' . $this->events_post_type->taxonomy . '-table', array( &$this, 'sync_cats_button' ) ); + add_filter( 'term_updated_messages', array( &$this, 'prepare_syncdone_message' ) ); + add_filter( 'removable_query_args', array( &$this, 'remove_message_args' ) ); } + public function embed_categories_scripts() { - wp_enqueue_script('jquery'); - wp_enqueue_script('eventlist_admin_categories_js', EL_URL.'admin/js/admin_categories.js'); + wp_enqueue_script( 'jquery' ); + wp_enqueue_script( 'eventlist_admin_categories_js', EL_URL . 'admin/js/admin_categories.js' ); } + public function sync_cats_button() { - $url = esc_url(admin_url(add_query_arg(array('page' => 'el_admin_cat_sync', '_wp_http_referer' => $_SERVER['REQUEST_URI']), 'edit.php?post_type=el_events'))); - echo '<button type="button" id="sync-cats" class="button action" onclick="el_show_syncform(\''.$url.'\')" style="margin-top: 3px">'.__('Synchronize with post categories', 'event-list').'</button>'; + $url = esc_url( + admin_url( + add_query_arg( + array( + 'page' => 'el_admin_cat_sync', + '_wp_http_referer' => $_SERVER['REQUEST_URI'], + ), + 'edit.php?post_type=el_events' + ) + ) + ); + echo '<button type="button" id="sync-cats" class="button action" onclick="el_show_syncform(\'' . $url . '\')" style="margin-top: 3px">' . __( 'Synchronize with post categories', 'event-list' ) . '</button>'; } - public function prepare_syncdone_message($messages) { + + public function prepare_syncdone_message( $messages ) { // prepare used get parameters - $msgdata = isset($_GET['msgdata']) ? $_GET['msgdata'] : array(); - $error = isset($_GET['error']); - - $items['mod_ok'] = __('%1$s categories modified (%2$s)','event-list'); - $items['add_ok'] = __('%1$s categories added (%2$s)','event-list'); - $items['del_ok'] = __('%1$s categories deleted (%2$s)','event-list'); - if($error) { - $items['mod_error'] = __('%1$s categories not modified (%2$s)','event-list'); - $items['add_error'] = __('%1$s categories not added (%2$s)','event-list'); - $items['del_error'] = __('%1$s categories not deleted (%2$s)','event-list'); - } - if($error) { - $msgtext = __('An Error occured during the category sync','event-list').':<br />'; - $msgnum = 22; + $msgdata = isset( $_GET['msgdata'] ) ? $_GET['msgdata'] : array(); + $error = isset( $_GET['error'] ); + + $items['mod_ok'] = __( '%1$s categories modified (%2$s)', 'event-list' ); + $items['add_ok'] = __( '%1$s categories added (%2$s)', 'event-list' ); + $items['del_ok'] = __( '%1$s categories deleted (%2$s)', 'event-list' ); + if ( $error ) { + $items['mod_error'] = __( '%1$s categories not modified (%2$s)', 'event-list' ); + $items['add_error'] = __( '%1$s categories not added (%2$s)', 'event-list' ); + $items['del_error'] = __( '%1$s categories not deleted (%2$s)', 'event-list' ); } - else { - $msgtext = __('Category sync finished','event-list').':<br />'; - $msgnum = 21; + if ( $error ) { + $msgtext = __( 'An Error occured during the category sync', 'event-list' ) . ':<br />'; + $msgnum = 22; + } else { + $msgtext = __( 'Category sync finished', 'event-list' ) . ':<br />'; + $msgnum = 21; } $msgtext .= '<ul style="list-style:inside">'; - foreach($items as $name => $text) { - if(isset($msgdata[$name]) && is_array($msgdata[$name])) { - $items = array_map('sanitize_key', $msgdata[$name]); - $msgtext .= $this->show_sync_items($items, $text); + foreach ( $items as $name => $text ) { + if ( isset( $msgdata[ $name ] ) && is_array( $msgdata[ $name ] ) ) { + $items = array_map( 'sanitize_key', $msgdata[ $name ] ); + $msgtext .= $this->show_sync_items( $items, $text ); } } - $msgtext .= '</ul>'; - $messages['_item'][$msgnum] = $msgtext; + $msgtext .= '</ul>'; + $messages['_item'][ $msgnum ] = $msgtext; return $messages; } - private function show_sync_items($items, $text) { - if(!empty($items)) { + + private function show_sync_items( $items, $text ) { + if ( ! empty( $items ) ) { return ' - <li>'.sprintf($text, '<strong>'.count($items).'</strong>', implode(', ', $items)).'</li>'; + <li>' . sprintf( $text, '<strong>' . count( $items ) . '</strong>', implode( ', ', $items ) ) . '</li>'; } return ''; } - public function remove_message_args($args) { - array_push($args, 'msgdata'); + + public function remove_message_args( $args ) { + array_push( $args, 'msgdata' ); return $args; } + } -?> + diff --git a/wp-content/plugins/event-list/admin/includes/admin-category-sync.php b/wp-content/plugins/event-list/admin/includes/admin-category-sync.php index a073334524a285d610cea78b8aeda8e8aa55dddf..8eaf1c2b50eaaa7a0e7386ea53606d7f71bad3e7 100644 --- a/wp-content/plugins/event-list/admin/includes/admin-category-sync.php +++ b/wp-content/plugins/event-list/admin/includes/admin-category-sync.php @@ -1,200 +1,204 @@ <?php -if(!defined('WP_ADMIN')) { +if ( ! defined( 'WP_ADMIN' ) ) { exit; } -require_once(EL_PATH.'includes/options.php'); -require_once(EL_PATH.'includes/events_post_type.php'); -require_once(EL_PATH.'includes/events.php'); -require_once(EL_PATH.'admin/includes/event-category_functions.php'); +require_once EL_PATH . 'includes/options.php'; +require_once EL_PATH . 'includes/events_post_type.php'; +require_once EL_PATH . 'includes/events.php'; +require_once EL_PATH . 'admin/includes/event-category_functions.php'; // This class handles all data for the admin categories page class EL_Admin_Category_Sync { + private static $instance; + private $options; + private $events_post_type; + private $events; + private $event_category_functions; + private $switch_taxonomy; + private $use_post_cats; + public static function &get_instance() { // Create class instance if required - if(!isset(self::$instance)) { + if ( ! isset( self::$instance ) ) { self::$instance = new self(); } // Return class instance return self::$instance; } + private function __construct() { - $this->options = &EL_Options::get_instance(); - $this->events_post_type = &EL_Events_Post_Type::get_instance(); - $this->events = &EL_Events::get_instance(); + $this->options = &EL_Options::get_instance(); + $this->events_post_type = &EL_Events_Post_Type::get_instance(); + $this->events = &EL_Events::get_instance(); $this->event_category_functions = &EL_Event_Category_Functions::get_instance(); // check used post values - $this->switch_taxonomy = isset($_GET['switch_taxonomy']) ? (bool)intval($_GET['switch_taxonomy']) : false; - $this->use_post_cats = ('1' === $this->options->get('el_use_post_cats')); + $this->switch_taxonomy = isset( $_GET['switch_taxonomy'] ) ? (bool) intval( $_GET['switch_taxonomy'] ) : false; + $this->use_post_cats = ( '1' === $this->options->get( 'el_use_post_cats' ) ); // permission checks - if(!current_user_can('manage_categories') || ($this->switch_taxonomy && !current_user_can('manage_options'))) { - wp_die(__('You do not have sufficient permissions to access this page.')); + if ( ! current_user_can( 'manage_categories' ) || ( $this->switch_taxonomy && ! current_user_can( 'manage_options' ) ) ) { + wp_die( __( 'You do not have sufficient permissions to access this page.' ) ); } - if(!(bool)wp_get_referer() || (!$this->switch_taxonomy && $this->use_post_cats)) { - wp_die(__('Error: You are not allowed to view this page!','event-list')); + if ( ! (bool) wp_get_referer() || ( ! $this->switch_taxonomy && $this->use_post_cats ) ) { + wp_die( __( 'Error: You are not allowed to view this page!', 'event-list' ) ); } } + public function show_cat_sync() { // define action - if(!$this->switch_taxonomy) { + if ( ! $this->switch_taxonomy ) { $action = 'sync'; - } - elseif($this->use_post_cats) { + } elseif ( $this->use_post_cats ) { $action = 'switch-to-event'; - } - else { + } else { $action = 'switch-to-post'; } // defining the used texts depending on switch_taxonomy value - if('switch-to-event' === $action) { - $main_title = __('Affected Categories when switching to seperate Event Categories','event-list'); - $button_text = __('Switch option to seperate Event Categories','event-list'); - $description = __('If you proceed, all post categories will be copied and all events will be re-assigned to this new categories.','event-list').'<br />'. - __('Afterwards the event categories are independent of the post categories.','event-list'); - } - elseif('switch-to-post' === $action) { - $main_title = __('Affected Categories when switching to use Post Categories for events','event-list'); - $button_text = __('Switch option to use Post Categories for events','event-list'); - $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'); - } - else { // 'sync' === action - $main_title = __('Event Categories: Synchronise with Post Categories','event-list'); - $button_text = __('Start synchronisation','event-list'); - $description = __('If this option is enabled the above listed categories will be deleted and removed from the existing events!','event-list'); + if ( 'switch-to-event' === $action ) { + $main_title = __( 'Affected Categories when switching to seperate Event Categories', 'event-list' ); + $button_text = __( 'Switch option to seperate Event Categories', 'event-list' ); + $description = __( 'If you proceed, all post categories will be copied and all events will be re-assigned to this new categories.', 'event-list' ) . '<br />' . + __( 'Afterwards the event categories are independent of the post categories.', 'event-list' ); + } elseif ( 'switch-to-post' === $action ) { + $main_title = __( 'Affected Categories when switching to use Post Categories for events', 'event-list' ); + $button_text = __( 'Switch option to use Post Categories for events', 'event-list' ); + $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' ); + } else { // 'sync' === action + $main_title = __( 'Event Categories: Synchronise with Post Categories', 'event-list' ); + $button_text = __( 'Start synchronisation', 'event-list' ); + $description = __( 'If this option is enabled the above listed categories will be deleted and removed from the existing events!', 'event-list' ); } // show form echo ' <style>.el-catlist {list-style:inside}</style> <div class="wrap"> <div id="icon-edit-pages" class="icon32"><br /></div> - <h2>'.$main_title.'</h2> + <h2>' . $main_title . '</h2> <div> <form action="" id="el_start_cat_sync" method="post">'; - $this->show_hidden('action', $action); - $this->show_hidden('_wp_http_referer', wp_get_referer()); - if('sync' === $action) { + $this->show_hidden( 'action', $action ); + $this->show_hidden( '_wp_http_referer', wp_get_referer() ); + if ( 'sync' === $action ) { // determine categories to modify, add, delete - $affected_cats = $this->event_category_functions->get_sync_affected_cats('to_event_cats'); - $this->show_cat_list($affected_cats['to_mod'], 'event', 'cats-to-mod', __('Categories to modify','event-list')); - $this->show_cat_list($affected_cats['to_add'], 'post', 'cats-to-add', __('Categories to add','event-list')); - $this->show_cat_list($affected_cats['to_del'], 'event', 'cats-to-del', __('Categories to delete (optional)','event-list')); - $this->show_checkbox('delete-cats', __('Delete not available post categories','event-list'), empty($affected_cats['to_del'])); - } - elseif('switch-to-post' === $action) { - $affected_cats = $this->event_category_functions->get_sync_affected_cats('to_post_cats', array('to_add', 'to_mod')); - $this->show_cat_list($affected_cats['to_mod'], 'event', 'cats-to-mod', __('Categories with differences','event-list')); - $this->show_cat_list($affected_cats['to_add'], 'event', 'cats-to-add', __('Categories to add (optional)','event-list')); - $this->show_checkbox('add-cats', __('Add not available post categories','event-list'), empty($affected_cats['to_add'])); + $affected_cats = $this->event_category_functions->get_sync_affected_cats( 'to_event_cats' ); + $this->show_cat_list( $affected_cats['to_mod'], 'event', 'cats-to-mod', __( 'Categories to modify', 'event-list' ) ); + $this->show_cat_list( $affected_cats['to_add'], 'post', 'cats-to-add', __( 'Categories to add', 'event-list' ) ); + $this->show_cat_list( $affected_cats['to_del'], 'event', 'cats-to-del', __( 'Categories to delete (optional)', 'event-list' ) ); + $this->show_checkbox( 'delete-cats', __( 'Delete not available post categories', 'event-list' ), empty( $affected_cats['to_del'] ) ); + } elseif ( 'switch-to-post' === $action ) { + $affected_cats = $this->event_category_functions->get_sync_affected_cats( 'to_post_cats', array( 'to_add', 'to_mod' ) ); + $this->show_cat_list( $affected_cats['to_mod'], 'event', 'cats-to-mod', __( 'Categories with differences', 'event-list' ) ); + $this->show_cat_list( $affected_cats['to_add'], 'event', 'cats-to-add', __( 'Categories to add (optional)', 'event-list' ) ); + $this->show_checkbox( 'add-cats', __( 'Add not available post categories', 'event-list' ), empty( $affected_cats['to_add'] ) ); } echo ' - <p style="margin: 3.5em 0 2.5em">'.$description.'</p>'; - $submit_disabled = ('sync' === $action && empty($affected_cats['to_mod']) && empty($affected_cats['to_add']) && empty($affected_cats['to_del'])) ? ' disabled' : ''; + <p style="margin: 3.5em 0 2.5em">' . $description . '</p>'; + $submit_disabled = ( 'sync' === $action && empty( $affected_cats['to_mod'] ) && empty( $affected_cats['to_add'] ) && empty( $affected_cats['to_del'] ) ) ? ' disabled' : ''; echo ' - <button type="submit" id="cat-sync-submit" class="button button-primary"'.$submit_disabled.'>'.$button_text.'</button> + <button type="submit" id="cat-sync-submit" class="button button-primary"' . $submit_disabled . '>' . $button_text . '</button> </form> </div </div>'; } - private function show_cat_list($cat_slugs, $cat_type, $input_id, $heading) { + + private function show_cat_list( $cat_slugs, $cat_type, $input_id, $heading ) { echo '<br /> <div> - <h3>'.$heading.':</h3>'; - if(empty($cat_slugs)) { + <h3>' . $heading . ':</h3>'; + if ( empty( $cat_slugs ) ) { echo ' - <p>'.__('none','event-list').'</p>'; - } - else { + <p>' . __( 'none', 'event-list' ) . '</p>'; + } else { echo ' <ul class="el-catlist">'; - foreach($cat_slugs as $cat_slug) { - $cat_name = 'event' === $cat_type ? $this->events->get_cat_by_slug($cat_slug)->name : get_category_by_slug($cat_slug)->name; + foreach ( $cat_slugs as $cat_slug ) { + $cat_name = 'event' === $cat_type ? $this->events->get_cat_by_slug( $cat_slug )->name : get_category_by_slug( $cat_slug )->name; echo ' - <li>'.$cat_name.' ('.__('Slug').': '.$cat_slug.')</li>'; + <li>' . $cat_name . ' (' . __( 'Slug' ) . ': ' . $cat_slug . ')</li>'; } echo ' </ul>'; } echo ' </div>'; - $this->show_hidden($input_id, esc_html(json_encode($cat_slugs))); + $this->show_hidden( $input_id, esc_html( json_encode( $cat_slugs ) ) ); } - private function show_hidden($id, $value) { + + private function show_hidden( $id, $value ) { echo ' - <input type="hidden" name="'.$id.'" id="'.$id.'" value="'.$value.'">'; + <input type="hidden" name="' . $id . '" id="' . $id . '" value="' . $value . '">'; } - private function show_checkbox($id, $text, $disabled=false) { + + private function show_checkbox( $id, $text, $disabled = false ) { $disabled_text = $disabled ? ' disabled' : ''; echo ' - <label for="'.$id.'"><input name="'.$id.'" type="checkbox" id="'.$id.'" value="1"'.$disabled_text.' />'.$text.'</label>'; + <label for="' . $id . '"><input name="' . $id . '" type="checkbox" id="' . $id . '" value="1"' . $disabled_text . ' />' . $text . '</label>'; } + public function handle_actions() { // check used post parameter - $action = isset($_POST['action']) ? sanitize_key($_POST['action']) : ''; + $action = isset( $_POST['action'] ) ? sanitize_key( $_POST['action'] ) : ''; // action handling - switch($action) { - + switch ( $action ) { case 'sync': // check used post parameters - $delete_cats = isset($_POST['delete-cats']) ? (bool)intval($_POST['delete-cats']) : false; - $affected_cats['to_mod'] = isset($_POST['cats-to-mod']) ? array_map('sanitize_key', json_decode(stripslashes($_POST['cats-to-mod']), true)) : array(); - $affected_cats['to_add'] = isset($_POST['cats-to-add']) ? array_map('sanitize_key', json_decode(stripslashes($_POST['cats-to-add']), true)) : array(); - if($delete_cats) { - $affected_cats['to_del'] = isset($_POST['cats-to-del']) ? array_map('sanitize_key', json_decode(stripslashes($_POST['cats-to-del']), true)) : array(); - } - else { + $delete_cats = isset( $_POST['delete-cats'] ) ? (bool) intval( $_POST['delete-cats'] ) : false; + $affected_cats['to_mod'] = isset( $_POST['cats-to-mod'] ) ? array_map( 'sanitize_key', json_decode( stripslashes( $_POST['cats-to-mod'] ), true ) ) : array(); + $affected_cats['to_add'] = isset( $_POST['cats-to-add'] ) ? array_map( 'sanitize_key', json_decode( stripslashes( $_POST['cats-to-add'] ), true ) ) : array(); + if ( $delete_cats ) { + $affected_cats['to_del'] = isset( $_POST['cats-to-del'] ) ? array_map( 'sanitize_key', json_decode( stripslashes( $_POST['cats-to-del'] ), true ) ) : array(); + } else { $affected_cats['to_del'] = array(); } // do actual sync - $args['msgdata'] = $this->event_category_functions->sync_categories('to_event_cats', $affected_cats); - if(empty($args['msgdata']['mod_error']) && empty($args['msgdata']['add_error']) && empty($args['msgdata']['del_error'])) { + $args['msgdata'] = $this->event_category_functions->sync_categories( 'to_event_cats', $affected_cats ); + if ( empty( $args['msgdata']['mod_error'] ) && empty( $args['msgdata']['add_error'] ) && empty( $args['msgdata']['del_error'] ) ) { $args['message'] = '21'; - } - else { + } else { $args['message'] = '22'; - $args['error'] = 1; + $args['error'] = 1; } - wp_safe_redirect(add_query_arg($args, wp_get_referer())); + wp_safe_redirect( add_query_arg( $args, wp_get_referer() ) ); exit; case 'switch-to-event': - $affected_cats = $this->event_category_functions->get_sync_affected_cats('to_event_cats', array('to_add')); - $args['msgdata'] = $this->event_category_functions->sync_categories('to_event_cats', $affected_cats); - $args['msgdata'] = $this->event_category_functions->switch_event_taxonomy('to_event_cats'); + $affected_cats = $this->event_category_functions->get_sync_affected_cats( 'to_event_cats', array( 'to_add' ) ); + $args['msgdata'] = $this->event_category_functions->sync_categories( 'to_event_cats', $affected_cats ); + $args['msgdata'] = $this->event_category_functions->switch_event_taxonomy( 'to_event_cats' ); $args['settings-updated'] = 'true'; - wp_safe_redirect(add_query_arg($args, wp_get_referer())); + wp_safe_redirect( add_query_arg( $args, wp_get_referer() ) ); exit; case 'switch-to-post': // check used post parameters - $add_cats = isset($_POST['add-cats']) ? (bool)intval($_POST['add-cats']) : false; - if($add_cats) { - $affected_cats['to_add'] = isset($_POST['cats-to-add']) ? array_map('sanitize_key', json_decode(stripslashes($_POST['cats-to-add']), true)) : array(); - $this->event_category_functions->sync_categories('to_post_cats', $affected_cats); + $add_cats = isset( $_POST['add-cats'] ) ? (bool) intval( $_POST['add-cats'] ) : false; + if ( $add_cats ) { + $affected_cats['to_add'] = isset( $_POST['cats-to-add'] ) ? array_map( 'sanitize_key', json_decode( stripslashes( $_POST['cats-to-add'] ), true ) ) : array(); + $this->event_category_functions->sync_categories( 'to_post_cats', $affected_cats ); } - $args['msgdata'] = $this->event_category_functions->switch_event_taxonomy('to_post_cats'); + $args['msgdata'] = $this->event_category_functions->switch_event_taxonomy( 'to_post_cats' ); $this->event_category_functions->delete_all_event_cats(); $args['settings-updated'] = 'true'; - wp_safe_redirect(add_query_arg($args, wp_get_referer())); + wp_safe_redirect( add_query_arg( $args, wp_get_referer() ) ); exit; } - - } + } -?> + diff --git a/wp-content/plugins/event-list/admin/includes/admin-functions.php b/wp-content/plugins/event-list/admin/includes/admin-functions.php index 3862b3310c5f28bdc59b8f7a8ebca9961a91c2c9..c86c035e54520228eb7c9e5bf3d7a02e40344024 100644 --- a/wp-content/plugins/event-list/admin/includes/admin-functions.php +++ b/wp-content/plugins/event-list/admin/includes/admin-functions.php @@ -1,81 +1,94 @@ <?php -if(!defined('WP_ADMIN')) { +if ( ! defined( 'WP_ADMIN' ) ) { exit; } -require_once(EL_PATH.'includes/options.php'); +require_once EL_PATH . 'includes/options.php'; // This class handles general functions which can be used on different admin pages class EL_Admin_Functions { + private static $instance; + private $options; + public static function &get_instance() { // Create class instance if required - if(!isset(self::$instance)) { + if ( ! isset( self::$instance ) ) { self::$instance = new self(); } // Return class instance return self::$instance; } + private function __construct() { $this->options = &EL_Options::get_instance(); $this->options->load_options_helptexts(); } - public function show_option_form($section, $options) { - $options = wp_parse_args($options, array('page' => admin_url('options.php'), 'button_text' => null, 'button_class' => 'primary large')); - $out = ' - <form method="post" action="'.$options['page'].'"> + + public function show_option_form( $section, $options ) { + $options = wp_parse_args( + $options, + array( + 'page' => admin_url( 'options.php' ), + 'button_text' => null, + 'button_class' => 'primary large', + ) + ); + $out = ' + <form method="post" action="' . $options['page'] . '"> '; ob_start(); - settings_fields('el_'.$section); + settings_fields( 'el_' . $section ); $out .= ob_get_contents(); ob_end_clean(); - $out .= $this->show_option_table($section); - $out .= get_submit_button($options['button_text'], $options['button_class']); - $out .=' + $out .= $this->show_option_table( $section ); + $out .= get_submit_button( $options['button_text'], $options['button_class'] ); + $out .= ' </form>'; return $out; } - public function show_option_table($section) { + + public function show_option_table( $section ) { $out = ' <div class="el-settings"> <table class="form-table">'; - foreach($this->options->options as $oname => $o) { - if($o['section'] == $section) { + foreach ( $this->options->options as $oname => $o ) { + if ( $o['section'] == $section ) { $out .= ' <tr> <th>'; - if($o['label'] != '') { - $out .= '<label for="'.$oname.'">'.$o['label'].':</label>'; + if ( $o['label'] != '' ) { + $out .= '<label for="' . $oname . '">' . $o['label'] . ':</label>'; } $out .= '</th> <td>'; - switch($o['type']) { + switch ( $o['type'] ) { case 'checkbox': - $out .= $this->show_checkbox($oname, $this->options->get($oname), $o['caption'], isset($o['disable'])); + $out .= $this->show_checkbox( $oname, $this->options->get( $oname ), $o['caption'], isset( $o['disable'] ) ); break; case 'dropdown': - $out .= $this->show_dropdown($oname, $this->options->get($oname), $o['caption'], isset($o['disable'])); + $out .= $this->show_dropdown( $oname, $this->options->get( $oname ), $o['caption'], isset( $o['disable'] ) ); break; case 'radio': - $out .= $this->show_radio($oname, $this->options->get($oname), $o['caption'], isset($o['disable'])); + $out .= $this->show_radio( $oname, $this->options->get( $oname ), $o['caption'], isset( $o['disable'] ) ); break; case 'text': - $out .= $this->show_text($oname, $this->options->get($oname), isset($o['disable'])); + $out .= $this->show_text( $oname, $this->options->get( $oname ), isset( $o['disable'] ) ); break; case 'textarea': - $out .= $this->show_textarea($oname, $this->options->get($oname), isset($o['disable'])); + $out .= $this->show_textarea( $oname, $this->options->get( $oname ), isset( $o['disable'] ) ); break; case 'file-upload': - $out .= $this->show_file_upload($oname, $o['maxsize'], isset($o['disable'])); + $out .= $this->show_file_upload( $oname, $o['maxsize'], isset( $o['disable'] ) ); } $out .= ' </td> - <td class="description">'.$o['desc'].'</td> + <td class="description">' . $o['desc'] . '</td> </tr>'; } } @@ -85,42 +98,45 @@ class EL_Admin_Functions { return $out; } - public function show_checkbox($name, $value, $caption, $disabled=false) { + + public function show_checkbox( $name, $value, $caption, $disabled = false ) { $out = ' - <label for="'.$name.'"> - <input name="'.$name.'" type="checkbox" id="'.$name.'" value="1"'; - if($value == 1) { + <label for="' . $name . '"> + <input name="' . $name . '" type="checkbox" id="' . $name . '" value="1"'; + if ( $value == 1 ) { $out .= ' checked="checked"'; } - $out .= $this->get_disabled_text($disabled).' /> - '.$caption.' + $out .= $this->get_disabled_text( $disabled ) . ' /> + ' . $caption . ' </label>'; return $out; } - public function show_dropdown($name, $selected, $value_array, $class_array=null, $disabled=false) { + + public function show_dropdown( $name, $selected, $value_array, $class_array = null, $disabled = false ) { $out = ' - <select id="'.$name.'" name="'.$name.'"'.$this->get_disabled_text($disabled).'>'; - foreach($value_array as $key => $value) { - $class_text = isset($class_array[$key]) ? 'class="'.$class_array[$key].'" ' : ''; - $selected_text = $selected===$key ? 'selected ' : ''; - $out .= ' - <option '.$class_text.$selected_text.'value="'.$key.'">'.$value.'</option>'; + <select id="' . $name . '" name="' . $name . '"' . $this->get_disabled_text( $disabled ) . '>'; + foreach ( $value_array as $key => $value ) { + $class_text = isset( $class_array[ $key ] ) ? 'class="' . $class_array[ $key ] . '" ' : ''; + $selected_text = $selected === $key ? 'selected ' : ''; + $out .= ' + <option ' . $class_text . $selected_text . 'value="' . $key . '">' . $value . '</option>'; } $out .= ' </select>'; return $out; } - public function show_radio($name, $selected, $value_array, $disabled=false) { + + public function show_radio( $name, $selected, $value_array, $disabled = false ) { $out = ' <fieldset>'; - foreach($value_array as $key => $value) { - $checked = ($selected === $key) ? 'checked="checked" ' : ''; - $out .= ' - <label title="'.$value.'"> - <input type="radio" '.$checked.'value="'.$key.'" name="'.$name.'"> - <span>'.$value.'</span> + foreach ( $value_array as $key => $value ) { + $checked = ( $selected === $key ) ? 'checked="checked" ' : ''; + $out .= ' + <label title="' . $value . '"> + <input type="radio" ' . $checked . 'value="' . $key . '" name="' . $name . '"> + <span>' . $value . '</span> </label> <br />'; } @@ -129,26 +145,31 @@ class EL_Admin_Functions { return $out; } - public function show_text($name, $value, $disabled=false) { + + public function show_text( $name, $value, $disabled = false ) { $out = ' - <input name="'.$name.'" type="text" id="'.$name.'" value="'.$value.'"'.$this->get_disabled_text($disabled).' />'; + <input name="' . $name . '" type="text" id="' . $name . '" value="' . $value . '"' . $this->get_disabled_text( $disabled ) . ' />'; return $out; } - public function show_textarea($name, $value, $disabled=false) { + + public function show_textarea( $name, $value, $disabled = false ) { $out = ' - <textarea name="'.$name.'" id="'.$name.'" rows="5" class="large-text code"'.$this->get_disabled_text($disabled).'>'.$value.'</textarea>'; + <textarea name="' . $name . '" id="' . $name . '" rows="5" class="large-text code"' . $this->get_disabled_text( $disabled ) . '>' . $value . '</textarea>'; return $out; } - public function show_file_upload($name, $max_size, $disabled=false) { + + public function show_file_upload( $name, $max_size, $disabled = false ) { $out = ' - <input name="'.$name.'" type="file" maxlength="'.$max_size.'">'; + <input name="' . $name . '" type="file" maxlength="' . $max_size . '">'; return $out; } - public function get_disabled_text($disabled=false) { + + public function get_disabled_text( $disabled = false ) { return $disabled ? ' disabled="disabled"' : ''; } + } -?> + diff --git a/wp-content/plugins/event-list/admin/includes/admin-import.php b/wp-content/plugins/event-list/admin/includes/admin-import.php index 48193f8c218f7700ad940488fdf95c3844e3027c..b526437376a89838eabbd05a3e5867341d10e6fe 100644 --- a/wp-content/plugins/event-list/admin/includes/admin-import.php +++ b/wp-content/plugins/event-list/admin/includes/admin-import.php @@ -1,60 +1,69 @@ <?php -if(!defined('WP_ADMIN')) { +if ( ! defined( 'WP_ADMIN' ) ) { exit; } -require_once(EL_PATH.'includes/options.php'); -require_once(EL_PATH.'includes/events_post_type.php'); -require_once(EL_PATH.'admin/includes/admin-functions.php'); -require_once(EL_PATH.'includes/events.php'); +require_once EL_PATH . 'includes/options.php'; +require_once EL_PATH . 'includes/events_post_type.php'; +require_once EL_PATH . 'admin/includes/admin-functions.php'; +require_once EL_PATH . 'includes/events.php'; // fix for PHP 5.2 (provide function date_create_from_format defined in daterange.php) -if(version_compare(PHP_VERSION, '5.3') < 0) { - require_once(EL_PATH.'includes/daterange.php'); +if ( version_compare( PHP_VERSION, '5.3' ) < 0 ) { + require_once EL_PATH . 'includes/daterange.php'; } // This class handles all data for the admin new event page class EL_Admin_Import { + private static $instance; + private $options; + private $events_post_type; + private $functions; + private $events; + private $example_file_path; + public static function &get_instance() { // Create class instance if required - if(!isset(self::$instance)) { + if ( ! isset( self::$instance ) ) { self::$instance = new self(); } // Return class instance return self::$instance; } + private function __construct() { - $this->options = &EL_Options::get_instance(); - $this->events_post_type = &EL_Events_Post_Type::get_instance(); - $this->functions = &EL_Admin_Functions::get_instance(); - $this->events = &EL_Events::get_instance(); - $this->example_file_path = EL_URL.'files/events-import-example.csv'; + $this->options = &EL_Options::get_instance(); + $this->events_post_type = &EL_Events_Post_Type::get_instance(); + $this->functions = &EL_Admin_Functions::get_instance(); + $this->events = &EL_Events::get_instance(); + $this->example_file_path = EL_URL . 'files/events-import-example.csv'; $this->add_metaboxes(); } + public function show_import() { - if(!current_user_can('edit_posts')) { - wp_die(__('You do not have sufficient permissions to access this page.')); + if ( ! current_user_can( 'edit_posts' ) ) { + wp_die( __( 'You do not have sufficient permissions to access this page.' ) ); } echo ' <div class="wrap"> <div id="icon-edit-pages" class="icon32"><br /></div> - <h2>'.__('Import Events','event-list').'</h2>'; + <h2>' . __( 'Import Events', 'event-list' ) . '</h2>'; // Review import - if(isset($_FILES['el_import_file'])) { + if ( isset( $_FILES['el_import_file'] ) ) { $this->show_import_review(); } // Finish import (add events) - elseif(isset($_POST['reviewed_events'])) { + elseif ( isset( $_POST['reviewed_events'] ) ) { $import_status = $this->import_events(); - $this->show_import_finished($import_status); + $this->show_import_finished( $import_status ); } // Import form else { @@ -64,33 +73,35 @@ class EL_Admin_Import { </div>'; } + private function show_import_form() { echo ' - <h3>'.__('Step','event-list').' 1: '.__('Set import file and options','event-list').'</h3> + <h3>' . __( 'Step', 'event-list' ) . ' 1: ' . __( 'Set import file and options', 'event-list' ) . '</h3> <form action="" id="el_import_upload" method="post" enctype="multipart/form-data"> - '.$this->functions->show_option_table('import').'<br /> - <input type="submit" name="button-upload-submit" id="button-upload-submit" class="button" value="'.sprintf(__('Proceed with Step %1$s','event-list'), '2').' >>" /> + ' . $this->functions->show_option_table( 'import' ) . '<br /> + <input type="submit" name="button-upload-submit" id="button-upload-submit" class="button" value="' . sprintf( __( 'Proceed with Step %1$s', 'event-list' ), '2' ) . ' >>" /> </form> <br /><br /> - <h3>'.__('Example file','event-list').'</h4> - <p>'.sprintf(__('You can download an example file %1$shere%2$s (CSV delimiter is a comma!)','event-list'), '<a href="'.$this->example_file_path.'">', '</a>').'</p> - <p><em>'.__('Note','event-list').':</em> '.__('Do not change the column header and separator line (first two lines), otherwise the import will fail!','event-list').'</p>'; + <h3>' . __( 'Example file', 'event-list' ) . '</h4> + <p>' . sprintf( __( 'You can download an example file %1$shere%2$s (CSV delimiter is a comma!)', 'event-list' ), '<a href="' . $this->example_file_path . '">', '</a>' ) . '</p> + <p><em>' . __( 'Note', 'event-list' ) . ':</em> ' . __( 'Do not change the column header and separator line (first two lines), otherwise the import will fail!', 'event-list' ) . '</p>'; } + private function show_import_review() { $file = $_FILES['el_import_file']['tmp_name']; // check for file existence (upload failed?) - if(!is_file($file)) { - echo '<h3>'.__('Sorry, there has been an error.','event-list').'</h3>'; - echo __('The file does not exist, please try again.','event-list').'</p>'; + if ( ! is_file( $file ) ) { + echo '<h3>' . __( 'Sorry, there has been an error.', 'event-list' ) . '</h3>'; + echo __( 'The file does not exist, please try again.', 'event-list' ) . '</p>'; return; } // check for file extension (csv) first - $file_parts = pathinfo($_FILES['el_import_file']['name']); - if($file_parts['extension'] !== "csv") { - echo '<h3>'.__('Sorry, there has been an error.','event-list').'</h3>'; - echo __('The uploaded file does not have the required csv extension.','event-list').'</p>'; + $file_parts = pathinfo( $_FILES['el_import_file']['name'] ); + if ( $file_parts['extension'] !== 'csv' ) { + echo '<h3>' . __( 'Sorry, there has been an error.', 'event-list' ) . '</h3>'; + echo __( 'The uploaded file does not have the required csv extension.', 'event-list' ) . '</p>'; return; } @@ -98,338 +109,368 @@ class EL_Admin_Import { $this->save_import_settings(); // parse file - $import_data = $this->parse_import_file($file); + $import_data = $this->parse_import_file( $file ); // show heading echo ' - <h3>'.__('Step','event-list').' 2: '.__('Events review and additonal category selection','event-list').'</h3>'; + <h3>' . __( 'Step', 'event-list' ) . ' 2: ' . __( 'Events review and additonal category selection', 'event-list' ) . '</h3>'; // show messages // failed parsing - if(is_wp_error($import_data)) { + if ( is_wp_error( $import_data ) ) { echo ' - <div class="el-warning">'.__('Error','event-list').': '.__('This CSV file cannot be imported','event-list').': - <p>'.$import_data->get_error_message().'</p> + <div class="el-warning">' . __( 'Error', 'event-list' ) . ': ' . __( 'This CSV file cannot be imported', 'event-list' ) . ': + <p>' . $import_data->get_error_message() . '</p> </div>'; return; } // failed events - $num_event_errors = count(array_filter($import_data, 'is_wp_error')); - if(!empty($num_event_errors)) { - if($num_event_errors == count($import_data)) { + $num_event_errors = count( array_filter( $import_data, 'is_wp_error' ) ); + if ( ! empty( $num_event_errors ) ) { + if ( $num_event_errors == count( $import_data ) ) { echo ' - <div class="el-warning">'.__('Error','event-list').': '.__('None of the events in this CSV file can be imported','event-list').':'; - } - else { + <div class="el-warning">' . __( 'Error', 'event-list' ) . ': ' . __( 'None of the events in this CSV file can be imported', 'event-list' ) . ':'; + } else { echo ' - <div class="el-warning">'.__('Warning','event-list').': '.sprintf(_n('There is %1$s event which cannot be imported', - 'There are %1$s events which cannot be imported', - $num_event_errors,'event-list'), $num_event_errors).':'; + <div class="el-warning">' . __( 'Warning', 'event-list' ) . ': ' . sprintf( + _n( + 'There is %1$s event which cannot be imported', + 'There are %1$s events which cannot be imported', + $num_event_errors, + 'event-list' + ), + $num_event_errors + ) . ':'; } echo ' <ul class="el-event-errors">'; - foreach($import_data as $event) { - if(is_wp_error($event)) { - echo '<li>'.sprintf(__('CSV line %1$s','event-list'), $event->get_error_data()).': '.$event->get_error_message().'</li>'; + foreach ( $import_data as $event ) { + if ( is_wp_error( $event ) ) { + echo '<li>' . sprintf( __( 'CSV line %1$s', 'event-list' ), $event->get_error_data() ) . ': ' . $event->get_error_message() . '</li>'; } } echo '</ul>'; - if($num_event_errors == count($import_data)) { + if ( $num_event_errors == count( $import_data ) ) { echo ' </div>'; return; } echo ' - '.__('You can still import all other events listed below.','event-list').' + ' . __( 'You can still import all other events listed below.', 'event-list' ) . ' </div>'; - $import_data = array_filter($import_data, create_function('$v', 'return !is_wp_error($v)')); + $import_data = array_filter( $import_data, array( $this, 'is_no_wp_error' ) ); } // missing categories $not_available_cats = array(); - foreach($import_data as $event) { - if(is_wp_error($event)) { + foreach ( $import_data as $event ) { + if ( is_wp_error( $event ) ) { continue; } - foreach($event['categories'] as $cat) { - if(!$this->events->cat_exists($cat) && !in_array($cat, $not_available_cats)) { + foreach ( $event['categories'] as $cat ) { + if ( ! $this->events->cat_exists( $cat ) && ! in_array( $cat, $not_available_cats ) ) { $not_available_cats[] = $cat; } } } - if(!empty($not_available_cats)) { + if ( ! empty( $not_available_cats ) ) { echo ' - <div class="el-warning">'.__('Warning','event-list').': '.__('The following category slugs are not available and will be removed from the imported events','event-list').': + <div class="el-warning">' . __( 'Warning', 'event-list' ) . ': ' . __( 'The following category slugs are not available and will be removed from the imported events', 'event-list' ) . ': <ul class="el-categories">'; - foreach($not_available_cats as $cat) { - echo '<li><code>'.$cat.'</code></li>'; + foreach ( $not_available_cats as $cat ) { + echo '<li><code>' . $cat . '</code></li>'; } echo '</ul> - '.__('If you want to keep these categories, please create these Categories first and do the import afterwards.','event-list').'</div>'; + ' . __( 'If you want to keep these categories, please create these Categories first and do the import afterwards.', 'event-list' ) . '</div>'; } // event form echo ' - <form method="POST" action="'.admin_url('edit.php?post_type=el_events&page=el_admin_import').'">'; - wp_nonce_field('autosavenonce', 'autosavenonce', false, false); - wp_nonce_field('closedpostboxesnonce', 'closedpostboxesnonce', false, false); - wp_nonce_field('meta-box-order-nonce', 'meta-box-order-nonce', false, false); + <form method="POST" action="' . admin_url( 'edit.php?post_type=el_events&page=el_admin_import' ) . '">'; + wp_nonce_field( 'autosavenonce', 'autosavenonce', false, false ); + wp_nonce_field( 'closedpostboxesnonce', 'closedpostboxesnonce', false, false ); + wp_nonce_field( 'meta-box-order-nonce', 'meta-box-order-nonce', false, false ); echo ' <div id="poststuff"> <div id="post-body" class="metabox-holder columns-2"> <div id="post-body-content">'; - foreach($import_data as $event) { - $this->show_event($event); + foreach ( $import_data as $event ) { + $this->show_event( $event ); } echo ' </div> <div id="postbox-container-1" class="postbox-container">'; - do_meta_boxes('el-import', 'side', null); + do_meta_boxes( 'el-import', 'side', null ); echo ' </div> </div> </div> - <input type="hidden" name="reviewed_events" id="reviewed_events" value="'.esc_html(json_encode($import_data)).'" /> + <input type="hidden" name="reviewed_events" id="reviewed_events" value="' . esc_html( json_encode( $import_data ) ) . '" /> </form>'; } - private function show_import_finished($import_status) { + + private function is_no_wp_error( $value ) { + return ! is_wp_error( $value ); + } + + + private function show_import_finished( $import_status ) { echo ' - <h3>'.__('Step','event-list').' 3: '.__('Import result','event-list').'</h3>'; - if(empty($import_status['errors'])) { + <h3>' . __( 'Step', 'event-list' ) . ' 3: ' . __( 'Import result', 'event-list' ) . '</h3>'; + if ( empty( $import_status['errors'] ) ) { echo ' - <div class="el-success">'.sprintf(__('Import of %1$s events successful!','event-list'), $import_status['success']).' - <a href="'.admin_url('edit.php?post_type=el_events').'">'.__('Go back to All Events','event-list').'</a>'; - } - else { + <div class="el-success">' . sprintf( __( 'Import of %1$s events successful!', 'event-list' ), $import_status['success'] ) . ' + <a href="' . admin_url( 'edit.php?post_type=el_events' ) . '">' . __( 'Go back to All Events', 'event-list' ) . '</a>'; + } else { echo ' - <div class="el-warning">'.__('Errors during Import','event-list').':'; - if(is_wp_error($import_status['errors'])) { + <div class="el-warning">' . __( 'Errors during Import', 'event-list' ) . ':'; + if ( is_wp_error( $import_status['errors'] ) ) { echo ' - <p>'.$import_errors->get_error_message().'</p>'; - } - else { + <p>' . $import_errors->get_error_message() . '</p>'; + } else { echo ' <ul class="el-event-errors">'; - foreach($import_status['errors'] as $error) { - echo '<li>'.__('Event from CSV-line','event-list').' '.$error->get_error_data().': '.$error->get_error_message().'</li>'; - } + foreach ( $import_status['errors'] as $error ) { + echo '<li>' . __( 'Event from CSV-line', 'event-list' ) . ' ' . $error->get_error_data() . ': ' . $error->get_error_message() . '</li>'; } + } echo '</ul> </div>'; } } - private function show_event($event) { + + private function show_event( $event ) { echo ' <p> - <span class="el-event-header">'.__('Title','event-list').':</span> <span class="el-event-data">'.$event['title'].'</span><br /> - <span class="el-event-header">'.__('Start Date','event-list').':</span> <span class="el-event-data">'.$event['startdate'].'</span><br /> - <span class="el-event-header">'.__('End Date','event-list').':</span> <span class="el-event-data">'.$event['enddate'].'</span><br /> - <span class="el-event-header">'.__('Time','event-list').':</span> <span class="el-event-data">'.$event['starttime'].'</span><br /> - <span class="el-event-header">'.__('Location','event-list').':</span> <span class="el-event-data">'.$event['location'].'</span><br /> - <span class="el-event-header">'.__('Content','event-list').':</span> <span class="el-event-data">'.$event['content'].'</span><br /> - <span class="el-event-header">'.__('Category slugs','event-list').':</span> <span class="el-event-data">'.implode(', ', $event['categories']).'</span> + <span class="el-event-header">' . __( 'Title', 'event-list' ) . ':</span> <span class="el-event-data">' . $event['title'] . '</span><br /> + <span class="el-event-header">' . __( 'Start Date', 'event-list' ) . ':</span> <span class="el-event-data">' . $event['startdate'] . '</span><br /> + <span class="el-event-header">' . __( 'End Date', 'event-list' ) . ':</span> <span class="el-event-data">' . $event['enddate'] . '</span><br /> + <span class="el-event-header">' . __( 'Time', 'event-list' ) . ':</span> <span class="el-event-data">' . $event['starttime'] . '</span><br /> + <span class="el-event-header">' . __( 'Location', 'event-list' ) . ':</span> <span class="el-event-data">' . $event['location'] . '</span><br /> + <span class="el-event-header">' . __( 'Content', 'event-list' ) . ':</span> <span class="el-event-data">' . $event['content'] . '</span><br /> + <span class="el-event-header">' . __( 'Category slugs', 'event-list' ) . ':</span> <span class="el-event-data">' . implode( ', ', $event['categories'] ) . '</span> </p>'; } + /** * @return WP_Error */ - private function parse_import_file($file) { - $delimiter = ','; - $header = array('title', 'startdate', 'enddate', 'starttime', 'location', 'content', 'category_slugs'); + private function parse_import_file( $file ) { + $delimiter = ','; + $header = array( 'title', 'startdate', 'enddate', 'starttime', 'location', 'content', 'category_slugs' ); $separator_line = 'sep=,'; // list of events to import $events = array(); - $file_handle = fopen($file, 'r'); + $file_handle = fopen( $file, 'r' ); $event_lines = -1; $empty_lines = 0; - while(!feof($file_handle)) { + while ( ! feof( $file_handle ) ) { // get line - $line = fgetcsv($file_handle, 0, $delimiter); + $line = fgetcsv( $file_handle, 0, $delimiter ); // prepare line: trim elements and force an array - $line = is_array($line) ? array_map('trim', $line) : array(trim($line)); + $line = is_array( $line ) ? array_map( 'trim', $line ) : array( trim( $line ) ); // skip empty lines - if(!array_filter($line)) { + if ( ! array_filter( $line ) ) { $empty_lines += 1; continue; } // check header - if(0 > $event_lines) { + if ( 0 > $event_lines ) { // check optional separator line - if($line[0] === $separator_line) { + if ( $line[0] === $separator_line ) { $empty_lines += 1; continue; } // check header line - elseif($line === $header || $line === array_slice($header,0,-1)) { + elseif ( $line === $header || $line === array_slice( $header, 0, -1 ) ) { $event_lines += 1; continue; - } - else { - return new WP_Error('missing_header', __('Header line is missing or not correct!','event-list').'<br />' - .sprintf(__('Have a look at the %1$sexample file%2$s to see the correct header line format.','event-list'), '<a href="'.$this->example_file_path.'">', '</a>')); + } else { + return new WP_Error( + 'missing_header', + __( 'Header line is missing or not correct!', 'event-list' ) . '<br />' + . sprintf( __( 'Have a look at the %1$sexample file%2$s to see the correct header line format.', 'event-list' ), '<a href="' . $this->example_file_path . '">', '</a>' ) + ); } } $event_lines += 1; // check correct number of items in line - if(6 > count($line) || 7 < count($line)) { - $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); + if ( 6 > count( $line ) || 7 < count( $line ) ) { + $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 ); continue; } // check and prepare event data $eventdata = array( - 'csv_line' => $event_lines+$empty_lines+1, + 'csv_line' => $event_lines + $empty_lines + 1, 'title' => $line[0], 'startdate' => $line[1], 'enddate' => $line[2], 'starttime' => $line[3], 'location' => $line[4], 'content' => $line[5], - 'categories' => isset($line[6]) ? explode('|', $line[6]) : array(), + 'categories' => isset( $line[6] ) ? explode( '|', $line[6] ) : array(), ); - $event = $this->prepare_event($eventdata, $this->options->get('el_import_date_format')); + $event = $this->prepare_event( $eventdata, $this->options->get( 'el_import_date_format' ) ); // add event $events[] = $event; } - //close file - fclose($file_handle); + // close file + fclose( $file_handle ); return $events; } - private function prepare_event($event, $date_format=false) { + + private function prepare_event( $event, $date_format = false ) { // trim all fields - array_walk($event, create_function('&$v', '$v = is_array($v) ? array_map("trim", $v) : trim($v);')); + array_walk( $event, array( $this, 'trim_event_fields' ) ); // title - if(empty($event['title'])) { - $event = new WP_Error('empty_title', __('Empty event title found','event-list'), $event['csv_line']); + if ( empty( $event['title'] ) ) { + $event = new WP_Error( 'empty_title', __( 'Empty event title found', 'event-list' ), $event['csv_line'] ); return $event; } // startdate - $event['startdate'] = $this->prepare_date($event['startdate'], $date_format); - if(false === $event['startdate']) { - return new WP_Error('wrong_startdate', __('Wrong date format for startdate','event-list'), $event['csv_line']); + $event['startdate'] = $this->prepare_date( $event['startdate'], $date_format ); + if ( false === $event['startdate'] ) { + return new WP_Error( 'wrong_startdate', __( 'Wrong date format for startdate', 'event-list' ), $event['csv_line'] ); } // enddate - if(empty($event['enddate'])) { + if ( empty( $event['enddate'] ) ) { $event['enddate'] = $event['startdate']; - } - else { - $event['enddate'] = $this->prepare_date($event['enddate'], $date_format); - if(false === $event['enddate']) { - return new WP_Error('wrong_enddate', __('Wrong date format for enddate','event-list'), $event['csv_line']); + } else { + $event['enddate'] = $this->prepare_date( $event['enddate'], $date_format ); + if ( false === $event['enddate'] ) { + return new WP_Error( 'wrong_enddate', __( 'Wrong date format for enddate', 'event-list' ), $event['csv_line'] ); } } // no additional checks for starttime, location, content required // categories - $event['categories'] = array_map('trim', $event['categories']); + $event['categories'] = array_map( 'trim', $event['categories'] ); return $event; } - private function prepare_date($date_string, $date_format) { + + private function trim_event_fields( &$value ) { + if ( is_array( $value ) ) { + $value = array_map( 'trim', $value ); + } else { + $value = trim( $value ); + } + } + + + private function prepare_date( $date_string, $date_format ) { $auto_detect = true; - if(empty($date_format)) { + if ( empty( $date_format ) ) { $date_format = 'Y-m-d'; $auto_detect = false; } // create date from given format - $date = date_create_from_format($date_format, $date_string); - if(!$date instanceof DateTime) { + $date = date_create_from_format( $date_format, $date_string ); + if ( ! $date instanceof DateTime ) { // try automatic date detection - if($auto_detect) { - $date = date_create($date_string); + if ( $auto_detect ) { + $date = date_create( $date_string ); } - if(!$date instanceof DateTime) { + if ( ! $date instanceof DateTime ) { return false; } } - return $date->format('Y-m-d'); + return $date->format( 'Y-m-d' ); } + private function save_import_settings() { - foreach($this->options->options as $oname => $o) { + foreach ( $this->options->options as $oname => $o ) { // check used post parameters - $ovalue = isset($_POST[$oname]) ? sanitize_text_field($_POST[$oname]) : ''; + $ovalue = isset( $_POST[ $oname ] ) ? sanitize_text_field( $_POST[ $oname ] ) : ''; - if('import' == $o['section'] && !empty($ovalue)) { - $this->options->set($oname, $ovalue); + if ( 'import' == $o['section'] && ! empty( $ovalue ) ) { + $this->options->set( $oname, $ovalue ); } } } + public function add_metaboxes() { - add_meta_box('event-publish', __('Import events','event-list'), array(&$this, 'render_publish_metabox'), 'el-import', 'side'); - add_meta_box('event-categories', __('Add additional categories','event-list'), array(&$this, 'render_category_metabox'),'el-import', 'side'); + add_meta_box( 'event-publish', __( 'Import events', 'event-list' ), array( &$this, 'render_publish_metabox' ), 'el-import', 'side' ); + add_meta_box( 'event-categories', __( 'Add additional categories', 'event-list' ), array( &$this, 'render_category_metabox' ), 'el-import', 'side' ); } + public function render_publish_metabox() { echo ' <div class="submitbox"> - <div id="delete-action"><a href="?page=el_admin_main" class="submitdelete deletion">'.__('Cancel').'</a></div> - <div id="publishing-action"><input type="submit" class="button button-primary button-large" name="import" value="'.__('Import','event-list').'" id="import"></div> + <div id="delete-action"><a href="?page=el_admin_main" class="submitdelete deletion">' . __( 'Cancel' ) . '</a></div> + <div id="publishing-action"><input type="submit" class="button button-primary button-large" name="import" value="' . __( 'Import', 'event-list' ) . '" id="import"></div> <div class="clear"></div> </div>'; } - public function render_category_metabox($post, $metabox) { - require_once(ABSPATH.'wp-admin/includes/meta-boxes.php'); - $dpost = get_default_post_to_edit('el-events'); - $box = array('args' => array('taxonomy' => $this->events_post_type->taxonomy)); - post_categories_meta_box($dpost, $box); + + public function render_category_metabox( $post, $metabox ) { + require_once ABSPATH . 'wp-admin/includes/meta-boxes.php'; + $dpost = get_default_post_to_edit( 'el-events' ); + $box = array( 'args' => array( 'taxonomy' => $this->events_post_type->taxonomy ) ); + post_categories_meta_box( $dpost, $box ); } + private function import_events() { // check used post parameters - $reviewed_events = json_decode(stripslashes($_POST['reviewed_events']), true); - if(empty($reviewed_events)) { - return new WP_Error('no_events', __('No events found','event-list')); + $reviewed_events = json_decode( stripslashes( $_POST['reviewed_events'] ), true ); + if ( empty( $reviewed_events ) ) { + return new WP_Error( 'no_events', __( 'No events found', 'event-list' ) ); } // prepare additional categories - if($this->events_post_type->event_cat_taxonomy === $this->events_post_type->taxonomy) { - $additional_cat_ids = isset($_POST['tax_input'][$this->events_post_type->taxonomy]) ? $_POST['tax_input'][$this->events_post_type->taxonomy] : array(); + if ( $this->events_post_type->event_cat_taxonomy === $this->events_post_type->taxonomy ) { + $additional_cat_ids = isset( $_POST['tax_input'][ $this->events_post_type->taxonomy ] ) ? $_POST['tax_input'][ $this->events_post_type->taxonomy ] : array(); + } else { + $additional_cat_ids = isset( $_POST[ 'post_' . $this->events_post_type->taxonomy ] ) ? $_POST[ 'post_' . $this->events_post_type->taxonomy ] : array(); } - else { - $additional_cat_ids = isset($_POST['post_'.$this->events_post_type->taxonomy]) ? $_POST['post_'.$this->events_post_type->taxonomy] : array(); - } - $additional_cat_ids = is_array($additional_cat_ids) ? array_map('intval', $additional_cat_ids) : array(); + $additional_cat_ids = is_array( $additional_cat_ids ) ? array_map( 'intval', $additional_cat_ids ) : array(); $additional_cat_slugs = array(); - foreach($additional_cat_ids as $cat_id) { - $cat = $this->events->get_cat_by_id($cat_id); - if(!empty($cat)) { + foreach ( $additional_cat_ids as $cat_id ) { + $cat = $this->events->get_cat_by_id( $cat_id ); + if ( ! empty( $cat ) ) { $additional_cat_slugs[] = $cat->slug; } } // prepare events and events categories - foreach($reviewed_events as &$event_ref) { + foreach ( $reviewed_events as &$event_ref ) { // check event data // remove not available categories of import file - foreach($event_ref['categories'] as $ckey => $cat_slug) { - if(!$this->events->cat_exists($cat_slug)) { - unset($event_ref['categories'][$ckey]); + foreach ( $event_ref['categories'] as $ckey => $cat_slug ) { + if ( ! $this->events->cat_exists( $cat_slug ) ) { + unset( $event_ref['categories'][ $ckey ] ); } } // add the additionally specified categories to the event - if(!empty($additional_cat_slugs)) { - $event_ref['categories'] = array_unique(array_merge($event_ref['categories'], $additional_cat_slugs)); + if ( ! empty( $additional_cat_slugs ) ) { + $event_ref['categories'] = array_unique( array_merge( $event_ref['categories'], $additional_cat_slugs ) ); } } // save events - $ret = array('success' => 0, 'errors' => array()); - require_once(EL_PATH.'includes/event.php'); - foreach($reviewed_events as $eventdata) { - $ed = $this->prepare_event($eventdata); - if(is_wp_error($ed)) { + $ret = array( + 'success' => 0, + 'errors' => array(), + ); + require_once EL_PATH . 'includes/event.php'; + foreach ( $reviewed_events as $eventdata ) { + $ed = $this->prepare_event( $eventdata ); + if ( is_wp_error( $ed ) ) { $ret['errors'][] = $ed; continue; } - //TODO: return WP_Error instead of false in EL_Event when safing fails - $event = EL_Event::save($eventdata); - if(!$event) { - $ret['errors'][] = new WP_Error('failed_saving', __('Saving of event failed!','event-list'), $event['csv_line']); + // TODO: return WP_Error instead of false in EL_Event when safing fails + $event = EL_Event::save( $eventdata ); + if ( ! $event ) { + $ret['errors'][] = new WP_Error( 'failed_saving', __( 'Saving of event failed!', 'event-list' ), $event['csv_line'] ); continue; } $ret['success'] += 1; @@ -437,8 +478,10 @@ class EL_Admin_Import { return $ret; } + public function embed_import_scripts() { - wp_enqueue_style('eventlist_admin_import', EL_URL.'admin/css/admin_import.css'); + wp_enqueue_style( 'eventlist_admin_import', EL_URL . 'admin/css/admin_import.css' ); } + } -?> + diff --git a/wp-content/plugins/event-list/admin/includes/admin-main.php b/wp-content/plugins/event-list/admin/includes/admin-main.php index 2adc463cdd868f64fe6863a28327b1eac2c26e2f..bd7ec2ae13195056abb58ca76f2a5c96fe213417 100644 --- a/wp-content/plugins/event-list/admin/includes/admin-main.php +++ b/wp-content/plugins/event-list/admin/includes/admin-main.php @@ -1,174 +1,199 @@ <?php -if(!defined('WP_ADMIN')) { +if ( ! defined( 'WP_ADMIN' ) ) { exit; } -require_once(EL_PATH.'includes/options.php'); -require_once(EL_PATH.'includes/events_post_type.php'); -require_once(EL_PATH.'includes/filterbar.php'); -require_once(EL_PATH.'includes/daterange.php'); -require_once(EL_PATH.'includes/event.php'); +require_once EL_PATH . 'includes/options.php'; +require_once EL_PATH . 'includes/events_post_type.php'; +require_once EL_PATH . 'includes/filterbar.php'; +require_once EL_PATH . 'includes/daterange.php'; +require_once EL_PATH . 'includes/event.php'; /** * This class handles all data for the admin main page */ class EL_Admin_Main { + private static $instance; + private $options; + private $events_post_type; + private $filterbar; + /** + * Is the trash page displayed? + * + * @var bool + */ + private $is_trash; + + public static function &get_instance() { // Create class instance if required - if(!isset(self::$instance)) { + if ( ! isset( self::$instance ) ) { self::$instance = new self(); } // Return class instance return self::$instance; } + private function __construct() { - $this->options = &EL_Options::get_instance(); + $this->options = &EL_Options::get_instance(); $this->events_post_type = &EL_Events_Post_Type::get_instance(); - $this->filterbar = &EL_Filterbar::get_instance(); - add_action('manage_posts_custom_column', array(&$this, 'events_custom_columns'), 10, 2); - add_filter('manage_edit-el_events_columns', array(&$this, 'events_edit_columns')); - add_filter('manage_edit-el_events_sortable_columns', array(&$this, 'events_sortable_columns')); - add_filter('request', array(&$this, 'sort_events')); - add_filter('post_row_actions',array(&$this, 'add_action_row_elements'), 10, 2); - add_filter('disable_months_dropdown', '__return_true'); - add_filter('disable_categories_dropdown', '__return_true'); - add_action('restrict_manage_posts', array(&$this, 'add_table_filters')); - add_filter('parse_query', array(&$this, 'filter_request')); - add_filter('posts_results', array(&$this, 'check_events_results')); - add_action('load-edit.php', array(&$this, 'set_default_posts_list_mode')); - add_action('admin_print_scripts', array(&$this, 'embed_scripts')); - add_action('admin_head', array(&$this, 'add_import_button')); + $this->filterbar = &EL_Filterbar::get_instance(); + // phpcs:ignore WordPress.Security.NonceVerification.Recommended + $this->is_trash = isset( $_REQUEST['post_status'] ) && 'trash' === $_REQUEST['post_status']; + add_action( 'manage_posts_custom_column', array( &$this, 'events_custom_columns' ), 10, 2 ); + add_filter( 'manage_edit-el_events_columns', array( &$this, 'events_edit_columns' ) ); + add_filter( 'manage_edit-el_events_sortable_columns', array( &$this, 'events_sortable_columns' ) ); + add_filter( 'request', array( &$this, 'sort_events' ) ); + add_filter( 'post_row_actions', array( &$this, 'add_action_row_elements' ), 10, 2 ); + add_filter( 'disable_months_dropdown', '__return_true' ); + add_filter( 'disable_categories_dropdown', '__return_true' ); + add_action( 'restrict_manage_posts', array( &$this, 'add_table_filters' ) ); + add_filter( 'parse_query', array( &$this, 'filter_request' ) ); + add_filter( 'posts_results', array( &$this, 'check_events_results' ) ); + add_action( 'load-edit.php', array( &$this, 'set_default_posts_list_mode' ) ); + add_action( 'admin_print_scripts', array( &$this, 'embed_scripts' ) ); + add_action( 'admin_head', array( &$this, 'add_import_button' ) ); } + /** ************************************************************************ - * This method dictates the table's columns and titles. This should returns - * an array where the key is the column slug (and class) and the value is - * the column's title text. - * - * @see WP_List_Table::::single_row_columns() - * @return array An associative array containing column information: 'slugs'=>'Visible Titles' - ***************************************************************************/ - public function events_edit_columns($columns) { + * This method dictates the table's columns and titles. This should returns + * an array where the key is the column slug (and class) and the value is + * the column's title text. + * + * @see WP_List_Table::::single_row_columns() + * @return array An associative array containing column information: 'slugs'=>'Visible Titles' + ***************************************************************************/ + public function events_edit_columns( $columns ) { return array( - 'cb' => '<input type="checkbox" />', //Render a checkbox instead of text - 'eventdate' => __('Event Date','event-list'), - 'title' => __('Title','event-list'), - 'location' => __('Location','event-list'), - 'taxonomy-'.$this->events_post_type->taxonomy => __('Categories'), - 'author' => __('Author','event-list'), - 'date' => __('Date') + 'cb' => '<input type="checkbox" />', // Render a checkbox instead of text + 'eventdate' => __( 'Event Date', 'event-list' ), + 'title' => __( 'Title', 'event-list' ), + 'location' => __( 'Location', 'event-list' ), + 'taxonomy-' . $this->events_post_type->taxonomy => __( 'Categories' ), + 'author' => __( 'Author', 'event-list' ), + 'date' => __( 'Date' ), ); } - public function events_custom_columns($column_name, $pid) { - switch($column_name) { + + public function events_custom_columns( $column_name, $pid ) { + switch ( $column_name ) { case 'eventdate': - $event = new EL_Event($pid); - echo $this->format_event_date($event->startdate, $event->enddate, $event->starttime_i18n()); + $event = new EL_Event( $pid ); + echo $this->format_event_date( $event->startdate, $event->enddate, $event->starttime_i18n() ); break; case 'location': - $event = new EL_Event($pid); + $event = new EL_Event( $pid ); echo $event->location; break; } } - public function events_sortable_columns($columns) { + + public function events_sortable_columns( $columns ) { $columns['eventdate'] = 'eventdate'; - $columns['location'] = 'location'; - $columns['author'] = 'author'; + $columns['location'] = 'location'; + $columns['author'] = 'author'; return $columns; } - public function sort_events($args) { + + public function sort_events( $args ) { // Set default order to 'eventdate' of no other sorting is set - if(!isset($args['orderby'])) { + if ( ! isset( $args['orderby'] ) ) { $args['orderby'] = 'eventdate'; - $args['order'] = 'asc'; + $args['order'] = 'asc'; } - $add_args=array(); - switch($args['orderby']) { + $add_args = array(); + switch ( $args['orderby'] ) { case 'eventdate': $add_args = array( - 'meta_key' => 'startdate', + 'meta_key' => 'startdate', 'meta_query' => array( - 'relation' => 'AND', - 'startdate' => array('key' => 'startdate'), - 'starttime' => array('key' => 'starttime'), - 'enddate' => array('key' => 'enddate') + 'relation' => 'AND', + 'startdate' => array( 'key' => 'startdate' ), + 'starttime' => array( 'key' => 'starttime' ), + 'enddate' => array( 'key' => 'enddate' ), ), - 'orderby' => array( + 'orderby' => array( 'startdate' => $args['order'], 'starttime' => $args['order'], - 'enddate' => $args['order'] - ) + 'enddate' => $args['order'], + ), ); break; case 'location': $add_args = array( - 'meta_key' => 'location' + 'meta_key' => 'location', ); break; } - if(!empty($add_args)) { - $args = array_merge($args, $add_args); + if ( ! empty( $add_args ) ) { + $args = array_merge( $args, $add_args ); } return $args; } - public function add_action_row_elements($actions, $post) { - $actions['copy'] = '<a href="'.admin_url(add_query_arg('copy', $post->ID, 'post-new.php?post_type=el_events')).'" aria-label="'.sprintf(__('Add a copy of %1$s','event-list'), '„'.$post->post_title.'“').'">'.__('Copy','event-list').'</a>'; + + public function add_action_row_elements( $actions, $post ) { + if ( ! $this->is_trash ) { + $actions['copy'] = '<a href="' . admin_url( add_query_arg( 'copy', $post->ID, 'post-new.php?post_type=el_events' ) ) . + '" aria-label="' . sprintf( __( 'Add a copy of %1$s', 'event-list' ), '„' . $post->post_title . '“' ) . '">' . __( 'Copy', 'event-list' ) . '</a>'; + } + return $actions; } + public function add_table_filters() { global $cat; // check used get parameters // set default date ("upcoming" for All, Published; "all" for everything else) - $selected_status = isset($_GET['post_status']) ? sanitize_key($_GET['post_status']) : 'publish'; - $default_date = 'publish' === $selected_status ? 'upcoming' : 'all'; - $args['selected_date'] = isset($_GET['date']) ? sanitize_key($_GET['date']) : $default_date; - + $selected_status = isset( $_GET['post_status'] ) ? sanitize_key( $_GET['post_status'] ) : 'publish'; + $default_date = 'publish' === $selected_status ? 'upcoming' : 'all'; + $args['selected_date'] = isset( $_GET['date'] ) ? sanitize_key( $_GET['date'] ) : $default_date; // date filter - echo($this->filterbar->show_years(admin_url('edit.php?post_type=el_events'), $args, 'dropdown', array('show_past' => true))); + echo( $this->filterbar->show_years( admin_url( 'edit.php?post_type=el_events' ), $args, 'dropdown', array( 'show_past' => true ) ) ); // cat filter $cat_args = array( - 'show_option_all' => __('All Categories'), - 'taxonomy' => $this->events_post_type->taxonomy, - 'orderby' => 'name', - 'hierarchical' => true, + 'show_option_all' => __( 'All Categories' ), + 'taxonomy' => $this->events_post_type->taxonomy, + 'orderby' => 'name', + 'hierarchical' => true, ); // additional parameters required if a seperate taxonomy is used - if(!$this->events_post_type->use_post_categories) { + if ( ! $this->events_post_type->use_post_categories ) { // check used get parameters - $selected_cat = isset($_GET['cat']) ? sanitize_key($_GET['cat']) : ''; + $selected_cat = isset( $_GET['cat'] ) ? sanitize_key( $_GET['cat'] ) : ''; $cat_args['value_field'] = 'slug'; - $cat_args['selected'] = $selected_cat; - + $cat_args['selected'] = $selected_cat; } - wp_dropdown_categories($cat_args); + wp_dropdown_categories( $cat_args ); } - public function filter_request($query) { - // check used get parameters - $selected_date = isset($_GET['date']) ? sanitize_key($_GET['date']) : 'upcoming'; - $meta_query = array('relation' => 'AND'); + public function filter_request( $query ) { + // Check used get parameters + $default_date = $this->is_trash ? 'all' : 'upcoming'; + $selected_date = isset( $_GET['date'] ) ? sanitize_key( $_GET['date'] ) : $default_date; + + $meta_query = array( 'relation' => 'AND' ); // date filter - $date_for_startrange = ('' == $this->options->get('el_multiday_filterrange')) ? 'startdate' : 'enddate'; - $date_range = EL_Daterange::get_instance()->check_daterange_format($selected_date); - if(empty($date_range)) { - $date_range = EL_Daterange::get_instance()->check_date_format($selected_date); + $date_for_startrange = ( '' == $this->options->get( 'el_multiday_filterrange' ) ) ? 'startdate' : 'enddate'; + $date_range = EL_Daterange::get_instance()->check_daterange_format( $selected_date ); + if ( empty( $date_range ) ) { + $date_range = EL_Daterange::get_instance()->check_date_format( $selected_date ); } - $meta_query[] = array( + $meta_query[] = array( 'relation' => 'AND', array( 'key' => $date_for_startrange, @@ -179,77 +204,84 @@ class EL_Admin_Main { 'key' => 'startdate', 'value' => $date_range[1], 'compare' => '<', - ) + ), ); $query->query_vars['meta_query'] = $meta_query; // adaptions for taxonomy filter if a seperate taxonomy is used (no adaptions required if post categories are used) - if(!$this->events_post_type->use_post_categories) { + if ( ! $this->events_post_type->use_post_categories ) { // check used get parameters - $selected_cat = isset($_GET['cat']) ? sanitize_key($_GET['cat']) : ''; + $selected_cat = isset( $_GET['cat'] ) ? sanitize_key( $_GET['cat'] ) : ''; - $query->query_vars['cat'] = false; - $query->query_vars[$this->events_post_type->taxonomy] = $selected_cat; + $query->query_vars['cat'] = false; + $query->query_vars[ $this->events_post_type->taxonomy ] = $selected_cat; } } - /* Reload the page to show all events when: + + /* + Reload the page to show all events when: * - published events are selected * - no specific date is selected * - no upcoming events are available */ - public function check_events_results($events) { - $selected_status = isset($_GET['post_status']) ? sanitize_key($_GET['post_status']) : 'publish'; - $date_selected = isset($_GET['date']); - if('publish' === $selected_status && !$date_selected && !count($events)) { - wp_safe_redirect(add_query_arg('date', 'all')); + public function check_events_results( $events ) { + $selected_status = isset( $_GET['post_status'] ) ? sanitize_key( $_GET['post_status'] ) : 'publish'; + $date_selected = isset( $_GET['date'] ); + if ( 'publish' === $selected_status && ! $date_selected && ! count( $events ) ) { + wp_safe_redirect( add_query_arg( 'date', 'all' ) ); exit; } return $events; } + public function set_default_posts_list_mode() { // check used get parameters - $post_type = isset($_GET['post_type']) ? sanitize_key($_GET['post_type']) : ''; - $mode = isset($_REQUEST['mode']) ? sanitize_title($_REQUEST['mode']) : ''; + $post_type = isset( $_GET['post_type'] ) ? sanitize_key( $_GET['post_type'] ) : ''; + $mode = isset( $_REQUEST['mode'] ) ? sanitize_title( $_REQUEST['mode'] ) : ''; - if('el_events' === $post_type && empty($_REQUEST['mode'])) { - $_REQUEST['mode'] = 'excerpt'; + if ( 'el_events' === $post_type && empty( $_REQUEST['mode'] ) ) { + $_REQUEST['mode'] = 'excerpt'; } } + public function embed_scripts() { - wp_enqueue_style('eventlist_admin_main', EL_URL.'admin/css/admin_main.css'); + wp_enqueue_style( 'eventlist_admin_main', EL_URL . 'admin/css/admin_main.css' ); } + public function add_import_button() { echo ' - <script>jQuery(document).ready(function($) { items = $("a.page-title-action").length ? $("a.page-title-action") : $("a.add-new-h2"); '. - 'items.first().after(\'<a href="'.admin_url('edit.php?post_type=el_events&page=el_admin_import').'" class="add-new-h2">'.__('Import','event-list').'</a>\'); });</script>'; + <script>jQuery(document).ready(function($) { items = $("a.page-title-action").length ? $("a.page-title-action") : $("a.add-new-h2"); ' . + 'items.first().after(\'<a href="' . admin_url( 'edit.php?post_type=el_events&page=el_admin_import' ) . '" class="add-new-h2">' . __( 'Import', 'event-list' ) . '</a>\'); });</script>'; } + /** ************************************************************************ - * In this function the start date, the end date and time is formated for - * the output. - * - * @param string $startdate The start date of the event - * @param string $enddate The end date of the event - * @param string $starttime The start time of the event - ***************************************************************************/ - private function format_event_date($startdate, $enddate, $starttime) { + * In this function the start date, the end date and time is formated for + * the output. + * + * @param string $startdate The start date of the event + * @param string $enddate The end date of the event + * @param string $starttime The start time of the event + ***************************************************************************/ + private function format_event_date( $startdate, $enddate, $starttime ) { $out = '<span style="white-space:nowrap;">'; // start date - $out .= mysql2date(__('Y/m/d'), $startdate); + $out .= mysql2date( __( 'Y/m/d' ), $startdate ); // end date for multiday event - if($startdate !== $enddate) { - $out .= ' -<br />'.mysql2date(__('Y/m/d'), $enddate); + if ( $startdate !== $enddate ) { + $out .= ' -<br />' . mysql2date( __( 'Y/m/d' ), $enddate ); } // event starttime - if('' !== $starttime) { + if ( '' !== $starttime ) { $out .= '<br /> - <span class="starttime">'.esc_html($starttime).'</span>'; + <span class="starttime">' . esc_html( $starttime ) . '</span>'; } $out .= '</span>'; return $out; } + } -?> + diff --git a/wp-content/plugins/event-list/admin/includes/admin-new.php b/wp-content/plugins/event-list/admin/includes/admin-new.php index 2219470caf0b8127a302bf90340333328dfdd58f..4976432dba456bff8c45dbb997a12ab662e05942 100644 --- a/wp-content/plugins/event-list/admin/includes/admin-new.php +++ b/wp-content/plugins/event-list/admin/includes/admin-new.php @@ -1,223 +1,261 @@ <?php -if(!defined('WP_ADMIN')) { +if ( ! defined( 'WP_ADMIN' ) ) { exit; } -require_once(EL_PATH.'includes/options.php'); -require_once(EL_PATH.'includes/event.php'); +require_once EL_PATH . 'includes/options.php'; +require_once EL_PATH . 'includes/event.php'; /** -* This class handles all data for the admin new event page -*/ + * This class handles all data for the admin new event page + */ class EL_Admin_New { + private static $instance; + private $options; + private $is_new; + private $copy_event = null; + public static function &get_instance() { // Create class instance if required - if(!isset(self::$instance)) { + if ( ! isset( self::$instance ) ) { self::$instance = new self(); } // Return class instance return self::$instance; } + private function __construct() { // check used get parameters - $action = isset($_GET['action']) ? sanitize_key($_GET['action']) : ''; - $copy = isset($_GET['copy']) ? intval($_GET['copy']) : 0; - if(!empty($copy)) { - $this->copy_event = new EL_Event($copy); - add_filter('get_object_terms', array(&$this, 'set_copied_categories')); + $action = isset( $_GET['action'] ) ? sanitize_key( $_GET['action'] ) : ''; + $copy = isset( $_GET['copy'] ) ? intval( $_GET['copy'] ) : 0; + if ( ! empty( $copy ) ) { + $this->copy_event = new EL_Event( $copy ); + add_filter( 'get_object_terms', array( &$this, 'set_copied_categories' ) ); } $this->options = &EL_Options::get_instance(); - $this->is_new = 'edit' !== $action; - - add_action('add_meta_boxes', array(&$this, 'add_eventdata_metabox')); - add_action('edit_form_top', array(&$this, 'form_top_content')); - add_action('edit_form_after_title', array(&$this, 'form_after_title_content')); - add_action('admin_print_scripts', array(&$this, 'embed_scripts')); - add_action('save_post_el_events', array(&$this, 'save_eventdata'), 10, 3); - add_filter('enter_title_here', array(&$this, 'change_default_title')); - add_filter('post_updated_messages', array(&$this, 'updated_messages')); + $this->is_new = 'edit' !== $action; + + add_action( 'add_meta_boxes', array( &$this, 'add_eventdata_metabox' ) ); + add_action( 'edit_form_top', array( &$this, 'form_top_content' ) ); + add_action( 'edit_form_after_title', array( &$this, 'form_after_title_content' ) ); + add_action( 'admin_print_scripts', array( &$this, 'embed_scripts' ) ); + add_action( 'save_post_el_events', array( &$this, 'save_eventdata' ), 10, 3 ); + add_filter( 'enter_title_here', array( &$this, 'change_default_title' ) ); + add_filter( 'post_updated_messages', array( &$this, 'updated_messages' ) ); } - public function add_eventdata_metabox($post_type) { + + public function add_eventdata_metabox( $post_type ) { add_meta_box( 'el_event_edit_meta', - __('Event data','event-list'), - array(&$this, 'render_eventdata_metabox'), + __( 'Event data', 'event-list' ), + array( &$this, 'render_eventdata_metabox' ), $post_type, 'primary', 'high' ); } + public function render_eventdata_metabox() { global $post; - if($this->is_new && empty($this->copy_event)) { + if ( $this->is_new && empty( $this->copy_event ) ) { // set next day as date - $startdate = current_time('timestamp')+86400; // next day (86400 seconds = 1*24*60*60 = 1 day); - $enddate = $startdate; + $startdate = current_time( 'timestamp' ) + 86400; // next day (86400 seconds = 1*24*60*60 = 1 day); + $enddate = $startdate; $starttime = ''; - $location = ''; - } - else { + $location = ''; + } else { // set existing eventdata - $event = $this->is_new ? $this->copy_event : new EL_Event($post); - $startdate = strtotime($event->startdate); - $enddate = strtotime($event->enddate); - $starttime = esc_html($event->starttime); - $location = esc_html($event->location); + $event = $this->is_new ? $this->copy_event : new EL_Event( $post ); + $startdate = strtotime( $event->startdate ); + $enddate = strtotime( $event->enddate ); + $starttime = esc_html( $event->starttime ); + $location = esc_html( $event->location ); } // Add required data for javascript in a hidden field - $json = json_encode(array('el_date_format' => $this->datepicker_format($this->get_event_dateformat()), - 'el_start_of_week' => get_option('start_of_week'), - 'el_copy_url' => $this->is_new ? '' : admin_url(add_query_arg(array('copy'=>$post->ID), 'post-new.php?post_type=el_events')), - 'el_copy_text' => $this->is_new ? '' : __('Add Copy','event-list'))); + $json = json_encode( + array( + 'el_date_format' => $this->datepicker_format( $this->get_event_dateformat() ), + 'el_start_of_week' => get_option( 'start_of_week' ), + 'el_copy_url' => $this->is_new ? '' : admin_url( add_query_arg( array( 'copy' => $post->ID ), 'post-new.php?post_type=el_events' ) ), + 'el_copy_text' => $this->is_new ? '' : __( + 'Add Copy', + 'event-list' + ), + ) + ); // HTML output (single quotes required for json value due to json layout) echo ' - <input type="hidden" id="json_for_js" value=\''.$json.'\' /> - <label class="event-option">'.__('Date','event-list').' ('.__('required','event-list').'):</label> - <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> - <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> - <label class="el-inline-checkbox"><input type="checkbox" name="multiday" id="multiday" value="1" /> '.__('Multi-Day Event','event-list').'</label> + <input type="hidden" id="json_for_js" value=\'' . $json . '\' /> + <label class="event-option">' . __( 'Date', 'event-list' ) . ' (' . __( 'required', 'event-list' ) . '):</label> + <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> + <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> + <label class="el-inline-checkbox"><input type="checkbox" name="multiday" id="multiday" value="1" /> ' . __( 'Multi-Day Event', 'event-list' ) . '</label> <input type="hidden" id="startdate-iso" name="startdate-iso" value="" /> <input type="hidden" id="enddate-iso" name="enddate-iso" value="" /> </div> - <label class="event-option">'.__('Time','event-list').':</label> - <div class="event-data"><input type="text" class="text" name="starttime" id="starttime" value="'.$starttime.'" /></div> - <label class="event-option">'.__('Location','event-list').':</label> - <div class="event-data"><input type="text" class="text" name="location" id="location" value="'.$location.'" /></div>'; + <label class="event-option">' . __( 'Time', 'event-list' ) . ':</label> + <div class="event-data"><input type="text" class="text" name="starttime" id="starttime" value="' . $starttime . '" /></div> + <label class="event-option">' . __( 'Location', 'event-list' ) . ':</label> + <div class="event-data"><input type="text" class="text" name="location" id="location" value="' . $location . '" /></div>'; } + public function form_top_content() { // set post values if an event gets copied - if(!empty($this->copy_event)) { + if ( ! empty( $this->copy_event ) ) { global $post; - $post->post_title = $this->copy_event->title; + $post->post_title = $this->copy_event->title; $post->post_content = $this->copy_event->content; } // show label for event title echo ' - <label class="event-option">'.__('Event Title','event-list').':</label>'; + <label class="event-option">' . __( 'Event Title', 'event-list' ) . ':</label>'; } + public function form_after_title_content() { global $post, $wp_meta_boxes; // create "primary" metabox container, show all "primary" metaboxes in that container and unset the "primary" metaboxes afterwards echo ' <div id="postbox-container-0" class="postbox-container">'; - do_meta_boxes(get_current_screen(), 'primary', $post); - unset($wp_meta_boxes[get_post_type('post')]['primary']); + do_meta_boxes( get_current_screen(), 'primary', $post ); + unset( $wp_meta_boxes[ get_post_type( 'post' ) ]['primary'] ); echo ' </div>'; // show label for event content echo ' - <label class="event-option">'.__('Event Content','event-list').':</label>'; + <label class="event-option">' . __( 'Event Content', 'event-list' ) . ':</label>'; } + public function embed_scripts() { - wp_enqueue_script('jquery-ui-datepicker'); - wp_enqueue_script('eventlist_admin_new_js', EL_URL.'admin/js/admin_new.js'); - // TODO: wp_localize_jquery_ui_datepicker is available since wordpress version 4.6.0. - // For compatibility to older versions the function_exists test was added, this test can be removed again in a later version. - if(function_exists('wp_localize_jquery_ui_datepicker')) { + wp_enqueue_script( 'jquery-ui-datepicker' ); + wp_enqueue_script( 'eventlist_admin_new_js', EL_URL . 'admin/js/admin_new.js' ); + // TODO: wp_localize_jquery_ui_datepicker is available since WordPress version 4.6.0. + // For compatibility to older versions the function_exists test was added, this test can be removed again in a later version. + if ( function_exists( 'wp_localize_jquery_ui_datepicker' ) ) { wp_localize_jquery_ui_datepicker(); } - wp_enqueue_style('eventlist_admin_new', EL_URL.'admin/css/admin_new.css'); + wp_enqueue_style( 'eventlist_admin_new', EL_URL . 'admin/css/admin_new.css' ); // add the jquery-ui style "smooth" (see https://jqueryui.com/download/) (required for the xwp datepicker skin) - wp_enqueue_style('eventlist_jqueryui', EL_URL.'admin/css/jquery-ui.min.css'); + wp_enqueue_style( 'eventlist_jqueryui', EL_URL . 'admin/css/jquery-ui.min.css' ); // add the xwp datepicker skin (see https://github.com/xwp/wp-jquery-ui-datepicker-skins) - wp_enqueue_style('eventlist_datepicker', EL_URL.'admin/css/jquery-ui-datepicker.css'); + wp_enqueue_style( 'eventlist_datepicker', EL_URL . 'admin/css/jquery-ui-datepicker.css' ); } - public function save_eventdata($pid, $post, $update) { + + public function save_eventdata( $pid, $post, $update ) { // don't do on autosave or when new posts are first created - if((defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) || 'auto-draft' === $post->post_status) { + if ( ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) || 'auto-draft' === $post->post_status ) { return $pid; } $eventdata = $_POST; // provide iso start- and end-date - if(!empty($eventdata['startdate-iso'])) { + if ( ! empty( $eventdata['startdate-iso'] ) ) { $eventdata['startdate'] = $eventdata['startdate-iso']; } - if(!empty($eventdata['enddate-iso'])) { + if ( ! empty( $eventdata['enddate-iso'] ) ) { $eventdata['enddate'] = $eventdata['enddate-iso']; } // set end_date to start_date if multiday is not selected - if(empty($eventdata['multiday'])) { + if ( empty( $eventdata['multiday'] ) ) { $eventdata['enddate'] = $eventdata['startdate']; } - return (bool)EL_Event::save_postmeta($pid, $eventdata); + return (bool) EL_Event::save_postmeta( $pid, $eventdata ); } + private function get_event_dateformat() { - if('' == $this->options->get('el_edit_dateformat')) { - return __('Y/m/d'); - } - else { - return $this->options->get('el_edit_dateformat'); + if ( '' == $this->options->get( 'el_edit_dateformat' ) ) { + return __( 'Y/m/d' ); + } else { + return $this->options->get( 'el_edit_dateformat' ); } } - public function change_default_title($title) { + + public function change_default_title( $title ) { // Delete default title in text field (not required due to additional lable above the title field) return ''; } - public function updated_messages($messages) { - // check used get parameters - $revision = isset($_GET['revision']) ? intval($_GET['revision']) : null; + + public function updated_messages( $messages ) { + // check used get parameters + $revision = isset( $_GET['revision'] ) ? intval( $_GET['revision'] ) : null; global $post, $post_ID; $messages['el_events'] = array( 0 => '', // Unused. Messages start at index 1. - 1 => __('Event updated.','event-list').' <a href="'.esc_url(get_permalink($post_ID)).'">'.__('View event','event-list').'</a>', + 1 => __( 'Event updated.', 'event-list' ) . ' <a href="' . esc_url( get_permalink( $post_ID ) ) . '">' . __( 'View event', 'event-list' ) . '</a>', 2 => '', // Custom field updated is not required (no custom fields) 3 => '', // Custom field deleted is not required (no custom fields) - 4 => __('Event updated.','event-list'), - 5 => is_null($revision) ? false : sprintf(__('Event restored to revision from %1$s','event-list'), wp_post_revision_title($revision, false)), - 6 => __('Event published.','event-list').' <a href="'.esc_url(get_permalink($post_ID)).'">'.__('View event','event-list').'</a>', - 7 => __('Event saved.'), - 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>', - 9 => sprintf(__('Event scheduled for: %1$s>','event-list'), '<strong>'.date_i18n(__('M j, Y @ G:i'), strtotime($post->post_date)).'</strong>'). - ' <a target="_blank" href="'.esc_url(get_permalink($post_ID)).'">'.__('Preview event','event-list').'</a>', - 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>', + 4 => __( 'Event updated.', 'event-list' ), + 5 => is_null( $revision ) ? false : sprintf( __( 'Event restored to revision from %1$s', 'event-list' ), wp_post_revision_title( $revision, false ) ), + 6 => __( 'Event published.', 'event-list' ) . ' <a href="' . esc_url( get_permalink( $post_ID ) ) . '">' . __( 'View event', 'event-list' ) . '</a>', + 7 => __( 'Event saved.' ), + 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>', + 9 => sprintf( __( 'Event scheduled for: %1$s>', 'event-list' ), '<strong>' . date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post->post_date ) ) . '</strong>' ) . + ' <a target="_blank" href="' . esc_url( get_permalink( $post_ID ) ) . '">' . __( 'Preview event', 'event-list' ) . '</a>', + 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>', ); return $messages; } - public function set_copied_categories($categories) { - if(empty($categories)) { - $categories = array_merge($categories, $this->copy_event->get_category_ids()); + + public function set_copied_categories( $categories ) { + if ( empty( $categories ) ) { + $categories = array_merge( $categories, $this->copy_event->get_category_ids() ); } return $categories; } + /** * Convert a date format to a jQuery UI DatePicker format * * @param string $format a date format * @return string */ - private function datepicker_format($format) { + private function datepicker_format( $format ) { return str_replace( array( - 'd', 'j', 'l', 'z', // Day. - 'F', 'M', 'n', 'm', // Month. - 'Y', 'y' // Year. + 'd', + 'j', + 'l', + 'z', // Day. + 'F', + 'M', + 'n', + 'm', // Month. + 'Y', + 'y', // Year. ), array( - 'dd', 'd', 'DD', 'o', - 'MM', 'M', 'm', 'mm', - 'yy', 'y' + 'dd', + 'd', + 'DD', + 'o', + 'MM', + 'M', + 'm', + 'mm', + 'yy', + 'y', ), - $format); + $format + ); } + } -?> + diff --git a/wp-content/plugins/event-list/admin/includes/admin-settings.php b/wp-content/plugins/event-list/admin/includes/admin-settings.php index 6f69b7aad5bea2bee020de10c04db82300410125..108e595cdf90cc993f173799f98ffb30b4dc5580 100644 --- a/wp-content/plugins/event-list/admin/includes/admin-settings.php +++ b/wp-content/plugins/event-list/admin/includes/admin-settings.php @@ -1,100 +1,113 @@ <?php -if(!defined('WP_ADMIN')) { +if ( ! defined( 'WP_ADMIN' ) ) { exit; } -require_once(EL_PATH.'includes/options.php'); -require_once(EL_PATH.'admin/includes/admin-functions.php'); +require_once EL_PATH . 'includes/options.php'; +require_once EL_PATH . 'admin/includes/admin-functions.php'; // This class handles all data for the admin settings page class EL_Admin_Settings { + private static $instance; + private $options; + private $functions; + public static function &get_instance() { // Create class instance if required - if(!isset(self::$instance)) { + if ( ! isset( self::$instance ) ) { self::$instance = new self(); } // Return class instance return self::$instance; } + private function __construct() { - $this->options = &EL_Options::get_instance(); + $this->options = &EL_Options::get_instance(); $this->functions = &EL_Admin_Functions::get_instance(); } - public function show_settings () { - if(!current_user_can('manage_options')) { - wp_die(__('You do not have sufficient permissions to access this page.')); + + public function show_settings() { + if ( ! current_user_can( 'manage_options' ) ) { + wp_die( __( 'You do not have sufficient permissions to access this page.' ) ); } // check used get parameters - $tab = isset($_GET['tab']) ? sanitize_key($_GET['tab']) : 'general'; - $settings_updated = isset($_GET['settings-updated']) ? sanitize_key($_GET['settings-updated']) : ''; + $tab = isset( $_GET['tab'] ) ? sanitize_key( $_GET['tab'] ) : 'general'; + $settings_updated = isset( $_GET['settings-updated'] ) ? sanitize_key( $_GET['settings-updated'] ) : ''; $out = ''; // check for changed settings - if('true' === $settings_updated) { + if ( 'true' === $settings_updated ) { // show "settings saved" message $out .= '<div id="message" class="updated"> - <p><strong>'.__('Settings saved.').'</strong></p> + <p><strong>' . __( 'Settings saved.' ) . '</strong></p> </div>'; - switch($tab) { + switch ( $tab ) { case 'frontend': // flush rewrite rules (required if permalink slug was changed) flush_rewrite_rules(); break; case 'feed': // update feed rewrite status if required - require_once(EL_PATH.'includes/feed.php'); - EL_Feed::get_instance()->update_feed_rewrite_status(); + require_once EL_PATH . 'includes/rss.php'; + EL_Rss::get_instance()->update_rewrite_status(); + require_once EL_PATH . 'includes/ical.php'; + EL_ICal::get_instance()->update_ical_rewrite_status(); break; case 'taxonomy': // update category count - require_once(EL_PATH.'admin/includes/event-category_functions.php'); + require_once EL_PATH . 'admin/includes/event-category_functions.php'; EL_Event_Category_Functions::get_instance()->update_cat_count(); break; } } // normal output - $out.= ' + $out .= ' <div class="wrap"> - <div id="icon-edit-pages" class="icon32"><br /></div><h2>'.__('Event List Settings','event-list').'</h2>'; - $out .= $this->show_tabs($tab); - $out .= '<div id="posttype-page" class="posttypediv">'; + <div id="icon-edit-pages" class="icon32"><br /></div><h2>' . __( 'Event List Settings', 'event-list' ) . '</h2>'; + $out .= $this->show_tabs( $tab ); + $out .= '<div id="posttype-page" class="posttypediv">'; $options = array(); - if('taxonomy' === $tab) { - $options['page'] = admin_url('edit.php?post_type=el_events&page=el_admin_cat_sync&switch_taxonomy=1'); - $options['button_text'] = __('Go to Event Category switching page','event-list'); - $options['button_class'] = __('secondary'); + if ( 'taxonomy' === $tab ) { + $options['page'] = admin_url( 'edit.php?post_type=el_events&page=el_admin_cat_sync&switch_taxonomy=1' ); + $options['button_text'] = __( 'Go to Event Category switching page', 'event-list' ); + $options['button_class'] = __( 'secondary' ); } - $out .= $this->functions->show_option_form($tab, $options); + $out .= $this->functions->show_option_form( $tab, $options ); $out .= ' </div> </div>'; echo $out; } - private function show_tabs($current = 'category') { - $tabs = array('general' => __('General','event-list'), - 'frontend' => __('Frontend Settings','event-list'), - 'admin' => __('Admin Page Settings','event-list'), - 'feed' => __('Feed Settings','event-list'), - 'taxonomy' => __('Category Taxonomy','event-list')); - $out = '<h3 class="nav-tab-wrapper">'; - foreach($tabs as $tab => $name) { - $class = ($tab == $current) ? ' nav-tab-active' : ''; - $out .= '<a class="nav-tab'.$class.'" href="'.remove_query_arg('settings-updated', add_query_arg('tab', $tab)).'">'.$name.'</a>'; + + private function show_tabs( $current = 'category' ) { + $tabs = array( + 'general' => __( 'General', 'event-list' ), + 'frontend' => __( 'Frontend Settings', 'event-list' ), + 'admin' => __( 'Admin Page Settings', 'event-list' ), + 'feed' => __( 'Feed Settings', 'event-list' ), + 'taxonomy' => __( 'Category Taxonomy', 'event-list' ), + ); + $out = '<h3 class="nav-tab-wrapper">'; + foreach ( $tabs as $tab => $name ) { + $class = ( $tab == $current ) ? ' nav-tab-active' : ''; + $out .= '<a class="nav-tab' . $class . '" href="' . remove_query_arg( 'settings-updated', add_query_arg( 'tab', $tab ) ) . '">' . $name . '</a>'; } $out .= '</h3>'; return $out; } + public function embed_settings_scripts() { - wp_enqueue_style('eventlist_admin_settings', EL_URL.'admin/css/admin_settings.css'); + wp_enqueue_style( 'eventlist_admin_settings', EL_URL . 'admin/css/admin_settings.css' ); } + } -?> + diff --git a/wp-content/plugins/event-list/admin/includes/event-category_functions.php b/wp-content/plugins/event-list/admin/includes/event-category_functions.php index a1a65e43eca48f91b95364c1e313c4ed31ed3c97..df0aea3b5a24f82c29d68e984fab49a2f968eb56 100644 --- a/wp-content/plugins/event-list/admin/includes/event-category_functions.php +++ b/wp-content/plugins/event-list/admin/includes/event-category_functions.php @@ -1,79 +1,97 @@ <?php -if(!defined('WP_ADMIN')) { +if ( ! defined( 'WP_ADMIN' ) ) { exit; } -require_once(EL_PATH.'includes/events_post_type.php'); -require_once(EL_PATH.'includes/events.php'); +require_once EL_PATH . 'includes/events_post_type.php'; +require_once EL_PATH . 'includes/events.php'; // This class handles general functions which can be used on different admin pages class EL_Event_Category_Functions { + private static $instance; + private $events_post_type; + private $events; + public static function &get_instance() { // Create class instance if required - if(!isset(self::$instance)) { + if ( ! isset( self::$instance ) ) { self::$instance = new self(); } // Return class instance return self::$instance; } + private function __construct() { $this->events_post_type = &EL_Events_Post_Type::get_instance(); - $this->events = &EL_Events::get_instance(); + $this->events = &EL_Events::get_instance(); } - public function get_sync_affected_cats($direction, $types=array('to_add', 'to_del', 'to_mod')) { - if('to_event_cats' === $direction) { + + public function get_sync_affected_cats( $direction, $types = array( 'to_add', 'to_del', 'to_mod' ) ) { + if ( 'to_event_cats' === $direction ) { $this->register_event_category_taxonomy(); } // prepare category slugs for comparison - $post_cats = get_categories(array('type'=>'post', 'orderby'=>'parent', 'hide_empty'=>0)); - $event_cats = $this->get_event_cats(array('taxonomy'=>$this->events_post_type->event_cat_taxonomy, 'orderby'=>'parent', 'hide_empty'=>false)); - $post_cat_slugs = wp_list_pluck($post_cats, 'slug'); - $event_cat_slugs = wp_list_pluck($event_cats, 'slug'); - if('to_post_cats' === $direction) { + $post_cats = get_categories( + array( + 'type' => 'post', + 'orderby' => 'parent', + 'hide_empty' => 0, + ) + ); + $event_cats = $this->get_event_cats( + array( + 'taxonomy' => $this->events_post_type->event_cat_taxonomy, + 'orderby' => 'parent', + 'hide_empty' => false, + ) + ); + $post_cat_slugs = wp_list_pluck( $post_cats, 'slug' ); + $event_cat_slugs = wp_list_pluck( $event_cats, 'slug' ); + if ( 'to_post_cats' === $direction ) { $source_cats = $event_cat_slugs; $target_cats = $post_cat_slugs; - } - else { + } else { $source_cats = $post_cat_slugs; $target_cats = $event_cat_slugs; } // to_add: - if(in_array('to_add', $types)) { - $affected_cats['to_add'] = array_diff($source_cats, $target_cats); + if ( in_array( 'to_add', $types ) ) { + $affected_cats['to_add'] = array_diff( $source_cats, $target_cats ); } // to_del: - if(in_array('to_del', $types)) { - $affected_cats['to_del'] = array_diff($target_cats, $source_cats); + if ( in_array( 'to_del', $types ) ) { + $affected_cats['to_del'] = array_diff( $target_cats, $source_cats ); } // to_mod: - if(in_array('to_mod', $types)) { - $cat_intersect = array_intersect($source_cats, $target_cats); + if ( in_array( 'to_mod', $types ) ) { + $cat_intersect = array_intersect( $source_cats, $target_cats ); // compare intersect elements and determine which categories require an update $affected_cats['to_mod'] = array(); - foreach($cat_intersect as $cat_slug) { - $post_cat = get_category_by_slug($cat_slug); - $event_cat = $this->events->get_cat_by_slug($cat_slug); - if($post_cat->name !== $event_cat->name || + foreach ( $cat_intersect as $cat_slug ) { + $post_cat = get_category_by_slug( $cat_slug ); + $event_cat = $this->events->get_cat_by_slug( $cat_slug ); + if ( $post_cat->name !== $event_cat->name || $post_cat->alias_of !== $event_cat->alias_of || - $post_cat->description !== $event_cat->description) { + $post_cat->description !== $event_cat->description ) { $affected_cats['to_mod'][] = $cat_slug; continue; } // parent checking - $post_cat_parent = 0 === $post_cat->parent ? null : get_category($post_cat->parent); - $event_cat_parent = 0 === $event_cat->parent ? null : $this->events->get_cat_by_id($event_cat->parent); - /* Add to $affected_cats['to_mod'] when: + $post_cat_parent = 0 === $post_cat->parent ? null : get_category( $post_cat->parent ); + $event_cat_parent = 0 === $event_cat->parent ? null : $this->events->get_cat_by_id( $event_cat->parent ); + /* + Add to $affected_cats['to_mod'] when: * * one of the category is root (parent isnull) and the other is not * * both category parent exists (instanceof WP_Term) and parent slug of post and event category are different */ - if( (is_null($post_cat_parent) xor is_null($event_cat_parent)) || - ($post_cat_parent instanceof WP_Term && $event_cat_parent instanceof WP_Term && ($post_cat_parent->slug !== $event_cat_parent->slug))) { + if ( ( is_null( $post_cat_parent ) xor is_null( $event_cat_parent ) ) || + ( $post_cat_parent instanceof WP_Term && $event_cat_parent instanceof WP_Term && ( $post_cat_parent->slug !== $event_cat_parent->slug ) ) ) { $affected_cats['to_mod'][] = $cat_slug; } } @@ -81,74 +99,72 @@ class EL_Event_Category_Functions { return $affected_cats; } - public function sync_categories($direction, $affected_cats) { + + public function sync_categories( $direction, $affected_cats ) { $ret = array(); - if('to_event_cats' === $direction) { + if ( 'to_event_cats' === $direction ) { $this->register_event_category_taxonomy(); } // modify & add categories (same procedure for both types) - foreach(array('add','mod') as $type) { - if(isset($affected_cats['to_'.$type])) { - foreach($affected_cats['to_'.$type] as $cat_slug) { - $post_cat = get_category_by_slug($cat_slug); - $event_cat = $this->events->get_cat_by_slug($cat_slug); + foreach ( array( 'add', 'mod' ) as $type ) { + if ( isset( $affected_cats[ 'to_' . $type ] ) ) { + foreach ( $affected_cats[ 'to_' . $type ] as $cat_slug ) { + $post_cat = get_category_by_slug( $cat_slug ); + $event_cat = $this->events->get_cat_by_slug( $cat_slug ); $source_cat = 'to_event_cats' === $direction ? $post_cat : $event_cat; - if(empty($source_cat)) { - $ret[$type.'_error'][] = $cat_slug; + if ( empty( $source_cat ) ) { + $ret[ $type . '_error' ][] = $cat_slug; continue; } - $parent_source_cat = 'to_event_cats' === $direction ? get_category($source_cat->parent) : $this->events->get_cat_by_id($source_cat->parent); - if($parent_source_cat instanceof WP_Term) { - $parent_target_cat = 'to_event_cats' === $direction ? $this->events->get_cat_by_slug($parent_source_cat->slug) : get_category_by_slug($parent_source_cat->slug); - } - else { + $parent_source_cat = 'to_event_cats' === $direction ? get_category( $source_cat->parent ) : $this->events->get_cat_by_id( $source_cat->parent ); + if ( $parent_source_cat instanceof WP_Term ) { + $parent_target_cat = 'to_event_cats' === $direction ? $this->events->get_cat_by_slug( $parent_source_cat->slug ) : get_category_by_slug( $parent_source_cat->slug ); + } else { $parent_target_cat = 0; } $parent_id = $parent_target_cat instanceof WP_Term ? $parent_target_cat->term_id : 0; - $args = array( - 'name' => $source_cat->name, - 'alias_of' => isset($source_cat->alias_of) ? $source_cat->alias_of : '', // availability check required for older WordPress versions + $args = array( + 'name' => $source_cat->name, + 'alias_of' => isset( $source_cat->alias_of ) ? $source_cat->alias_of : '', // availability check required for older WordPress versions 'description' => $source_cat->description, - 'parent' => $parent_id, - 'slug' => $source_cat->slug + 'parent' => $parent_id, + 'slug' => $source_cat->slug, ); // TODO: The following lines must be tested - if('add' === $type) { - $result = 'to_event_cats' === $direction ? $this->events->insert_category($source_cat->name, $args) : wp_insert_term($source_cat->name, $this->events_post_type->post_cat_taxonomy, $args); - } - else { - $result = 'to_event_cats' === $direction ? $this->events->update_category($source_cat->slug, $args) : wp_update_term($post_cat->term_id, $this->events_post_type->post_cat_taxonomy, $args); - } - if($result instanceof WP_Error) { - $ret[$type.'_error'][] = $cat_slug; + if ( 'add' === $type ) { + $result = 'to_event_cats' === $direction ? $this->events->insert_category( $source_cat->name, $args ) : wp_insert_term( $source_cat->name, $this->events_post_type->post_cat_taxonomy, $args ); + } else { + $result = 'to_event_cats' === $direction ? $this->events->update_category( $source_cat->slug, $args ) : wp_update_term( $post_cat->term_id, $this->events_post_type->post_cat_taxonomy, $args ); } - else { - $ret[$type.'_ok'][] = $cat_slug; + if ( $result instanceof WP_Error ) { + $ret[ $type . '_error' ][] = $cat_slug; + } else { + $ret[ $type . '_ok' ][] = $cat_slug; } } } } // delete categories - if(isset($affected_cats['to_del'])) { - foreach($affected_cats['to_del'] as $cat_slug) { - $result = 'to_event_cats' === $direction ? $this->events->delete_category($cat_slug) : wp_delete_category(get_category_by_slug($cat_slug)->term_id); - if($result instanceof WP_Error) { + if ( isset( $affected_cats['to_del'] ) ) { + foreach ( $affected_cats['to_del'] as $cat_slug ) { + $result = 'to_event_cats' === $direction ? $this->events->delete_category( $cat_slug ) : wp_delete_category( get_category_by_slug( $cat_slug )->term_id ); + if ( $result instanceof WP_Error ) { $ret['del_error'][] = $cat_slug; - } - else { + } else { $ret['del_ok'][] = $cat_slug; } } } - if('to_event_cats' === $direction) { + if ( 'to_event_cats' === $direction ) { $this->unregister_event_category_taxonomy(); } return $ret; } + /** * Function to switch the event taxonomy (categories) from post to event or from event to post. * @@ -158,54 +174,54 @@ class EL_Event_Category_Functions { * @param string $direction Defines the direction of the translation. * Possible values are 'to_event_cats' and 'to_post_cats'. */ - public function switch_event_taxonomy($direction) { + public function switch_event_taxonomy( $direction ) { global $wpdb; // get events - $events = $this->events->get(array('status'=>null)); + $events = $this->events->get( array( 'status' => null ) ); // preparations - if('to_event_cats' === $direction) { + if ( 'to_event_cats' === $direction ) { $this->register_event_category_taxonomy(); $source_taxonomy = $this->events_post_type->post_cat_taxonomy; $target_taxonomy = $this->events_post_type->event_cat_taxonomy; - $use_post_cats = ''; - } - elseif('to_post_cats' === $direction) { + $use_post_cats = ''; + } elseif ( 'to_post_cats' === $direction ) { $source_taxonomy = $this->events_post_type->event_cat_taxonomy; $target_taxonomy = $this->events_post_type->post_cat_taxonomy; - $use_post_cats = '1'; - } - else { - return WP_Error('Wrong direction specified for translate_events_cats!'); + $use_post_cats = '1'; + } else { + return WP_Error( 'Wrong direction specified for translate_events_cats!' ); } // Iterate over all events - foreach($events as $event) { + foreach ( $events as $event ) { // Iterate over all categories of the event - foreach($event->categories as $source_cat) { + foreach ( $event->categories as $source_cat ) { // Check if the source category slug is available in the target categories - $target_cat = get_term_by('slug', $source_cat->slug, $target_taxonomy); - if($target_cat instanceof WP_Term) { + $target_cat = get_term_by( 'slug', $source_cat->slug, $target_taxonomy ); + if ( $target_cat instanceof WP_Term ) { // target category is available -> set new cat-id in db $result = $wpdb->update( $wpdb->term_relationships, - array('term_taxonomy_id' => $target_cat->term_id), - array('object_id' => $event->post->ID, - 'term_taxonomy_id' => $source_cat->term_id), - array('%d'), - array('%d', '%d') + array( 'term_taxonomy_id' => $target_cat->term_id ), + array( + 'object_id' => $event->post->ID, + 'term_taxonomy_id' => $source_cat->term_id, + ), + array( '%d' ), + array( '%d', '%d' ) ); - } - else { + } else { // target category is not available -> remove category from event - wp_remove_object_terms($event->post->ID, $source_cat->term_id, $source_taxonomy); - error_log('Category "'.$source_cat->slug.'" removed from event "'.$event->post->post_name.'"'); + wp_remove_object_terms( $event->post->ID, $source_cat->term_id, $source_taxonomy ); + error_log( 'Category "' . $source_cat->slug . '" removed from event "' . $event->post->post_name . '"' ); } } } // Switch taxonomy -> change option value - require_once(EL_PATH.'includes/options.php'); - EL_Options::get_instance()->set('el_use_post_cats', $use_post_cats); + require_once EL_PATH . 'includes/options.php'; + EL_Options::get_instance()->set( 'el_use_post_cats', $use_post_cats ); } + /** * Delete all event categories from the database. * @@ -216,71 +232,83 @@ class EL_Event_Category_Functions { // get terms $terms = $this->get_event_cats_from_db(); // delete terms - foreach ($terms as $term) { - wp_delete_term($term->term_id, $this->events_post_type->event_cat_taxonomy); + foreach ( $terms as $term ) { + wp_delete_term( $term->term_id, $this->events_post_type->event_cat_taxonomy ); } } + public function update_cat_count() { - $event_cats = $this->get_event_cats(array('taxonomy'=>$this->events_post_type->taxonomy, 'orderby'=>'parent', 'hide_empty'=>false)); - $event_cat_ids = wp_list_pluck($event_cats, 'term_id'); - wp_update_term_count_now($event_cat_ids, $this->events_post_type->taxonomy); + $event_cats = $this->get_event_cats( + array( + 'taxonomy' => $this->events_post_type->taxonomy, + 'orderby' => 'parent', + 'hide_empty' => false, + ) + ); + $event_cat_ids = wp_list_pluck( $event_cats, 'term_id' ); + wp_update_term_count_now( $event_cat_ids, $this->events_post_type->taxonomy ); } + private function register_event_category_taxonomy() { $this->events_post_type->taxonomy = $this->events_post_type->event_cat_taxonomy; $this->events_post_type->register_event_category_taxonomy(); } + private function unregister_event_category_taxonomy() { $this->events_post_type->taxonomy = $this->events_post_type->post_cat_taxonomy; - unregister_taxonomy($this->events_post_type->event_cat_taxonomy); + unregister_taxonomy( $this->events_post_type->event_cat_taxonomy ); } - private function get_event_cats($options) { + + private function get_event_cats( $options ) { // fix for different get_terms function parameters in older WordPress versions - if(version_compare(get_bloginfo('version'), '4.5') < 0) { - return get_terms($options['taxonomy'], $options); - } - else { - return get_terms($options); + if ( version_compare( get_bloginfo( 'version' ), '4.5' ) < 0 ) { + return get_terms( $options['taxonomy'], $options ); + } else { + return get_terms( $options ); } } - private function get_event_cats_from_db($cat_slug=null) { + + private function get_event_cats_from_db( $cat_slug = null ) { global $wpdb; - $slug_text = empty($cat_slug) ? '' : ' AND slug = "'.$cat_slug.'"'; - $query = 'SELECT * - FROM '.$wpdb->terms.' AS t - INNER JOIN '.$wpdb->term_taxonomy.' AS tt + $slug_text = empty( $cat_slug ) ? '' : ' AND slug = "' . $cat_slug . '"'; + $query = 'SELECT * + FROM ' . $wpdb->terms . ' AS t + INNER JOIN ' . $wpdb->term_taxonomy . ' AS tt ON t.term_id = tt.term_id - WHERE tt.taxonomy = "'.$this->events_post_type->event_cat_taxonomy.'"'.$slug_text.' + WHERE tt.taxonomy = "' . $this->events_post_type->event_cat_taxonomy . '"' . $slug_text . ' ORDER BY parent'; - if(empty($cat_slug)) { - return $wpdb->get_results($query); - } - else { - return $wpdb->get_row($query); + if ( empty( $cat_slug ) ) { + return $wpdb->get_results( $query ); + } else { + return $wpdb->get_row( $query ); } } + } /** Function to unregister taxonomy before WordPress version 4.5 - **/ -if(!function_exists('unregister_taxonomy')) { - function unregister_taxonomy($taxonomy) { - if(!taxonomy_exists($taxonomy)) { - return new WP_Error('invalid_taxonomy', __('Invalid taxonomy.')); + */ +if ( ! function_exists( 'unregister_taxonomy' ) ) { + + + function unregister_taxonomy( $taxonomy ) { + if ( ! taxonomy_exists( $taxonomy ) ) { + return new WP_Error( 'invalid_taxonomy', __( 'Invalid taxonomy.' ) ); } - $taxonomy_object = get_taxonomy($taxonomy); + $taxonomy_object = get_taxonomy( $taxonomy ); // Do not allow unregistering internal taxonomies. - if($taxonomy_object->_builtin) { + if ( $taxonomy_object->_builtin ) { return new WP_Error( 'invalid_taxonomy', __( 'Unregistering a built-in taxonomy is not allowed.' ) ); } global $wp_taxonomies; // Remove the taxonomy. - unset( $wp_taxonomies[$taxonomy]); + unset( $wp_taxonomies[ $taxonomy ] ); return true; } } -?> + diff --git a/wp-content/plugins/event-list/admin/includes/upgrade.php b/wp-content/plugins/event-list/admin/includes/upgrade.php index ba4fd3a6baed79d6c4016afa5a2cf3b5e350bd42..dd0e8c9c60b8a47c95973b140beebac55c5d3fcd 100644 --- a/wp-content/plugins/event-list/admin/includes/upgrade.php +++ b/wp-content/plugins/event-list/admin/includes/upgrade.php @@ -1,5 +1,5 @@ <?php -if(!defined('WP_ADMIN')) { +if ( ! defined( 'WP_ADMIN' ) ) { exit; } @@ -7,57 +7,71 @@ if(!defined('WP_ADMIN')) { * This class handles required upgrades for new plugin versions */ class EL_Upgrade { + private static $instance; + private $actual_version; + private $last_upgr_version; + private $max_exec_time; + private $upgrade_starttime; + private $resume_version; + private $upgr_action_status = array(); + private $error = false; + private $logfile_handle = false; + public $logfile = ''; + public static function &get_instance() { // Create class instance if required - if(!isset(self::$instance)) { + if ( ! isset( self::$instance ) ) { self::$instance = new self(); } // Return class instance return self::$instance; } + private function __construct() { - $this->logfile = EL_PATH.'upgrade.log'; + $this->logfile = 'event-list_upgrade.log'; } + public function upgrade() { // check required get parameters - $this->resume_version = isset($_GET['resume-el-upgr']) ? str_replace('-', '.', sanitize_title($_GET['resume-el-upgr'])) : false; + $this->resume_version = isset( $_GET['resume-el-upgr'] ) ? str_replace( '-', '.', sanitize_title( $_GET['resume-el-upgr'] ) ) : false; $this->set_max_exec_time(); $this->upgrade_starttime = time(); // check upgrade trigger to avoid duplicate updates - if(empty($this->resume_version) && $this->upgrade_starttime <= get_option('el_upgr_in_progress') + $this->max_exec_time + 5) { - $this->log('Upgrade is already running', false); + if ( empty( $this->resume_version ) && $this->upgrade_starttime <= get_option( 'el_upgr_in_progress' ) + $this->max_exec_time + 5 ) { + $this->log( 'Upgrade is already running', false ); return false; } // set upgrade trigger - $this->update_option('el_upgr_in_progress', $this->upgrade_starttime, false); + $this->update_option( 'el_upgr_in_progress', $this->upgrade_starttime, false ); // do upgrade - if(!$this->init()) { + if ( ! $this->init() ) { return false; } $this->upgrade_check(); // delete upgrade action status $this->delete_upgr_action_status(); // delete upgrade trigger - $this->delete_option('el_upgr_in_progress', false); + $this->delete_option( 'el_upgr_in_progress', false ); // close logfile $this->logfile_close(); // redirect - $this->redirect(array('el-upgr-finished'=>($this->error ? 2 : 1)), array('resume-el-upgr')); + $this->redirect( array( 'el-upgr-finished' => ( $this->error ? 2 : 1 ) ), array( 'resume-el-upgr' ) ); } + /** * Preparations for the upgrade check */ @@ -68,37 +82,41 @@ class EL_Upgrade { // init logfile $this->logfile_init(); // get actual plugin version - $filedata = get_file_data(EL_PATH.'event-list.php', array('version'=>'Version')); + $filedata = get_file_data( EL_PATH . 'event-list.php', array( 'version' => 'Version' ) ); $this->actual_version = $filedata['version']; // check last upgrade version - $this->last_upgr_version = get_option('el_last_upgr_version'); + $this->last_upgr_version = get_option( 'el_last_upgr_version' ); // fix for older version < 0.8.0 - if(empty($this->last_upgr_version) && false !== get_option('el_db_version')) { + if ( empty( $this->last_upgr_version ) && false !== get_option( 'el_db_version' ) ) { $this->last_upgr_version = '0.7.0'; - $this->add_option('el_last_upgr_version', $this->last_upgr_version, false); - $this->log('Applied fix for versions < 0.8.0', false); + $this->add_option( 'el_last_upgr_version', $this->last_upgr_version, false ); + $this->log( 'Applied fix for versions < 0.8.0', false ); } // return if last_upgr_version is empty (new install --> no upgrade required) - if(empty($this->last_upgr_version)) { - $this->add_option('el_last_upgr_version', $this->actual_version, false); + if ( empty( $this->last_upgr_version ) ) { + $this->add_option( 'el_last_upgr_version', $this->actual_version, false ); flush_rewrite_rules(); - $this->log('New install -> no upgrade required', false); + $this->log( 'New install -> no upgrade required', false ); return false; } // show upgrade message - echo 'Event list plugin upgrade in progress …<br />Please be patience until this process is finished.<br />'. + echo 'Event list plugin upgrade in progress …<br />Please be patience until this process is finished.<br />' . flush(); return true; } + /** * Do the upgrade check and start the required upgrades */ private function upgrade_check() { - $this->log('Start upgrade check', false); - if($this->upgrade_required('0.8.0')) { + $this->log( 'Start upgrade check', false ); + if ( $this->upgrade_required( '0.8.0' ) ) { $this->upgrade_to_0_8_0(); } + if ( $this->upgrade_required( '0.8.5' ) ) { + $this->upgrade_to_0_8_5(); + } // update last_upgr_version $this->update_last_upgr_version(); @@ -115,210 +133,236 @@ class EL_Upgrade { * * obsolete db table "event_list" and option "el_categories" will be kept for backup, they will be deleted in a later version **/ private function upgrade_to_0_8_0() { - require_once(EL_PATH.'includes/events.php'); - require_once(EL_PATH.'includes/event.php'); + require_once EL_PATH . 'includes/events.php'; + require_once EL_PATH . 'includes/event.php'; $version = '0.8.0'; // Correct events post type - require_once(EL_PATH.'includes/events_post_type.php'); + require_once EL_PATH . 'includes/events_post_type.php'; $events_post_type = EL_Events_Post_Type::get_instance(); // set correct taxonomy - $events_post_type->use_post_categories = false !== get_option('el_sync_cats'); - $events_post_type->taxonomy = $events_post_type->use_post_categories ? $events_post_type->post_cat_taxonomy : $events_post_type->event_cat_taxonomy; + $events_post_type->use_post_categories = false !== get_option( 'el_sync_cats' ); + $events_post_type->taxonomy = $events_post_type->use_post_categories ? $events_post_type->post_cat_taxonomy : $events_post_type->event_cat_taxonomy; // re-register events post type with correct taxonomy - unregister_post_type('el_events'); + unregister_post_type( 'el_events' ); $events_post_type->register_event_post_type(); // register event_cateogry taxonomy if required - if(!$events_post_type->use_post_categories) { + if ( ! $events_post_type->use_post_categories ) { $events_post_type->register_event_category_taxonomy(); } - $this->log('Set event category taxonomy to "'.implode(', ', get_object_taxonomies('el_events')).'" (according existing option "el_sync_cats" = "'.($events_post_type->use_post_categories ? 'true' : 'false').'")'); + $this->log( 'Set event category taxonomy to "' . implode( ', ', get_object_taxonomies( 'el_events' ) ) . '" (according existing option "el_sync_cats" = "' . ( $events_post_type->use_post_categories ? 'true' : 'false' ) . '")' ); // Import existing categories - if(!$events_post_type->use_post_categories) { - $cats_array = get_option('el_categories'); - if(!empty($cats_array)) { + if ( ! $events_post_type->use_post_categories ) { + $cats_array = get_option( 'el_categories' ); + if ( ! empty( $cats_array ) ) { $action = 'el_category_upgr_0_8_0'; - if(!$this->is_action_completed($action)) { - foreach($cats_array as $cat) { - if($this->is_action_item_completed($action, $cat['slug'])) { + if ( ! $this->is_action_completed( $action ) ) { + foreach ( $cats_array as $cat ) { + if ( $this->is_action_item_completed( $action, $cat['slug'] ) ) { continue; } // check if the event category is already available - if(EL_Events::get_instance()->cat_exists($cat['slug'])) { - $this->log('Event category "'.$cat['name'].'" is already available, import skipped!'); - $this->complete_action_item($version, $action, $cat['slug']); + if ( EL_Events::get_instance()->cat_exists( $cat['slug'] ) ) { + $this->log( 'Event category "' . $cat['name'] . '" is already available, import skipped!' ); + $this->complete_action_item( $version, $action, $cat['slug'] ); continue; } // import event category - $args['slug'] = $cat['slug']; + $args['slug'] = $cat['slug']; $args['description'] = $cat['desc']; - if(isset($cat['parent'])) { - $parent = EL_Events::get_instance()->get_cat_by_slug($cat['parent']); - if(!empty($parent)) { + if ( isset( $cat['parent'] ) ) { + $parent = EL_Events::get_instance()->get_cat_by_slug( $cat['parent'] ); + if ( ! empty( $parent ) ) { $args['parent'] = $parent->term_id; } } - $ret = EL_Events::get_instance()->insert_category($cat['name'], $args); - if(is_wp_error($ret)) { - $this->log('Import of event category "'.$cat['name'].'" failed: '.$ret->get_error_message(), true, true); - } - else { - $this->log('Event category "'.$cat['name'].'" successfully imported'); + $ret = EL_Events::get_instance()->insert_category( $cat['name'], $args ); + if ( is_wp_error( $ret ) ) { + $this->log( 'Import of event category "' . $cat['name'] . '" failed: ' . $ret->get_error_message(), true, true ); + } else { + $this->log( 'Event category "' . $cat['name'] . '" successfully imported' ); } - $this->complete_action_item($version, $action, $cat['slug']); + $this->complete_action_item( $version, $action, $cat['slug'] ); } - $this->complete_action($action); + $this->complete_action( $action ); } + } else { + $this->log( 'No existing event categories found' ); } - else { - $this->log('No existing event categories found'); - } - } - else { - $this->log('"el_sync_cats is enabled: Syncing event categories is not required -> Post categories will be used'); + } else { + $this->log( '"el_sync_cats is enabled: Syncing event categories is not required -> Post categories will be used' ); } // Import existing events global $wpdb; - $sql = 'SELECT * FROM '.$wpdb->prefix.'event_list ORDER BY start_date ASC, time ASC, end_date ASC'; - $events = $wpdb->get_results($sql, 'ARRAY_A'); - if(!empty($events)) { + $sql = 'SELECT * FROM ' . $wpdb->prefix . 'event_list ORDER BY start_date ASC, time ASC, end_date ASC'; + $events = $wpdb->get_results( $sql, 'ARRAY_A' ); + if ( ! empty( $events ) ) { $action = 'el_events_upgr_0_8_0'; - if(!$this->is_action_completed($action)) { - foreach($events as $event) { - if($this->is_action_item_completed($action, $event['id'])) { + if ( ! $this->is_action_completed( $action ) ) { + foreach ( $events as $event ) { + if ( $this->is_action_item_completed( $action, $event['id'] ) ) { continue; } // check if the event is already available - $sql = 'SELECT ID FROM (SELECT * FROM (SELECT DISTINCT ID, post_title, post_date, '. - '(SELECT meta_value FROM wp_postmeta WHERE wp_postmeta.meta_key = "startdate" AND wp_postmeta.post_id = wp_posts.ID) AS startdate, '. - '(SELECT meta_value FROM wp_postmeta WHERE wp_postmeta.meta_key = "enddate" AND wp_postmeta.post_id = wp_posts.ID) AS enddate, '. - '(SELECT meta_value FROM wp_postmeta WHERE wp_postmeta.meta_key = "starttime" AND wp_postmeta.post_id = wp_posts.ID) AS starttime, '. - '(SELECT meta_value FROM wp_postmeta WHERE wp_postmeta.meta_key = "location" AND wp_postmeta.post_id = wp_posts.ID) AS location '. - 'FROM wp_posts WHERE post_type = "el_events") AS events) AS events '. - 'WHERE ('. - 'post_title="'.wp_kses_post($event['title']).'" AND '. - 'post_date="'.$event['pub_date'].'" AND '. - 'startdate="'.$event['start_date'].'" AND '. - 'enddate="'.$event['end_date'].'" AND '. - 'starttime = "'.wp_kses_post(EL_Event::validate_time($event['time'])).'" AND '. - 'location = "'.wp_kses_post($event['location']).'")'; - $ret = $wpdb->get_row($sql, ARRAY_N); - if(is_array($ret)) { - $this->log('Event "'.$event['title'].'" is already available, import skipped!'); - $this->complete_action_item($version, $action, $event['id']); + $sql = 'SELECT ID FROM (SELECT * FROM (SELECT DISTINCT ID, post_title, post_date, ' . + '(SELECT meta_value FROM wp_postmeta WHERE wp_postmeta.meta_key = "startdate" AND wp_postmeta.post_id = wp_posts.ID) AS startdate, ' . + '(SELECT meta_value FROM wp_postmeta WHERE wp_postmeta.meta_key = "enddate" AND wp_postmeta.post_id = wp_posts.ID) AS enddate, ' . + '(SELECT meta_value FROM wp_postmeta WHERE wp_postmeta.meta_key = "starttime" AND wp_postmeta.post_id = wp_posts.ID) AS starttime, ' . + '(SELECT meta_value FROM wp_postmeta WHERE wp_postmeta.meta_key = "location" AND wp_postmeta.post_id = wp_posts.ID) AS location ' . + 'FROM wp_posts WHERE post_type = "el_events") AS events) AS events ' . + 'WHERE (' . + 'post_title="' . wp_kses_post( $event['title'] ) . '" AND ' . + 'post_date="' . $event['pub_date'] . '" AND ' . + 'startdate="' . $event['start_date'] . '" AND ' . + 'enddate="' . $event['end_date'] . '" AND ' . + 'starttime = "' . wp_kses_post( EL_Event::validate_time( $event['time'] ) ) . '" AND ' . + 'location = "' . wp_kses_post( $event['location'] ) . '")'; + $ret = $wpdb->get_row( $sql, ARRAY_N ); + if ( is_array( $ret ) ) { + $this->log( 'Event "' . $event['title'] . '" is already available, import skipped!' ); + $this->complete_action_item( $version, $action, $event['id'] ); continue; } // import event - $eventdata['title'] = $event['title']; - $eventdata['startdate'] = $event['start_date']; - $eventdata['enddate'] = $event['end_date']; - $eventdata['starttime'] = $event['time']; - $eventdata['location'] = $event['location']; - $eventdata['content'] = $event['details']; - $eventdata['post_date'] = $event['pub_date']; - $eventdata['post_user'] = $event['pub_user']; - $eventdata['categories'] = explode('|', substr($event['categories'], 1, -1)); - $ret = EL_Event::save($eventdata); - if(empty($ret)) { - $this->log('Import of event "'.$eventdata['title'].'" failed!', true, true); + $eventdata['title'] = $event['title']; + $eventdata['startdate'] = $event['start_date']; + $eventdata['enddate'] = $event['end_date']; + $eventdata['starttime'] = $event['time']; + $eventdata['location'] = $event['location']; + $eventdata['content'] = $event['details']; + $eventdata['post_date'] = $event['pub_date']; + $eventdata['post_user'] = $event['pub_user']; + $eventdata['categories'] = explode( '|', substr( $event['categories'], 1, -1 ) ); + $ret = EL_Event::save( $eventdata ); + if ( empty( $ret ) ) { + $this->log( 'Import of event "' . $eventdata['title'] . '" failed!', true, true ); + } else { + $this->log( 'Event "' . $eventdata['title'] . '" successfully imported' ); } - else { - $this->log('Event "'.$eventdata['title'].'" successfully imported'); - } - $this->complete_action_item($version, $action, $event['id']); + $this->complete_action_item( $version, $action, $event['id'] ); } - $this->complete_action($action); + $this->complete_action( $action ); } - } - else { - $this->log('No existing events found'); + } else { + $this->log( 'No existing events found' ); } // Delete obsolete option "el_db_version" - $this->delete_option('el_db_version'); + $this->delete_option( 'el_db_version' ); // Rename option "el_show_details_text" to "el_content_show_text" - $this->rename_option('el_show_details_text', 'el_content_show_text'); + $this->rename_option( 'el_show_details_text', 'el_content_show_text' ); // Rename option "el_hide_details_text" to "el_content_hide_text" - $this->rename_option('el_hide_details_text', 'el_content_hide_text'); + $this->rename_option( 'el_hide_details_text', 'el_content_hide_text' ); // Rename option "el_sync_cats" to "el_use_post_cats" - $this->rename_option('el_sync_cats', 'el_use_post_cats'); + $this->rename_option( 'el_sync_cats', 'el_use_post_cats' ); } - private function upgrade_required($version) { - if(version_compare($this->last_upgr_version, $version) < 0 || $this->resume_version === $version) { + + /** Upgrade to VERSION 0.8.5: change feed options + * * rename option "el_enable_feed" to "el_feed_enable_rss" + * * rename option "el_enable_ical" to "el_feed_enable_ical" + * * rename option "el_feed_name" to "el_feed_rss_name" + * * rename option "el_feed_description" to "el_feed_rss_description" + * * rename option "el_feed_upcoming_only" to "el_feed_rss_upcoming_only" + * * rename option "el_feed_link_text" to "el_feed_rss_link_text" + * * delete option "el_feed_link_img" + * * delete option "el_head_feed_link" + **/ + private function upgrade_to_0_8_5() { + $this->rename_option( 'el_enable_feed', 'el_feed_enable_rss' ); + $this->rename_option( 'el_enable_ical', 'el_feed_enable_ical' ); + $this->rename_option( 'el_feed_name', 'el_feed_rss_name' ); + $this->rename_option( 'el_feed_description', 'el_feed_rss_description' ); + $this->rename_option( 'el_feed_upcoming_only', 'el_feed_rss_upcoming_only' ); + $this->rename_option( 'el_feed_link_text', 'el_feed_rss_link_text' ); + $this->delete_option( 'el_feed_link_img' ); + $this->delete_option( 'el_head_feed_link' ); + } + + + private function upgrade_required( $version ) { + if ( version_compare( $this->last_upgr_version, $version ) < 0 || $this->resume_version === $version ) { return true; - } - else { + } else { return false; } } + private function set_max_exec_time() { - $this->max_exec_time = ini_get('max_execution_time'); - if(empty($this->max_exec_time)) { + $this->max_exec_time = ini_get( 'max_execution_time' ); + if ( empty( $this->max_exec_time ) ) { $this->max_exec_time = 25; } - $this->log('Maximum script execution time: '.$this->max_exec_time.' seconds', false); + $this->log( 'Maximum script execution time: ' . $this->max_exec_time . ' seconds', false ); } - private function is_action_completed($action) { - $this->upgr_action_status[$action] = array(); - $status = get_option($action); - if('completed' === $status) { + + private function is_action_completed( $action ) { + $this->upgr_action_status[ $action ] = array(); + $status = get_option( $action ); + if ( 'completed' === $status ) { return true; } - if(!empty($status)) { - $this->upgr_action_status[$action] = explode(',', $status); + if ( ! empty( $status ) ) { + $this->upgr_action_status[ $action ] = explode( ',', $status ); } return false; } - private function is_action_item_completed($action, $id) { - return in_array($id, $this->upgr_action_status[$action]); + + private function is_action_item_completed( $action, $id ) { + return in_array( $id, $this->upgr_action_status[ $action ] ); } - private function complete_action($action) { - $this->update_option($action, 'completed', false); - $this->upgr_action_status[$action] = array(); + + private function complete_action( $action ) { + $this->update_option( $action, 'completed', false ); + $this->upgr_action_status[ $action ] = array(); } - private function complete_action_item($upgr_version, $action, $id) { - $this->upgr_action_status[$action][] = $id; + + private function complete_action_item( $upgr_version, $action, $id ) { + $this->upgr_action_status[ $action ][] = $id; // save status to db from time to time - if(0 === count($this->upgr_action_status[$action]) % 25) { - $this->update_option($action, implode(',', $this->upgr_action_status[$action]), null); + if ( 0 === count( $this->upgr_action_status[ $action ] ) % 25 ) { + $this->update_option( $action, implode( ',', $this->upgr_action_status[ $action ] ), null ); } // if max execution time is nearly reached, save the actual status to db and redirect // the upgrade will be resumed after the reload with a new set of execution time - if($this->max_exec_time - 5 <= time() - $this->upgrade_starttime) { - $this->update_option($action, implode(',', $this->upgr_action_status[$action]), false); - $this->log('The maximum execution time is already consumed, script will redirect and continue upgrade afterwards with a new set of time.'); + if ( $this->max_exec_time - 5 <= time() - $this->upgrade_starttime ) { + $this->update_option( $action, implode( ',', $this->upgr_action_status[ $action ] ), false ); + $this->log( 'The maximum execution time is already consumed, script will redirect and continue upgrade afterwards with a new set of time.' ); // close logfile $this->logfile_close(); // redirect - $this->redirect(array('resume-el-upgr' => $upgr_version)); + $this->redirect( array( 'resume-el-upgr' => $upgr_version ) ); } } + private function delete_upgr_action_status() { - foreach($this->upgr_action_status as $action=>$status) { - $this->delete_option($action, false); + foreach ( $this->upgr_action_status as $action => $status ) { + $this->delete_option( $action, false ); } } - private function redirect($args_to_add=array(), $args_to_remove=array()) { - $url = add_query_arg($args_to_add, remove_query_arg($args_to_remove)); - echo '<meta http-equiv="refresh" content="0; url='.$url.'">'; + + private function redirect( $args_to_add = array(), $args_to_remove = array() ) { + $url = add_query_arg( $args_to_add, remove_query_arg( $args_to_remove ) ); + echo '<meta http-equiv="refresh" content="0; url=' . $url . '">'; die(); } + /** * Wrapper for update_option function with additional error checking and log handling + * * @param string $option Option name * @param mixed $value Option value * @param bool $msg Print logging messages? @@ -327,76 +371,78 @@ class EL_Upgrade { * 0.. if option was available but value was already correct * false.. on error */ - private function update_option($option, $value, $msg=true) { - $oldvalue = get_option($option, null); + private function update_option( $option, $value, $msg = true ) { + $oldvalue = get_option( $option, null ); // add option, if option does not exist - if(is_null($oldvalue)) { - $ret = $this->add_option($option, $value, $msg); + if ( is_null( $oldvalue ) ) { + $ret = $this->add_option( $option, $value, $msg ); return $ret ? 2 : false; } // do nothing, if correct value is already set - if($value === $oldvalue) { - $this->log('Update of option "'.$option.'" is not required: correct value "'.$value.'" already set', $msg); + if ( $value === $oldvalue ) { + $this->log( 'Update of option "' . $option . '" is not required: correct value "' . $value . '" already set', $msg ); return 0; } // update option - $ret = update_option($option, $value); - if($ret) { - $this->log('Updated option "'.$option.'" to value "'.$value.'"', $msg); - } - else { - $this->log('Updating option "'.$option.'" to value "'.$value.'" failed!', $msg, true); + $ret = update_option( $option, $value ); + if ( $ret ) { + $this->log( 'Updated option "' . $option . '" to value "' . $value . '"', $msg ); + } else { + $this->log( 'Updating option "' . $option . '" to value "' . $value . '" failed!', $msg, true ); } return $ret; } + /** * Wrapper for add_option function with additional error checking and log handling + * * @param string $option Option name * @param mixed $value Option value * @param bool $msg Print logging messages? * @return int|false true .. if option was added successfully * false.. on error */ - private function add_option($option, $value, $msg=true) { - if(!is_null(get_option($option, null))) { - $this->log('Adding option "'.$option.'" with value "'.$value.'" failed: Option already exists!', $msg, true); + private function add_option( $option, $value, $msg = true ) { + if ( ! is_null( get_option( $option, null ) ) ) { + $this->log( 'Adding option "' . $option . '" with value "' . $value . '" failed: Option already exists!', $msg, true ); return false; } - $ret = add_option($option, $value); - if($ret) { - $this->log('Added option "'.$option.'" with value "'.$value.'"', $msg); - } - else { - $this->log('Adding option "'.$option.'" with value "'.$value.'" failed!', $msg, true); + $ret = add_option( $option, $value ); + if ( $ret ) { + $this->log( 'Added option "' . $option . '" with value "' . $value . '"', $msg ); + } else { + $this->log( 'Adding option "' . $option . '" with value "' . $value . '" failed!', $msg, true ); } return $ret; } + /** * Wrapper for delete_option function with additional error checking and log handling + * * @param string $option Option name * @param bool $msg Print logging messages? * @return int|null|false 1.. if option was deleted successfully * null.. if option is already not set * false.. on error */ - private function delete_option($option, $msg=true) { + private function delete_option( $option, $msg = true ) { global $wpdb; - if(is_null(get_option($option, null))) { - $this->log('Deleting option "'.$option.'" is not required: option is not set', $msg); + if ( is_null( get_option( $option, null ) ) ) { + $this->log( 'Deleting option "' . $option . '" is not required: option is not set', $msg ); return null; } - $ret = delete_option($option); - if($ret) { - $this->log('Deleted option "'.$option.'"', $msg); - } - else { - $this->log('Deleting option "'.$option.'" failed!', $msg, true); + $ret = delete_option( $option ); + if ( $ret ) { + $this->log( 'Deleted option "' . $option . '"', $msg ); + } else { + $this->log( 'Deleting option "' . $option . '" failed!', $msg, true ); } return $ret; } + /** * Rename an option (create new option name with old option name value, then delete old option name) * @@ -406,81 +452,82 @@ class EL_Upgrade { * @return bool true.. if option renaming was successfully * false.. on error */ - private function rename_option($oldname, $newname, $msg=true) { - $value = get_option($oldname, null); - if(is_null($value)) { - $this->log('Renaming of option "'.$oldname.'" to "'.$newname.'" is not required: old option name "'.$oldname.'" is not set (default value is used)', $msg); + private function rename_option( $oldname, $newname, $msg = true ) { + $value = get_option( $oldname, null ); + if ( is_null( $value ) ) { + $this->log( 'Renaming of option "' . $oldname . '" to "' . $newname . '" is not required: old option name "' . $oldname . '" is not set (default value is used)', $msg ); return true; } - $newvalue = get_option($newname, null); - if(!is_null($newvalue)) { + $newvalue = get_option( $newname, null ); + if ( ! is_null( $newvalue ) ) { // update existing option - $this->log('New option name "'.$newname.'" is already available', $msg); - if($value !== $newvalue) { - $ret = $this->update_option($newname, $value, $msg); - if(false !== $ret) { - $this->log('Updated value for existing new option name "'.$newname.'"', $msg); - } - else { - $this->log('Updating value for existing new option name "'.$newname.'" failed!', $msg, true); + $this->log( 'New option name "' . $newname . '" is already available', $msg ); + if ( $value !== $newvalue ) { + $ret = $this->update_option( $newname, $value, $msg ); + if ( false !== $ret ) { + $this->log( 'Updated value for existing new option name "' . $newname . '"', $msg ); + } else { + $this->log( 'Updating value for existing new option name "' . $newname . '" failed!', $msg, true ); } + } else { + $this->log( 'Correct value "' . $value . '"is already set', $msg ); } - else { - $this->log('Correct value "'.$value.'"is already set', $msg); - } - } - else { + } else { // insert new option - $ret = $this->add_option($newname, $value, false); - if(false === $ret) { - $this->log('Renaming of option "'.$oldname.'" failed during adding new option name "'.$newname.'" with the value "'.$value.'"!', $msg, true); + $ret = $this->add_option( $newname, $value, false ); + if ( false === $ret ) { + $this->log( 'Renaming of option "' . $oldname . '" failed during adding new option name "' . $newname . '" with the value "' . $value . '"!', $msg, true ); return false; } } - $ret = $this->delete_option($oldname, false); - if(!empty($ret)) { - $this->log('Deleted old option name "'.$oldname.'"', $msg); + $ret = $this->delete_option( $oldname, false ); + if ( ! empty( $ret ) ) { + $this->log( 'Deleted old option name "' . $oldname . '"', $msg ); + } else { + $this->log( 'Deleting of old option name "' . $oldname . '" failed!', $msg, true ); } - else { - $this->log('Deleting of old option name "'.$oldname.'" failed!', $msg, true); - } - return (bool)$ret; + return (bool) $ret; } + private function update_last_upgr_version() { - $ret = $this->update_option('el_last_upgr_version', $this->actual_version); - if(false === $ret) { - $this->log('Could not update the "el_last_upgr_version"!', true, true); + $ret = $this->update_option( 'el_last_upgr_version', $this->actual_version ); + if ( false === $ret ) { + $this->log( 'Could not update the "el_last_upgr_version"!', true, true ); } return $ret; } + private function logfile_init() { + $logfile_path = WP_CONTENT_DIR . '/' . $this->logfile; // rename all existing log files and remove files older than 90 days - if(file_exists($this->logfile) && empty($this->resume_version)) { + if ( file_exists( $logfile_path ) && empty( $this->resume_version ) ) { // delete file if it is too old - if(filemtime($this->logfile) < time() - 30*24*60*60) { - if(!@unlink($this->logfile)) { - error_log('"'.$this->logfile.'" cannot be deleted! No upgrade log file will be written!'); + if ( filemtime( $logfile_path ) < time() - 30 * 24 * 60 * 60 ) { + if ( ! @unlink( $logfile_path ) ) { + error_log( 'The logfile "' . $logfile_path . '" cannot be deleted! No upgrade log file will be written!' ); return false; } } } // open logfile for writing - $this->logfile_handle = @fopen($this->logfile, 'a'); - if(empty($this->logfile_handle)) { - error_log('"'.$this->logfile.'" cannot be opened for writing! No upgrade log file will be written!'); + $this->logfile_handle = @fopen( $logfile_path, 'a' ); + if ( empty( $this->logfile_handle ) ) { + error_log( 'The logfile "' . $logfile_path . '" cannot be opened for writing! No upgrade log file will be written!' ); return false; } return true; } + private function logfile_close() { - if(!empty($this->logfile_handle)) { - fclose($this->logfile_handle); + if ( ! empty( $this->logfile_handle ) ) { + fclose( $this->logfile_handle ); } } + /** Log function * This function prints the error messages to the log file, prepares the text for the admin ui message * and sets the error flag (required for the admin ui message) @@ -492,32 +539,36 @@ class EL_Upgrade { * true: print message to log and upgrade log file * @return null */ - private function log($text, $msg=true, $error=false) { + private function log( $text, $msg = true, $error = false ) { $error_text = ''; - if(!is_null($msg)) { - if($error) { + if ( ! is_null( $msg ) ) { + if ( $error ) { $this->error = true; - $error_text = 'ERROR: '; + $error_text = 'ERROR: '; } - error_log('EL_UPGRADE: '.$error_text.$text); + error_log( 'EL_UPGRADE: ' . $error_text . $text ); } - if($this->logfile_handle && $msg) { - $time = date('[Y-m-d H:i:s] ', time()); - fwrite($this->logfile_handle, $time.$error_text.$text.PHP_EOL); + if ( $this->logfile_handle && $msg ) { + $time = date( '[Y-m-d H:i:s] ', time() ); + fwrite( $this->logfile_handle, $time . $error_text . $text . PHP_EOL ); } } + } /** Function to unregister posttype before WordPress version 4.5 - **/ -if(!function_exists('unregister_post_type')) { + */ +if ( ! function_exists( 'unregister_post_type' ) ) { + + function unregister_post_type( $post_type ) { global $wp_post_types; - if(isset($wp_post_types[$post_type])) { - unset($wp_post_types[$post_type]); + if ( isset( $wp_post_types[ $post_type ] ) ) { + unset( $wp_post_types[ $post_type ] ); return true; - } + } return false; } + } -?> + diff --git a/wp-content/plugins/event-list/event-list.php b/wp-content/plugins/event-list/event-list.php index c481b283916b4bba4c1f32624cb303c8da7d991f..f040b6254c176ffff16fcaa5bfa649125179f6aa 100644 --- a/wp-content/plugins/event-list/event-list.php +++ b/wp-content/plugins/event-list/event-list.php @@ -1,140 +1,221 @@ <?php -/* -Plugin Name: Event List -Plugin URI: http://wordpress.org/extend/plugins/event-list/ -Description: Manage your events and show them in a list view on your site. -Version: 0.8.3 -Author: mibuthu -Author URI: http://wordpress.org/extend/plugins/event-list/ -Text Domain: event-list -License: GPLv2 - -A plugin for the blogging MySQL/PHP-based WordPress. -Copyright 2012-2018 mibuthu - -This program is free software; you can redistribute it and/or -modify it under the terms of the GNUs General Public License -as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You can view a copy of the HTML version of the GNU General Public -License at http://www.gnu.org/copyleft/gpl.html -*/ - -if(!defined('WPINC')) { +/** + * Plugin Name: Event List + * Plugin URI: https://wordpress.org/plugins/event-list/ + * Description: Manage your events and show them in a list view on your site. + * Version: 0.8.6 + * Author: mibuthu + * Author URI: https://wordpress.org/plugins/event-list/ + * Text Domain: event-list + * License: GPLv2 + * + * A plugin for the blogging MySQL/PHP-based WordPress. + * Copyright 2012-2021 mibuthu + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNUs General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You can view a copy of the HTML version of the GNU General Public + * License at http://www.gnu.org/copyleft/gpl.html + * + * @package event-list + */ + +if ( ! defined( 'WPINC' ) ) { exit; } -// GENERAL DEFINITIONS -define('EL_URL', plugin_dir_url(__FILE__)); -define('EL_PATH', plugin_dir_path(__FILE__)); +// General definitions +define( 'EL_URL', plugin_dir_url( __FILE__ ) ); +define( 'EL_PATH', plugin_dir_path( __FILE__ ) ); -require_once(EL_PATH.'includes/options.php'); -require_once(EL_PATH.'includes/events_post_type.php'); +require_once EL_PATH . 'includes/options.php'; +require_once EL_PATH . 'includes/events_post_type.php'; -// MAIN PLUGIN CLASS +/** + * Main plugin class + * + * This is the inital class for loading the plugin. + */ class Event_List { + + /** + * Option instance used for the whole plugin + * + * @var EL_Options + */ private $options; + + /** + * Shortcode instance + * + * @var SC_Event_List + */ private $shortcode = null; + + /** + * Holds the status if the event-list styles are already loaded + * + * @var bool + */ private $styles_loaded = false; + /** * Constructor: * Initializes the plugin. + * + * @return void */ public function __construct() { $this->options = EL_Options::get_instance(); // ALWAYS: // Register translation - add_action('plugins_loaded', array(&$this, 'load_textdomain')); + add_action( 'plugins_loaded', array( &$this, 'load_textdomain' ) ); // Register Events post type EL_Events_Post_Type::get_instance(); // Register shortcodes - add_shortcode('event-list', array(&$this, 'shortcode_event_list')); + add_shortcode( 'event-list', array( &$this, 'shortcode_event_list' ) ); // Register widgets - add_action('widgets_init', array(&$this, 'widget_init')); + add_action( 'widgets_init', array( &$this, 'widget_init' ) ); // Register RSS feed - add_action('init', array(&$this, 'feed_init'), 10); + add_action( 'init', array( &$this, 'feed_init' ), 10 ); + // Register iCal feed + add_action( 'init', array( &$this, 'ical_init' ), 10 ); - // ADMIN PAGE: - if(is_admin()) { + // Admin page + if ( is_admin() ) { // Init admin page - require_once(EL_PATH.'admin/admin.php'); + require_once EL_PATH . 'admin/admin.php'; EL_Admin::get_instance(); - } - - // FRONT PAGE: - else { + } else { // Front page // Register actions - add_action('wp_print_styles', array(&$this, 'print_styles')); + add_action( 'wp_print_styles', array( &$this, 'print_styles' ) ); } - } // end constructor + } + + /** + * Load the textdomain + * + * @return void + */ public function load_textdomain() { - $el_lang_path = basename(EL_PATH).'/languages'; - $domain = 'event-list'; - if('' !== get_option('el_mo_lang_dir_first', '')) { // this->option->get not available in this early stage - // use default wordpress function (language files from language dir wp-content/languages/plugins/ are preferred) - load_plugin_textdomain($domain, false, $el_lang_path); - } - else { - // use fork of wordpress function load_plugin_textdomain (see wp-includes/l10n.php) to prefer language files included in plugin (wp-content/plugins/event-list/languages/) and additionally from language dir - $locale = apply_filters('plugin_locale', is_callable('get_user_locale') ? get_user_locale() : get_locale(), $domain); - $mofile = $domain.'-'.$locale.'.mo'; - load_textdomain($domain, WP_PLUGIN_DIR.'/'.$el_lang_path.'/'.$mofile); - load_textdomain($domain, WP_LANG_DIR.'/plugins/'.$mofile); + $el_lang_path = basename( EL_PATH ) . '/languages'; + $domain = 'event-list'; + if ( '' !== get_option( 'el_mo_lang_dir_first', '' ) ) { // this->option->get not available in this early stage + // Use default WordPress function (language files from language dir wp-content/languages/plugins/ are preferred) + load_plugin_textdomain( $domain, false, $el_lang_path ); + } else { + // Use fork of WordPress function load_plugin_textdomain (see wp-includes/l10n.php) to prefer the language files provided within the plugin (wp-content/plugins/event-list/languages/) + // @phan-suppress-next-line PhanParamTooMany + $locale = apply_filters( 'plugin_locale', get_user_locale(), $domain ); + $mofile = $domain . '-' . $locale . '.mo'; + load_textdomain( $domain, WP_PLUGIN_DIR . '/' . $el_lang_path . '/' . $mofile ); + load_textdomain( $domain, WP_LANG_DIR . '/plugins/' . $mofile ); } } - public function shortcode_event_list($atts) { - if(null == $this->shortcode) { - require_once(EL_PATH.'includes/sc_event-list.php'); + + /** + * Load the shortcode + * + * @param array<string,string|string[]> $atts The shortcode attributes. + * @return string + */ + public function shortcode_event_list( $atts ) { + if ( null === $this->shortcode ) { + require_once EL_PATH . 'includes/sc_event-list.php'; $this->shortcode = SC_Event_List::get_instance(); - if(!$this->styles_loaded) { + if ( ! $this->styles_loaded ) { // normally styles are loaded with wp_print_styles action in head // but if the shortcode is not in post content (e.g. included in a theme) it must be loaded here $this->enqueue_styles(); } } - return $this->shortcode->show_html($atts); + return $this->shortcode->show_html( $atts ); } + + /** + * Load the feed + * + * @return void + */ public function feed_init() { - if($this->options->get('el_enable_feed')) { - include_once(EL_PATH.'includes/feed.php'); - EL_Feed::get_instance(); + if ( $this->options->get( 'el_feed_enable_rss' ) ) { + include_once EL_PATH . 'includes/rss.php'; + EL_Rss::get_instance(); + } + } + + + /** + * Load the ical support + * + * @return void + */ + public function ical_init() { + if ( $this->options->get( 'el_feed_enable_ical' ) ) { + include_once EL_PATH . 'includes/ical.php'; + EL_ICal::get_instance(); } } + + /** + * Load the widget + * + * @return void + */ public function widget_init() { // Widget "event-list" - require_once(EL_PATH.'includes/widget.php'); - return register_widget('EL_Widget'); + require_once EL_PATH . 'includes/widget.php'; + register_widget( 'EL_Widget' ); } + + /** + * Print the event-list styles + * + * @return void + */ public function print_styles() { global $post; - if(is_active_widget(null, null, 'event_list_widget') || (is_object($post) && strstr($post->post_content, '[event-list'))) { + if ( is_active_widget( false, false, 'event_list_widget' ) || ( is_object( $post ) && strstr( $post->post_content, '[event-list' ) ) ) { $this->enqueue_styles(); } } + + /** + * Equeue the event-list styles + * + * @return void + */ public function enqueue_styles() { - if('' == $this->options->get('el_disable_css_file')) { - wp_register_style('event-list', EL_URL.'includes/css/event-list.css'); - wp_enqueue_style('event-list'); + if ( '' === $this->options->get( 'el_disable_css_file' ) ) { + wp_register_style( 'event-list', EL_URL . 'includes/css/event-list.css', array(), '1.0' ); + wp_enqueue_style( 'event-list' ); } $this->styles_loaded = true; } -} // end class linkview +} -// create a class instance + +/** + * EventList Class instance + * + * @var EL_EventList + */ $event_list = new Event_List(); -?> + diff --git a/wp-content/plugins/event-list/includes/css/event-list.css b/wp-content/plugins/event-list/includes/css/event-list.css index b029dd1b8dc8ea9fef89e7087c7e0c938b9d91d8..4f045f8a39ecfe57001e6451ff626197c58b9723 100644 --- a/wp-content/plugins/event-list/includes/css/event-list.css +++ b/wp-content/plugins/event-list/includes/css/event-list.css @@ -7,7 +7,6 @@ ul.event-list-view, ul.single-event-view { li.event { clear: both; margin: 0 0.5em 1.5em 0.5em; - zoom: 1; /* Fix for IE 6+7 */ } .event-date { @@ -87,20 +86,33 @@ li.event { font-size: 0.95em; } -.event-content { - font-size: 0.8em; +.event-content, .event-excerpt { + font-size: 0.9em; } div.feed { display: block; + clear: both; +} + +div.feed a { + padding: 0.65rem 0.45rem 0.45rem 0.3rem; + color: #ffffff; + text-decoration: none; } -div.feed a * { +div.feed a span { + padding-right: 0.05em; + font-size: 0.95rem; vertical-align: middle; } -div.feed img { - margin: 0 5px 0 2px; +a.el-rss { + background-color: #e98300; +} + +a.el-ical { + background-color: #820000; } div.filterbar, div.filterbar div { @@ -128,3 +140,25 @@ div.filterbar ul.hlist li + li:before { div.el-hidden { display: none; } + +.el-text-align-left { + text-align: left; +} + +.el-text-align-center { + text-align: center; +} + +.el-text-align-right { + text-align: right; +} + +.el-error { + text-align: center; + color: #D8000C; + padding: 0.6em; + margin: 0.2em 1em 1em; + background-color: #FFD2D2; + border: 1px solid #D8000C; + border-radius: 5px; +} \ No newline at end of file diff --git a/wp-content/plugins/event-list/includes/daterange.php b/wp-content/plugins/event-list/includes/daterange.php index 51c6a43aa96fde220d8d48e943abf561b29ffc2c..835b7da3f26e82c86247394e7156edf145666da8 100644 --- a/wp-content/plugins/event-list/includes/daterange.php +++ b/wp-content/plugins/event-list/includes/daterange.php @@ -1,134 +1,168 @@ <?php -if(!defined('WPINC')) { +if ( ! defined( 'WPINC' ) ) { exit; } -// Class for database access via wordpress functions +// Class for database access via WordPress functions class EL_Daterange { + private static $instance; + public $date_formats; + public $daterange_formats; + public static function &get_instance() { // Create class instance if required - if(!isset( self::$instance)) { + if ( ! isset( self::$instance ) ) { self::$instance = new self(); } // Return class instance return self::$instance; } + private function __construct() { $this->init_formats(); } + public function init_formats() { $this->date_formats = array( - 'year' => array('regex' => '^((19[7-9]\d)|(2\d{3}))$', - 'start' => '%v%-01-01', - 'end' => '%v%-12-31'), - 'month' => array('regex' => '^((19[7-9]\d)|(2\d{3}))-(0[1-9]|1[012])$', - 'start' => '%v%-01', - 'end' => '%v%-31'), - 'day' => array('regex' => '^((19[7-9]\d)|(2\d{3}))-(0[1-9]|1[012])-(0[1-9]|[12]\d|3[01])$', - 'start' => '%v%', - 'end' => '%v%'), - 'rel_year' => array('regex' => '^([+-]?\d+|last|next|previous|this)_year[s]?$', - 'start' => '--func--date("Y", strtotime(str_replace("_", " ", "%v%")))."-01-01";', - 'end' => '--func--date("Y", strtotime(str_replace("_", " ", "%v%")))."-12-31";'), - 'rel_month' => array('regex' => '^([+-]?\d+|last|previous|next|this)month[s]?$', - 'start' => '--func--date("Y-m", strtotime(str_replace("_", " ", "%v%")))."-01";', - 'end' => '--func--date("Y-m", strtotime(str_replace("_", " ", "%v%")))."-31";'), - 'rel_week' => array('regex' => '^([+-]?\d+|last|previous|next|this)_week[s]?$', - 'start' => '--func--date("Y-m-d", strtotime(str_replace(array("_","last","previous","next","this"), array(" ","-1","-1","+1","0"), "%v%"))-86400*((date("w")-get_option("start_of_week")+7)%7));', - 'end' => '--func--date("Y-m-d", strtotime(str_replace(array("_","last","previous","next","this"), array(" ","-1","-1","+1","0"), "%v%"))-86400*((date("w")-get_option("start_of_week")+7)%7-6));'), - // replace special values due to some date calculation problems, - // then calculate the new date - // 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) - 'rel_day' => array('regex' => '^((([+-]?\d+|last|previous|next|this)_day[s]?)|yesterday|today|tomorrow)$', - 'start' => '--func--date("Y-m-d", strtotime(str_replace("_", " ", "%v%")));', - 'end' => '--func--date("Y-m-d", strtotime(str_replace("_", " ", "%v%")));'), + 'year' => array( + 'regex' => '^((19[7-9]\d)|(2\d{3}))$', + 'start' => '%v%-01-01', + 'end' => '%v%-12-31', + ), + 'month' => array( + 'regex' => '^((19[7-9]\d)|(2\d{3}))-(0[1-9]|1[012])$', + 'start' => '%v%-01', + 'end' => '%v%-31', + ), + 'day' => array( + 'regex' => '^((19[7-9]\d)|(2\d{3}))-(0[1-9]|1[012])-(0[1-9]|[12]\d|3[01])$', + 'start' => '%v%', + 'end' => '%v%', + ), + 'rel_year' => array( + 'regex' => '^([+-]?\d+|last|next|previous|this)_year[s]?$', + 'start' => '--func--date("Y", strtotime(str_replace("_", " ", "%v%")))."-01-01";', + 'end' => '--func--date("Y", strtotime(str_replace("_", " ", "%v%")))."-12-31";', + ), + 'rel_month' => array( + 'regex' => '^([+-]?\d+|last|previous|next|this)month[s]?$', + 'start' => '--func--date("Y-m", strtotime(str_replace("_", " ", "%v%")))."-01";', + 'end' => '--func--date("Y-m", strtotime(str_replace("_", " ", "%v%")))."-31";', + ), + 'rel_week' => array( + 'regex' => '^([+-]?\d+|last|previous|next|this)_week[s]?$', + 'start' => '--func--date("Y-m-d", strtotime(str_replace(array("_","last","previous","next","this"), array(" ","-1","-1","+1","0"), "%v%"))-86400*((date("w")-get_option("start_of_week")+7)%7));', + 'end' => '--func--date("Y-m-d", strtotime(str_replace(array("_","last","previous","next","this"), array(" ","-1","-1","+1","0"), "%v%"))-86400*((date("w")-get_option("start_of_week")+7)%7-6));', + ), + // replace special values due to some date calculation problems, + // then calculate the new date + // 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) + 'rel_day' => array( + 'regex' => '^((([+-]?\d+|last|previous|next|this)_day[s]?)|yesterday|today|tomorrow)$', + 'start' => '--func--date("Y-m-d", strtotime(str_replace("_", " ", "%v%")));', + 'end' => '--func--date("Y-m-d", strtotime(str_replace("_", " ", "%v%")));', + ), ); $this->daterange_formats = array( - 'date_range' => array('regex' => '.+~.+'), - 'all' => array('regex' => '^all$', - 'start' => '1970-01-01', - 'end' => '2999-12-31'), - 'upcoming' => array('regex' => '^upcoming$', - 'start' => '--func--date("Y-m-d", current_time("timestamp"));', - 'end' => '2999-12-31'), - 'past' => array('regex' => '^past$', - 'start' => '1970-01-01', - 'end' => '--func--date("Y-m-d", current_time("timestamp")-86400);'), // previous day (86400 seconds = 1*24*60*60 = 1 day + 'date_range' => array( 'regex' => '.+~.+' ), + 'all' => array( + 'regex' => '^all$', + 'start' => '1970-01-01', + 'end' => '2999-12-31', + ), + 'upcoming' => array( + 'regex' => '^upcoming$', + 'start' => '--func--date("Y-m-d", current_time("timestamp"));', + 'end' => '2999-12-31', + ), + 'past' => array( + 'regex' => '^past$', + 'start' => '1970-01-01', + 'end' => '--func--date("Y-m-d", current_time("timestamp")-86400);', + ), // previous day (86400 seconds = 1*24*60*60 = 1 day ); } + public function load_formats_helptexts() { - require_once(EL_PATH.'includes/daterange_helptexts.php'); - foreach($date_formats_helptexts as $name => $values) { - $this->date_formats[$name] += $values; + require_once EL_PATH . 'includes/daterange_helptexts.php'; + foreach ( $date_formats_helptexts as $name => $values ) { + $this->date_formats[ $name ] += $values; } - unset($date_formats_helptexts); - foreach($daterange_formats_helptexts as $name => $values) { - $this->daterange_formats[$name] += $values; + unset( $date_formats_helptexts ); + foreach ( $daterange_formats_helptexts as $name => $values ) { + $this->daterange_formats[ $name ] += $values; } - unset($daterange_formats_helptexts); + unset( $daterange_formats_helptexts ); } - public function check_date_format($element, $ret_value=null) { - foreach($this->date_formats as $date_type) { - if(preg_match('@'.$date_type['regex'].'@', $element)) { - return $this->get_date_range($element, $date_type, $ret_value); + + public function check_date_format( $element, $ret_value = null ) { + foreach ( $this->date_formats as $date_type ) { + if ( preg_match( '@' . $date_type['regex'] . '@', $element ) ) { + return $this->get_date_range( $element, $date_type, $ret_value ); } } return null; } - public function check_daterange_format($element) { - foreach($this->daterange_formats as $key => $daterange_type) { - if(preg_match('@'.$daterange_type['regex'].'@', $element)) { - //check for date_range which requires special handling - if('date_range' == $key) { - $sep_pos = strpos($element, "~"); - $startrange = $this->check_date_format(substr($element, 0, $sep_pos), 'start'); - $endrange = $this->check_date_format(substr($element, $sep_pos+1), 'end'); - return array($startrange[0], $endrange[1]); + + public function check_daterange_format( $element ) { + foreach ( $this->daterange_formats as $key => $daterange_type ) { + if ( preg_match( '@' . $daterange_type['regex'] . '@', $element ) ) { + // check for date_range which requires special handling + if ( 'date_range' == $key ) { + $sep_pos = strpos( $element, '~' ); + $startrange = $this->check_date_format( substr( $element, 0, $sep_pos ), 'start' ); + $endrange = $this->check_date_format( substr( $element, $sep_pos + 1 ), 'end' ); + return array( $startrange[0], $endrange[1] ); } - return $this->get_date_range($element, $daterange_type); + return $this->get_date_range( $element, $daterange_type ); } } return null; } - public function get_date_range($element, &$range_type, $ret_value=null) { - if('end' != $ret_value) { + + public function get_date_range( $element, &$range_type, $ret_value = null ) { + if ( 'end' != $ret_value ) { // start date: // set range values by replacing %v% in $range_type string with $element - $range[0] = str_replace('%v%', $element, $range_type['start']); + $range[0] = str_replace( '%v%', $element, $range_type['start'] ); // enum function if required - if(substr($range[0], 0, 8) == '--func--') { //start - eval('$range[0] = '.substr($range[0], 8)); + if ( substr( $range[0], 0, 8 ) == '--func--' ) { // start + eval( '$range[0] = ' . substr( $range[0], 8 ) ); } } - if('start' != $ret_value) { + if ( 'start' != $ret_value ) { // same for end date: - $range[1] = str_replace('%v%', $element, $range_type['end']); - if(substr($range[1], 0, 8) == '--func--') { //end - eval('$range[1] = '.substr($range[1], 8)); + $range[1] = str_replace( '%v%', $element, $range_type['end'] ); + if ( substr( $range[1], 0, 8 ) == '--func--' ) { // end + eval( '$range[1] = ' . substr( $range[1], 8 ) ); } } return $range; } + } -/* create date_create_from_format (DateTime::createFromFormat) alternative for PHP 5.2 +/* + create date_create_from_format (DateTime::createFromFormat) alternative for PHP 5.2 */ -if(!function_exists('date_create_from_format')) { - function date_create_from_format($dformat, $dvalue) { - $schedule = $dvalue; - $schedule_format = str_replace(array('Y','m','d', 'H', 'i','a'), array('%Y','%m','%d', '%I', '%M', '%p'), $dformat); - $ugly = strptime($schedule, $schedule_format); - $ymd = sprintf( +if ( ! function_exists( 'date_create_from_format' ) ) { + + + function date_create_from_format( $dformat, $dvalue ) { + $schedule = $dvalue; + $schedule_format = str_replace( array( 'Y', 'm', 'd', 'H', 'i', 'a' ), array( '%Y', '%m', '%d', '%I', '%M', '%p' ), $dformat ); + $ugly = strptime( $schedule, $schedule_format ); + $ymd = sprintf( // This is a format string that takes six total decimal arguments, then left-pads // them with zeros to either 4 or 2 characters, as needed '%04d-%02d-%02d %02d:%02d:%02d', @@ -139,7 +173,7 @@ if(!function_exists('date_create_from_format')) { $ugly['tm_min'], $ugly['tm_sec'] ); - return new DateTime($ymd); + return new DateTime( $ymd ); } } -?> + diff --git a/wp-content/plugins/event-list/includes/daterange_helptexts.php b/wp-content/plugins/event-list/includes/daterange_helptexts.php index 5173a0838a3b0e74230435df245d6db850ad72ff..336c33eef2e20178fc30ab99efc46d34fef92aa0 100644 --- a/wp-content/plugins/event-list/includes/daterange_helptexts.php +++ b/wp-content/plugins/event-list/includes/daterange_helptexts.php @@ -1,69 +1,94 @@ <?php -if(!defined('WPINC')) { +if ( ! defined( 'WPINC' ) ) { exit; } $date_formats_helptexts = array( - 'year' => array('name' => __('Year','event-list'), - 'desc' => __('A year can be specified in 4 digit format.','event-list').'<br />'. - 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')), - 'examp' => '2015'), + 'year' => array( + 'name' => __( 'Year', 'event-list' ), + 'desc' => __( 'A year can be specified in 4 digit format.', 'event-list' ) . '<br />' . + 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' ) ), + 'examp' => '2015', + ), - 'month' => array('name' => __('Month','event-list'), - '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 />'. - 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')), - 'examp' => '2015-03'), + 'month' => array( + 'name' => __( 'Month', 'event-list' ), + '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 />' . + 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' ) ), + 'examp' => '2015-03', + ), - 'day' => array('name' => __('Day','event-list'), - 'desc' => __('A day can be specified in the format 4 digits for the year, 2 digits for the month and 2 digets for the day, seperated by hyphens (-).','event-list'), - 'examp' => '2015-03-29'), + 'day' => array( + 'name' => __( 'Day', 'event-list' ), + 'desc' => __( 'A day can be specified in the format 4 digits for the year, 2 digits for the month and 2 digets for the day, seperated by hyphens (-).', 'event-list' ), + 'examp' => '2015-03-29', + ), - 'rel_year' => array('name' => __('Relative Year','event-list'), - '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 />'. - 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 />'. - sprintf(__('Additionally the following values are available: %1$s','event-list'), '<em>last_year</em>, <em>next_year</em>, <em>this_year</em>'), - 'examp' => '+1_year'), + 'rel_year' => array( + 'name' => __( 'Relative Year', 'event-list' ), + '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 />' . + 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 />' . + sprintf( __( 'Additionally the following values are available: %1$s', 'event-list' ), '<em>last_year</em>, <em>next_year</em>, <em>this_year</em>' ), + 'examp' => '+1_year', + ), - 'rel_month' => array('name' => __('Relative Month','event-list'), - '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 />'. - 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 />'. - sprintf(__('Additionally the following values are available: %1$s','event-list'), '<em>last_month</em>, <em>next_month</em>, <em>this_month</em>'), - 'examp' => '-6_months'), + 'rel_month' => array( + 'name' => __( 'Relative Month', 'event-list' ), + '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 />' . + 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 />' . + sprintf( __( 'Additionally the following values are available: %1$s', 'event-list' ), '<em>last_month</em>, <em>next_month</em>, <em>this_month</em>' ), + 'examp' => '-6_months', + ), - 'rel_week' => array('name' => __('Relative Week','event-list'), - '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 />'. - 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 />'. - 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 />'. - 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').'" → "'.__('General').'"').'<br />'. - sprintf(__('Additionally the following values are available: %1$s','event-list'), '<em>last_week</em>, <em>next_week</em>, <em>this_week</em>'), - 'examp' => '+3_weeks'), + 'rel_week' => array( + 'name' => __( 'Relative Week', 'event-list' ), + '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 />' . + 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 />' . + 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 />' . + 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' ) . '" → "' . __( 'General' ) . '"' ) . '<br />' . + sprintf( __( 'Additionally the following values are available: %1$s', 'event-list' ), '<em>last_week</em>, <em>next_week</em>, <em>this_week</em>' ), + 'examp' => '+3_weeks', + ), - 'rel_day' => array('name' => __('Relative Day','event-list'), - '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 />'. - 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 />'. - 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>'), - 'examp' => '-10_days'), + 'rel_day' => array( + 'name' => __( 'Relative Day', 'event-list' ), + '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 />' . + 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 />' . + 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>' ), + 'examp' => '-10_days', + ), ); $daterange_formats_helptexts = array( - 'date_range' => array('name' => __('Date range','event-list'), - 'desc' => __('A date rage can be specified via a start date and end date seperated by a tilde (~).<br /> - For the start and end date any available date format can be used.','event-list'), - 'examp' => '2015-03-29~2016'), + 'date_range' => array( + 'name' => __( 'Date range', 'event-list' ), + 'desc' => __( + 'A date rage can be specified via a start date and end date seperated by a tilde (~).<br /> + For the start and end date any available date format can be used.', + 'event-list' + ), + 'examp' => '2015-03-29~2016', + ), - 'all' => array('name' => __('All'), - 'desc' => __('This value defines a range without any limits.','event-list').'<br />'. - sprintf(__('The corresponding date_range format is: %1$s','event-list'), '<em>1970-01-01~2999-12-31</em>'), - 'value' => 'all'), + 'all' => array( + 'name' => __( 'All' ), + 'desc' => __( 'This value defines a range without any limits.', 'event-list' ) . '<br />' . + sprintf( __( 'The corresponding date_range format is: %1$s', 'event-list' ), '<em>1970-01-01~2999-12-31</em>' ), + 'value' => 'all', + ), - 'upcoming' => array('name' => __('Upcoming','event-list'), - 'desc' => __('This value defines a range from the actual day to the future.','event-list').'<br />'. - sprintf(__('The corresponding date_range format is: %1$s','event-list'), '<em>today~2999-12-31</em>'), - 'value' => 'upcoming'), + 'upcoming' => array( + 'name' => __( 'Upcoming', 'event-list' ), + 'desc' => __( 'This value defines a range from the actual day to the future.', 'event-list' ) . '<br />' . + sprintf( __( 'The corresponding date_range format is: %1$s', 'event-list' ), '<em>today~2999-12-31</em>' ), + 'value' => 'upcoming', + ), - 'past' => array('name' => __('Past','event-list'), - 'desc' => __('This value defines a range from the past to the previous day.','event-list').'<br />'. - sprintf(__('The corresponding date_range format is: %1$s','event-list'), '<em>1970-01-01~yesterday</em>'), - 'value' => 'past'), + 'past' => array( + 'name' => __( 'Past', 'event-list' ), + 'desc' => __( 'This value defines a range from the past to the previous day.', 'event-list' ) . '<br />' . + sprintf( __( 'The corresponding date_range format is: %1$s', 'event-list' ), '<em>1970-01-01~yesterday</em>' ), + 'value' => 'past', + ), ); -?> + diff --git a/wp-content/plugins/event-list/includes/event.php b/wp-content/plugins/event-list/includes/event.php index d970019f9ad1456213284e688348a638276148d4..9fa0c6e664a3d9a6b169026b3df33766cab29e53 100644 --- a/wp-content/plugins/event-list/includes/event.php +++ b/wp-content/plugins/event-list/includes/event.php @@ -1,190 +1,221 @@ <?php -if(!defined('WPINC')) { +if ( ! defined( 'WPINC' ) ) { exit; } -require_once(EL_PATH.'includes/events_post_type.php'); +require_once EL_PATH . 'includes/events_post_type.php'; // fix for PHP 5.2 (provide function date_create_from_format defined in daterange.php) -if(version_compare(PHP_VERSION, '5.3') < 0) { - require_once(EL_PATH.'includes/daterange.php'); +if ( version_compare( PHP_VERSION, '5.3' ) < 0 ) { + require_once EL_PATH . 'includes/daterange.php'; } // Class to manage categories class EL_Event { + private $events_post_type; + public $post; + public $categories; + public $title = ''; + public $startdate = '0000-00-00'; + public $enddate = '0000-00-00'; + public $starttime = ''; + public $location = ''; + + public $excerpt = ''; + public $content = ''; - public function __construct($post) { + + public function __construct( $post ) { $this->events_post_type = &EL_Events_Post_Type::get_instance(); - if($post instanceof WP_Post) { + if ( $post instanceof WP_Post ) { $this->post = $post; - } - else { - $this->post = get_post($post); - if(0 === $this->post->ID) { - die('ERROR: Post not found!'); + } else { + $this->post = get_post( $post ); + if ( null === $this->post ) { + return; } } $this->load_eventdata(); } + private function load_eventdata() { - $this->title = $this->post->post_title; + $this->title = $this->post->post_title; + $this->excerpt = $this->post->post_excerpt; $this->content = $this->post->post_content; - $postmeta = get_post_meta($this->post->ID); - foreach(array('startdate', 'enddate', 'starttime', 'location') as $meta) { - $this->$meta = isset($postmeta[$meta][0]) ? $postmeta[$meta][0] : ''; + $postmeta = get_post_meta( $this->post->ID ); + foreach ( array( 'startdate', 'enddate', 'starttime', 'location' ) as $meta ) { + $this->$meta = isset( $postmeta[ $meta ][0] ) ? $postmeta[ $meta ][0] : ''; } - $this->categories = get_the_terms($this->post, $this->events_post_type->taxonomy); - if(!is_array($this->categories)) { + $this->categories = get_the_terms( $this->post, $this->events_post_type->taxonomy ); + if ( ! is_array( $this->categories ) ) { $this->categories = array(); } return true; } - public static function save($eventdata) { + + public static function save( $eventdata ) { // create new post - $postdata['post_type'] = 'el_events'; - $postdata['post_status'] = 'publish'; - $postdata['post_title'] = $eventdata['title']; + $postdata['post_type'] = 'el_events'; + $postdata['post_status'] = 'publish'; + $postdata['post_title'] = $eventdata['title']; $postdata['post_content'] = $eventdata['content']; - if(isset($eventdata['slug'])) { + if ( isset( $eventdata['excerpt'] ) ) { + $postdata['post_excerpt'] = $eventdata['excerpt']; + } + if ( isset( $eventdata['slug'] ) ) { $postdata['post_name'] = $eventdata['slug']; } - if(isset($eventdata['post_date'])) { + if ( isset( $eventdata['post_date'] ) ) { $postdata['post_date'] = $eventdata['post_date']; } - if(isset($eventdata['post_user'])) { + if ( isset( $eventdata['post_user'] ) ) { $postdata['post_user'] = $eventdata['post_user']; } - $pid = wp_insert_post($postdata); + $pid = wp_insert_post( $postdata ); // set categories - $cats = self::set_categories($pid, $eventdata['categories']); + $cats = self::set_categories( $pid, $eventdata['categories'] ); // save postmeta (created event instance) - if(!empty($pid)) { - $post = self::save_postmeta($pid, $eventdata); + if ( ! empty( $pid ) ) { + $post = self::save_postmeta( $pid, $eventdata ); return $post; - } - else { + } else { global $wpdb; - $wpdb->update($wpdb->posts, array('post_status' => 'pending'), array('ID' => $pid)); + $wpdb->update( $wpdb->posts, array( 'post_status' => 'pending' ), array( 'ID' => $pid ) ); } return false; } + /** ************************************************************************************************************ * Create or update the event data (all event data except title and content) * - * @param int $pid The post id of the event to update. - * @param array $eventdata The event data provided in an array where the key is the event field and the - * value is the corresponding data. The provided data does not have to be - * sanitized from the user imputs because this is done in the function. + * @param int $pid The post id of the event to update. + * @param array $eventdata The event data provided in an array where the key is the event field and the + * value is the corresponding data. The provided data does not have to be + * sanitized from the user imputs because this is done in the function. * @return int|bool event id ... for a successfully created new event * true ... for a successfully modified existing event * false ... if an error occured during the creation or modification an event **************************************************************************************************************/ - public static function save_postmeta($pid, $eventdata) { - $instance = new self($pid); - $errors = array(); + public static function save_postmeta( $pid, $eventdata ) { + $instance = new self( $pid ); + $errors = array(); // Sanitize event data (event data will be provided without sanitation of user input) - $eventdata['startdate'] = empty($eventdata['startdate']) ? '' : preg_replace('/[^0-9\-]/', '', $eventdata['startdate']); - $eventdata['enddate'] = empty($eventdata['enddate']) ? '' : preg_replace('/[^0-9\-]/', '', $eventdata['enddate']); - $eventdata['starttime'] = empty($eventdata['starttime']) ? '' : wp_kses_post($eventdata['starttime']); - $eventdata['location'] = empty($eventdata['location']) ? '' : wp_kses_post($eventdata['location']); - - //startdate - $instance->startdate = $instance->validate_date($eventdata['startdate']); - if(empty($instance->startdate)) { - $errors[] = __('No valid start date provided','event-list'); + $eventdata['startdate'] = empty( $eventdata['startdate'] ) ? '' : preg_replace( '/[^0-9\-]/', '', $eventdata['startdate'] ); + $eventdata['enddate'] = empty( $eventdata['enddate'] ) ? '' : preg_replace( '/[^0-9\-]/', '', $eventdata['enddate'] ); + $eventdata['starttime'] = empty( $eventdata['starttime'] ) ? '' : wp_kses_post( $eventdata['starttime'] ); + $eventdata['location'] = empty( $eventdata['location'] ) ? '' : wp_kses_post( $eventdata['location'] ); + + // startdate + $instance->startdate = $instance->validate_date( $eventdata['startdate'] ); + if ( empty( $instance->startdate ) ) { + $errors[] = __( 'No valid start date provided', 'event-list' ); } - //enddate - $instance->enddate = $instance->validate_date($eventdata['enddate']); - if(empty($instance->enddate) || new DateTime($instance->enddate) < new DateTime($instance->startdate)) { + // enddate + $instance->enddate = $instance->validate_date( $eventdata['enddate'] ); + if ( empty( $instance->enddate ) || new DateTime( $instance->enddate ) < new DateTime( $instance->startdate ) ) { $instance->enddate = $instance->startdate; } - //time - $instance->starttime = $instance->validate_time($eventdata['starttime']); - //location - $instance->location = stripslashes($eventdata['location']); + // time + $instance->starttime = $instance->validate_time( $eventdata['starttime'] ); + // location + $instance->location = stripslashes( $eventdata['location'] ); // update all data - foreach(array('startdate', 'enddate', 'starttime', 'location') as $meta) { - update_post_meta($pid, $meta, $instance->$meta); + foreach ( array( 'startdate', 'enddate', 'starttime', 'location' ) as $meta ) { + update_post_meta( $pid, $meta, $instance->$meta ); } // error handling: set event back to pending, and publish error message - if(!empty($errors)) { - //if((isset($_POST['publish']) || isset( $_POST['save'] ) ) && $_POST['post_status'] == 'publish' ) { + if ( ! empty( $errors ) ) { + // if((isset($_POST['publish']) || isset( $_POST['save'] ) ) && $_POST['post_status'] == 'publish' ) { global $wpdb; - $wpdb->update($wpdb->posts, array('post_status' => 'pending'), array('ID' => $pid)); - add_filter('redirect_post_location', create_function('$location','return add_query_arg("'.implode('<br />', $errors).'", "4", $location);')); - unset($instance); + $wpdb->update( $wpdb->posts, array( 'post_status' => 'pending' ), array( 'ID' => $pid ) ); + add_filter( 'redirect_post_location', array( &$this, 'save_metadata_redirect_post_location_filter' ) ); + unset( $instance ); return false; } return $instance; } - private static function set_categories($pid, $cats) { - return wp_set_object_terms($pid, $cats, EL_Events_Post_Type::get_instance()->taxonomy); + + private function save_metadata_redirect_post_location_filter( $location ) { + return add_query_arg( "'.implode('<br />', $errors).'", '4', $location ); + } + + + private static function set_categories( $pid, $cats ) { + return wp_set_object_terms( $pid, $cats, EL_Events_Post_Type::get_instance()->taxonomy ); } + public function starttime_i18n() { - $timestamp = strtotime($this->starttime); - if($timestamp) { - return date_i18n(get_option('time_format'), $timestamp); + $timestamp = strtotime( $this->starttime ); + if ( $timestamp ) { + return date_i18n( get_option( 'time_format' ), $timestamp ); } return $this->starttime; } - private function validate_date($datestring) { - $d = date_create_from_format('Y-m-d', $datestring); - if($d && $d->format('Y-m-d') == $datestring - && 1970 <= $d->format('Y') - && 2999 >= $d->format('Y')) { + + private function validate_date( $datestring ) { + $d = date_create_from_format( 'Y-m-d', $datestring ); + if ( $d && $d->format( 'Y-m-d' ) == $datestring + && 1970 <= $d->format( 'Y' ) + && 2999 >= $d->format( 'Y' ) ) { return $datestring; } return false; } - public static function validate_time($timestring) { + + public static function validate_time( $timestring ) { // Try to extract a correct time from the provided text - $timestamp = strtotime(stripslashes($timestring)); + $timestamp = strtotime( stripslashes( $timestring ) ); // Return a standard time format if the conversion was successful - if($timestamp) { - return date('H:i:s', $timestamp); + if ( $timestamp ) { + return date( 'H:i:s', $timestamp ); } // Else return the given text return $timestring; } + public function get_category_ids() { - return $this->get_category_fields('term_id'); + return $this->get_category_fields( 'term_id' ); } + public function get_category_slugs() { - return $this->get_category_fields('slug'); + return $this->get_category_fields( 'slug' ); } + public function get_category_names() { - return $this->get_category_fields('name'); + return $this->get_category_fields( 'name' ); } - private function get_category_fields($field) { - $list = wp_list_pluck($this->categories, $field); - if(!is_array($list)) { + + private function get_category_fields( $field ) { + $list = wp_list_pluck( $this->categories, $field ); + if ( ! is_array( $list ) ) { $list = array(); } return $list; } + /** ************************************************************************************************************ * Truncate HTML, close opened tags * @@ -199,105 +230,100 @@ class EL_Event { * @param 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. ***************************************************************************************************************/ - public function truncate($html, $length, $skip=false, $preserve_tags=true, $link=false) { - mb_internal_encoding("UTF-8"); - if('auto' == $length) { + public function truncate( $html, $length, $skip = false, $preserve_tags = true, $link = false ) { + mb_internal_encoding( 'UTF-8' ); + if ( 'auto' == $length ) { // add wrapper div with css styles for css truncate and return - return '<div style="white-space:nowrap; overflow:hidden; text-overflow:ellipsis">'.$html.'</div>'; - } - elseif(empty($length) || mb_strlen($html) <= $length || $skip) { + return '<div style="white-space:nowrap; overflow:hidden; text-overflow:ellipsis">' . $html . '</div>'; + } elseif ( empty( $length ) || mb_strlen( $html ) <= $length || $skip ) { // do nothing return $html; - } - elseif(!$preserve_tags) { + } elseif ( ! $preserve_tags ) { // only shorten the text - return mb_substr($html, 0, $length); - } - else { + return mb_substr( $html, 0, $length ); + } else { // truncate with preserving html tags - $truncated = false; + $truncated = false; $printedLength = 0; - $position = 0; - $tags = array(); - $out = ''; - while($printedLength < $length && $this->mb_preg_match('{</?([a-z]+\d?)[^>]*>|&#?[a-zA-Z0-9]+;}', $html, $match, PREG_OFFSET_CAPTURE, $position)) { + $position = 0; + $tags = array(); + $out = ''; + while ( $printedLength < $length && $this->mb_preg_match( '{</?([a-z]+\d?)[^>]*>|&#?[a-zA-Z0-9]+;}', $html, $match, PREG_OFFSET_CAPTURE, $position ) ) { list($tag, $tagPosition) = $match[0]; // Print text leading up to the tag - $str = mb_substr($html, $position, $tagPosition - $position); - if($printedLength + mb_strlen($str) > $length) { - $out .= mb_substr($str, 0, $length - $printedLength); + $str = mb_substr( $html, $position, $tagPosition - $position ); + if ( $printedLength + mb_strlen( $str ) > $length ) { + $out .= mb_substr( $str, 0, $length - $printedLength ); $printedLength = $length; - $truncated = true; + $truncated = true; break; } - $out .= $str; - $printedLength += mb_strlen($str); - if('&' == $tag[0]) { + $out .= $str; + $printedLength += mb_strlen( $str ); + if ( '&' == $tag[0] ) { // Handle the entity $out .= $tag; $printedLength++; - } - else { + } else { // Handle the tag $tagName = $match[1][0]; - if($this->mb_preg_match('{^</}', $tag)) { + if ( $this->mb_preg_match( '{^</}', $tag ) ) { // This is a closing tag - $openingTag = array_pop($tags); - if($openingTag != $tagName) { + $openingTag = array_pop( $tags ); + if ( $openingTag != $tagName ) { // Not properly nested tag found: trigger a warning and add the not matching opening tag again - trigger_error('Not properly nested tag found (last opening tag: '.$openingTag.', closing tag: '.$tagName.')', E_USER_NOTICE); + trigger_error( 'Not properly nested tag found (last opening tag: ' . $openingTag . ', closing tag: ' . $tagName . ')', E_USER_NOTICE ); $tags[] = $openingTag; - } - else { + } else { $out .= $tag; } - } - else if($this->mb_preg_match('{/\s*>$}', $tag)) { + } elseif ( $this->mb_preg_match( '{/\s*>$}', $tag ) ) { // Self-closing tag $out .= $tag; - } - else { + } else { // Opening tag - $out .= $tag; + $out .= $tag; $tags[] = $tagName; } } // Continue after the tag - $position = $tagPosition + mb_strlen($tag); + $position = $tagPosition + mb_strlen( $tag ); } // Print any remaining text - if($printedLength < $length && $position < mb_strlen($html)) { - $out .= mb_substr($html, $position, $length - $printedLength); + if ( $printedLength < $length && $position < mb_strlen( $html ) ) { + $out .= mb_substr( $html, $position, $length - $printedLength ); } - // Print ellipsis ("...") if the html was truncated - if($truncated) { - if($link) { - $out .= ' <a href="'.$link.'">…</a>'; - } - else { - $out .= ' …'; + // Print ellipsis ("...") if the html was truncated. + if ( $truncated ) { + if ( $link ) { + $out .= ' <a href="' . $link . '"> [' . __( 'read more', 'event-list' ) . '…]</a>'; + } else { + $out .= ' [' . __( 'read more', 'event-list' ) . '…]'; } } // Close any open tags. - while(!empty($tags)) { - $out .= '</'.array_pop($tags).'>'; + while ( ! empty( $tags ) ) { + $out .= '</' . array_pop( $tags ) . '>'; } return $out; } } - private function mb_preg_match($ps_pattern, $ps_subject, &$pa_matches=null, $pn_flags=0, $pn_offset=0, $ps_encoding=null) { + + private function mb_preg_match( $ps_pattern, $ps_subject, &$pa_matches = null, $pn_flags = 0, $pn_offset = 0, $ps_encoding = null ) { // WARNING! - All this function does is to correct offsets, nothing else: - //(code is independent of PREG_PATTER_ORDER / PREG_SET_ORDER) - if(is_null($ps_encoding)) { + // (code is independent of PREG_PATTER_ORDER / PREG_SET_ORDER) + if ( is_null( $ps_encoding ) ) { $ps_encoding = mb_internal_encoding(); } - $pn_offset = strlen(mb_substr($ps_subject, 0, $pn_offset, $ps_encoding)); - $out = preg_match($ps_pattern, $ps_subject, $pa_matches, $pn_flags, $pn_offset); - if($out && ($pn_flags & PREG_OFFSET_CAPTURE)) - foreach($pa_matches as &$ha_match) { - $ha_match[1] = mb_strlen(substr($ps_subject, 0, $ha_match[1]), $ps_encoding); + $pn_offset = strlen( mb_substr( $ps_subject, 0, $pn_offset, $ps_encoding ) ); + $out = preg_match( $ps_pattern, $ps_subject, $pa_matches, $pn_flags, $pn_offset ); + if ( $out && ( $pn_flags & PREG_OFFSET_CAPTURE ) ) { + foreach ( $pa_matches as &$ha_match ) { + $ha_match[1] = mb_strlen( substr( $ps_subject, 0, $ha_match[1] ), $ps_encoding ); } + } return $out; } + } diff --git a/wp-content/plugins/event-list/includes/events.php b/wp-content/plugins/event-list/includes/events.php index 17a3044e0478fdf9969554d5e229c8ba2a0ec70f..281c1a3d8a060356f1483386b855c786d8cf3d66 100644 --- a/wp-content/plugins/event-list/includes/events.php +++ b/wp-content/plugins/event-list/includes/events.php @@ -1,58 +1,84 @@ <?php -if(!defined('WPINC')) { +if ( ! defined( 'WPINC' ) ) { exit; } -require_once(EL_PATH.'includes/options.php'); -require_once(EL_PATH.'includes/events_post_type.php'); -require_once(EL_PATH.'includes/daterange.php'); -require_once(EL_PATH.'includes/event.php'); +require_once EL_PATH . 'includes/options.php'; +require_once EL_PATH . 'includes/events_post_type.php'; +require_once EL_PATH . 'includes/daterange.php'; +require_once EL_PATH . 'includes/event.php'; /** * Class to access events */ class EL_Events { + private static $instance; + private $options; + private $events_post_type; + private $daterange; + public static function &get_instance() { // Create class instance if required - if(!isset(self::$instance)) { + if ( ! isset( self::$instance ) ) { self::$instance = new self(); } // Return class instance return self::$instance; } + private function __construct() { - $this->options = &EL_Options::get_instance(); + $this->options = &EL_Options::get_instance(); $this->events_post_type = &EL_Events_Post_Type::get_instance(); - $this->daterange = &EL_Daterange::get_instance(); + $this->daterange = &EL_Daterange::get_instance(); } - public function get($options=array()) { + + public function get( $options = array() ) { global $wpdb; - $options = wp_parse_args($options, array('date_filter'=>null, 'cat_filter'=>null, 'num_events'=>0, 'order'=>array('startdate ASC', 'starttime ASC', 'enddate ASC'), 'status'=>'publish')); - $event_sql = $this->get_events_sql($options); - $filter_sql = $this->get_sql_filter_string($options['date_filter'], $options['cat_filter']); - $sql = 'SELECT ID FROM ('.$event_sql.') AS events WHERE '.$filter_sql.' ORDER BY '.implode(', ', $options['order']); - if('upcoming' === $options['date_filter'] && is_numeric($options['num_events']) && 0 < $options['num_events']) { - $sql .= ' LIMIT '.$options['num_events']; + $options = wp_parse_args( + $options, + array( + 'date_filter' => null, + 'cat_filter' => null, + 'num_events' => 0, + 'order' => array( 'startdate ASC', 'starttime ASC', 'enddate ASC' ), + 'status' => 'publish', + ) + ); + $event_sql = $this->get_events_sql( $options ); + $filter_sql = $this->get_sql_filter_string( $options['date_filter'], $options['cat_filter'] ); + $sql = 'SELECT ID FROM (' . $event_sql . ') AS events WHERE ' . $filter_sql . ' ORDER BY ' . implode( ', ', $options['order'] ); + if ( 'upcoming' === $options['date_filter'] && is_numeric( $options['num_events'] ) && 0 < $options['num_events'] ) { + $sql .= ' LIMIT ' . $options['num_events']; } - $result = $wpdb->get_results($sql, 'ARRAY_N'); + $result = $wpdb->get_results( $sql, 'ARRAY_N' ); $events = array(); - foreach($result as $row) { - $events[] = new EL_Event($row[0]); + foreach ( $result as $row ) { + $events[] = new EL_Event( $row[0] ); } return $events; } - public function get_filter_list($type, $options) { + + public function get_filter_list( $type, $options ) { global $wpdb; - $options = wp_parse_args($options, array('date_filter'=>null, 'cat_filter'=>null, 'order'=>'asc', 'hierarchical'=>false, 'status'=>'publish')); - switch($type) { + $options = wp_parse_args( + $options, + array( + 'date_filter' => null, + 'cat_filter' => null, + 'order' => 'asc', + 'hierarchical' => false, + 'status' => 'publish', + ) + ); + switch ( $type ) { case 'years': $distinct = 'SUBSTR(`startdate`,1,4)'; break; @@ -63,32 +89,32 @@ class EL_Events { $distinct = '`categories`'; break; default: - die('ERROR: Unknown filterlist type!'); + die( 'ERROR: Unknown filterlist type!' ); } - $event_sql = $this->get_events_sql($options); - $where = $this->get_sql_filter_string($options['date_filter'], $options['cat_filter']); - if('desc' != $options['order']) { + $event_sql = $this->get_events_sql( $options ); + $where = $this->get_sql_filter_string( $options['date_filter'], $options['cat_filter'] ); + if ( 'desc' != $options['order'] ) { $options['order'] = 'asc'; // standard order is ASC } - $sql = 'SELECT DISTINCT '.$distinct.' AS listitems FROM ('.$event_sql.' WHERE '.$where.') AS filterlist ORDER BY listitems '.strtoupper($options['order']); - $result = wp_list_pluck($wpdb->get_results($sql), 'listitems'); - if('categories' === $type && count($result)) { + $sql = 'SELECT DISTINCT ' . $distinct . ' AS listitems FROM (' . $event_sql . ' WHERE ' . $where . ') AS filterlist ORDER BY listitems ' . strtoupper( $options['order'] ); + $result = wp_list_pluck( $wpdb->get_results( $sql ), 'listitems' ); + if ( 'categories' === $type && count( $result ) ) { // split result at | chars $cats = array(); - foreach($result as $concat_cat) { - if(!empty($concat_cat)) { - $cats = array_merge($cats, explode('|', substr($concat_cat, 1, -1))); + foreach ( $result as $concat_cat ) { + if ( ! empty( $concat_cat ) ) { + $cats = array_merge( $cats, explode( '|', substr( $concat_cat, 1, -1 ) ) ); } } - $result = array_unique($cats); - sort($result); + $result = array_unique( $cats ); + sort( $result ); } // handling of the hierarchical category structure - if('categories' === $type && $options['hierarchical']) { + if ( 'categories' === $type && $options['hierarchical'] ) { // create terms object array $terms = array(); - foreach($result as $cat) { - $terms[] = $this->get_cat_by_slug($cat); + foreach ( $result as $cat ) { + $terms[] = $this->get_cat_by_slug( $cat ); } /* * Separate elements into two buckets: top level and children elements. @@ -96,186 +122,210 @@ class EL_Events { * Children_elements[10][] contains all sub-elements whose parent is 10. */ $toplevel_elements = array(); - $children_elements = array(); - foreach($terms as $t) { - if(empty($t->parent)) { + $children_elements = array(); + foreach ( $terms as $t ) { + if ( empty( $t->parent ) ) { $toplevel_elements[] = $t; - } - else { - $children_elements[$t->parent][] = $t; + } else { + $children_elements[ $t->parent ][] = $t; } } // create return array $result = array(); - foreach($toplevel_elements as $e) { - $this->add_term_to_list($e, 0, $children_elements, $result); + foreach ( $toplevel_elements as $e ) { + $this->add_term_to_list( $e, 0, $children_elements, $result ); } // handle the children_elements of which the corresponding toplevel element is not included - foreach($children_elements as $eid => &$e) { + foreach ( $children_elements as $eid => &$e ) { // continue if parent is available in children_elements -> the elements will be handled there - if(isset($children_elements[$this->get_cat_by_id($eid)->parent])) { + if ( isset( $children_elements[ $this->get_cat_by_id( $eid )->parent ] ) ) { continue; } - foreach($e as &$op) { - $this->add_term_to_list($op, 0, $children_elements, $result); + foreach ( $e as &$op ) { + $this->add_term_to_list( $op, 0, $children_elements, $result ); } } } return $result; } - private function add_term_to_list(&$element, $level, &$children, &$list) { + + private function add_term_to_list( &$element, $level, &$children, &$list ) { // Add level to object and add object to list $element->level = $level; - $list[] = $element; + $list[] = $element; // Handle children of element - if(isset($children[$element->term_id])) { - foreach($children[$element->term_id] as &$c) { - $this->add_term_to_list($c, $level+1, $children, $list); + if ( isset( $children[ $element->term_id ] ) ) { + foreach ( $children[ $element->term_id ] as &$c ) { + $this->add_term_to_list( $c, $level + 1, $children, $list ); } - unset($children[$element->term_id]); + unset( $children[ $element->term_id ] ); } } - private function get_events_sql($options) { + + private function get_events_sql( $options ) { global $wpdb; - $options = wp_parse_args($options, array('posts_fields'=>'ID', 'postmeta_fields'=>array('startdate', 'enddate', 'starttime', 'location'), 'incl_categories'=>true, 'status'=>'publish')); - $sql = 'SELECT * FROM (SELECT DISTINCT '.implode(', ', (array)$options['posts_fields']); - foreach((array)$options['postmeta_fields'] as $pm) { - $sql .= ', (SELECT meta_value FROM '.$wpdb->postmeta.' WHERE '.$wpdb->postmeta.'.meta_key = "'.$pm.'" AND '.$wpdb->postmeta.'.post_id = '.$wpdb->posts.'.ID) AS '.$pm; + $options = wp_parse_args( + $options, + array( + 'posts_fields' => 'ID', + 'postmeta_fields' => array( 'startdate', 'enddate', 'starttime', 'location' ), + 'incl_categories' => true, + 'status' => 'publish', + ) + ); + $sql = 'SELECT * FROM (SELECT DISTINCT ' . implode( ', ', (array) $options['posts_fields'] ); + foreach ( (array) $options['postmeta_fields'] as $pm ) { + $sql .= ', (SELECT meta_value FROM ' . $wpdb->postmeta . ' WHERE ' . $wpdb->postmeta . '.meta_key = "' . $pm . '" AND ' . $wpdb->postmeta . '.post_id = ' . $wpdb->posts . '.ID) AS ' . $pm; } - if($options['incl_categories']) { - $sql .= ', (CONCAT("|", (SELECT GROUP_CONCAT('.$wpdb->terms.'.slug SEPARATOR "|") FROM '.$wpdb->terms - .' INNER JOIN '.$wpdb->term_taxonomy.' ON '.$wpdb->terms.'.term_id = '.$wpdb->term_taxonomy.'.term_id' - .' INNER JOIN '.$wpdb->term_relationships.' wpr ON wpr.term_taxonomy_id = '.$wpdb->term_taxonomy.'.term_taxonomy_id' - .' WHERE taxonomy= "'.$this->events_post_type->taxonomy.'" AND '.$wpdb->posts.'.ID = wpr.object_id' - .'), "|")) AS categories'; + if ( $options['incl_categories'] ) { + $sql .= ', (CONCAT("|", (SELECT GROUP_CONCAT(' . $wpdb->terms . '.slug SEPARATOR "|") FROM ' . $wpdb->terms + . ' INNER JOIN ' . $wpdb->term_taxonomy . ' ON ' . $wpdb->terms . '.term_id = ' . $wpdb->term_taxonomy . '.term_id' + . ' INNER JOIN ' . $wpdb->term_relationships . ' wpr ON wpr.term_taxonomy_id = ' . $wpdb->term_taxonomy . '.term_taxonomy_id' + . ' WHERE taxonomy= "' . $this->events_post_type->taxonomy . '" AND ' . $wpdb->posts . '.ID = wpr.object_id' + . '), "|")) AS categories'; } - $status_sql = empty($options['status']) ? '' : ' AND post_status = "'.$options['status'].'"'; - $sql .= ' FROM '.$wpdb->posts.' WHERE post_type = "el_events"'.$status_sql.') AS events'; + $status_sql = empty( $options['status'] ) ? '' : ' AND post_status = "' . $options['status'] . '"'; + $sql .= ' FROM ' . $wpdb->posts . ' WHERE post_type = "el_events"' . $status_sql . ') AS events'; return $sql; } - public function get_num_events($status='publish') { - $count = wp_count_posts('el_events'); + + public function get_num_events( $status = 'publish' ) { + $count = wp_count_posts( 'el_events' ); // return special case 'all' - if('all' === $status) { + if ( 'all' === $status ) { return $count->publish + $count->future + $count->draft + $count->pending + $count->private; } - if(in_array($status, array('publish', 'future', 'draft', 'pending', 'private', 'trash', 'auto-draft', 'inherit'))) { + if ( in_array( $status, array( 'publish', 'future', 'draft', 'pending', 'private', 'trash', 'auto-draft', 'inherit' ) ) ) { return $count->$status; } return false; } - public function delete_events($id_array) { + + public function delete_events( $id_array ) { global $wpdb; // sanitize to int values only - $id_array = array_map('intval', $id_array); - if(in_array(0, $id_array)) { + $id_array = array_map( 'intval', $id_array ); + if ( in_array( 0, $id_array ) ) { // something is wrong with the event_ids array return false; } // sql query - $num_deleted = intval($wpdb->query('DELETE FROM '.$this->table.' WHERE id IN ('.implode(',', $id_array).')')); - return $num_deleted == count($id_array); + $num_deleted = intval( $wpdb->query( 'DELETE FROM ' . $this->table . ' WHERE id IN (' . implode( ',', $id_array ) . ')' ) ); + return $num_deleted == count( $id_array ); } + public function count_events( $slug ) { global $wpdb; - $sql = 'SELECT COUNT(*) FROM '.$this->table.' WHERE categories LIKE "%|'.$slug.'|%"'; + $sql = 'SELECT COUNT(*) FROM ' . $this->table . ' WHERE categories LIKE "%|' . $slug . '|%"'; return $wpdb->get_var( $sql ); } - private function get_sql_filter_string($date_filter=null, $cat_filter=null) { + + private function get_sql_filter_string( $date_filter = null, $cat_filter = null ) { $sql_filter_string = ''; // date filter - $date_filter=str_replace(' ','',$date_filter); - if(null != $date_filter && 'all' != $date_filter && '' != $date_filter) { - $sql_filter_string .= $this->filter_walker($date_filter, 'sql_date_filter'); + $date_filter = str_replace( ' ', '', $date_filter ); + if ( null != $date_filter && 'all' != $date_filter && '' != $date_filter ) { + $sql_filter_string .= $this->filter_walker( $date_filter, 'sql_date_filter' ); } // cat_filter - $cat_filter=str_replace(' ', '', $cat_filter); - if(null != $cat_filter && 'all' != $cat_filter && '' != $cat_filter) { - if('' != $sql_filter_string) { + $cat_filter = str_replace( ' ', '', $cat_filter ); + if ( null != $cat_filter && 'all' != $cat_filter && '' != $cat_filter ) { + if ( '' != $sql_filter_string ) { $sql_filter_string .= ' AND '; } - $sql_filter_string .= $this->filter_walker($cat_filter, 'sql_cat_filter'); + $sql_filter_string .= $this->filter_walker( $cat_filter, 'sql_cat_filter' ); } // no filter - if('' == $sql_filter_string) { + if ( '' == $sql_filter_string ) { $sql_filter_string = '1'; // in SQL "WHERE 1" is used to show all events } return $sql_filter_string; } - private function filter_walker(&$filter_text, $callback) { - $delimiters = array('&' => ' AND ', - '|' => ' OR ', - ',' => ' OR ', - '(' => '(', - ')' => ')'); - $delimiter_keys = array_keys($delimiters); - $element = ''; - $filter_length = strlen($filter_text); - $filter_sql = '('; - for($i=0; $i<$filter_length; $i++) { - if(in_array($filter_text[$i], $delimiter_keys)) { - if('' !== $element) { - $filter_sql .= call_user_func(array($this, $callback), $element); - $element = ''; + + private function filter_walker( &$filter_text, $callback ) { + $delimiters = array( + '&' => ' AND ', + '|' => ' OR ', + ',' => ' OR ', + '(' => '(', + ')' => ')', + ); + $delimiter_keys = array_keys( $delimiters ); + $element = ''; + $filter_length = strlen( $filter_text ); + $filter_sql = '('; + for ( $i = 0; $i < $filter_length; $i++ ) { + if ( in_array( $filter_text[ $i ], $delimiter_keys ) ) { + if ( '' !== $element ) { + $filter_sql .= call_user_func( array( $this, $callback ), $element ); + $element = ''; } - $filter_sql .= $delimiters[$filter_text[$i]]; - } - else { - $element .= $filter_text[$i]; + $filter_sql .= $delimiters[ $filter_text[ $i ] ]; + } else { + $element .= $filter_text[ $i ]; } } - if('' !== $element) { - $filter_sql .= call_user_func(array($this, $callback), $element); + if ( '' !== $element ) { + $filter_sql .= call_user_func( array( $this, $callback ), $element ); } - return $filter_sql.')'; + return $filter_sql . ')'; } - private function sql_date_filter($element) { - $range = $this->daterange->check_date_format($element); - if(null === $range) { - $range = $this->daterange->check_daterange_format($element); + + private function sql_date_filter( $element ) { + $range = $this->daterange->check_date_format( $element ); + if ( null === $range ) { + $range = $this->daterange->check_daterange_format( $element ); } - if(null === $range) { - //set to standard (upcoming) - $range = $this->daterange->get_date_range($element, $this->options->daterange_formats['upcoming']); + if ( null === $range ) { + // set to standard (upcoming) + $range = $this->daterange->get_date_range( $element, $this->options->daterange_formats['upcoming'] ); } - $date_for_startrange = ('' == $this->options->get('el_multiday_filterrange')) ? 'startdate' : 'enddate'; - return '('.$date_for_startrange.' >= "'.$range[0].'" AND startdate <= "'.$range[1].'")'; + $date_for_startrange = ( '' == $this->options->get( 'el_multiday_filterrange' ) ) ? 'startdate' : 'enddate'; + return '(' . $date_for_startrange . ' >= "' . $range[0] . '" AND startdate <= "' . $range[1] . '")'; } - private function sql_cat_filter ($element) { - return 'categories LIKE "%|'.$element.'|%"'; + + private function sql_cat_filter( $element ) { + return 'categories LIKE "%|' . $element . '|%"'; } - public function cat_exists($cat_slug) { - return (get_term_by('slug', $cat_slug, $this->events_post_type->taxonomy) instanceof WP_Term); + + public function cat_exists( $cat_slug ) { + return ( get_term_by( 'slug', $cat_slug, $this->events_post_type->taxonomy ) instanceof WP_Term ); } - public function insert_category($name, $args) { - return wp_insert_term($name, $this->events_post_type->taxonomy, $args); + + public function insert_category( $name, $args ) { + return wp_insert_term( $name, $this->events_post_type->taxonomy, $args ); } - public function update_category($slug, $args) { - return wp_update_term($this->get_cat_by_slug($slug)->term_id, $this->events_post_type->taxonomy, $args); + + public function update_category( $slug, $args ) { + return wp_update_term( $this->get_cat_by_slug( $slug )->term_id, $this->events_post_type->taxonomy, $args ); } - public function delete_category($slug) { - return wp_delete_term($this->get_cat_by_slug($slug)->term_id, $this->events_post_type->taxonomy); + + public function delete_category( $slug ) { + return wp_delete_term( $this->get_cat_by_slug( $slug )->term_id, $this->events_post_type->taxonomy ); } - public function get_cat_by_id($cat) { - return get_term_by('id', $cat, $this->events_post_type->taxonomy); + + public function get_cat_by_id( $cat ) { + return get_term_by( 'id', $cat, $this->events_post_type->taxonomy ); } - public function get_cat_by_slug($cat) { - return get_term_by('slug', $cat, $this->events_post_type->taxonomy); + + public function get_cat_by_slug( $cat ) { + return get_term_by( 'slug', $cat, $this->events_post_type->taxonomy ); } + } -?> + diff --git a/wp-content/plugins/event-list/includes/events_post_type.php b/wp-content/plugins/event-list/includes/events_post_type.php index 4f38df081b098c51ee7a52fd88523651b3c738b8..044408cc3849bea950247ed17b0dc09e602d3b62 100644 --- a/wp-content/plugins/event-list/includes/events_post_type.php +++ b/wp-content/plugins/event-list/includes/events_post_type.php @@ -1,21 +1,27 @@ <?php -if(!defined('WPINC')) { +if ( ! defined( 'WPINC' ) ) { exit; } -require_once(EL_PATH.'includes/options.php'); +require_once EL_PATH . 'includes/options.php'; /** -* This class handles the creation of a custom post type for events -* and the required modifications and additions. -*/ + * This class handles the creation of a custom post type for events + * and the required modifications and additions. + */ class EL_Events_Post_Type { + private static $instance; + public $post_cat_taxonomy = 'category'; + public $event_cat_taxonomy = 'el_eventcategory'; + public $taxonomy; + public $use_post_categories; + /** * Get the singleton instance of the class. * @@ -23,13 +29,14 @@ class EL_Events_Post_Type { */ public static function &get_instance() { // Create class instance if required - if(!isset(self::$instance)) { + if ( ! isset( self::$instance ) ) { self::$instance = new self(); } // Return class instance return self::$instance; } + /** * Constructor which handles all required class preparations * @@ -37,19 +44,21 @@ class EL_Events_Post_Type { */ private function __construct() { // Register actions and filters - add_action('init', array(&$this, 'init'), 2); + add_action( 'init', array( &$this, 'init' ), 2 ); } + public function init() { - $this->use_post_categories = ('1' === EL_Options::get_instance()->get('el_use_post_cats')); - $this->taxonomy = $this->use_post_categories ? $this->post_cat_taxonomy : $this->event_cat_taxonomy; + $this->use_post_categories = ( '1' === EL_Options::get_instance()->get( 'el_use_post_cats' ) ); + $this->taxonomy = $this->use_post_categories ? $this->post_cat_taxonomy : $this->event_cat_taxonomy; // Register actions and filters during init phase - add_action('init', array(&$this, 'register_event_post_type'), 3); - if(!$this->use_post_categories) { - add_action('init', array(&$this, 'register_event_category_taxonomy'), 4); + add_action( 'init', array( &$this, 'register_event_post_type' ), 3 ); + if ( ! $this->use_post_categories ) { + add_action( 'init', array( &$this, 'register_event_category_taxonomy' ), 4 ); } } + /** * Register the events post type to handle the events. * @@ -57,55 +66,56 @@ class EL_Events_Post_Type { */ public function register_event_post_type() { $labels = array( - 'name' => __('Events','event-list'), - 'singular_name' => __('Event','event-list'), - 'add_new' => __('Add New','event-list'), - 'add_new_item' => __('Add New Event','event-list'), - 'edit_item' => __('Edit Event','event-list'), - 'new_item' => __('New Event','event-list'), - 'view_item' => __('View Event','event-list'), - 'view_items' => __('View Events','event-list'), - 'search_items' => __('Search Events','event-list'), - 'not_found' => __('No events found','event-list'), - 'not_found_in_trash' => __('No events found in Trash','event-list'), - 'parent_item_colon' => '', - 'all_items' => __('All Events','event-list'), - 'archives' => __('Event Archives','event-list'), - 'attributes' => __('Event Attributes','event-list'), - 'insert_into_item' => __('Insert into event','event-list'), - 'uploaded_to_this_item' => __('Uploaded to this event','event-list'), - 'menu_name' => __('Event List','event-list'), - 'filter_items_list' => __('Filter events list','event-list'), - 'items_list_navigation' => __('Events list navigation','event-list'), - 'items_list' => __('Events list','event-list'), + 'name' => __( 'Events', 'event-list' ), + 'singular_name' => __( 'Event', 'event-list' ), + 'add_new' => __( 'Add New', 'event-list' ), + 'add_new_item' => __( 'Add New Event', 'event-list' ), + 'edit_item' => __( 'Edit Event', 'event-list' ), + 'new_item' => __( 'New Event', 'event-list' ), + 'view_item' => __( 'View Event', 'event-list' ), + 'view_items' => __( 'View Events', 'event-list' ), + 'search_items' => __( 'Search Events', 'event-list' ), + 'not_found' => __( 'No events found', 'event-list' ), + 'not_found_in_trash' => __( 'No events found in Trash', 'event-list' ), + 'parent_item_colon' => '', + 'all_items' => __( 'All Events', 'event-list' ), + 'archives' => __( 'Event Archives', 'event-list' ), + 'attributes' => __( 'Event Attributes', 'event-list' ), + 'insert_into_item' => __( 'Insert into event', 'event-list' ), + 'uploaded_to_this_item' => __( 'Uploaded to this event', 'event-list' ), + 'menu_name' => __( 'Event List', 'event-list' ), + 'filter_items_list' => __( 'Filter events list', 'event-list' ), + 'items_list_navigation' => __( 'Events list navigation', 'event-list' ), + 'items_list' => __( 'Events list', 'event-list' ), ); - $args = array( - 'labels' => $labels, - 'public' => true, - 'hierarchical' => false, - 'exclude_from_search' => false, - 'publicly_queryable' => true, - 'show_ui' => true, - 'show_in_menu' => true, - 'show_in_nav_menus' => true, - 'show_in_admin_bar' => true, - 'show_in_rest' => false, - 'menu_position' => 23, - 'menu_icon' => 'dashicons-calendar-alt', - 'capability_type' => 'post', - 'supports'=> array('title', 'editor', 'revisions', 'autor', 'thumbnail'), + $args = array( + 'labels' => $labels, + 'public' => true, + 'hierarchical' => false, + 'exclude_from_search' => false, + 'publicly_queryable' => true, + 'show_ui' => true, + 'show_in_menu' => true, + 'show_in_nav_menus' => true, + 'show_in_admin_bar' => true, + 'show_in_rest' => false, + 'menu_position' => 23, + 'menu_icon' => 'dashicons-calendar-alt', + 'capability_type' => 'post', + 'supports' => array( 'title', 'editor', 'revisions', 'author', 'thumbnail', 'excerpt' ), 'register_meta_box_cb' => null, - 'taxonomies' => $this->use_post_categories ? array($this->post_cat_taxonomy) : array(), - 'has_archive' => true, - 'rewrite' => array('slug' => EL_Options::get_instance()->get('el_permalink_slug')), - 'query_var' => true, - 'can_export' => true, - 'delete_with_user' => false, - '_builtin' => false, + 'taxonomies' => $this->use_post_categories ? array( $this->post_cat_taxonomy ) : array(), + 'has_archive' => true, + 'rewrite' => array( 'slug' => EL_Options::get_instance()->get( 'el_permalink_slug' ) ), + 'query_var' => true, + 'can_export' => true, + 'delete_with_user' => false, + '_builtin' => false, ); - register_post_type('el_events', $args); + register_post_type( 'el_events', $args ); } + /** * Register the event category taxonomy for handling event categories. * @@ -113,40 +123,46 @@ class EL_Events_Post_Type { */ public function register_event_category_taxonomy() { $labels = array( - 'name' => _x('Categories', 'taxonomy general name'), - 'singular_name' => _x('Category', 'taxonomy singular name'), - 'search_items' => __('Search Categories'), - 'popular_items' => __('Popular Categories'), - 'all_items' => __('All Categories'), - 'parent_item' => null, - 'parent_item_colon' => null, - 'edit_item' => __('Edit Category'), - 'update_item' => __('Update Category'), - 'add_new_item' => __('Add New Category'), - 'new_item_name' => __('New Category Name'), - 'separate_items_with_commas' => __('Separate categories with commas'), - 'add_or_remove_items' => __('Add or remove categories'), - 'choose_from_most_used' => __('Choose from the most used categories'), + 'name' => _x( 'Categories', 'taxonomy general name' ), + 'singular_name' => _x( 'Category', 'taxonomy singular name' ), + 'search_items' => __( 'Search Categories' ), + 'popular_items' => __( 'Popular Categories' ), + 'all_items' => __( 'All Categories' ), + 'parent_item' => null, + 'parent_item_colon' => null, + 'edit_item' => __( 'Edit Category' ), + 'update_item' => __( 'Update Category' ), + 'add_new_item' => __( 'Add New Category' ), + 'new_item_name' => __( 'New Category Name' ), + 'separate_items_with_commas' => __( 'Separate categories with commas' ), + 'add_or_remove_items' => __( 'Add or remove categories' ), + 'choose_from_most_used' => __( 'Choose from the most used categories' ), ); - $args = array( - 'label' => __('Event Category'), - 'labels' => $labels, - 'description' => __('Event category handling'), - 'public' => true, + $args = array( + 'label' => __( 'Event Category' ), + 'labels' => $labels, + 'description' => __( 'Event category handling' ), + 'public' => true, 'publicly_queryable' => true, - 'hierarchical' => true, - 'show_ui' => true, - 'show_in_menu' => true, - 'show_in_nav_menus' => true, - 'show_in_rest' => false, - 'show_in_tag_cloud' => true, + 'hierarchical' => true, + 'show_ui' => true, + 'show_in_menu' => true, + 'show_in_nav_menus' => true, + 'show_in_rest' => false, + 'show_in_tag_cloud' => true, 'show_in_quick_edit' => true, - 'show_admin_column' => true, - 'capabilities' => array('manage_terms' => 'manage_categories', 'edit_terms' => 'manage_categories', 'delete_terms' => 'manage_categories', 'assign_terms' => 'edit_posts'), - 'rewrite' => array('slug' => 'event-category'), - 'query_var' => true, + 'show_admin_column' => true, + 'capabilities' => array( + 'manage_terms' => 'manage_categories', + 'edit_terms' => 'manage_categories', + 'delete_terms' => 'manage_categories', + 'assign_terms' => 'edit_posts', + ), + 'rewrite' => array( 'slug' => 'event-category' ), + 'query_var' => true, ); - register_taxonomy($this->event_cat_taxonomy, 'el_events', $args); + register_taxonomy( $this->event_cat_taxonomy, 'el_events', $args ); } + } -?> + diff --git a/wp-content/plugins/event-list/includes/filterbar.php b/wp-content/plugins/event-list/includes/filterbar.php index d561e6d6b335d301c6c87441826f755f1169c8f3..1a8bc4170d3904e90166b2f7dec9de4619655844 100644 --- a/wp-content/plugins/event-list/includes/filterbar.php +++ b/wp-content/plugins/event-list/includes/filterbar.php @@ -1,34 +1,38 @@ <?php -if(!defined('WPINC')) { +if ( ! defined( 'WPINC' ) ) { exit; } -require_once( EL_PATH.'includes/events.php' ); -//require_once( EL_PATH.'includes/categories.php' ); +require_once EL_PATH . 'includes/events.php'; +// require_once( EL_PATH.'includes/categories.php' ); // This class handles the navigation and filter bar class EL_Filterbar { + private static $instance; + private $events; -// private $categories; + // private $categories; public static function &get_instance() { // Create class instance if required - if( !isset( self::$instance ) ) { + if ( ! isset( self::$instance ) ) { self::$instance = new self(); } // Return class instance return self::$instance; } + private function __construct() { $this->events = &EL_Events::get_instance(); -// $this->categories = &EL_Categories::get_instance(); + // $this->categories = &EL_Categories::get_instance(); } + // main function to show the rendered HTML output - public function show($url, &$args) { - $this->parse_args($args); + public function show( $url, &$args ) { + $this->parse_args( $args ); $out = ' <style type="text/css"> .filterbar { display:table; width:100% } @@ -39,43 +43,43 @@ class EL_Filterbar { <![endif]--> <div class="filterbar subsubsub">'; // prepare filterbar-items - //split 3 section (left, center, right) seperated by semicolon - $sections = array_slice(explode(";", html_entity_decode($args['filterbar_items'])), 0, 3); - $section_align = array('left', 'center', 'right'); - for($i=0; $i<sizeof($sections); $i++) { - if(!empty($sections[$i])) { + // split 3 section (left, center, right) seperated by semicolon + $sections = array_slice( explode( ';', html_entity_decode( $args['filterbar_items'] ) ), 0, 3 ); + $section_align = array( 'left', 'center', 'right' ); + for ( $i = 0; $i < sizeof( $sections ); $i++ ) { + if ( ! empty( $sections[ $i ] ) ) { $out .= ' - <div style="text-align:'.$section_align[$i].'">'; - //split items in section seperated by comma - $items = explode(',', $sections[$i]); - foreach($items as $item) { - //search for item options - $options = array(); - $item_array = explode("(", $item); - if(sizeof($item_array) > 1) { + <div style="text-align:' . $section_align[ $i ] . '">'; + // split items in section seperated by comma + $items = explode( ',', $sections[ $i ] ); + foreach ( $items as $item ) { + // search for item options + $options = array(); + $item_array = explode( '(', $item ); + if ( sizeof( $item_array ) > 1 ) { // options available - $option_array = explode("|", substr($item_array[1],0,-1)); - foreach($option_array as $option_text) { - $o = explode("=", $option_text); - $options[$o[0]] = $o[1]; + $option_array = explode( '|', substr( $item_array[1], 0, -1 ) ); + foreach ( $option_array as $option_text ) { + $o = explode( '=', $option_text ); + $options[ $o[0] ] = $o[1]; } } - $item_array = explode("_", $item_array[0]); - switch($item_array[0]) { + $item_array = explode( '_', $item_array[0] ); + switch ( $item_array[0] ) { case 'years': - $out .= $this->show_years($url, $args, $item_array[1], $options); + $out .= $this->show_years( $url, $args, $item_array[1], $options ); break; case 'daterange': - $out .= $this->show_daterange($url, $args, $item_array[1], $options); + $out .= $this->show_daterange( $url, $args, $item_array[1], $options ); break; case 'cats': - $out .= $this->show_cats($url, $args, $item_array[1], $options); + $out .= $this->show_cats( $url, $args, $item_array[1], $options ); break; case 'months': - $out .= $this->show_months($url, $args, $item_array[1], $options); + $out .= $this->show_months( $url, $args, $item_array[1], $options ); break; case 'reset': - $out .= $this->show_reset($url, $args, $options); + $out .= $this->show_reset( $url, $args, $options ); } } $out .= ' @@ -86,97 +90,103 @@ class EL_Filterbar { return $out; } - public function show_years($url, &$args, $type='hlist', $options=array()) { - $default_args = array( - 'date_filter' => array(), - 'cat_filter' => array(), + + public function show_years( $url, &$args, $type = 'hlist', $options = array() ) { + $default_args = array( + 'date_filter' => array(), + 'cat_filter' => array(), 'sc_id_for_url' => false, - 'selected_date' => false + 'selected_date' => false, ); - $args = wp_parse_args($args, $default_args); + $args = wp_parse_args( $args, $default_args ); $default_options = array( - 'show_all' => 'true', + 'show_all' => 'true', 'show_upcoming' => 'true', - 'show_past' => 'false', - 'years_order' => 'asc', + 'show_past' => 'false', + 'years_order' => 'asc', ); - $options = wp_parse_args($options, $default_options); + $options = wp_parse_args( $options, $default_options ); // add args['order'] (required in $this->events->get_filter_list options) $args['order'] = $options['years_order']; // prepare displayed elements $elements = array(); - if('true' == $options['show_all']) { - $elements[] = $this->all_element('date', $type); + if ( 'true' == $options['show_all'] ) { + $elements[] = $this->all_element( 'date', $type ); } - if('true' == $options['show_upcoming']) { + if ( 'true' == $options['show_upcoming'] ) { $elements[] = $this->upcoming_element(); } - if('true' == $options['show_past']) { + if ( 'true' == $options['show_past'] ) { $elements[] = $this->past_element(); } - $event_years = $this->events->get_filter_list('years', $args); - foreach($event_years as $entry) { - $elements[] = array('slug'=>$entry, 'name'=>$entry); + $event_years = $this->events->get_filter_list( 'years', $args ); + foreach ( $event_years as $entry ) { + $elements[] = array( + 'slug' => $entry, + 'name' => $entry, + ); } // display elements - if('dropdown' === $type) { - return $this->show_dropdown($elements, 'date'.$args['sc_id_for_url'], $args['selected_date'], $args['sc_id_for_url']); - } - else { - return $this->show_hlist($elements, $url, 'date'.$args['sc_id_for_url'], $args['selected_date']); + if ( 'dropdown' === $type ) { + return $this->show_dropdown( $elements, 'date' . $args['sc_id_for_url'], $args['selected_date'], $args['sc_id_for_url'] ); + } else { + return $this->show_hlist( $elements, $url, 'date' . $args['sc_id_for_url'], $args['selected_date'] ); } } - public function show_months($url, &$args, $type='dropdown', $options=array()) { - $default_options = array ( - 'show_all' => 'false', - 'show_upcoming' => 'false', - 'show_past' => 'false', - 'months_order' => 'asc', - 'date_format' => 'Y-m', + + public function show_months( $url, &$args, $type = 'dropdown', $options = array() ) { + $default_options = array( + 'show_all' => 'false', + 'show_upcoming' => 'false', + 'show_past' => 'false', + 'months_order' => 'asc', + 'date_format' => 'Y-m', ); - $options = wp_parse_args($options, $default_options); + $options = wp_parse_args( $options, $default_options ); // add args['order'] (required in $this->events->get_filter_list options) $args['order'] = $options['months_order']; // prepare displayed elements $elements = array(); - if('true' == $options['show_all']) { - $elements[] = $this->all_element('date', $type); + if ( 'true' == $options['show_all'] ) { + $elements[] = $this->all_element( 'date', $type ); } - if('true' == $options['show_upcoming']) { + if ( 'true' == $options['show_upcoming'] ) { $elements[] = $this->upcoming_element(); } - if('true' == $options['show_past']) { + if ( 'true' == $options['show_past'] ) { $elements[] = $this->past_element(); } - $event_months = $this->events->get_filter_list('months', $args); - foreach($event_months as $entry) { - list($year, $month) = explode('-', $entry); - $elements[] = array('slug' => $entry, 'name' => date($options['date_format'], mktime(0,0,0,$month,1,$year))); + $event_months = $this->events->get_filter_list( 'months', $args ); + foreach ( $event_months as $entry ) { + list($year, $month) = explode( '-', $entry ); + $elements[] = array( + 'slug' => $entry, + 'name' => date( $options['date_format'], mktime( 0, 0, 0, $month, 1, $year ) ), + ); } // display elements - if('hlist' === $type) { - return $this->show_hlist($elements, $url, 'date'.$args['sc_id_for_url'], $args['selected_date']); - } - else { - return $this->show_dropdown($elements, 'date'.$args['sc_id_for_url'], $args["selected_date"], $args['sc_id_for_url']); + if ( 'hlist' === $type ) { + return $this->show_hlist( $elements, $url, 'date' . $args['sc_id_for_url'], $args['selected_date'] ); + } else { + return $this->show_dropdown( $elements, 'date' . $args['sc_id_for_url'], $args['selected_date'], $args['sc_id_for_url'] ); } } - public function show_daterange($url, &$args, $type='hlist', $options) { + + public function show_daterange( $url, &$args, $type = 'hlist', $options = array() ) { // prepare displayed elements - if(isset($options['item_order'])) { - $items = explode('&', $options['item_order']); - } - else { - $items = array('all', 'upcoming', 'past'); + if ( isset( $options['item_order'] ) ) { + $items = explode( '&', $options['item_order'] ); + } else { + $items = array( 'all', 'upcoming', 'past' ); } $elements = array(); - foreach($items as $item) { + foreach ( $items as $item ) { // show all - switch($item) { + switch ( $item ) { case 'all': - $elements[] = $this->all_element('date'); // Always show short form ... hlist + $elements[] = $this->all_element( 'date' ); // Always show short form ... hlist break; case 'upcoming': $elements[] = $this->upcoming_element(); @@ -186,60 +196,65 @@ class EL_Filterbar { } } // display elements - if('dropdown' === $type) { - return $this->show_dropdown($elements, 'date'.$args['sc_id_for_url'], $args['selected_date'], $args['sc_id_for_url']); - } - else { - return $this->show_hlist($elements, $url, 'date'.$args['sc_id_for_url'], $args['selected_date']); + if ( 'dropdown' === $type ) { + return $this->show_dropdown( $elements, 'date' . $args['sc_id_for_url'], $args['selected_date'], $args['sc_id_for_url'] ); + } else { + return $this->show_hlist( $elements, $url, 'date' . $args['sc_id_for_url'], $args['selected_date'] ); } } - public function show_cats($url, &$args, $type='dropdown', $options=array()) { - $default_options = array ( - 'show_all' => 'true', + + public function show_cats( $url, &$args, $type = 'dropdown', $options = array() ) { + $default_options = array( + 'show_all' => 'true', ); - $options = wp_parse_args($options, $default_options); + $options = wp_parse_args( $options, $default_options ); // add arg 'cat_data' to receive all required data - $args['cat_data'] = 'all'; + $args['cat_data'] = 'all'; $args['hierarchical'] = true; // prepare displayed elements $elements = array(); - if('true' == $options['show_all']) { - $elements[] = $this->all_element('cat', $type); + if ( 'true' == $options['show_all'] ) { + $elements[] = $this->all_element( 'cat', $type ); } - //create elements array - $cat_array = $this->events->get_filter_list('categories', $args); - foreach($cat_array as $cat) { - $elements[] = array('slug' => $cat->slug, 'name' => str_pad('', 12*$cat->level, ' ', STR_PAD_LEFT).$cat->name); + // create elements array + $cat_array = $this->events->get_filter_list( 'categories', $args ); + foreach ( $cat_array as $cat ) { + $elements[] = array( + 'slug' => $cat->slug, + 'name' => str_pad( '', 12 * $cat->level, ' ', STR_PAD_LEFT ) . $cat->name, + ); } // display elements - if('hlist' === $type) { - return $this->show_hlist($elements, $url, 'cat'.$args['sc_id_for_url'], $args['selected_cat']); - } - else { - return $this->show_dropdown($elements, 'cat'.$args['sc_id_for_url'], $args['selected_cat'], $args['sc_id_for_url']); + if ( 'hlist' === $type ) { + return $this->show_hlist( $elements, $url, 'cat' . $args['sc_id_for_url'], $args['selected_cat'] ); + } else { + return $this->show_dropdown( $elements, 'cat' . $args['sc_id_for_url'], $args['selected_cat'], $args['sc_id_for_url'] ); } } - public function show_reset($url, $args, $options) { - $args_to_remove = array('event_id'.$args['sc_id_for_url'], - 'date'.$args['sc_id_for_url'], - 'cat'.$args['sc_id_for_url']); - if(!isset($options['caption'])) { - $options['caption'] = __('Reset','event-list'); + + public function show_reset( $url, $args, $options ) { + $args_to_remove = array( + 'event_id' . $args['sc_id_for_url'], + 'date' . $args['sc_id_for_url'], + 'cat' . $args['sc_id_for_url'], + ); + if ( ! isset( $options['caption'] ) ) { + $options['caption'] = __( 'Reset', 'event-list' ); } - return $this->show_link(remove_query_arg($args_to_remove, $url), $options['caption'], 'link'); + return $this->show_link( remove_query_arg( $args_to_remove, $url ), $options['caption'], 'link' ); } - private function show_hlist($elements, $url, $name, $selected=null) { + + private function show_hlist( $elements, $url, $name, $selected = null ) { $out = '<ul class="hlist">'; - foreach($elements as $element) { + foreach ( $elements as $element ) { $out .= '<li>'; - if($selected == $element['slug']) { - $out .= '<strong>'.$element['name'].'</strong>'; - } - else { - $out .= $this->show_link(add_query_arg($name, $element['slug'], $url), $element['name']); + if ( $selected == $element['slug'] ) { + $out .= '<strong>' . $element['name'] . '</strong>'; + } else { + $out .= $this->show_link( add_query_arg( $name, $element['slug'], $url ), $element['name'] ); } $out .= '</li>'; } @@ -247,66 +262,83 @@ class EL_Filterbar { return $out; } - private function show_dropdown($elements, $name, $selected=null, $sc_id='') { + + private function show_dropdown( $elements, $name, $selected = null, $sc_id = '' ) { $onchange = ''; - if(!is_admin()) { - wp_register_script('el_filterbar', EL_URL.'includes/js/filterbar.js', null, true); - add_action('wp_footer', array(&$this, 'footer_script')); - $onchange = ' onchange="el_redirect(this.name,this.value,'.$sc_id.')"'; + if ( ! is_admin() ) { + wp_register_script( 'el_filterbar', EL_URL . 'includes/js/filterbar.js', null, true ); + add_action( 'wp_footer', array( &$this, 'footer_script' ) ); + $onchange = ' onchange="el_redirect(this.name,this.value,' . $sc_id . ')"'; } - $out = '<select class="dropdown" name="'.$name.'"'.$onchange.'>'; - foreach($elements as $element) { + $out = '<select class="dropdown" name="' . $name . '"' . $onchange . '>'; + foreach ( $elements as $element ) { $out .= ' <option'; - if($element['slug'] == $selected) { + if ( $element['slug'] == $selected ) { $out .= ' selected="selected"'; } - $out .= ' value="'.$element['slug'].'">'.esc_html($element['name']).'</option>'; + $out .= ' value="' . $element['slug'] . '">' . esc_html( $element['name'] ) . '</option>'; } $out .= ' </select>'; return $out; } - private function show_link($url, $caption, $class=null) { - $class = (null === $class) ? '' : ' class="'.$class.'"'; - return '<a href="'.esc_url($url).'"'.$class.'>'.esc_html($caption).'</a>'; + + private function show_link( $url, $caption, $class = null ) { + $class = ( null === $class ) ? '' : ' class="' . $class . '"'; + return '<a href="' . esc_url( $url ) . '"' . $class . '>' . esc_html( $caption ) . '</a>'; } - private function all_element($list_type='date', $display_type='hlist') { - if('hlist' == $display_type) { - $name = __('All','event-list'); - } - else { - $name = ('date' == $list_type) ? __('All Dates','event-list') : __('All Categories'); + + private function all_element( $list_type = 'date', $display_type = 'hlist' ) { + if ( 'hlist' == $display_type ) { + $name = __( 'All', 'event-list' ); + } else { + $name = ( 'date' == $list_type ) ? __( 'All Dates', 'event-list' ) : __( 'All Categories' ); } - return array('slug' => 'all', 'name' => $name); + return array( + 'slug' => 'all', + 'name' => $name, + ); } + private function upcoming_element() { - return array('slug' => 'upcoming', 'name' => __('Upcoming','event-list')); + return array( + 'slug' => 'upcoming', + 'name' => __( 'Upcoming', 'event-list' ), + ); } + private function past_element() { - return array('slug' => 'past', 'name' => __('Past','event-list')); + return array( + 'slug' => 'past', + 'name' => __( 'Past', 'event-list' ), + ); } - private function parse_args(&$args) { - $defaults = array('date' => null, - 'selected_date' => null, - 'selected_cat' => null, - 'event_id' => null, - 'sc_id_for_url' => '', + + private function parse_args( &$args ) { + $defaults = array( + 'date' => null, + 'selected_date' => null, + 'selected_cat' => null, + 'event_id' => null, + 'sc_id_for_url' => '', ); - $args = wp_parse_args($args, $defaults); - if(!empty($args['event_id'])) { + $args = wp_parse_args( $args, $defaults ); + if ( ! empty( $args['event_id'] ) ) { $args['selected_date'] = null; - $args['selected_cat'] = null; + $args['selected_cat'] = null; }; } + public function footer_script() { - wp_print_scripts('el_filterbar'); + wp_print_scripts( 'el_filterbar' ); } + } -?> + diff --git a/wp-content/plugins/event-list/includes/ical.php b/wp-content/plugins/event-list/includes/ical.php new file mode 100644 index 0000000000000000000000000000000000000000..83141a25832a37efc83dff7475bda4f7b01d6e43 --- /dev/null +++ b/wp-content/plugins/event-list/includes/ical.php @@ -0,0 +1,117 @@ +<?php +if ( ! defined( 'WPINC' ) ) { + exit; +} + +require_once EL_PATH . 'includes/options.php'; +require_once EL_PATH . 'includes/events.php'; + +// This class handles iCal feed +class EL_ICal { + + private static $instance; + + private $options; + + private $events; + + + public static function &get_instance() { + // Create class instance if required + if ( ! isset( self::$instance ) ) { + self::$instance = new self(); + } + + // Return class instance + return self::$instance; + } + + + private function __construct() { + $this->options = EL_Options::get_instance(); + $this->events = EL_Events::get_instance(); + $this->init(); + } + + + public function init() { + // register feed properly with WordPress + add_feed( $this->get_feed_name(), array( &$this, 'print_ical' ) ); + } + + + public function print_ical() { + header( 'Content-Type: text/calendar; charset=' . get_option( 'blog_charset' ), true ); + $options = array( + 'date_filter' => $this->options->get( 'el_feed_ical_upcoming_only' ) ? 'upcoming' : null, + 'order' => array( 'startdate DESC', 'starttime DESC', 'enddate DESC' ), + ); + + $events = $this->events->get( $options ); + + // Print iCal + $eol = "\r\n"; + echo 'BEGIN:VCALENDAR' . $eol . + 'VERSION:2.0' . $eol . + 'PRODID:-//' . get_bloginfo( 'name' ) . '//NONSGML v1.0//EN' . $eol . + 'CALSCALE:GREGORIAN' . $eol . + 'UID:' . md5( uniqid( mt_rand(), true ) ) . '@' . get_bloginfo( 'name' ) . $eol; + + if ( ! empty( $events ) ) { + foreach ( $events as $event ) { + echo 'BEGIN:VEVENT' . $eol . + 'UID:' . md5( uniqid( mt_rand(), true ) ) . '@' . get_bloginfo( 'name' ) . $eol . + 'DTSTART:' . mysql2date( 'Ymd', $event->startdate, false ) . get_gmt_from_date( $event->starttime, '\THis\Z' ) . $eol; + if ( $event->enddate !== $event->startdate ) { + echo 'DTEND:' . mysql2date( 'Ymd', $event->enddate, false ) . $eol; + } + echo 'DTSTAMP:' . date( 'Ymd\THis\Z' ) . $eol . + 'LOCATION:' . $event->location . $eol . + 'SUMMARY:' . $this->sanitize_feed_text( $event->title ) . $eol; + if ( ! empty( $event->content ) ) { + echo 'DESCRIPTION:' . $this->sanitize_feed_text( str_replace( array( "\r", "\n" ), ' ', $event->content ) ) . $eol; + } + echo 'END:VEVENT' . $eol; + } + } + echo 'END:VCALENDAR'; + } + + + public function update_ical_rewrite_status() { + $feeds = array_keys( (array) get_option( 'rewrite_rules' ), 'index.php?&feed=$matches[1]' ); + $feed_rewrite_status = 0 < count( preg_grep( '@[(\|]' . $this->get_feed_name() . '[\|)]@', $feeds ) ); + // if iCal is enabled but rewrite rules do not exist already, flush rewrite rules + if ( '1' == $this->options->get( 'el_feed_enable_ical' ) && ! $feed_rewrite_status ) { + // result: add eventlist ical to rewrite rules + flush_rewrite_rules( false ); + } + // if iCal is disabled but rewrite rules do exist already, flush rewrite rules also + elseif ( '1' != $this->options->get( 'el_feed_enable_ical' ) && $feed_rewrite_status ) { + // result: remove eventlist ical from rewrite rules + flush_rewrite_rules( false ); + } + } + + + private function sanitize_feed_text( $text ) { + return htmlspecialchars( $text, ENT_QUOTES, 'UTF-8' ); + } + + + private function get_feed_name() { + return $this->options->get( 'el_feed_ical_name' ); + } + + + public function feed_url() { + if ( get_option( 'permalink_structure' ) ) { + $feed_link = get_bloginfo( 'url' ) . '/feed/'; + } else { + $feed_link = get_bloginfo( 'url' ) . '/?feed='; + } + return $feed_link . $this->get_feed_name(); + } + +} + diff --git a/wp-content/plugins/event-list/includes/options.php b/wp-content/plugins/event-list/includes/options.php index 65dd413f483f812c9958ddc6afd600c0031427b9..53ae8090c32d83f0ee4c611e6bec4b883247894f 100644 --- a/wp-content/plugins/event-list/includes/options.php +++ b/wp-content/plugins/event-list/includes/options.php @@ -1,5 +1,5 @@ <?php -if(!defined('WPINC')) { +if ( ! defined( 'WPINC' ) ) { exit; } @@ -7,87 +7,174 @@ if(!defined('WPINC')) { class EL_Options { private static $instance; + public $options; + public static function &get_instance() { // Create class instance if required - if(!isset(self::$instance)) { + if ( ! isset( self::$instance ) ) { self::$instance = new self(); } // Return class instance return self::$instance; } + private function __construct() { - add_action('init', array(&$this, 'init_options'), 1); - add_action('admin_init', array(&$this, 'register_options')); + add_action( 'init', array( &$this, 'init_options' ), 1 ); + add_action( 'admin_init', array( &$this, 'register_options' ) ); } + public function init_options() { $this->options = array( - 'el_last_upgrade_version' => array('section' => 'system', 'std_val' => ''), - - 'el_import_file' => array('section' => 'import', 'std_val' => ''), - 'el_import_date_format' => array('section' => 'import', 'std_val' => 'Y-m-d'), - - 'el_no_event_text' => array('section' => 'general', 'std_val' => 'no event'), - 'el_multiday_filterrange' => array('section' => 'general', 'std_val' => '1'), - 'el_date_once_per_day' => array('section' => 'general', 'std_val' => ''), - 'el_html_tags_in_time' => array('section' => 'general', 'std_val' => ''), - 'el_html_tags_in_loc' => array('section' => 'general', 'std_val' => ''), - 'el_mo_lang_dir_first' => array('section' => 'general', 'std_val' => ''), // default value must be set also in load_textdomain function in Event-List class - - 'el_permalink_slug' => array('section' => 'frontend', 'std_val' => __('events','event-list')), - 'el_content_show_text' => array('section' => 'frontend', 'std_val' => __('Show content','event-list')), - 'el_content_hide_text' => array('section' => 'frontend', 'std_val' => __('Hide content','event-list')), - 'el_disable_css_file' => array('section' => 'frontend', 'std_val' => ''), - - 'el_edit_dateformat' => array('section' => 'admin', 'std_val' => ''), - - 'el_enable_feed' => array('section' => 'feed', 'std_val' => ''), - 'el_feed_name' => array('section' => 'feed', 'std_val' => 'event-list'), - 'el_feed_description' => array('section' => 'feed', 'std_val' => 'Eventlist Feed'), - 'el_feed_upcoming_only' => array('section' => 'feed', 'std_val' => ''), - 'el_head_feed_link' => array('section' => 'feed', 'std_val' => '1'), - 'el_feed_link_pos' => array('section' => 'feed', 'std_val' => 'bottom'), - 'el_feed_link_align' => array('section' => 'feed', 'std_val' => 'left'), - 'el_feed_link_text' => array('section' => 'feed', 'std_val' => 'RSS Feed'), - 'el_feed_link_img' => array('section' => 'feed', 'std_val' => '1'), - - 'el_use_post_cats' => array('section' => 'taxonomy', 'std_val' => ''), + 'el_last_upgrade_version' => array( + 'section' => 'system', + 'std_val' => '', + ), + + 'el_import_file' => array( + 'section' => 'import', + 'std_val' => '', + ), + 'el_import_date_format' => array( + 'section' => 'import', + 'std_val' => 'Y-m-d', + ), + + 'el_no_event_text' => array( + 'section' => 'general', + 'std_val' => 'no event', + ), + 'el_multiday_filterrange' => array( + 'section' => 'general', + 'std_val' => '1', + ), + 'el_date_once_per_day' => array( + 'section' => 'general', + 'std_val' => '', + ), + 'el_html_tags_in_time' => array( + 'section' => 'general', + 'std_val' => '', + ), + 'el_html_tags_in_loc' => array( + 'section' => 'general', + 'std_val' => '', + ), + 'el_mo_lang_dir_first' => array( + 'section' => 'general', + 'std_val' => '', + ), // default value must be set also in load_textdomain function in Event-List class + + 'el_permalink_slug' => array( + 'section' => 'frontend', + 'std_val' => __( 'events', 'event-list' ), + ), + 'el_content_show_text' => array( + 'section' => 'frontend', + 'std_val' => __( 'Show content', 'event-list' ), + ), + 'el_content_hide_text' => array( + 'section' => 'frontend', + 'std_val' => __( 'Hide content', 'event-list' ), + ), + 'el_disable_css_file' => array( + 'section' => 'frontend', + 'std_val' => '', + ), + + 'el_edit_dateformat' => array( + 'section' => 'admin', + 'std_val' => '', + ), + + 'el_feed_enable_rss' => array( + 'section' => 'feed', + 'std_val' => '', + ), + 'el_feed_enable_ical' => array( + 'section' => 'feed', + 'std_val' => '', + ), + 'el_feed_link_pos' => array( + 'section' => 'feed', + 'std_val' => 'bottom', + ), + 'el_feed_link_align' => array( + 'section' => 'feed', + 'std_val' => 'left', + ), + 'el_feed_rss_name' => array( + 'section' => 'feed', + 'std_val' => 'event-list', + ), + 'el_feed_rss_description' => array( + 'section' => 'feed', + 'std_val' => 'Eventlist Feed', + ), + 'el_feed_rss_upcoming_only' => array( + 'section' => 'feed', + 'std_val' => '', + ), + 'el_feed_rss_link_text' => array( + 'section' => 'feed', + 'std_val' => 'RSS', + ), + 'el_feed_ical_name' => array( + 'section' => 'feed', + 'std_val' => 'event-list.ics', + ), + 'el_feed_ical_upcoming_only' => array( + 'section' => 'feed', + 'std_val' => '', + ), + 'el_feed_ical_link_text' => array( + 'section' => 'feed', + 'std_val' => 'iCal', + ), + + 'el_use_post_cats' => array( + 'section' => 'taxonomy', + 'std_val' => '', + ), ); } + public function load_options_helptexts() { - require_once(EL_PATH.'includes/options_helptexts.php'); - foreach($options_helptexts as $name => $values) { - $this->options[$name] += $values; + require_once EL_PATH . 'includes/options_helptexts.php'; + foreach ( $options_helptexts as $name => $values ) { + $this->options[ $name ] += $values; } - unset($options_helptexts); + unset( $options_helptexts ); } + public function register_options() { - foreach($this->options as $oname => $o) { - register_setting('el_'.$o['section'], $oname); + foreach ( $this->options as $oname => $o ) { + register_setting( 'el_' . $o['section'], $oname ); } } - public function set($name, $value) { - if(isset($this->options[$name])) { - return update_option($name, $value); - } - else { + + public function set( $name, $value ) { + if ( isset( $this->options[ $name ] ) ) { + return update_option( $name, $value ); + } else { return false; } } - public function get($name) { - if(isset($this->options[$name])) { - return get_option($name, $this->options[$name]['std_val']); - } - else { + + public function get( $name ) { + if ( isset( $this->options[ $name ] ) ) { + return get_option( $name, $this->options[ $name ]['std_val'] ); + } else { return null; } } + } -?> + diff --git a/wp-content/plugins/event-list/includes/options_helptexts.php b/wp-content/plugins/event-list/includes/options_helptexts.php index 50dc48b32f43ce958558d4de272503bf565a98d5..3a1407ba9111714f4cad37a2fcd410571a39c462 100644 --- a/wp-content/plugins/event-list/includes/options_helptexts.php +++ b/wp-content/plugins/event-list/includes/options_helptexts.php @@ -1,157 +1,239 @@ <?php -if(!defined('WPINC')) { +if ( ! defined( 'WPINC' ) ) { exit; } $options_helptexts = array( // Section: "import" - 'el_import_file' => array('type' => 'file-upload', - 'label' => __('CSV File to import','event-list'), - 'maxsize' => 204800, - 'desc' => __('Please select the file which contains the event data in CSV format.','event-list')), - - 'el_import_date_format' => array('type' => 'text', - 'label' => __('Used date format','event-list'), - 'caption' => '', - 'desc' => __('With this option the given date format for event start and end date in the CSV file can be specified.','event-list').'<br />'. - sprintf(__('You can use the php date format options given in %1$s, the most important ones are:','event-list'), - '<a href="https://secure.php.net/manual/en/function.date.php" target="_blank" rel="noopener">PHP function date</a>').' - <ul><li><code>Y</code> … '.__('full year representation, with 4 digits','event-list').'</li> - <li><code>m</code> … '.__('numeric representation of a month, with leading zeros','event-list').'</li> - <li><code>d</code> … '.__('day of the month, 2 digits with leading zeros','event-list').'</li> - </ul>'. - __('If the date format in the CSV file does not correspond to the given format, the import script tries to recognize the date format by itself.','event-list').'<br />'. - __('But this can cause problems or result in wrong dates, so it is recommended to specify the correct date format here.','event-list').'<br />'. - __('Examples','event-list').': - <ul><li><code>Y-m-d</code> … <code>2019-03-25</code></li> - <li><code>d.m.Y</code> … <code>25.03.2019</code></li> - </ul>'), + 'el_import_file' => array( + 'type' => 'file-upload', + 'label' => __( 'CSV File to import', 'event-list' ), + 'maxsize' => 204800, + 'desc' => __( 'Please select the file which contains the event data in CSV format.', 'event-list' ), + ), + + 'el_import_date_format' => array( + 'type' => 'text', + 'label' => __( 'Used date format', 'event-list' ), + 'caption' => '', + 'desc' => + __( 'With this option the given date format for event start and end date in the CSV file can be specified.', 'event-list' ) . '<br />' . + sprintf( + __( 'You can use the php date format options given in %1$s, the most important ones are:', 'event-list' ), + '<a href="https://secure.php.net/manual/en/function.date.php" target="_blank" rel="noopener">PHP function date</a>' + ) . ' + <ul><li><code>Y</code> … ' . __( 'full year representation, with 4 digits', 'event-list' ) . '</li> + <li><code>m</code> … ' . __( 'numeric representation of a month, with leading zeros', 'event-list' ) . '</li> + <li><code>d</code> … ' . __( 'day of the month, 2 digits with leading zeros', 'event-list' ) . '</li> + </ul>' . + __( 'If the date format in the CSV file does not correspond to the given format, the import script tries to recognize the date format by itself.', 'event-list' ) . '<br />' . + __( 'But this can cause problems or result in wrong dates, so it is recommended to specify the correct date format here.', 'event-list' ) . '<br />' . + __( 'Examples', 'event-list' ) . ': + <ul><li><code>Y-m-d</code> … <code>2019-03-25</code></li> + <li><code>d.m.Y</code> … <code>25.03.2019</code></li> + </ul>', + ), // Section: "general" - 'el_no_event_text' => array('type' => 'text', - 'label' => __('Text for no events','event-list'), - 'caption' => '', - 'desc' => __('This option defines the displayed text when no events are available for the selected view.','event-list')), - - 'el_multiday_filterrange' => array('type' => 'checkbox', - 'label' => __('Multiday filter range','event-list'), - 'caption' => __('Use the complete event range in the date filter','event-list'), - 'desc' => __('This option defines if the complete range of a multiday event shall be considered in the date filter.','event-list').'<br />'. - __('If disabled, only the start day of an event is considered in the filter.','event-list').'<br />'. - __('For an example multiday event which started yesterday and ends tomorrow this means, that it is displayed in umcoming dates when this option is enabled, but it is hidden when the option is disabled.','event-list')), - - 'el_date_once_per_day' => array('type' => 'checkbox', - 'label' => __('Date display','event-list'), - 'caption' => __('Show the date only once per day','event-list'), - 'desc' => __('With this option enabled the date is only displayed once per day if more than one event is available on the same day.','event-list').'<br />'. - __('If enabled, the events are ordered in a different way (end date before start time) to allow using the same date for as much events as possible.','event-list')), - - 'el_html_tags_in_time' => array('type' => 'checkbox', - 'label' => __('HTML tags','event-list'), - 'caption' => sprintf(__('Allow HTML tags in the event field "%1$s"','event-list'), __('Time','event-list')), - 'desc' => sprintf(__('This option specifies if HTML tags are allowed in the event field "%1$s".','event-list'), __('Time','event-list'))), - - 'el_html_tags_in_loc' => array('type' => 'checkbox', - 'label' => '', - 'caption' => sprintf(__('Allow HTML tags in the event field "%1$s"','event-list'), __('Location','event-list')), - 'desc' => sprintf(__('This option specifies if HTML tags are allowed in the event field "%1$s".','event-list'), __('Location','event-list'))), - - 'el_mo_lang_dir_first' => array('type' => 'checkbox', - 'label' => __('Preferred language file','event-list'), - 'caption' => __('Load translations from general language directory first','event-list'), - 'desc' => sprintf(__('The default is to load the %1$s translation file from the plugin language directory first (%2$s).','event-list'), '<code>*.mo</code>', '<code>wp-content/plugins/event-list/languages/</code>').'<br /> - '.sprintf(__('If you want to load your own language file from the general language directory %1$s for a language which is already included in the plugin language directory, you have to enable this option.','event-list'), '<code>wp-content/languages/plugins/</code>')), + 'el_no_event_text' => array( + 'type' => 'text', + 'label' => __( 'Text for no events', 'event-list' ), + 'caption' => '', + 'desc' => __( 'This option defines the displayed text when no events are available for the selected view.', 'event-list' ), + ), + + 'el_multiday_filterrange' => array( + 'type' => 'checkbox', + 'label' => __( 'Multiday filter range', 'event-list' ), + 'caption' => __( 'Use the complete event range in the date filter', 'event-list' ), + 'desc' => + __( 'This option defines if the complete range of a multiday event shall be considered in the date filter.', 'event-list' ) . '<br />' . + __( 'If disabled, only the start day of an event is considered in the filter.', 'event-list' ) . '<br />' . + __( 'For an example multiday event which started yesterday and ends tomorrow this means, that it is displayed in umcoming dates when this option is enabled, but it is hidden when the option is disabled.', 'event-list' ), + ), + + 'el_date_once_per_day' => array( + 'type' => 'checkbox', + 'label' => __( 'Date display', 'event-list' ), + 'caption' => __( 'Show the date only once per day', 'event-list' ), + 'desc' => + __( 'With this option enabled the date is only displayed once per day if more than one event is available on the same day.', 'event-list' ) . '<br />' . + __( 'If enabled, the events are ordered in a different way (end date before start time) to allow using the same date for as much events as possible.', 'event-list' ), + ), + + 'el_html_tags_in_time' => array( + 'type' => 'checkbox', + 'label' => __( 'HTML tags', 'event-list' ), + 'caption' => sprintf( __( 'Allow HTML tags in the event field "%1$s"', 'event-list' ), __( 'Time', 'event-list' ) ), + 'desc' => sprintf( __( 'This option specifies if HTML tags are allowed in the event field "%1$s".', 'event-list' ), __( 'Time', 'event-list' ) ), + ), + + 'el_html_tags_in_loc' => array( + 'type' => 'checkbox', + 'label' => '', + 'caption' => sprintf( __( 'Allow HTML tags in the event field "%1$s"', 'event-list' ), __( 'Location', 'event-list' ) ), + 'desc' => sprintf( __( 'This option specifies if HTML tags are allowed in the event field "%1$s".', 'event-list' ), __( 'Location', 'event-list' ) ), + ), + + 'el_mo_lang_dir_first' => array( + 'type' => 'checkbox', + 'label' => __( 'Preferred language file', 'event-list' ), + 'caption' => __( 'Load translations from general language directory first', 'event-list' ), + 'desc' => + sprintf( __( 'The default is to load the %1$s translation file from the plugin language directory first (%2$s).', 'event-list' ), '<code>*.mo</code>', '<code>wp-content/plugins/event-list/languages/</code>' ) . '<br /> + ' . sprintf( __( 'If you want to load your own language file from the general language directory %1$s for a language which is already included in the plugin language directory, you have to enable this option.', 'event-list' ), '<code>wp-content/languages/plugins/</code>' ), + ), // Section: "frontend" - 'el_permalink_slug' => array('type' => 'text', - 'label' => __('Events permalink slug','event-list'), - 'desc' => __('With this option the slug for the events permalink URLs can be defined.','event-list')), - - 'el_content_show_text' => array('type' => 'text', - 'label' => __('Text for "Show content"','event-list'), - 'desc' => __('With this option the displayed text for the link to show the event content can be changed, when collapsing is enabled.','event-list')), - - 'el_content_hide_text' => array('type' => 'text', - 'label' => __('Text for "Hide content"','event-list'), - 'desc' => __('With this option the displayed text for the link to hide the event content can be changed, when collapsing is enabled.','event-list')), - - 'el_disable_css_file' => array('type' => 'checkbox', - 'label' => __('Disable CSS file','event-list'), - 'caption' => sprintf(__('Disable the %1$s file.','event-list'), '"event-list.css"'), - 'desc' => sprintf(__('With this option you can disable the inclusion of the %1$s file.','event-list'), '"event-list.css"').'<br />'. - __('This normally only make sense if you have css conflicts with your theme and want to set all required css styles somewhere else (e.g. in the theme css).','event-list')), + 'el_permalink_slug' => array( + 'type' => 'text', + 'label' => __( 'Events permalink slug', 'event-list' ), + 'desc' => __( 'With this option the slug for the events permalink URLs can be defined.', 'event-list' ), + ), + + 'el_content_show_text' => array( + 'type' => 'text', + 'label' => __( 'Text for "Show content"', 'event-list' ), + 'desc' => __( 'With this option the displayed text for the link to show the event content can be changed, when collapsing is enabled.', 'event-list' ), + ), + + 'el_content_hide_text' => array( + 'type' => 'text', + 'label' => __( 'Text for "Hide content"', 'event-list' ), + 'desc' => __( 'With this option the displayed text for the link to hide the event content can be changed, when collapsing is enabled.', 'event-list' ), + ), + + 'el_disable_css_file' => array( + 'type' => 'checkbox', + 'label' => __( 'Disable CSS file', 'event-list' ), + 'caption' => sprintf( __( 'Disable the %1$s file.', 'event-list' ), '"event-list.css"' ), + 'desc' => + sprintf( __( 'With this option you can disable the inclusion of the %1$s file.', 'event-list' ), '"event-list.css"' ) . '<br />' . + __( 'This normally only make sense if you have css conflicts with your theme and want to set all required css styles somewhere else (e.g. in the theme css).', 'event-list' ), + ), // Section: "admin" - 'el_edit_dateformat' => array('type' => 'text', - 'label' => __('Date format in edit form','event-list'), - 'desc' => __('This option sets the displayed date format for the event date fields in the event new / edit form.','event-list').'<br />'. - __('The default is an empty string to use the Wordpress standard setting.','event-list').'<br />'. - sprintf(__('All available options to specify the date format can be found %1$shere%2$s.','event-list'), '<a href="http://php.net/manual/en/function.date.php" target="_blank" rel="noopener">', '</a>')), + 'el_edit_dateformat' => array( + 'type' => 'text', + 'label' => __( 'Date format in edit form', 'event-list' ), + 'desc' => + __( 'This option sets the displayed date format for the event date fields in the event new / edit form.', 'event-list' ) . '<br />' . + __( 'The default is an empty string to use the Wordpress standard setting.', 'event-list' ) . '<br />' . + sprintf( __( 'All available options to specify the date format can be found %1$shere%2$s.', 'event-list' ), '<a href="http://php.net/manual/en/function.date.php" target="_blank" rel="noopener">', '</a>' ), + ), // Section: "feed" - 'el_enable_feed' => array('type' => 'checkbox', - 'label' => __('Enable RSS feed','event-list'), - 'caption' => __('Enable support for an event RSS feed','event-list'), - 'desc' => __('This option activates a RSS feed for the events.','event-list').'<br /> - '.__('You have to enable this option if you want to use one of the RSS feed features.','event-list')), - - 'el_feed_name' => array('type' => 'text', - 'label' => __('Feed name','event-list'), - 'desc' => sprintf(__('This option sets the feed name. The default value is %1$s.','event-list'), '"event-list"').'<br /> - '.sprintf(__('This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks enabled).','event-list'), '<code>domain.com/?feed=event-list</code>', '<code>domain.com/feed/eventlist</code>')), - - 'el_feed_description' => array('type' => 'text', - 'label' => __('Feed Description','event-list'), - 'desc' => sprintf(__('This options set the feed description. The default value is %1$s.','event-list'), '"Eventlist Feed"').'<br /> - '.__('This description will be used in the title for the feed link in the html head and for the description in the feed itself.','event-list')), - - 'el_feed_upcoming_only' => array('type' => 'checkbox', - 'label' => __('Listed events','event-list'), - 'caption' => __('Only show upcoming events in feed','event-list'), - 'desc' => __('If this option is enabled only the upcoming events are listed in the feed.','event-list').'<br /> - '.__('If disabled all events (upcoming and past) will be listed.','event-list')), - - 'el_head_feed_link' => array('type' => 'checkbox', - 'label' => __('Add RSS feed link in head','event-list'), - 'caption' => __('Add RSS feed link in the html head','event-list'), - 'desc' => __('This option adds a RSS feed in the html head for the events.','event-list').'<br /> - '.__('There are 2 alternatives to include the RSS feed','event-list').':<br /> - '.__('The first way is this option to include a link in the html head. This link will be recognized by browers or feed readers.','event-list').'<br /> - '.sprintf(__('The second way is to include a visible feed link directly in the event list. This can be done by setting the shortcode attribute %1$s to %2$s.','event-list'), '<code>add_feed_link</code>', '"true"').'<br /> - '.sprintf(__('This option is only valid if the setting %1$s is enabled.','event-list'), '"'.__('Enable RSS feed','event-list').'"')), - - 'el_feed_link_pos' => array('type' => 'radio', - 'label' => __('Position of the RSS feed link','event-list'), - 'caption' => array('top' => __('at the top (above the navigation bar)','event-list'), 'below_nav' => __('between navigation bar and events','event-list'), 'bottom' => __('at the bottom','event-list')), - 'desc' => __('This option specifies the position of the RSS feed link in the event list.','event-list').'<br /> - '.sprintf(__('You have to set the shortcode attribute %1$s to %2$s if you want to show the feed link.','event-list'), '<code>add_feed_link</code>', '"true"')), - - 'el_feed_link_align' => array('type' => 'radio', - 'label' => __('Align of the RSS feed link','event-list'), - 'caption' => array('left' => __('left','event-list'), 'center' => __('center','event-list'), 'right' => __('right','event-list')), - 'desc' => __('This option specifies the align of the RSS feed link in the event list.','event-list').'<br /> - '.sprintf(__('You have to set the shortcode attribute %1$s to %2$s if you want to show the feed link.','event-list'), '<code>add_feed_link</code>', '"true"')), - - 'el_feed_link_text' => array('type' => 'text', - 'label' => __('Feed link text','event-list'), - 'desc' => __('This option specifies the caption of the RSS feed link in the event list.','event-list').'<br /> - '.__('Insert an empty text to hide any text if you only want to show the rss image.','event-list').'<br /> - '.sprintf(__('You have to set the shortcode attribute %1$s to %2$s if you want to show the feed link.','event-list'), '<code>add_feed_link</code>', '"true"')), - - 'el_feed_link_img' => array('type' => 'checkbox', - 'label' => __('Feed link image','event-list'), - 'caption' => __('Show rss image in feed link','event-list'), - 'desc' => __('This option specifies if the an image should be dispayed in the feed link in front of the text.','event-list').'<br /> - '.sprintf(__('You have to set the shortcode attribute %1$s to %2$s if you want to show the feed link.','event-list'), '<code>add_feed_link</code>', '"true"')), + 'el_feed_enable_rss' => array( + 'type' => 'checkbox', + 'label' => __( 'Enable RSS feed', 'event-list' ), + 'caption' => __( 'Enable support for the event RSS feed', 'event-list' ), + 'desc' => + __( 'This option activates the RSS feed for the events and adds a feed link in the html head.', 'event-list' ) . '<br /> + ' . __( 'You have to enable this option if you want to use one of the RSS feed features.', 'event-list' ), + ), + + 'el_feed_enable_ical' => array( + 'type' => 'checkbox', + 'label' => __( 'Enable iCal feed', 'event-list' ), + 'caption' => __( 'Enable support for the event iCal feed', 'event-list' ), + 'desc' => + __( 'This option activates the iCal feed for events.', 'event-list' ) . '<br /> + ' . __( 'You have to enable this option if you want to use one of the iCal features.', 'event-list' ), + ), + + 'el_feed_link_pos' => array( + 'type' => 'radio', + 'label' => __( 'Position of the RSS feed link', 'event-list' ), + 'caption' => array( + 'top' => __( 'at the top (above the navigation bar)', 'event-list' ), + 'below_nav' => __( 'between navigation bar and events', 'event-list' ), + 'bottom' => __( 'at the bottom', 'event-list' ), + ), + 'desc' => __( 'This option specifies the position of the RSS feed link in the event list.', 'event-list' ), + ), + + 'el_feed_link_align' => array( + 'type' => 'radio', + 'label' => __( 'Align of the RSS feed link', 'event-list' ), + 'caption' => array( + 'left' => __( 'left', 'event-list' ), + 'center' => __( 'center', 'event-list' ), + 'right' => __( 'right', 'event-list' ), + ), + 'desc' => __( 'This option specifies the align of the RSS feed link in the event list.', 'event-list' ), + ), + + 'el_feed_rss_name' => array( + 'type' => 'text', + 'label' => __( 'RSS feed name', 'event-list' ), + 'desc' => + sprintf( __( 'This option sets the RSS feed name. The default value is %1$s.', 'event-list' ), '"event-list"' ) . '<br /> + ' . sprintf( __( 'This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks enabled).', 'event-list' ), '<code>domain.com/?feed=event-list</code>', '<code>domain.com/feed/eventlist</code>' ), + ), + + 'el_feed_rss_description' => array( + 'type' => 'text', + 'label' => __( 'RSS feed Description', 'event-list' ), + 'desc' => + sprintf( __( 'This options set the RSS feed description. The default value is %1$s.', 'event-list' ), '"Eventlist Feed"' ) . '<br /> + ' . __( 'This description will be used in the title for the feed link in the html head and for the description in the feed itself.', 'event-list' ), + ), + + 'el_feed_rss_upcoming_only' => array( + 'type' => 'checkbox', + 'label' => __( 'RSS feed events', 'event-list' ), + 'caption' => __( 'Only show upcoming events in the RSS feed', 'event-list' ), + 'desc' => + __( 'If this option is enabled only the upcoming events are listed in the RSS feed.', 'event-list' ) . '<br /> + ' . __( 'If disabled, all events (upcoming and past) will be listed.', 'event-list' ), + ), + + 'el_feed_rss_link_text' => array( + 'type' => 'text', + 'label' => __( 'RSS link text', 'event-list' ), + 'desc' => + __( 'This option sets the caption of the RSS feed link in the event list.', 'event-list' ) . '<br /> + ' . __( 'Use an empty text to only show the rss image.', 'event-list' ) . '<br /> + ' . sprintf( __( 'You have to set the shortcode attribute %1$s to %2$s if you want to show the RSS feed link.', 'event-list' ), '<code>add_rss_link</code>', '"true"' ), + ), + + 'el_feed_ical_name' => array( + 'type' => 'text', + 'label' => __( 'iCal feed name', 'event-list' ), + 'desc' => + sprintf( __( 'This option sets the iCal feed name. The default value is %1$s.', 'event-list' ), '"event-list.ics"' ) . '<br /> + ' . sprintf( __( 'This name will be used in the iCal feed url (e.g. %1$s, or %2$s with permalinks enabled).', 'event-list' ), '<code>domain.com/?feed=event-list.ics</code>', '<code>domain.com/feed/eventlist.ics</code>' ), + ), + + 'el_feed_ical_upcoming_only' => array( + 'type' => 'checkbox', + 'label' => __( 'iCal feed events', 'event-list' ), + 'caption' => __( 'Only show upcoming events in the iCal feed', 'event-list' ), + 'desc' => + __( 'If this option is enabled only the upcoming events are listed in the iCal file.', 'event-list' ) . '<br /> + ' . __( 'If disabled, all events (upcoming and past) will be listed.', 'event-list' ), + ), + + 'el_feed_ical_link_text' => array( + 'type' => 'text', + 'label' => __( 'iCal link text', 'event-list' ), + 'desc' => + __( 'This option sets the iCal link text in the event list.', 'event-list' ) . '<br /> + ' . __( 'Use an empty text to only show the iCal image.', 'event-list' ) . '<br /> + ' . sprintf( __( 'You have to set the shortcode attribute %1$s to %2$s if you want to show the iCal feed link.', 'event-list' ), '<code>add_ical_link</code>', '"true"' ), + ), // Section: taxonomy - 'el_use_post_cats' => array('type' => 'checkbox', - 'disable' => true, - 'label' => __('Event Category handling','event-list'), - 'caption' => __('Use Post Categories','event-list'), - 'desc' => __('Do not maintain seperate categories for the events, and use the existing post categories instead.','event-list').'<br /><br /> - <strong>'.__('Attention','event-list').':</strong><br /> - '.__('This option cannot be changed directly, but you can go to the Event Category switching page from here.','event-list')), + 'el_use_post_cats' => array( + 'type' => 'checkbox', + 'disable' => true, + 'label' => __( 'Event Category handling', 'event-list' ), + 'caption' => __( 'Use Post Categories', 'event-list' ), + 'desc' => + __( 'Do not maintain seperate categories for the events, and use the existing post categories instead.', 'event-list' ) . '<br /><br /> + <strong>' . __( 'Attention', 'event-list' ) . ':</strong><br /> + ' . __( 'This option cannot be changed directly, but you can go to the Event Category switching page from here.', 'event-list' ), + ), ); -?> + diff --git a/wp-content/plugins/event-list/includes/rss.php b/wp-content/plugins/event-list/includes/rss.php new file mode 100644 index 0000000000000000000000000000000000000000..7123fe7f298e04e33860f44d8b08c6e87d5d5a50 --- /dev/null +++ b/wp-content/plugins/event-list/includes/rss.php @@ -0,0 +1,175 @@ +<?php +if ( ! defined( 'WPINC' ) ) { + exit; +} + +require_once EL_PATH . 'includes/options.php'; +require_once EL_PATH . 'includes/events.php'; + +// This class handles rss feeds +class EL_Rss { + + private static $instance; + + private $options; + + private $events; + + + public static function &get_instance() { + // Create class instance if required + if ( ! isset( self::$instance ) ) { + self::$instance = new self(); + } + // Return class instance + return self::$instance; + } + + + private function __construct() { + $this->events = EL_Events::get_instance(); + $this->options = EL_Options::get_instance(); + $this->init(); + } + + + public function init() { + add_feed( $this->options->get( 'el_feed_rss_name' ), array( &$this, 'print_rss' ) ); + add_action( 'wp_head', array( &$this, 'print_head_feed_link' ) ); + } + + + public function print_head_feed_link() { + echo ' +<link rel="alternate" type="application/rss+xml" title="' . get_bloginfo_rss( 'name' ) . ' » ' . $this->options->get( 'el_feed_rss_description' ) . '" href="' . $this->feed_url() . '" />'; + } + + + public function print_rss() { + header( 'Content-Type: ' . feed_content_type( 'rss-http' ) . '; charset=' . get_option( 'blog_charset' ), true ); + $options = array( + 'date_filter' => $this->options->get( 'el_feed_rss_upcoming_only' ) ? 'upcoming' : null, + 'order' => array( 'startdate DESC', 'starttime DESC', 'enddate DESC' ), + ); + $events = $this->events->get( $options ); + + // Print RSS + echo '<?xml version="1.0" encoding="' . get_option( 'blog_charset' ) . '"?> + <rss version="2.0" + xmlns:content="http://purl.org/rss/1.0/modules/content/" + xmlns:wfw="http://wellformedweb.org/CommentAPI/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:atom="http://www.w3.org/2005/Atom" + xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" + xmlns:slash="http://purl.org/rss/1.0/modules/slash/" + > + <channel> + <title>' . get_bloginfo_rss( 'name' ) . '</title> + <atom:link href="' . apply_filters( 'self_link', get_bloginfo() ) . '" rel="self" type="application/rss+xml" /> + <link>' . get_bloginfo_rss( 'url' ) . '</link> + <description>' . $this->options->get( 'el_feed_rss_description' ) . '</description> + <lastBuildDate>' . mysql2date( 'D, d M Y H:i:s +0000', get_lastpostmodified( 'GMT' ), false ) . '</lastBuildDate> + <language>' . get_option( 'rss_language' ) . '</language> + <sy:updatePeriod>' . apply_filters( 'rss_update_period', 'hourly' ) . '</sy:updatePeriod> + <sy:updateFrequency>' . apply_filters( 'rss_update_frequency', '1' ) . '</sy:updateFrequency> + '; + do_action( 'rss2_head' ); + if ( ! empty( $events ) ) { + foreach ( $events as $event ) { + echo ' + <item> + <title>' . $this->format_date( $event->startdate, $event->enddate ) . ' - ' . $this->sanitize_feed_text( $event->title ) . '</title> + <pubDate>' . mysql2date( 'D, d M Y H:i:s +0000', $event->startdate, false ) . '</pubDate>'; + foreach ( $event->categories as $cat ) { + echo ' + <category>' . $this->sanitize_feed_text( $cat->name ) . '</category>'; + } + echo ' + <description> + ' . $this->event_data( $event ) . ' + </description>'; + if ( ! empty( $event->content ) ) { + echo ' + <content:encoded> + ' . $this->event_data( $event ) . ': + </content:encoded>'; + } + echo ' + </item>'; + } + } + echo ' + </channel> + </rss>'; + } + + + public function feed_url() { + if ( get_option( 'permalink_structure' ) ) { + $feed_link = get_bloginfo( 'url' ) . '/feed/'; + } else { + $feed_link = get_bloginfo( 'url' ) . '/?feed='; + } + return $feed_link . $this->options->get( 'el_feed_rss_name' ); + } + + + public function update_rewrite_status() { + $feeds = array_keys( (array) get_option( 'rewrite_rules' ), 'index.php?&feed=$matches[1]' ); + $feed_rewrite_status = ( 0 < count( preg_grep( '@[(\|]' . $this->options->get( 'el_feed_rss_name' ) . '[\|)]@', $feeds ) ) ) ? true : false; + if ( '1' == $this->options->get( 'el_feed_enable_rss' ) && ! $feed_rewrite_status ) { + // add eventlist RSS feed to rewrite rules + flush_rewrite_rules( false ); + } elseif ( '1' != $this->options->get( 'el_feed_enable_rss' ) && $feed_rewrite_status ) { + // remove eventlist RSS feed from rewrite rules + flush_rewrite_rules( false ); + } + } + + + private function event_data( &$event ) { + $timetext = empty( $event->starttime ) ? '' : ' ' . $this->sanitize_feed_text( $event->starttime ); + $locationtext = empty( $event->location ) ? '' : ' - ' . $this->sanitize_feed_text( $event->location ); + return $this->format_date( $event->startdate, $event->enddate ) . $timetext . $locationtext . $this->sanitize_feed_text( do_shortcode( $event->content ) ); + } + + + private function sanitize_feed_text( $text ) { + return htmlspecialchars( $text, ENT_QUOTES, 'UTF-8' ); + } + + + private function format_date( $startdate, $enddate ) { + $start_array = explode( '-', $startdate ); + $startdate = mktime( 0, 0, 0, $start_array[1], $start_array[2], $start_array[0] ); + + $end_array = explode( '-', $enddate ); + $enddate = mktime( 0, 0, 0, $end_array[1], $end_array[2], $end_array[0] ); + + $eventdate = ''; + + if ( $startdate == $enddate ) { + if ( $start_array[2] == '00' ) { + $startdate = mktime( 0, 0, 0, $start_array[1], 15, $start_array[0] ); + $eventdate .= date( 'F, Y', $startdate ); + return $eventdate; + } + $eventdate .= date( 'M j, Y', $startdate ); + return $eventdate; + } + + if ( $start_array[0] == $end_array[0] ) { + if ( $start_array[1] == $end_array[1] ) { + $eventdate .= date( 'M j', $startdate ) . '-' . date( 'j, Y', $enddate ); + return $eventdate; + } + $eventdate .= date( 'M j', $startdate ) . '-' . date( 'M j, Y', $enddate ); + return $eventdate; + } + + $eventdate .= date( 'M j, Y', $startdate ) . '-' . date( 'M j, Y', $enddate ); + return $eventdate; + } + +} + diff --git a/wp-content/plugins/event-list/includes/sc_event-list.php b/wp-content/plugins/event-list/includes/sc_event-list.php index ae5ba137d46534dad243e8cc947924dc61394ca5..9bcd114b30eaa0c8b7182805cb8b69b58e9bdad5 100644 --- a/wp-content/plugins/event-list/includes/sc_event-list.php +++ b/wp-content/plugins/event-list/includes/sc_event-list.php @@ -1,495 +1,547 @@ <?php -if(!defined('WPINC')) { +if ( ! defined( 'WPINC' ) ) { exit; } -require_once(EL_PATH.'includes/options.php'); -require_once(EL_PATH.'includes/events.php'); -require_once(EL_PATH.'includes/event.php'); -//require_once(EL_PATH.'includes/categories.php'); +require_once EL_PATH . 'includes/options.php'; +require_once EL_PATH . 'includes/events.php'; +require_once EL_PATH . 'includes/event.php'; +// require_once(EL_PATH.'includes/categories.php'); // This class handles the shortcode [event-list] class SC_Event_List { + private static $instance; + private $events; + private $options; -// private $categories; + + // private $categories; private $atts; + private $num_sc_loaded; + private $single_event; + public static function &get_instance() { // Create class instance if required - if(!isset(self::$instance)) { + if ( ! isset( self::$instance ) ) { self::$instance = new self(); } // Return class instance return self::$instance; } + private function __construct() { $this->options = &EL_Options::get_instance(); - $this->events = &EL_Events::get_instance(); -// $this->categories = &EL_Categories::get_instance(); + $this->events = &EL_Events::get_instance(); + // $this->categories = &EL_Categories::get_instance(); // All available attributes $this->atts = array( - 'initial_event_id' => array('std_val' => 'all'), - 'initial_date' => array('std_val' => 'upcoming'), - 'initial_cat' => array('std_val' => 'all'), - 'initial_order' => array('std_val' => 'date_asc'), - 'date_filter' => array('std_val' => 'all'), - 'cat_filter' => array('std_val' => 'all'), - 'num_events' => array('std_val' => '0'), - 'show_filterbar' => array('std_val' => 'true'), - 'filterbar_items' => array('std_val' => 'years_hlist'), - 'title_length' => array('std_val' => '0'), - 'show_starttime' => array('std_val' => 'true'), - 'show_location' => array('std_val' => 'true'), - 'location_length' => array('std_val' => '0'), - 'show_cat' => array('std_val' => 'false'), - 'show_content' => array('std_val' => 'true'), - 'content_length' => array('std_val' => '0'), - 'collapse_content' => array('std_val' => 'false'), - 'link_to_event' => array('std_val' => 'event_list_only'), - 'add_feed_link' => array('std_val' => 'false'), - 'url_to_page' => array('std_val' => ''), - 'sc_id_for_url' => array('std_val' => ''), + 'initial_event_id' => array( 'std_val' => 'all' ), + 'initial_date' => array( 'std_val' => 'upcoming' ), + 'initial_cat' => array( 'std_val' => 'all' ), + 'initial_order' => array( 'std_val' => 'date_asc' ), + 'date_filter' => array( 'std_val' => 'all' ), + 'cat_filter' => array( 'std_val' => 'all' ), + 'num_events' => array( 'std_val' => '0' ), + 'show_filterbar' => array( 'std_val' => 'true' ), + 'filterbar_items' => array( 'std_val' => 'years_hlist' ), + 'title_length' => array( 'std_val' => '0' ), + 'show_starttime' => array( 'std_val' => 'true' ), + 'show_location' => array( 'std_val' => 'true' ), + 'location_length' => array( 'std_val' => '0' ), + 'show_cat' => array( 'std_val' => 'false' ), + 'show_content' => array( 'std_val' => 'single_event_only' ), + 'show_excerpt' => array( 'std_val' => 'event_list_only' ), + 'content_length' => array( 'std_val' => '0' ), + 'collapse_content' => array( 'std_val' => 'false' ), + 'link_to_event' => array( 'std_val' => 'event_list_only' ), + 'add_rss_link' => array( 'std_val' => 'false' ), + 'add_ical_link' => array( 'std_val' => 'false' ), + 'url_to_page' => array( 'std_val' => '' ), + 'sc_id_for_url' => array( 'std_val' => '' ), // Internal attributes: This parameters will be added by the script and are not available in the shortcode - // 'sc_id' - // 'selected_date' - // 'selected_cat' - // 'event_id' + // 'sc_id' + // 'selected_date' + // 'selected_cat' + // 'event_id' ); $this->num_sc_loaded = 0; - $this->single_event = false; + $this->single_event = false; } + public function load_sc_eventlist_helptexts() { - require_once(EL_PATH.'includes/sc_event-list_helptexts.php'); - foreach($sc_eventlist_helptexts as $name => $values) { - $this->atts[$name] = array_merge($this->atts[$name], $values); + require_once EL_PATH . 'includes/sc_event-list_helptexts.php'; + foreach ( $sc_eventlist_helptexts as $name => $values ) { + $this->atts[ $name ] = array_merge( $this->atts[ $name ], $values ); } - unset($sc_eventlist_helptexts); + unset( $sc_eventlist_helptexts ); } - public function get_atts($only_visible=true) { - if($only_visible) { + + public function get_atts( $only_visible = true ) { + if ( $only_visible ) { $atts = null; - foreach($this->atts as $aname => $attr) { - if(!isset($attr['hidden']) || true !== $attr['hidden'] ) { - $atts[$aname] = $attr; + foreach ( $this->atts as $aname => $attr ) { + if ( ! isset( $attr['hidden'] ) || true !== $attr['hidden'] ) { + $atts[ $aname ] = $attr; } } return $atts; - } - else { + } else { return $this->atts; } } + // main function to show the rendered HTML output - public function show_html($atts) { + public function show_html( $atts ) { // change number of shortcodes $this->num_sc_loaded++; + // Fallback for versions < 0.8.5 where the attribute 'add_feed_link' was renamed to 'add_rss_link' + // This can be removed in a later version. + if ( ( ! isset( $atts['add_rss_link'] ) ) && isset( $atts['add_feed_link'] ) ) { + error_log( 'The event-list shortcode attribute "add_feed_link" is deprecated, please change your shortcode to use the new name "add_rss_link"!' ); + $atts['add_rss_link'] = $atts['add_feed_link']; + } // check shortcode attributes $std_values = array(); - foreach($this->atts as $aname => $attribute) { - $std_values[$aname] = $attribute['std_val']; + foreach ( $this->atts as $aname => $attribute ) { + $std_values[ $aname ] = $attribute['std_val']; } // TODO: sanitize all provided shortcode attributes ($atts) before going further - $a = shortcode_atts($std_values, $atts); + $a = shortcode_atts( $std_values, $atts ); // add internal attributes - $a['sc_id'] = $this->num_sc_loaded; - $a['selected_date'] = $this->get_selected_date($a); - $a['selected_cat'] = $this->get_selected_cat($a); - $a['event_id'] = $this->get_event_id($a); + $a['sc_id'] = $this->num_sc_loaded; + $a['selected_date'] = $this->get_selected_date( $a ); + $a['selected_cat'] = $this->get_selected_cat( $a ); + $a['event_id'] = $this->get_event_id( $a ); // set sc_id_for_url if empty - if(0 === intval($a['sc_id_for_url'])) { + if ( 0 === intval( $a['sc_id_for_url'] ) ) { $a['sc_id_for_url'] = $a['sc_id']; } // actual output $out = ' <div class="event-list">'; - if(!empty($a['event_id'])) { + if ( ! empty( $a['event_id'] ) ) { // show events content if event_id is set $this->single_event = true; - $out .= $this->html_event_content($a); - } - else { + $out .= $this->html_single_event( $a ); + } else { // show full event list $this->single_event = false; - $out .= $this->html_events($a); + $out .= $this->html_event_list( $a ); } $out .= ' </div>'; return $out; } - private function html_event_content(&$a) { - $event = new EL_Event($a['event_id']); - $out = $this->html_filterbar($a); - $out .= ' - <h2>'.__('Event Information:','event-list').'</h2> + + private function html_single_event( &$a ) { + $event = new EL_Event( $a['event_id'] ); + // Show an error and the event list view if an invalid event_id was provided + if ( null === $event->post ) { + $this->single_event = false; + $out = '<div class="el-error single-event-error">' . __( 'Sorry, the requested event is not available!', 'event-list' ) . '</div>'; + $out .= $this->html_event_list( $a ); + return $out; + } + // Default behaviour + $out = $this->html_feed_links( $a, 'top' ); + $out .= $this->html_filterbar( $a ); + $out .= $this->html_feed_links( $a, 'below_nav' ); + $out .= ' + <h2>' . __( 'Event Information:', 'event-list' ) . '</h2> <ul class="single-event-view">'; - $single_day_only = ($event->startdate == $event->enddate) ? true : false; - $out .= $this->html_event($event, $a, $single_day_only); - $out .= '</ul>'; + $single_day_only = ( $event->startdate === $event->enddate ); + $out .= $this->html_event( $event, $a, $single_day_only ); + $out .= '</ul>'; + $out .= $this->html_feed_links( $a, 'bottom' ); return $out; } - private function html_events(&$a) { + + private function html_event_list( &$a ) { // specify to show all events if not upcoming is selected - if('upcoming' != $a['selected_date']) { + if ( 'upcoming' != $a['selected_date'] ) { $a['num_events'] = 0; } - $options['date_filter'] = $this->get_date_filter($a['date_filter'], $a['selected_date']); - $options['cat_filter'] = $this->get_cat_filter($a['cat_filter'], $a['selected_cat']); - $options['num_events'] = $a['num_events']; - $order = 'date_desc' == $a['initial_order'] ? 'DESC' : 'ASC'; - if('1' !== $this->options->get('el_date_once_per_day')) { + $options['date_filter'] = $this->get_date_filter( $a['date_filter'], $a['selected_date'] ); + $options['cat_filter'] = $this->get_cat_filter( $a['cat_filter'], $a['selected_cat'] ); + $options['num_events'] = $a['num_events']; + $order = 'date_desc' == $a['initial_order'] ? 'DESC' : 'ASC'; + if ( '1' !== $this->options->get( 'el_date_once_per_day' ) ) { // normal sort - $options['order'] = array('startdate '.$order, 'starttime ASC', 'enddate '.$order); - } - else { + $options['order'] = array( 'startdate ' . $order, 'starttime ASC', 'enddate ' . $order ); + } else { // sort according end_date before start time (required for option el_date_once_per_day) - $options['order'] = array('startdate '.$order, 'enddate '.$order, 'starttime ASC'); + $options['order'] = array( 'startdate ' . $order, 'enddate ' . $order, 'starttime ASC' ); } - $events = $this->events->get($options); + $events = $this->events->get( $options ); // generate output - $out = $this->html_feed_link($a, 'top'); - $out .= $this->html_filterbar($a); - $out .= $this->html_feed_link($a, 'below_nav'); - if(empty($events)) { + $out = $this->html_feed_links( $a, 'top' ); + $out .= $this->html_filterbar( $a ); + $out .= $this->html_feed_links( $a, 'below_nav' ); + if ( empty( $events ) ) { // no events found - $out .= '<p>'.$this->options->get('el_no_event_text').'</p>'; - } - else { + $out .= '<p>' . $this->options->get( 'el_no_event_text' ) . '</p>'; + } else { // print available events - $out .= ' + $out .= ' <ul class="event-list-view">'; - $single_day_only = $this->is_single_day_only($events); - foreach ($events as $event) { - $out .= $this->html_event($event, $a, $single_day_only); + $single_day_only = $this->is_single_day_only( $events ); + foreach ( $events as $event ) { + $out .= $this->html_event( $event, $a, $single_day_only ); } $out .= '</ul>'; } - $out .= $this->html_feed_link($a, 'bottom'); + $out .= $this->html_feed_links( $a, 'bottom' ); return $out; } - private function html_event(&$event, &$a, $single_day_only=false) { - static $last_event_startdate=null, $last_event_enddate=null; - $cat_string = implode(' ', $event->get_category_slugs()); + + private function html_event( &$event, &$a, $single_day_only = false ) { + static $last_event_startdate = null, $last_event_enddate = null; + $cat_string = implode( ' ', $event->get_category_slugs() ); // add class with each category slug $out = ' - <li class="event '.$cat_string.'">'; + <li class="event ' . $cat_string . '">'; // event date - if('1' !== $this->options->get('el_date_once_per_day') || $last_event_startdate !== $event->startdate || $last_event_enddate !== $event->enddate) { - $out .= $this->html_fulldate($event->startdate, $event->enddate, $single_day_only); + if ( '1' !== $this->options->get( 'el_date_once_per_day' ) || $last_event_startdate !== $event->startdate || $last_event_enddate !== $event->enddate ) { + $out .= $this->html_fulldate( $event->startdate, $event->enddate, $single_day_only ); } $out .= ' <div class="event-info'; - if( $single_day_only ) { + if ( $single_day_only ) { $out .= ' single-day'; - } - else { + } else { $out .= ' multi-day'; } $out .= '">'; // event title - $out .= '<div class="event-title"><h3>'; - $title = $event->truncate(esc_attr($event->title), $a['title_length'], $this->single_event); - if($this->is_link_available($a, $event)) { - $out .= $this->get_event_link($a, $event->post->ID, $title); - } - else { + $out .= '<div class="event-title"><h3>'; + $title = $event->truncate( esc_attr( $event->title ), $a['title_length'], $this->single_event ); + if ( $this->is_link_available( $a, $event ) ) { + $out .= $this->get_event_link( $a, $event->post->ID, $title ); + } else { $out .= $title; } $out .= '</h3></div>'; // event starttime - if('' != $event->starttime && $this->is_visible($a['show_starttime'])) { - if('' == $this->options->get('el_html_tags_in_time')) { - $event->starttime = esc_attr($event->starttime_i18n()); + if ( '' != $event->starttime && $this->is_visible( $a['show_starttime'] ) ) { + if ( '' == $this->options->get( 'el_html_tags_in_time' ) ) { + $event->starttime = esc_attr( $event->starttime_i18n() ); } - $out .= '<span class="event-time">'.$event->starttime_i18n().'</span>'; + $out .= '<span class="event-time">' . $event->starttime_i18n() . '</span>'; } // event location - if('' != $event->location && $this->is_visible($a['show_location'])) { - if('' == $this->options->get('el_html_tags_in_loc')) { - $location =$event->truncate(esc_attr($event->location), $a['location_length'], $this->single_event, false); - } - else { - $location = $event->truncate($event->location, $a['location_length'], $this->single_event); + if ( '' != $event->location && $this->is_visible( $a['show_location'] ) ) { + if ( '' == $this->options->get( 'el_html_tags_in_loc' ) ) { + $location = $event->truncate( esc_attr( $event->location ), $a['location_length'], $this->single_event, false ); + } else { + $location = $event->truncate( $event->location, $a['location_length'], $this->single_event ); } - $out .= '<span class="event-location">'.$location.'</span>'; + $out .= '<span class="event-location">' . $location . '</span>'; } // event categories - if( $this->is_visible( $a['show_cat'] ) ) { - $out .= '<div class="event-cat">'.esc_attr(implode(', ', $event->get_category_names())).'</div>'; + if ( $this->is_visible( $a['show_cat'] ) ) { + $out .= '<div class="event-cat">' . esc_attr( implode( ', ', $event->get_category_names() ) ) . '</div>'; } - // event content - if( $this->is_visible( $a['show_content'] ) ) { - $out .= $this->get_content($event, $a); - } - $out .= '</div> + // event excerpt or content + $out .= $this->html_event_content( $event, $a ); + $out .= '</div> </li>'; $last_event_startdate = $event->startdate; - $last_event_enddate = $event->enddate; + $last_event_enddate = $event->enddate; return $out; } - private function html_fulldate($startdate, $enddate, $single_day_only=false) { + + private function html_event_content( &$event, &$a ) { + // Show content if content is not empty and if content is visible or excerpt is visible but empty. + if ( ( '' !== $event->content + && ( $this->is_visible( $a['show_content'] ) || ( $this->is_visible( $a['show_excerpt'] ) && '' === $event->excerpt ) ) ) ) { + // Show content. + $content = $event->content; + $content_class = 'event-content'; + } elseif ( $this->is_visible( $a['show_excerpt'] ) && '' !== $event->excerpt ) { + // Show excerpt. + $content = $event->excerpt; + $content_class = 'event-excerpt'; + } else { + // No content or excerpt. + return ''; + } + $truncate_url = false; + // Check and handle the read more tag if available + // search fore more-tag (no more tag handling if truncate of content is set) + if ( preg_match( '/<!--more(.*?)?-->/', $content, $matches ) ) { + $part = explode( $matches[0], $content, 2 ); + if ( ! $this->is_link_available( $a, $event ) || 0 < $a['content_length'] || $this->single_event ) { + // content with removed more-tag + $content = $part[0] . $part[1]; + } else { + // Set more-link text. + if ( ! empty( $matches[1] ) ) { + $more_link_text = wp_strip_all_tags( wp_kses_no_null( trim( $matches[1] ) ) ); + } else { + $more_link_text = '[' . __( 'read more', 'event-list' ) . '…]'; + } + // Content with more-link. + $content = apply_filters( 'the_content_more_link', $part[0] . $this->get_event_link( $a, $event->post->ID, $more_link_text ) ); + } + } else { + // normal content + if ( $this->is_link_available( $a, $event ) ) { + $truncate_url = $this->get_event_url( $a, $event->post->ID ); + } + } + // last preparations of content + $content = $event->truncate( do_shortcode( wpautop( $content ) ), $a['content_length'], $this->single_event, true, $truncate_url ); + // preparations for collapsed content + if ( $this->is_visible( $a['collapse_content'] ) ) { + wp_register_script( 'el_event-list', EL_URL . 'includes/js/event-list.js', null, true ); + add_action( 'wp_footer', array( &$this, 'print_eventlist_script' ) ); + return '<div><div id="event-content-' . $event->post->ID . '" class="el-hidden"><div class="' . $content_class . '">' . $content . '</div></div>' . + '<a class="event-content-link" id="event-content-a' . $event->post->ID . '" onclick="el_toggle_content(' . $event->post->ID . ')" href="javascript:void(0)">' . + $this->options->get( 'el_content_show_text' ) . '</a></div>'; + } + // return without collapsing + return '<div class="' . $content_class . '">' . $content . '</div>'; + } + + + private function html_fulldate( $startdate, $enddate, $single_day_only = false ) { $out = ' '; - if($startdate === $enddate) { + if ( $startdate === $enddate ) { // one day event - $out .= '<div class="event-date">'; - if($single_day_only ) { + $out .= '<div class="event-date single-date">'; + if ( $single_day_only ) { $out .= '<div class="startdate">'; - } - else { + } else { $out .= '<div class="enddate">'; } - $out .= $this->html_date($startdate); + $out .= $this->html_date( $startdate ); $out .= '</div>'; - } - else { + } else { // multi day event $out .= '<div class="event-date multi-date">'; $out .= '<div class="startdate">'; - $out .= $this->html_date($startdate); + $out .= $this->html_date( $startdate ); $out .= '</div>'; $out .= '<div class="enddate">'; - $out .= $this->html_date($enddate); + $out .= $this->html_date( $enddate ); $out .= '</div>'; } $out .= '</div>'; return $out; } - private function html_date($date) { - $out = '<div class="event-weekday">'.mysql2date('D', $date).'</div>'; - $out .= '<div class="event-day">'.mysql2date('d', $date).'</div>'; - $out .= '<div class="event-month">'.mysql2date('M', $date).'</div>'; - $out .= '<div class="event-year">'.mysql2date('Y', $date).'</div>'; + + private function html_date( $date ) { + $out = '<div class="event-weekday">' . mysql2date( 'D', $date ) . '</div>'; + $out .= '<div class="event-day">' . mysql2date( 'd', $date ) . '</div>'; + $out .= '<div class="event-month">' . mysql2date( 'M', $date ) . '</div>'; + $out .= '<div class="event-year">' . mysql2date( 'Y', $date ) . '</div>'; return $out; } - private function html_filterbar(&$a) { - if(!$this->is_visible($a['show_filterbar'])) { + + private function html_filterbar( &$a ) { + if ( ! $this->is_visible( $a['show_filterbar'] ) ) { return ''; } - require_once( EL_PATH.'includes/filterbar.php'); + require_once EL_PATH . 'includes/filterbar.php'; $filterbar = EL_Filterbar::get_instance(); - return $filterbar->show($this->get_url($a), $a); + return $filterbar->show( $this->get_url( $a ), $a ); } - private function html_feed_link(&$a, $pos) { - $out = ''; - if($this->options->get('el_enable_feed') && 'true' === $a['add_feed_link'] && $pos === $this->options->get('el_feed_link_pos')) { - // prepare url - require_once( EL_PATH.'includes/feed.php' ); - $feed_link = EL_Feed::get_instance()->eventlist_feed_url(); + + private function html_feed_links( &$a, $pos ) { + if ( $pos !== $this->options->get( 'el_feed_link_pos' ) ) { + return ''; + } + $show_rss = '' !== $this->options->get( 'el_feed_enable_rss' ) && $this->is_visible( $a['add_rss_link'] ); + $show_ical = '' !== $this->options->get( 'el_feed_enable_ical' ) && $this->is_visible( $a['add_ical_link'] ); + if ( $show_rss || $show_ical ) { // prepare align - $align = $this->options->get('el_feed_link_align'); - if('left' !== $align && 'center' !== $align && 'right' !== $align) { + $align = $this->options->get( 'el_feed_link_align' ); + if ( 'left' !== $align && 'center' !== $align && 'right' !== $align ) { $align = 'left'; } - // prepare image - $image = ''; - if('' !== $this->options->get('el_feed_link_img')) { - $image = '<img src="'.includes_url('images/rss.png').'" alt="rss" />'; + // prepare output + $out = ' + <div class="feed el-text-align-' . $align . '">'; + if ( $show_rss ) { + $out .= $this->html_rss_link( $a ); + } + if ( $show_ical ) { + $out .= $this->html_ical_link( $a ); } - // prepare text - $text = $image.esc_attr($this->options->get('el_feed_link_text')); - // create html - $out .= '<div class="feed" style="text-align:'.$align.'"> - <a href="'.$feed_link.'">'.$text.'</a> - </div>'; + $out .= ' + </div>'; + return $out; } - return $out; + return ''; } - private function get_selected_date(&$a) { + + private function html_rss_link( &$a ) { + require_once EL_PATH . 'includes/rss.php'; + $feed_url = EL_Rss::get_instance()->feed_url(); + $link_text = $this->options->get( 'el_feed_rss_link_text' ); + return ' + <a href="' . $feed_url . '" title="' . __( 'Link to RSS feed', 'event-list' ) . '" class="el-rss"><span class="dashicons dashicons-rss"></span>' . $link_text . '</a>'; + } + + + private function html_ical_link( &$a ) { + require_once EL_PATH . 'includes/ical.php'; + $feed_url = EL_ICal::get_instance( $a['cat_filter'] )->feed_url(); + $link_text = $this->options->get( 'el_feed_ical_link_text' ); + return ' + <a href="' . $feed_url . '" title="' . __( 'Link to iCal feed', 'event-list' ) . '" class="el-ical"><span class="dashicons dashicons-calendar"></span>' . $link_text . '</a>'; + } + + + private function get_selected_date( &$a ) { // check used get parameters - $date = isset($_GET['date'.$a['sc_id']]) ? sanitize_key($_GET['date'.$a['sc_id']]) : null; - if('all' === $date || 'upcoming' === $date || 'past' === $date) { + $date = isset( $_GET[ 'date' . $a['sc_id'] ] ) ? sanitize_key( $_GET[ 'date' . $a['sc_id'] ] ) : null; + if ( 'all' === $date || 'upcoming' === $date || 'past' === $date ) { return $date; - } - else if(preg_match('/^[0-9]{4}(-[0-9]{2})?(-[0-9]{2})?$/', $date)) { + } elseif ( preg_match( '/^[0-9]{4}(-[0-9]{2})?(-[0-9]{2})?$/', $date ) ) { return $date; } return $a['initial_date']; } - private function get_selected_cat(&$a) { + + private function get_selected_cat( &$a ) { // check used get parameters - $cat = isset($_GET['cat'.$a['sc_id']]) ? sanitize_key($_GET['cat'.$a['sc_id']]) : ''; + $cat = isset( $_GET[ 'cat' . $a['sc_id'] ] ) ? sanitize_key( $_GET[ 'cat' . $a['sc_id'] ] ) : ''; - if(!empty($cat)) { + if ( ! empty( $cat ) ) { return $cat; } return $a['initial_cat']; } - private function get_event_id(&$a) { + + private function get_event_id( &$a ) { // check used get parameters - $event_id = isset($_GET['event_id'.$a['sc_id']]) ? intval($_GET['event_id'.$a['sc_id']]) : 0; + $event_id = isset( $_GET[ 'event_id' . $a['sc_id'] ] ) ? intval( $_GET[ 'event_id' . $a['sc_id'] ] ) : 0; - if(0 < $event_id) { + if ( 0 < $event_id ) { return $event_id; - } - elseif('all' !== $a['initial_event_id'] && $a['selected_date'] === $a['initial_date'] && $a['selected_cat'] === $a['initial_cat']) { - return intval($a['initial_event_id']); - } - else { + } elseif ( 'all' !== $a['initial_event_id'] && $a['selected_date'] === $a['initial_date'] && $a['selected_cat'] === $a['initial_cat'] ) { + return intval( $a['initial_event_id'] ); + } else { return 0; } } - private function get_date_filter($date_filter, $selected_date) { - if('all' == $date_filter || '' == $date_filter) { - if('all' == $selected_date || '' == $selected_date) { + + private function get_date_filter( $date_filter, $selected_date ) { + if ( 'all' == $date_filter || '' == $date_filter ) { + if ( 'all' == $selected_date || '' == $selected_date ) { return null; - } - else { + } else { return $selected_date; } - } - else { + } else { // Convert html entities to correct characters, e.g. & to & - $date_filter = html_entity_decode($date_filter); - if('all' == $selected_date || '' == $selected_date) { + $date_filter = html_entity_decode( $date_filter ); + if ( 'all' == $selected_date || '' == $selected_date ) { return $date_filter; - } - else { - return '('.$date_filter.')&('.$selected_date.')'; + } else { + return '(' . $date_filter . ')&(' . $selected_date . ')'; } } } - private function get_cat_filter($cat_filter, $selected_cat) { - if('all' == $cat_filter || '' == $cat_filter) { - if('all' == $selected_cat || '' == $selected_cat) { + + private function get_cat_filter( $cat_filter, $selected_cat ) { + if ( 'all' == $cat_filter || '' == $cat_filter ) { + if ( 'all' == $selected_cat || '' == $selected_cat ) { return null; - } - else { + } else { return $selected_cat; } - } - else { + } else { // Convert html entities to correct characters, e.g. & to & - $cat_filter = html_entity_decode($cat_filter); - if('all' == $selected_cat || '' == $selected_cat) { + $cat_filter = html_entity_decode( $cat_filter ); + if ( 'all' == $selected_cat || '' == $selected_cat ) { return $cat_filter; - } - else { - return '('.$cat_filter.')&('.$selected_cat.')'; + } else { + return '(' . $cat_filter . ')&(' . $selected_cat . ')'; } } } - private function get_content(&$event, &$a) { - // check if content is available - if('' == $event->content) { - return ''; - } - $truncate_url = false; - // check and handle the read more tag if available - //search fore more-tag (no more tag handling if truncate of content is set) - if(preg_match('/<!--more(.*?)?-->/', $event->content, $matches)) { - $part = explode($matches[0], $event->content, 2); - if(!$this->is_link_available($a, $event) || 0 < $a['content_length'] || $this->single_event) { - //content with removed more-tag - $content = $part[0].$part[1]; - } - else { - //set more-link text - if(!empty($matches[1])) { - $more_link_text = strip_tags(wp_kses_no_null(trim($matches[1]))); - } - else { - $more_link_text = __('(more…)'); - } - //content with more-link - $content = apply_filters('the_content_more_link', $part[0].$this->get_event_link($a, $event->post->ID, $more_link_text)); - } - } - else { - //normal content - $content = $event->content; - if($this->is_link_available($a, $event)) { - $truncate_url = $this->get_event_url($a, $event->post->ID); - } - } - // last preparations of content - $content = $event->truncate(do_shortcode(wpautop($content)), $a['content_length'], $this->single_event, true, $truncate_url); - // preparations for collapsed content - if($this->is_visible($a['collapse_content'])) { - wp_register_script('el_event-list', EL_URL.'includes/js/event-list.js', null, true); - add_action('wp_footer', array(&$this, 'print_eventlist_script')); - return '<div class="event-content"><div id="event-content-'.$event->post->ID.'" class="el-hidden">'.$content. - '</div><a class="event-content-link" id="event-content-a'.$event->post->ID.'" onclick="el_toggle_content('.$event->post->ID.')" href="javascript:void(0)">'.$this->options->get('el_content_show_text').'</a></div>'; - } - // return without collapsing - return '<div class="event-content">'.$content.'</div>'; - } - private function get_event_link(&$a, $event_id, $title) { - return '<a href="'.$this->get_event_url($a, $event_id).'">'.$title.'</a>'; + private function get_event_link( &$a, $event_id, $title ) { + return '<a href="' . $this->get_event_url( $a, $event_id ) . '">' . $title . '</a>'; } - private function get_event_url(&$a, $event_id) { - return esc_html(add_query_arg('event_id'.$a['sc_id_for_url'], $event_id, $this->get_url($a))); + + private function get_event_url( &$a, $event_id ) { + return esc_html( add_query_arg( 'event_id' . $a['sc_id_for_url'], $event_id, $this->get_url( $a ) ) ); } - private function get_url(&$a) { - if('' !== $a['url_to_page']) { + + private function get_url( &$a ) { + if ( '' !== $a['url_to_page'] ) { // use given url $url = $a['url_to_page']; - } - else { + } else { // use actual page $url = get_permalink(); - foreach($_GET as $k => $v) { - if('date'.$a['sc_id'] !== $k && 'event_id'.$a['sc_id'] !== $k) { - $url = add_query_arg($k, $v, $url); + foreach ( $_GET as $k => $v ) { + if ( 'date' . $a['sc_id'] !== $k && 'event_id' . $a['sc_id'] !== $k ) { + $url = add_query_arg( $k, $v, $url ); } } } return $url; } + private function is_single_day_only( &$events ) { - foreach( $events as $event ) { - if( $event->startdate !== $event->enddate ) { + foreach ( $events as $event ) { + if ( $event->startdate !== $event->enddate ) { return false; } } return true; } - private function is_visible($attribute_value) { - switch ($attribute_value) { + + private function is_visible( $attribute_value ) { + switch ( $attribute_value ) { case 'true': case '1': // = 'true' return true; case 'event_list_only': - if($this->single_event) { + if ( $this->single_event ) { return false; - } - else { + } else { return true; } case 'single_event_only': - if($this->single_event) { + if ( $this->single_event ) { return true; - } - else { + } else { return false; } default: // 'false' or 0 or nothing handled by this function @@ -497,15 +549,18 @@ class SC_Event_List { } } - private function is_link_available(&$a, &$event) { - return $this->is_visible($a['link_to_event']) || ('events_with_content_only' == $a['link_to_event'] && !$this->single_event && !empty($event->content)); + + private function is_link_available( &$a, &$event ) { + return $this->is_visible( $a['link_to_event'] ) || ( 'events_with_content_only' == $a['link_to_event'] && ! $this->single_event && ! empty( $event->content ) ); } + public function print_eventlist_script() { // print variables for script - echo('<script type="text/javascript">el_content_show_text = "'.$this->options->get('el_content_show_text').'"; el_content_hide_text = "'.$this->options->get('el_content_hide_text').'"</script>'); + echo( '<script type="text/javascript">el_content_show_text = "' . $this->options->get( 'el_content_show_text' ) . '"; el_content_hide_text = "' . $this->options->get( 'el_content_hide_text' ) . '"</script>' ); // print script - wp_print_scripts('el_event-list'); + wp_print_scripts( 'el_event-list' ); } + } -?> + diff --git a/wp-content/plugins/event-list/includes/sc_event-list_helptexts.php b/wp-content/plugins/event-list/includes/sc_event-list_helptexts.php index c0636ed733f45adfefa6b8eeb2833bbbe5f43a4a..bfcbaba4833d7fec337e2ede77348bce92cd1b03 100644 --- a/wp-content/plugins/event-list/includes/sc_event-list_helptexts.php +++ b/wp-content/plugins/event-list/includes/sc_event-list_helptexts.php @@ -1,156 +1,268 @@ <?php -if(!defined('WPINC')) { +if ( ! defined( 'WPINC' ) ) { exit; } $sc_eventlist_helptexts = array( - 'initial_event_id' => array('val' => array('all', strtoupper(__('event-id','event-list'))), - '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"')), - - 'initial_date' => array('val' => array('all', 'upcoming', 'past', strtoupper(__('year','event-list'))), - 'desc' => __('This attribute defines which events are initially shown. The default is to show the upcoming events only.','event-list').'<br />'. - 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"')), - - 'initial_cat' => array('val' => array('all', strtoupper(__('category slug','event-list'))), - 'desc' => __('This attribute defines the category of which events are initially shown. The default is to show events of all categories.','event-list').'<br />'. - __('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')), - - 'initial_order' => array('val' => array('date_asc', 'date_desc'), - 'desc' => __('This attribute defines the initial order of the events.','event-list').'<br />'. - 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"')), - - 'date_filter' => array('val' => array('all', 'upcoming', 'past', strtoupper(__('year','event-list'))), - '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 />'. - sprintf(__('Filtered events according to %1$s value are not available in the event list.','event-list'), 'date_filter').'<br />'. - 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 />'. - sprintf(__('See %1$s description if you want to define complex filters.','event-list'), '"'.__('Filter Syntax','event-list').'"')), - - 'cat_filter' => array('val' => array('all', strtoupper(__('category slugs','event-list'))), - '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 />'. - 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 />'. - 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').'"')), - - 'num_events' => array('val' => array(strtoupper(__('number','event-list'))), - '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 />'. - __('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')), - - 'show_filterbar' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only'), - '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 />'. - sprintf(__('Choose %1$s to always hide and %2$s to always show the filterbar.','event-list'), '"false"', '"true"').'<br />'. - 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"')), - - 'filterbar_items' => array('val' => array('years_hlist', 'years_dropdown', 'months_hlist', 'months_dropdown', 'daterange_hlist', 'daterange_dropdown', 'cats_hlist', 'cats_dropdown', 'reset_link'), - '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 />'. - __('Find below an overview of the available filterbar items and their options:','event-list').'<br />'. - sc_eventlist_helptexts_filterbar_table(array( - 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')), - array('<td rowspan="4">years', '<td rowspan="4">'. __('Show a list of all available years. Additional there are some special entries available (see item options).','event-list'), - 'show_all', 'true | false', 'true', __('Add an entry to show all events.','event-list')), - array('show_upcoming', 'true | false', 'true', __('Add an entry to show all upcoming events.','event-list')), - array('show_past', 'true | false', 'false', __('Add an entry to show events in the past.','event-list')), - array('years_order', 'desc | asc', 'desc', __('Set descending or ascending order of year entries.','event-list')), - array('<td rowspan="5">months', '<td rowspan="5">'.__('Show a list of all available months.','event-list'), - 'show_all', 'true | false', 'false', __('Add an entry to show all events.','event-list')), - array('show_upcoming', 'true | false', 'false', __('Add an entry to show all upcoming events.','event-list')), - array('show_past', 'true | false', 'false', __('Add an entry to show events in the past.','event-list')), - array('months_order', 'desc | asc', 'desc', __('Set descending or ascending order of month entries.','event-list')), - 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')), - 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&upcoming&past', sprintf(__('Specifies the displayed values and their order. The items must be seperated by %1$s.','event-list'), '"&"')), - 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')), - 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')))). - __('Find below an overview of the available filterbar display options:','event-list').'<br />'. - sc_eventlist_helptexts_filterbar_table(array( - 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')), - array('hlist', sprintf(__('Shows a horizonal list seperated by %1$s with a link to each item.','event-list'), '"|"'), 'years, months, daterange, cats'), - 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'), - array('link', __('Shows a simple link which can be clicked.','event-list'), 'reset'))). - '<p>'.__('Find below some declaration examples with descriptions:','event-list').'</p> + 'initial_event_id' => array( + 'val' => array( 'all', strtoupper( __( 'event-id', 'event-list' ) ) ), + '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"' ), + ), + + 'initial_date' => array( + 'val' => array( 'all', 'upcoming', 'past', strtoupper( __( 'year', 'event-list' ) ) ), + 'desc' => __( 'This attribute defines which events are initially shown. The default is to show the upcoming events only.', 'event-list' ) . '<br />' . + 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"' ), + ), + + 'initial_cat' => array( + 'val' => array( 'all', strtoupper( __( 'category slug', 'event-list' ) ) ), + 'desc' => __( 'This attribute defines the category of which events are initially shown. The default is to show events of all categories.', 'event-list' ) . '<br />' . + __( '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' ), + ), + + 'initial_order' => array( + 'val' => array( 'date_asc', 'date_desc' ), + 'desc' => __( 'This attribute defines the initial order of the events.', 'event-list' ) . '<br />' . + 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"' ), + ), + + 'date_filter' => array( + 'val' => array( 'all', 'upcoming', 'past', strtoupper( __( 'year', 'event-list' ) ) ), + '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 />' . + sprintf( __( 'Filtered events according to %1$s value are not available in the event list.', 'event-list' ), 'date_filter' ) . '<br />' . + 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 />' . + sprintf( __( 'See %1$s description if you want to define complex filters.', 'event-list' ), '"' . __( 'Filter Syntax', 'event-list' ) . '"' ), + ), + + 'cat_filter' => array( + 'val' => array( 'all', strtoupper( __( 'category slugs', 'event-list' ) ) ), + '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 />' . + 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 />' . + 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' ) . '"' ), + ), + + 'num_events' => array( + 'val' => array( strtoupper( __( 'number', 'event-list' ) ) ), + '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 />' . + __( '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' ), + ), + + 'show_filterbar' => array( + 'val' => array( 'false', 'true', 'event_list_only', 'single_event_only' ), + '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 />' . + sprintf( __( 'Choose %1$s to always hide and %2$s to always show the filterbar.', 'event-list' ), '"false"', '"true"' ) . '<br />' . + 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"' ), + ), + + 'filterbar_items' => array( + 'val' => array( 'years_hlist', 'years_dropdown', 'months_hlist', 'months_dropdown', 'daterange_hlist', 'daterange_dropdown', 'cats_hlist', 'cats_dropdown', 'reset_link' ), + '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 />' . + __( 'Find below an overview of the available filterbar items and their options:', 'event-list' ) . '<br />' . + sc_eventlist_helptexts_filterbar_table( + array( + 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' ) ), + array( + '<td rowspan="4">years', + '<td rowspan="4">' . __( 'Show a list of all available years. Additional there are some special entries available (see item options).', 'event-list' ), + 'show_all', + 'true | false', + 'true', + __( 'Add an entry to show all events.', 'event-list' ), + ), + array( 'show_upcoming', 'true | false', 'true', __( 'Add an entry to show all upcoming events.', 'event-list' ) ), + array( 'show_past', 'true | false', 'false', __( 'Add an entry to show events in the past.', 'event-list' ) ), + array( 'years_order', 'desc | asc', 'desc', __( 'Set descending or ascending order of year entries.', 'event-list' ) ), + array( + '<td rowspan="5">months', + '<td rowspan="5">' . __( 'Show a list of all available months.', 'event-list' ), + 'show_all', + 'true | false', + 'false', + __( 'Add an entry to show all events.', 'event-list' ), + ), + array( 'show_upcoming', 'true | false', 'false', __( 'Add an entry to show all upcoming events.', 'event-list' ) ), + array( 'show_past', 'true | false', 'false', __( 'Add an entry to show events in the past.', 'event-list' ) ), + array( 'months_order', 'desc | asc', 'desc', __( 'Set descending or ascending order of month entries.', 'event-list' ) ), + 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' ) ), + 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&upcoming&past', sprintf( __( 'Specifies the displayed values and their order. The items must be seperated by %1$s.', 'event-list' ), '"&"' ) ), + 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' ) ), + 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' ) ), + ) + ) . + __( 'Find below an overview of the available filterbar display options:', 'event-list' ) . '<br />' . + sc_eventlist_helptexts_filterbar_table( + array( + 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' ) ), + array( 'hlist', sprintf( __( 'Shows a horizonal list seperated by %1$s with a link to each item.', 'event-list' ), '"|"' ), 'years, months, daterange, cats' ), + 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' ), + array( 'link', __( 'Shows a simple link which can be clicked.', 'event-list' ), 'reset' ), + ) + ) . + '<p>' . __( 'Find below some declaration examples with descriptions:', 'event-list' ) . '</p> <code>years_hlist,cats_dropdown</code><br /> - '.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'), '"_"', '(",")').' + ' . 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' ), '"_"', '(",")' ) . ' <p><code>years_dropdown(show_all=false|show_past=true),cats_dropdown;;reset_link</code><br /> - '.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 /> - '.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>'), + ' . 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 /> + ' . 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>', + ), - 'title_length' => array('val' => array(__('number','event-list'), 'auto'), - 'desc' => __('This attribute specifies if the title should be truncated to the given number of characters in the event list.','event-list').'<br />'. - 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 />'. - __('This attribute has no influence if only a single event is shown.','event-list')), + 'title_length' => array( + 'val' => array( __( 'number', 'event-list' ), 'auto' ), + 'desc' => __( 'This attribute specifies if the title should be truncated to the given number of characters in the event list.', 'event-list' ) . '<br />' . + 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 />' . + __( 'This attribute has no influence if only a single event is shown.', 'event-list' ), + ), - 'show_starttime' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only'), - 'desc' => __('This attribute specifies if the starttime is displayed in the event list.<br /> + 'show_starttime' => array( + 'val' => array( 'false', 'true', 'event_list_only', 'single_event_only' ), + 'desc' => __( + 'This attribute specifies if the starttime is displayed in the event list.<br /> Choose "false" to always hide and "true" to always show the starttime.<br /> - With "event_list_only" the starttime is only visible in the event list and with "single_event_only" only for a single event','event-list')), + With "event_list_only" the starttime is only visible in the event list and with "single_event_only" only for a single event', + 'event-list' + ), + ), - 'show_location' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only'), - 'desc' => __('This attribute specifies if the location is displayed in the event list.<br /> + 'show_location' => array( + 'val' => array( 'false', 'true', 'event_list_only', 'single_event_only' ), + 'desc' => __( + 'This attribute specifies if the location is displayed in the event list.<br /> Choose "false" to always hide and "true" to always show the location.<br /> - With "event_list_only" the location is only visible in the event list and with "single_event_only" only for a single event','event-list')), + With "event_list_only" the location is only visible in the event list and with "single_event_only" only for a single event', + 'event-list' + ), + ), - 'location_length' => array('val' => array(__('number','event-list'), 'auto'), - 'desc' => __('This attribute specifies if the title should be truncated to the given number of characters in the event list.','event-list').'<br />'. - 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 />'. - __('This attribute has no influence if only a single event is shown.','event-list')), + 'location_length' => array( + 'val' => array( __( 'number', 'event-list' ), 'auto' ), + 'desc' => __( 'This attribute specifies if the title should be truncated to the given number of characters in the event list.', 'event-list' ) . '<br />' . + 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 />' . + __( 'This attribute has no influence if only a single event is shown.', 'event-list' ), + ), - 'show_cat' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only'), - 'desc' => __('This attribute specifies if the categories are displayed in the event list.<br /> + 'show_cat' => array( + 'val' => array( 'false', 'true', 'event_list_only', 'single_event_only' ), + 'desc' => __( + 'This attribute specifies if the categories are displayed in the event list.<br /> Choose "false" to always hide and "true" to always show the category.<br /> - With "event_list_only" the categories are only visible in the event list and with "single_event_only" only for a single event','event-list')), + With "event_list_only" the categories are only visible in the event list and with "single_event_only" only for a single event', + 'event-list' + ), + ), - 'show_content' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only'), - 'desc' => __('This attribute specifies if the content is displayed in the event list.<br /> + 'show_content' => array( + 'val' => array( 'false', 'true', 'event_list_only', 'single_event_only' ), + 'desc' => __( + 'This attribute specifies if the content is displayed in the event list.<br /> Choose "false" to always hide and "true" to always show the content.<br /> - With "event_list_only" the content is only visible in the event list and with "single_event_only" only for a single event','event-list')), + With "event_list_only" the content is only visible in the event list and with "single_event_only" only for a single event', + 'event-list' + ), + ), + + 'show_excerpt' => array( + 'val' => array( 'false', 'true', 'event_list_only', 'single_event_only' ), + 'desc' => __( + 'This attribute specifies if the excerpt is displayed in the event list.<br /> + Choose "false" to always hide and "true" to always show the excerpt.<br /> + With "event_list_only" the excerpt is only visible in the event list and with "single_event_only" only for a single event.<br /> + If no excerpt is set, the event content will be displayed instead.<br /> + This attribute will be ignored when the attribute "show_content" is enabled for the same display type (single event or event list).', + 'event-list' + ), + ), - 'content_length' => array('val' => array(__('number','event-list')), - 'desc' => __('This attribute specifies if the content should be truncate to the given number of characters in the event list.','event-list').'<br />'. - sprintf(__('With the standard value %1$s the full text is displayed.','event-list'), '[0]').'<br />'. - __('This attribute has no influence if only a single event is shown.','event-list')), + 'content_length' => array( + 'val' => array( __( 'number', 'event-list' ) ), + 'desc' => __( 'This attribute specifies if the content should be truncate to the given number of characters in the event list.', 'event-list' ) . '<br />' . + sprintf( __( 'With the standard value %1$s the full text is displayed.', 'event-list' ), '[0]' ) . '<br />' . + __( 'This attribute has no influence if only a single event is shown.', 'event-list' ), + ), - 'collapse_content' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only'), - 'desc' => __('This attribute specifies if the content should be collapsed initially.<br /> + 'collapse_content' => array( + 'val' => array( 'false', 'true', 'event_list_only', 'single_event_only' ), + 'desc' => __( + 'This attribute specifies if the content or excerpt should be collapsed initially.<br /> Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br /> Available option are "false" to always disable collapsing and "true" to always enable collapsing of the content.<br /> - With "event_list_only" the content is only collapsed in the event list view and with "single_event_only" only in single event view.','event-list')), + With "event_list_only" the content is only collapsed in the event list view and with "single_event_only" only in single event view.', + 'event-list' + ), + ), - 'link_to_event' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only', 'events_with_content_only'), - 'desc' => __('This attribute specifies if a link to the single event should be added onto the event name in the event list.<br /> + 'link_to_event' => array( + 'val' => array( 'false', 'true', 'event_list_only', 'single_event_only', 'events_with_content_only' ), + 'desc' => __( + 'This attribute specifies if a link to the single event should be added onto the event name in the event list.<br /> Choose "false" to never add and "true" to always add the link.<br /> With "event_list_only" the link is only added in the event list and with "single_event_only" only for a single event.<br /> - With "events_with_content_only" the link is only added in the event list for events with event content.','event-list')), + With "events_with_content_only" the link is only added in the event list for events with event content.', + 'event-list' + ), + ), - 'add_feed_link' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only'), - 'desc' => __('This attribute specifies if a rss feed link should be added.<br /> + 'add_rss_link' => array( + 'val' => array( 'false', 'true', 'event_list_only', 'single_event_only' ), + 'desc' => __( + 'This attribute specifies if a rss feed link should be added.<br /> You have to enable the feed in the eventlist settings to make this attribute workable.<br /> On that page you can also find some settings to modify the output.<br /> Choose "false" to never add and "true" to always add the link.<br /> - With "event_list_only" the link is only added in the event list and with "single_event_only" only for a single event','event-list')), - 'url_to_page' => array('val' => array('url'), - 'desc' => __('This attribute specifies the page or post url for event links.<br /> + With "event_list_only" the link is only added in the event list and with "single_event_only" only for a single event', + 'event-list' + ), + ), + + 'add_ical_link' => array( + 'val' => array( 'false', 'true' ), + 'desc' => __( + 'This attribute specifies if a ical feed link should be added.<br /> + You have to enable the ical feed in the eventlist settings to make this attribute workable.<br /> + On that page you can also find some settings to modify the output.<br /> + Choose "false" to never add and "true" to always add the link.<br />', + 'event-list' + ), + ), + + 'url_to_page' => array( + 'val' => array( 'url' ), + 'desc' => __( + 'This attribute specifies the page or post url for event links.<br /> The standard is an empty string. Then the url will be calculated automatically.<br /> - An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget.','event-list')), + An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget.', + 'event-list' + ), + ), // 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 - 'sc_id_for_url' => array('val' => array('number'), - 'hidden' => true, - 'desc' => __('This attribute the specifies shortcode id of the used shortcode on the page specified with "url_to_page" attribute.<br /> - The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget.','event-list')), + 'sc_id_for_url' => array( + 'val' => array( 'number' ), + 'hidden' => true, + 'desc' => __( + 'This attribute the specifies shortcode id of the used shortcode on the page specified with "url_to_page" attribute.<br /> + The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget.', + 'event-list' + ), + ), ); -function sc_eventlist_helptexts_filterbar_table($tabledata_array) { + +function sc_eventlist_helptexts_filterbar_table( $tabledata_array ) { // table opening tag $out = ' <small><table class="el-filterbar-table">'; // Start with th items (table head for first row) $tableitem_tag = 'th'; - foreach($tabledata_array as $row) { + foreach ( $tabledata_array as $row ) { // row opening tag $out .= ' <tr>'; - foreach($row as $column_val) { + foreach ( $row as $column_val ) { // opening tag (if required) - $out .= ('<'.$tableitem_tag === substr($column_val, 0, 3)) ? '' : '<'.$tableitem_tag.'>'; + $out .= ( '<' . $tableitem_tag === substr( $column_val, 0, 3 ) ) ? '' : '<' . $tableitem_tag . '>'; // column value and closing tag - $out .= $column_val.'</'.$tableitem_tag.'>'; + $out .= $column_val . '</' . $tableitem_tag . '>'; } // row closing tag $out .= '</tr>'; @@ -163,4 +275,4 @@ function sc_eventlist_helptexts_filterbar_table($tabledata_array) { '; return $out; } -?> + diff --git a/wp-content/plugins/event-list/includes/widget.php b/wp-content/plugins/event-list/includes/widget.php index 9e2d834b1240da10a8998263e49d6428f920765c..b0f47462a4d39430cc0015e86e6a6eea47f2da9e 100644 --- a/wp-content/plugins/event-list/includes/widget.php +++ b/wp-content/plugins/event-list/includes/widget.php @@ -1,54 +1,58 @@ <?php -if(!defined('WPINC')) { +if ( ! defined( 'WPINC' ) ) { exit; } /** * Event List Widget -*/ + */ class EL_Widget extends WP_Widget { private $items; + /** * Register widget with WordPress. */ public function __construct() { parent::__construct( - 'event_list_widget', // Base ID - 'Event List', // Name - array('description' => __('With this widget a list of upcoming events can be displayed.','event-list')) // Args + 'event_list_widget', // Base ID + 'Event List', // Name + array( 'description' => __( 'With this widget a list of upcoming events can be displayed.', 'event-list' ) ) // Args ); // define all available items $this->items = array( - 'title' => array('std_value' => __('Upcoming events','event-list').':'), - 'cat_filter' => array('std_value' => 'all'), - 'num_events' => array('std_value' => '3'), - 'title_length' => array('std_value' => '0'), - 'show_starttime' => array('std_value' => 'true'), - 'show_location' => array('std_value' => 'false'), - 'location_length' => array('std_value' => '0'), - 'show_content' => array('std_value' => 'false'), - 'content_length' => array('std_value' => '0'), - 'url_to_page' => array('std_value' => ''), - 'sc_id_for_url' => array('std_value' => '1'), - 'link_to_event' => array('std_value' => 'false'), - 'link_to_page' => array('std_value' => 'false'), - 'link_to_page_caption' => array('std_value' => __('show events page','event-list')), + 'title' => array( 'std_value' => __( 'Upcoming events', 'event-list' ) . ':' ), + 'cat_filter' => array( 'std_value' => 'all' ), + 'num_events' => array( 'std_value' => '3' ), + 'title_length' => array( 'std_value' => '0' ), + 'show_starttime' => array( 'std_value' => 'true' ), + 'show_location' => array( 'std_value' => 'false' ), + 'location_length' => array( 'std_value' => '0' ), + 'show_excerpt' => array( 'std_value' => 'false' ), + 'show_content' => array( 'std_value' => 'false' ), + 'content_length' => array( 'std_value' => '0' ), + 'url_to_page' => array( 'std_value' => '' ), + 'sc_id_for_url' => array( 'std_value' => '1' ), + 'link_to_event' => array( 'std_value' => 'false' ), + 'link_to_page' => array( 'std_value' => 'false' ), + 'link_to_page_caption' => array( 'std_value' => __( 'show events page', 'event-list' ) ), ); - add_action('admin_init', array(&$this, 'load_widget_items_helptexts'), 2); + add_action( 'admin_init', array( &$this, 'load_widget_items_helptexts' ), 2 ); } + public function load_widget_items_helptexts() { - require_once(EL_PATH.'includes/widget_helptexts.php'); - foreach($widget_items_helptexts as $name => $values) { - $this->items[$name] += $values; + require_once EL_PATH . 'includes/widget_helptexts.php'; + foreach ( $widget_items_helptexts as $name => $values ) { + $this->items[ $name ] += $values; } - unset($widget_items_helptexts); + unset( $widget_items_helptexts ); } + /** * Front-end display of widget. * @@ -57,42 +61,43 @@ class EL_Widget extends WP_Widget { * @param array $args Widget arguments. * @param array $instance Saved values from database. */ - public function widget($args, $instance) { - $this->prepare_instance($instance); + public function widget( $args, $instance ) { + $this->prepare_instance( $instance ); // TODO: sanitize $instance items - $title = apply_filters('widget_title', $instance['title']); + $title = apply_filters( 'widget_title', $instance['title'] ); echo $args['before_widget']; - if(!empty($title)) { - echo $args['before_title'].$title.$args['after_title']; + if ( ! empty( $title ) ) { + echo $args['before_title'] . $title . $args['after_title']; } - $this->upgrade_widget($instance, true); - $linked_page_is_set = !empty($instance['url_to_page']); - $linked_page_id_is_set = 0 < intval($instance['sc_id_for_url']); - $shortcode = '[event-list show_filterbar=false'; - $shortcode .= ' cat_filter='.$instance['cat_filter']; - $shortcode .= ' num_events="'.$instance['num_events'].'"'; - $shortcode .= ' title_length='.$instance['title_length']; - $shortcode .= ' show_starttime='.$instance['show_starttime']; - $shortcode .= ' show_location='.$instance['show_location']; - $shortcode .= ' location_length='.$instance['location_length']; - $shortcode .= ' show_content='.$instance['show_content']; - $shortcode .= ' content_length='.$instance['content_length']; - if($linked_page_is_set && $linked_page_id_is_set) { - $shortcode .= ' link_to_event='.$instance['link_to_event']; - $shortcode .= ' url_to_page="'.$instance['url_to_page'].'"'; - $shortcode .= ' sc_id_for_url='.$instance['sc_id_for_url']; - } - else { + $this->upgrade_widget( $instance, true ); + $linked_page_is_set = ! empty( $instance['url_to_page'] ); + $linked_page_id_is_set = 0 < intval( $instance['sc_id_for_url'] ); + $shortcode = '[event-list show_filterbar=false'; + $shortcode .= ' cat_filter=' . $instance['cat_filter']; + $shortcode .= ' num_events="' . $instance['num_events'] . '"'; + $shortcode .= ' title_length=' . $instance['title_length']; + $shortcode .= ' show_starttime=' . $instance['show_starttime']; + $shortcode .= ' show_location=' . $instance['show_location']; + $shortcode .= ' location_length=' . $instance['location_length']; + $shortcode .= ' show_excerpt=' . $instance['show_excerpt']; + $shortcode .= ' show_content=' . $instance['show_content']; + $shortcode .= ' content_length=' . $instance['content_length']; + if ( $linked_page_is_set && $linked_page_id_is_set ) { + $shortcode .= ' link_to_event=' . $instance['link_to_event']; + $shortcode .= ' url_to_page="' . $instance['url_to_page'] . '"'; + $shortcode .= ' sc_id_for_url=' . $instance['sc_id_for_url']; + } else { $shortcode .= ' link_to_event=false'; } $shortcode .= ']'; - echo apply_filters('widget_text', do_shortcode($shortcode)); - if('true' === $instance['link_to_page'] && $linked_page_is_set) { - echo '<div style="clear:both"><a title="'.$instance['link_to_page_caption'].'" href="'.$instance[ 'url_to_page'].'">'.$instance['link_to_page_caption'].'</a></div>'; + echo apply_filters( 'widget_text', do_shortcode( $shortcode ) ); + if ( 'true' === $instance['link_to_page'] && $linked_page_is_set ) { + echo '<div style="clear:both"><a title="' . $instance['link_to_page_caption'] . '" href="' . $instance['url_to_page'] . '">' . $instance['link_to_page_caption'] . '</a></div>'; } echo $args['after_widget']; } + /** * Sanitize widget form values as they are saved. * @@ -103,19 +108,19 @@ class EL_Widget extends WP_Widget { * * @return array Updated values to be saved. */ - public function update($new_instance, $old_instance) { + public function update( $new_instance, $old_instance ) { $instance = array(); - foreach($this->items as $itemname => $item) { - if('checkbox' === $item['type']) { - $instance[$itemname] = (isset($new_instance[$itemname]) && 1==$new_instance[$itemname]) ? 'true' : 'false'; - } - else { // 'text' - $instance[$itemname] = strip_tags($new_instance[$itemname]); + foreach ( $this->items as $itemname => $item ) { + if ( 'checkbox' === $item['type'] ) { + $instance[ $itemname ] = ( isset( $new_instance[ $itemname ] ) && 1 == $new_instance[ $itemname ] ) ? 'true' : 'false'; + } else { // 'text' + $instance[ $itemname ] = strip_tags( $new_instance[ $itemname ] ); } } return $instance; } + /** * Back-end widget form. * @@ -123,34 +128,34 @@ class EL_Widget extends WP_Widget { * * @param array $instance Previously saved values from database. */ - public function form($instance) { - $this->upgrade_widget($instance); + public function form( $instance ) { + $this->upgrade_widget( $instance ); $out = ''; - foreach($this->items as $itemname => $item) { - if(! isset($instance[$itemname])) { - $instance[$itemname] = $item['std_value']; + foreach ( $this->items as $itemname => $item ) { + if ( ! isset( $instance[ $itemname ] ) ) { + $instance[ $itemname ] = $item['std_value']; } - $style_text = (null===$item['form_style']) ? '' : ' style="'.$item['form_style'].'"'; - if('checkbox' === $item['type']) { - $checked_text = ('true'===$instance[$itemname] || 1==$instance[$itemname]) ? 'checked = "checked" ' : ''; - $out .= ' - <p'.$style_text.' title="'.$item['tooltip'].'"> - <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> + $style_text = ( null === $item['form_style'] ) ? '' : ' style="' . $item['form_style'] . '"'; + if ( 'checkbox' === $item['type'] ) { + $checked_text = ( 'true' === $instance[ $itemname ] || 1 == $instance[ $itemname ] ) ? 'checked = "checked" ' : ''; + $out .= ' + <p' . $style_text . ' title="' . $item['tooltip'] . '"> + <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> </p>'; - } - else { // 'text' - $width_text = (null === $item['form_width']) ? '' : 'style="width:'.$item['form_width'].'px" '; - $caption_after_text = (null === $item['caption_after']) ? '' : '<label>'.$item['caption_after'].'</label>'; - $out .= ' - <p'.$style_text.' title="'.$item['tooltip'].'"> - <label for="'.$this->get_field_id($itemname).'">'.$item['caption'].' </label> - <input '.$width_text.'class="widefat" id="'.$this->get_field_id($itemname).'" name="'.$this->get_field_name($itemname).'" type="text" value="'.esc_attr($instance[$itemname]).'" />'.$caption_after_text.' + } else { // 'text' + $width_text = ( null === $item['form_width'] ) ? '' : 'style="width:' . $item['form_width'] . 'px" '; + $caption_after_text = ( null === $item['caption_after'] ) ? '' : '<label>' . $item['caption_after'] . '</label>'; + $out .= ' + <p' . $style_text . ' title="' . $item['tooltip'] . '"> + <label for="' . $this->get_field_id( $itemname ) . '">' . $item['caption'] . ' </label> + <input ' . $width_text . 'class="widefat" id="' . $this->get_field_id( $itemname ) . '" name="' . $this->get_field_name( $itemname ) . '" type="text" value="' . esc_attr( $instance[ $itemname ] ) . '" />' . $caption_after_text . ' </p>'; } } echo $out; } + /** * Prepare the instance array and add not available items with std_value * @@ -158,41 +163,43 @@ class EL_Widget extends WP_Widget { * * @param array &$instance Previously saved values from database. */ - private function prepare_instance(&$instance) { - foreach($this->items as $itemname => $item) { - if(!isset($instance[$itemname])) { - $instance[$itemname] = $item['std_value']; + private function prepare_instance( &$instance ) { + foreach ( $this->items as $itemname => $item ) { + if ( ! isset( $instance[ $itemname ] ) ) { + $instance[ $itemname ] = $item['std_value']; } } } + /** * Upgrades which are required due to modifications in the widget args * * @param array $instance Values from the database * @param bool $on_frontpage true if the frontpage is displayed, false if the admin page is displayed */ - private function upgrade_widget(&$instance, $on_frontpage=false) { + private function upgrade_widget( &$instance, $on_frontpage = false ) { $upgrade_required = false; // default cat_filter value in version 0.6.0 (can be removed in 1.0.0) - if(isset($instance['cat_filter']) && 'none' === $instance['cat_filter']) { + if ( isset( $instance['cat_filter'] ) && 'none' === $instance['cat_filter'] ) { $instance['cat_filter'] = 'all'; - $upgrade_required = true; + $upgrade_required = true; } // renamed items "show_details" -> "show_content" - if(isset($instance['show_details']) && !isset($instance['show_content'])) { + if ( isset( $instance['show_details'] ) && ! isset( $instance['show_content'] ) ) { $instance['show_content'] = $instance['show_details']; - $upgrade_required = true; + $upgrade_required = true; } // renamed items "details_length" -> "content_length" - if(isset($instance['details_length']) && !isset($instance['content_length'])) { + if ( isset( $instance['details_length'] ) && ! isset( $instance['content_length'] ) ) { $instance['content_length'] = $instance['details_length']; - $upgrade_required = true; + $upgrade_required = true; } // Show info for the required update on admin page - if($upgrade_required && !$on_frontpage && current_user_can('edit_theme_options')) { + if ( $upgrade_required && ! $on_frontpage && current_user_can( 'edit_theme_options' ) ) { echo '<p style="color:red"><strong>This widget is old and requires an update! Please press "Save" to execute the required modifications!</strong></p>'; } } + } -?> + diff --git a/wp-content/plugins/event-list/includes/widget_helptexts.php b/wp-content/plugins/event-list/includes/widget_helptexts.php index be118c9d8ce97b1fc4ab0dd09b9ce146d8a7c116..81fe63c1e6d86aef76d07abcea26c7a68eafb601 100644 --- a/wp-content/plugins/event-list/includes/widget_helptexts.php +++ b/wp-content/plugins/event-list/includes/widget_helptexts.php @@ -1,108 +1,145 @@ <?php -if(!defined('WPINC')) { +if ( ! defined( 'WPINC' ) ) { exit; } $widget_items_helptexts = array( - 'title' => array('type' => 'text', - 'caption' => __('Title','event-list'), - 'caption_after' => null, - 'tooltip' => __('This option defines the displayed title for the widget.','event-list'), - 'form_style' => null, - 'form_width' => null), - - 'cat_filter' => array('type' => 'text', - 'caption' => __('Category Filter','event-list').':', - 'caption_after' => null, - 'tooltip' => __('This option defines the categories of which events are shown. The standard is all or an empty string to show all events. Specify a category slug or a list of category slugs to only show events of the specified categories. See description of the shortcode attribute cat_filter for detailed info about all possibilities.','event-list'), - 'form_style' => 'margin:0 0 0.8em 0', - 'form_width' => null), - - 'num_events' => array('type' => 'text', - 'caption' => __('Number of listed events','event-list').':', - 'caption_after' => null, - 'tooltip' => __('The number of upcoming events to display','event-list'), - 'form_style' => '', - 'form_width' => 30), - - 'title_length' => array('type' => 'text', - 'caption' => __('Truncate event title to','event-list'), - 'caption_after' => __('characters','event-list'), - 'tooltip' => __('This option defines the number of displayed characters for the event title.','event-list').' '. - 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]'), - 'form_style' => null, - 'form_width' => 40), - - 'show_starttime' => array('type' => 'checkbox', - 'caption' => __('Show event starttime','event-list'), - 'caption_after' => null, - 'tooltip' => __('This option defines if the event start time will be displayed.','event-list'), - 'form_style' => null, - 'form_width' => null), - - 'show_location' => array('type' => 'checkbox', - 'caption' => __('Show event location','event-list'), - 'caption_after' => null, - 'tooltip' => __('This option defines if the event location will be displayed.','event-list'), - 'form_style' => 'margin:0 0 0.2em 0', - 'form_width' => null), - - 'location_length' => array('type' => 'text', - 'caption' => __('Truncate location to','event-list'), - 'caption_after' => __('characters','event-list'), - 'tooltip' => __('If the event location is diplayed this option defines the number of displayed characters.','event-list').' '. - 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]'), - 'form_style' => 'margin:0 0 0.6em 0.9em', - 'form_width' => 40), - - 'show_content' => array('type' => 'checkbox', - 'caption' => __('Show event content','event-list'), - 'caption_after' => null, - 'tooltip' => __('This option defines if the event content will be displayed.','event-list'), - 'form_style' => 'margin:0 0 0.2em 0', - 'form_width' => null), - - 'content_length' => array('type' => 'text', - 'caption' => __('Truncate content to','event-list'), - 'caption_after' => __('characters','event-list'), - 'tooltip' => __('If the event content are diplayed this option defines the number of diplayed characters.','event-list').' '. - sprintf(__('Set this value to %1$s to view the full text.','event-list'), '[0]'), - 'form_style' => 'margin:0 0 0.6em 0.9em', - 'form_width' => 40), - - 'url_to_page' => array('type' => 'text', - 'caption' => __('URL to the linked Event List page','event-list').':', - 'caption_after' => null, - 'tooltip' => __('This option defines the url to the linked Event List page. This option is required if you want to use one of the options below.','event-list'), - 'form_style' => 'margin:0 0 0.4em 0', - 'form_width' => null), - - 'sc_id_for_url' => array('type' => 'text', - 'caption' => __('Shortcode ID on linked page','event-list').':', - 'caption_after' => null, - 'tooltip' => __('This option defines the shortcode-id for the Event List on the linked page. Normally the standard value 1 is correct, you only have to change it if you use multiple event-list shortcodes on the linked page.','event-list'), - 'form_style' => null, - 'form_width' => 35), - - 'link_to_event' => array('type' => 'checkbox', - 'caption' => __('Add links to the single events','event-list'), - 'caption_after' => null, - 'tooltip' => __('With this option you can add a link to the single event page for every displayed event. You have to specify the url to the page and the shortcode id option if you want to use it.','event-list'), - 'form_style' => 'margin-left:0.8em', - 'form_width' => null), - - 'link_to_page' => array('type' => 'checkbox', - 'caption' => __('Add a link to the Event List page','event-list'), - 'caption_after' => null, - 'tooltip' => __('With this option you can add a link to the event-list page below the diplayed events. You have to specify the url to page option if you want to use it.','event-list'), - 'form_style' => 'margin:0 0 0.2em 0.8em', - 'form_width' => null), - - 'link_to_page_caption' => array('type' => 'text', - 'caption' => __('Caption for the link','event-list').':', - 'caption_after' => null, - 'tooltip' => __('This option defines the text for the link to the Event List page if the approriate option is selected.','event-list'), - 'form_style' => 'margin:0 0 1em 2.5em', - 'form_width' => null), + 'title' => array( + 'type' => 'text', + 'caption' => __( 'Title', 'event-list' ), + 'caption_after' => null, + 'tooltip' => __( 'This option defines the displayed title for the widget.', 'event-list' ), + 'form_style' => null, + 'form_width' => null, + ), + + 'cat_filter' => array( + 'type' => 'text', + 'caption' => __( 'Category Filter', 'event-list' ) . ':', + 'caption_after' => null, + 'tooltip' => __( 'This option defines the categories of which events are shown. The standard is all or an empty string to show all events. Specify a category slug or a list of category slugs to only show events of the specified categories. See description of the shortcode attribute cat_filter for detailed info about all possibilities.', 'event-list' ), + 'form_style' => 'margin:0 0 0.8em 0', + 'form_width' => null, + ), + + 'num_events' => array( + 'type' => 'text', + 'caption' => __( 'Number of listed events', 'event-list' ) . ':', + 'caption_after' => null, + 'tooltip' => __( 'The number of upcoming events to display', 'event-list' ), + 'form_style' => '', + 'form_width' => 30, + ), + + 'title_length' => array( + 'type' => 'text', + 'caption' => __( 'Truncate event title to', 'event-list' ), + 'caption_after' => __( 'characters', 'event-list' ), + 'tooltip' => __( 'This option defines the number of displayed characters for the event title.', 'event-list' ) . ' ' . + 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]' ), + 'form_style' => null, + 'form_width' => 40, + ), + + 'show_starttime' => array( + 'type' => 'checkbox', + 'caption' => __( 'Show event starttime', 'event-list' ), + 'caption_after' => null, + 'tooltip' => __( 'This option defines if the event start time will be displayed.', 'event-list' ), + 'form_style' => null, + 'form_width' => null, + ), + + 'show_location' => array( + 'type' => 'checkbox', + 'caption' => __( 'Show event location', 'event-list' ), + 'caption_after' => null, + 'tooltip' => __( 'This option defines if the event location will be displayed.', 'event-list' ), + 'form_style' => 'margin:0 0 0.2em 0', + 'form_width' => null, + ), + + 'location_length' => array( + 'type' => 'text', + 'caption' => __( 'Truncate location to', 'event-list' ), + 'caption_after' => __( 'characters', 'event-list' ), + 'tooltip' => __( 'If the event location is diplayed this option defines the number of displayed characters.', 'event-list' ) . ' ' . + 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]' ), + 'form_style' => 'margin:0 0 0.6em 0.9em', + 'form_width' => 40, + ), + + 'show_excerpt' => array( + 'type' => 'checkbox', + 'caption' => __( 'Show event excerpt', 'event-list' ), + 'caption_after' => null, + 'tooltip' => __( 'This option defines if the event excerpt will be displayed.', 'event-list' ), + 'form_style' => 'margin:0 0 0.2em 0', + 'form_width' => null, + ), + + 'show_content' => array( + 'type' => 'checkbox', + 'caption' => __( 'Show event content', 'event-list' ), + 'caption_after' => null, + 'tooltip' => __( 'This option defines if the event content will be displayed.', 'event-list' ), + 'form_style' => 'margin:0 0 0.2em 0', + 'form_width' => null, + ), + + 'content_length' => array( + 'type' => 'text', + 'caption' => __( 'Truncate content to', 'event-list' ), + 'caption_after' => __( 'characters', 'event-list' ), + 'tooltip' => __( 'If the event content are diplayed this option defines the number of diplayed characters.', 'event-list' ) . ' ' . + sprintf( __( 'Set this value to %1$s to view the full text.', 'event-list' ), '[0]' ), + 'form_style' => 'margin:0 0 0.6em 0.9em', + 'form_width' => 40, + ), + + 'url_to_page' => array( + 'type' => 'text', + 'caption' => __( 'URL to the linked Event List page', 'event-list' ) . ':', + 'caption_after' => null, + 'tooltip' => __( 'This option defines the url to the linked Event List page. This option is required if you want to use one of the options below.', 'event-list' ), + 'form_style' => 'margin:0 0 0.4em 0', + 'form_width' => null, + ), + + 'sc_id_for_url' => array( + 'type' => 'text', + 'caption' => __( 'Shortcode ID on linked page', 'event-list' ) . ':', + 'caption_after' => null, + 'tooltip' => __( 'This option defines the shortcode-id for the Event List on the linked page. Normally the standard value 1 is correct, you only have to change it if you use multiple event-list shortcodes on the linked page.', 'event-list' ), + 'form_style' => null, + 'form_width' => 35, + ), + + 'link_to_event' => array( + 'type' => 'checkbox', + 'caption' => __( 'Add links to the single events', 'event-list' ), + 'caption_after' => null, + 'tooltip' => __( 'With this option you can add a link to the single event page for every displayed event. You have to specify the url to the page and the shortcode id option if you want to use it.', 'event-list' ), + 'form_style' => 'margin-left:0.8em', + 'form_width' => null, + ), + + 'link_to_page' => array( + 'type' => 'checkbox', + 'caption' => __( 'Add a link to the Event List page', 'event-list' ), + 'caption_after' => null, + 'tooltip' => __( 'With this option you can add a link to the event-list page below the diplayed events. You have to specify the url to page option if you want to use it.', 'event-list' ), + 'form_style' => 'margin:0 0 0.2em 0.8em', + 'form_width' => null, + ), + + 'link_to_page_caption' => array( + 'type' => 'text', + 'caption' => __( 'Caption for the link', 'event-list' ) . ':', + 'caption_after' => null, + 'tooltip' => __( 'This option defines the text for the link to the Event List page if the approriate option is selected.', 'event-list' ), + 'form_style' => 'margin:0 0 1em 2.5em', + 'form_width' => null, + ), ); -?> + diff --git a/wp-content/plugins/event-list/languages/event-list-da_DK.mo b/wp-content/plugins/event-list/languages/event-list-da_DK.mo index 4cb963068ffc650ca3d36e904ec79efd7651519b..3f03504db0a4fc6a12187e9974beaa7b0602ccde 100644 Binary files a/wp-content/plugins/event-list/languages/event-list-da_DK.mo and b/wp-content/plugins/event-list/languages/event-list-da_DK.mo differ diff --git a/wp-content/plugins/event-list/languages/event-list-da_DK.po b/wp-content/plugins/event-list/languages/event-list-da_DK.po index 5646bb00cedc80eb08a6f3ec5a2016507d0ae783..00043e83d91cb09ae360b3403eee35e79d64aa31 100644 --- a/wp-content/plugins/event-list/languages/event-list-da_DK.po +++ b/wp-content/plugins/event-list/languages/event-list-da_DK.po @@ -1,5 +1,5 @@ # Translation file for the 'Event List' WordPress plugin -# Copyright (C) 2018 by mibuthu +# Copyright (C) 2021 by mibuthu # This file is distributed under the same license as the corresponding wordpress plugin. # # Translators: @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: wp-event-list\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n" -"POT-Creation-Date: 2018-05-27 12:20+0200\n" -"PO-Revision-Date: 2018-05-27 10:20+0000\n" +"POT-Creation-Date: 2021-04-24 11:28+0200\n" +"PO-Revision-Date: 2021-04-24 09:26+0000\n" "Last-Translator: mibuthu\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/mibuthu/wp-event-list/language/da_DK/)\n" "MIME-Version: 1.0\n" @@ -18,117 +18,117 @@ msgstr "" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Errors during upgrade of plugin %1$s" msgstr "" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Upgrade of plugin %1$s successful" msgstr "" -#: admin/admin.php:106 admin/includes/admin-settings.php:65 +#: admin/admin.php:116 admin/includes/admin-settings.php:73 msgid "Event List Settings" msgstr "Event List indstillinger" -#: admin/admin.php:106 +#: admin/admin.php:116 msgid "Settings" msgstr "Indstillinger" -#: admin/admin.php:110 admin/includes/admin-about.php:37 +#: admin/admin.php:120 admin/includes/admin-about.php:43 msgid "About Event List" msgstr "Om Event List" -#: admin/admin.php:110 +#: admin/admin.php:120 msgid "About" msgstr "Om" -#: admin/admin.php:132 +#: admin/admin.php:144 #, php-format msgid "%s Event" msgid_plural "%s Events" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 +#: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92 msgid "General" msgstr "Generelt" -#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 -#: admin/includes/admin-about.php:105 +#: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88 +#: admin/includes/admin-about.php:117 msgid "Shortcode Attributes" msgstr "Shortcode attributter" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:82 msgid "Help and Instructions" msgstr "Hjælp og instruktioner" -#: admin/includes/admin-about.php:73 +#: admin/includes/admin-about.php:83 #, php-format msgid "You can manage the events %1$shere%2$s" msgstr "" -#: admin/includes/admin-about.php:74 +#: admin/includes/admin-about.php:84 msgid "To show the events on your site you have 2 possibilities" msgstr "Du har 2 muligheder for at vise begivenheder på på dit site" -#: admin/includes/admin-about.php:75 +#: admin/includes/admin-about.php:85 #, php-format msgid "you can place the <strong>shortcode</strong> %1$s on any page or post" msgstr "du kan placere <strong>shortcode</strong> %1$s på en hvilkensomhelst side eller post" -#: admin/includes/admin-about.php:76 +#: admin/includes/admin-about.php:86 #, php-format msgid "you can add the <strong>widget</strong> %1$s in your sidebars" msgstr "du kan tilføje <strong>widget</strong> %1$s i dine sidebars" -#: admin/includes/admin-about.php:77 +#: admin/includes/admin-about.php:87 msgid "" "The displayed events and their style can be modified with the available " "widget settings and the available attributes for the shortcode." msgstr "De viste events og deres style kan modificeres med de tilgængelige widget-indstillinger og de tilgængelige attributter for shortcode." -#: admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:88 #, php-format msgid "" "A list of all available shortcode attributes with their descriptions is " "available in the %1$s tab." msgstr "" -#: admin/includes/admin-about.php:79 +#: admin/includes/admin-about.php:89 msgid "The available widget options are described in their tooltip text." msgstr "De tilgængelige widget-muligheder er beskrevet i deres tooltip-tekst." -#: admin/includes/admin-about.php:80 +#: admin/includes/admin-about.php:90 #, php-format msgid "" "If you enable one of the links options (%1$s or %2$s) in the widget you have" " to insert an URL to the linked event-list page." msgstr "" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120 msgid "Add links to the single events" msgstr "Tilføj links til enkeltbegivenhederne" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129 msgid "Add a link to the Event List page" msgstr "Tilføj links til Event List-siden" -#: admin/includes/admin-about.php:81 +#: admin/includes/admin-about.php:91 msgid "" "This is required because the widget does not know in which page or post the " "shortcode was included." msgstr "" -#: admin/includes/admin-about.php:82 +#: admin/includes/admin-about.php:92 msgid "" "Additionally you have to insert the correct Shortcode id on the linked page." " This id describes which shortcode should be used on the given page or post " "if you have more than one." msgstr "" -#: admin/includes/admin-about.php:83 +#: admin/includes/admin-about.php:93 #, php-format msgid "" "The default value %1$s is normally o.k. (for pages with 1 shortcode only), " @@ -136,986 +136,991 @@ msgid "" "link on your linked page or post." msgstr "" -#: admin/includes/admin-about.php:84 +#: admin/includes/admin-about.php:94 #, php-format msgid "The id is available at the end of the URL parameters (e.g. %1$s)." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 #, php-format msgid "" "Be sure to also check the %1$s to get the plugin behaving just the way you " "want." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 msgid "Settings page" msgstr "" -#: admin/includes/admin-about.php:92 +#: admin/includes/admin-about.php:103 msgid "About the plugin author" msgstr "" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:105 #, php-format msgid "" "This plugin is developed by %1$s, you can find more information about the " "plugin on the %2$s." msgstr "" -#: admin/includes/admin-about.php:94 -msgid "wordpress plugin site" +#: admin/includes/admin-about.php:105 +msgid "WordPress plugin site" msgstr "" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:106 #, php-format msgid "If you like the plugin please rate it on the %1$s." msgstr "" -#: admin/includes/admin-about.php:95 -msgid "wordpress plugin review site" +#: admin/includes/admin-about.php:106 +msgid "WordPress plugin review site" msgstr "" -#: admin/includes/admin-about.php:96 +#: admin/includes/admin-about.php:107 msgid "" "If you want to support the plugin I would be happy to get a small donation" msgstr "" -#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 -#: admin/includes/admin-about.php:99 +#: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109 +#: admin/includes/admin-about.php:110 #, php-format msgid "Donate with %1$s" msgstr "" -#: admin/includes/admin-about.php:107 +#: admin/includes/admin-about.php:119 msgid "" "You have the possibility to modify the output if you add some of the " "following attributes to the shortcode." msgstr "Du har mulighed for at modificere den færdige liste, hvis du tilføjer nogle af de følgende attributter til din shortcode." -#: admin/includes/admin-about.php:108 +#: admin/includes/admin-about.php:120 #, php-format msgid "" "You can combine and add as much attributes as you want. E.g. the shortcode " "including the attributes %1$s and %2$s would looks like this:" 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:" -#: admin/includes/admin-about.php:110 +#: admin/includes/admin-about.php:122 msgid "" "Below you can find a list of all supported attributes with their " "descriptions and available options:" msgstr "Nedenfor ser du en liste over alle attributter med deres beskrivelse og valgmuligheder:" -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:137 msgid "Attribute name" msgstr "Attribut navn" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:138 msgid "Value options" msgstr "Værdi-muligheder" -#: admin/includes/admin-about.php:126 +#: admin/includes/admin-about.php:139 msgid "Default value" msgstr "Default værdi" -#: admin/includes/admin-about.php:127 +#: admin/includes/admin-about.php:140 msgid "Description" msgstr "Beskrivelse" -#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 -#: includes/sc_event-list_helptexts.php:31 +#: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:42 msgid "Filter Syntax" msgstr "Filter syntax" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:160 msgid "" "For date and cat filters you can specify complex filters with the following " "syntax:" msgstr "For dato og kategori-filtre kan du lave komplekse filtre med den følgende syntax:" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 #, php-format msgid "" "You can use %1$s and %2$s connections to define complex filters. " "Additionally you can set brackets %3$s for nested queries." 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." -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "AND" msgstr "AND" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "OR" msgstr "OR" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "or" msgstr "eller" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "and" msgstr "og" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:162 msgid "Examples for cat filters:" msgstr "Eksempler for kategori-filtre:" -#: admin/includes/admin-about.php:149 +#: admin/includes/admin-about.php:163 #, php-format msgid "Show all events with category %1$s." msgstr "Vis alle begivenheder i kategorien %1$s." -#: admin/includes/admin-about.php:150 +#: admin/includes/admin-about.php:164 #, php-format msgid "Show all events with category %1$s or %2$s." msgstr "Vis alle begivenheder i kategorien %1$s eller %2$s." -#: admin/includes/admin-about.php:151 +#: admin/includes/admin-about.php:165 #, php-format msgid "" "Show all events with category %1$s and all events where category %2$s as " "well as %3$s is selected." msgstr "Vis alle begivenheder i kategorien %1$s og alle begivenheder, hvor kategorien %2$s og %3$s er valgt." -#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34 msgid "Available Date Formats" msgstr "Mulige dato-formater" -#: admin/includes/admin-about.php:157 +#: admin/includes/admin-about.php:172 msgid "For date filters you can use the following date formats:" msgstr "Til dato-filtre kan du bruge følgende dato-formater:" -#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34 msgid "Available Date Range Formats" msgstr "Tilgængelige dato-formater" -#: admin/includes/admin-about.php:166 +#: admin/includes/admin-about.php:182 msgid "For date filters you can use the following daterange formats:" msgstr "" -#: admin/includes/admin-about.php:178 +#: admin/includes/admin-about.php:195 msgid "Value" msgstr "Værdi" -#: admin/includes/admin-about.php:182 +#: admin/includes/admin-about.php:199 msgid "Example" msgstr "Eksempel" -#: admin/includes/admin-categories.php:38 +#: admin/includes/admin-categories.php:54 msgid "Synchronize with post categories" msgstr "" -#: admin/includes/admin-categories.php:46 +#: admin/includes/admin-categories.php:63 #, php-format msgid "%1$s categories modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:47 +#: admin/includes/admin-categories.php:64 #, php-format msgid "%1$s categories added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:48 +#: admin/includes/admin-categories.php:65 #, php-format msgid "%1$s categories deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:50 +#: admin/includes/admin-categories.php:67 #, php-format msgid "%1$s categories not modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:51 +#: admin/includes/admin-categories.php:68 #, php-format msgid "%1$s categories not added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:52 +#: admin/includes/admin-categories.php:69 #, php-format msgid "%1$s categories not deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:55 +#: admin/includes/admin-categories.php:72 msgid "An Error occured during the category sync" msgstr "" -#: admin/includes/admin-categories.php:59 +#: admin/includes/admin-categories.php:75 msgid "Category sync finished" msgstr "" -#: admin/includes/admin-category-sync.php:45 +#: admin/includes/admin-category-sync.php:54 msgid "Error: You are not allowed to view this page!" msgstr "" -#: admin/includes/admin-category-sync.php:62 +#: admin/includes/admin-category-sync.php:70 msgid "Affected Categories when switching to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:63 +#: admin/includes/admin-category-sync.php:71 msgid "Switch option to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:64 +#: admin/includes/admin-category-sync.php:72 msgid "" "If you proceed, all post categories will be copied and all events will be " "re-assigned to this new categories." msgstr "" -#: admin/includes/admin-category-sync.php:65 +#: admin/includes/admin-category-sync.php:73 msgid "" "Afterwards the event categories are independent of the post categories." msgstr "" -#: admin/includes/admin-category-sync.php:68 +#: admin/includes/admin-category-sync.php:75 msgid "Affected Categories when switching to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:69 +#: admin/includes/admin-category-sync.php:76 msgid "Switch option to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:70 +#: admin/includes/admin-category-sync.php:77 msgid "" "Take a detailed look at the affected categories above before you proceed! " "All seperate event categories will be deleted, this cannot be undone!" msgstr "" -#: admin/includes/admin-category-sync.php:73 +#: admin/includes/admin-category-sync.php:79 msgid "Event Categories: Synchronise with Post Categories" msgstr "" -#: admin/includes/admin-category-sync.php:74 +#: admin/includes/admin-category-sync.php:80 msgid "Start synchronisation" msgstr "" -#: admin/includes/admin-category-sync.php:75 +#: admin/includes/admin-category-sync.php:81 msgid "" "If this option is enabled the above listed categories will be deleted and " "removed from the existing events!" msgstr "" -#: admin/includes/admin-category-sync.php:90 +#: admin/includes/admin-category-sync.php:96 msgid "Categories to modify" msgstr "" -#: admin/includes/admin-category-sync.php:91 +#: admin/includes/admin-category-sync.php:97 msgid "Categories to add" msgstr "" -#: admin/includes/admin-category-sync.php:92 +#: admin/includes/admin-category-sync.php:98 msgid "Categories to delete (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:93 +#: admin/includes/admin-category-sync.php:99 msgid "Delete not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:97 +#: admin/includes/admin-category-sync.php:102 msgid "Categories with differences" msgstr "" -#: admin/includes/admin-category-sync.php:98 +#: admin/includes/admin-category-sync.php:103 msgid "Categories to add (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:99 +#: admin/includes/admin-category-sync.php:104 msgid "Add not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:117 +#: admin/includes/admin-category-sync.php:123 msgid "none" msgstr "" -#: admin/includes/admin-import.php:49 +#: admin/includes/admin-import.php:58 msgid "Import Events" msgstr "Importér begivenheder" -#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116 +#: admin/includes/admin-import.php:220 msgid "Step" msgstr "Trin" -#: admin/includes/admin-import.php:69 +#: admin/includes/admin-import.php:79 msgid "Set import file and options" msgstr "" -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:82 #, php-format msgid "Proceed with Step %1$s" msgstr "" -#: admin/includes/admin-import.php:75 +#: admin/includes/admin-import.php:85 msgid "Example file" msgstr "Eksempelfil" -#: admin/includes/admin-import.php:76 +#: admin/includes/admin-import.php:86 #, php-format msgid "" "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)" msgstr "" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "Note" msgstr "Note" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "" "Do not change the column header and separator line (first two lines), " "otherwise the import will fail!" msgstr "" -#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 +#: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103 msgid "Sorry, there has been an error." msgstr "Beklager, der er sket en fejl." -#: admin/includes/admin-import.php:85 +#: admin/includes/admin-import.php:96 msgid "The file does not exist, please try again." msgstr "Filen eksisterer ikke. Prøv venligst igen." -#: admin/includes/admin-import.php:93 +#: admin/includes/admin-import.php:104 msgid "The uploaded file does not have the required csv extension." msgstr "" -#: admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:116 msgid "Events review and additonal category selection" msgstr "" -#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133 msgid "Error" msgstr "" -#: admin/includes/admin-import.php:111 +#: admin/includes/admin-import.php:122 msgid "This CSV file cannot be imported" msgstr "" -#: admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:133 msgid "None of the events in this CSV file can be imported" msgstr "" -#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179 msgid "Warning" msgstr "" -#: admin/includes/admin-import.php:126 +#: admin/includes/admin-import.php:138 #, php-format msgid "There is %1$s event which cannot be imported" msgid_plural "There are %1$s events which cannot be imported" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-import.php:134 +#: admin/includes/admin-import.php:150 #, php-format msgid "CSV line %1$s" msgstr "" -#: admin/includes/admin-import.php:144 +#: admin/includes/admin-import.php:160 msgid "You can still import all other events listed below." msgstr "" -#: admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:179 msgid "" "The following category slugs are not available and will be removed from the " "imported events" msgstr "" -#: admin/includes/admin-import.php:169 +#: admin/includes/admin-import.php:185 msgid "" "If you want to keep these categories, please create these Categories first " "and do the import afterwards." msgstr "" -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:220 msgid "Import result" msgstr "" -#: admin/includes/admin-import.php:201 +#: admin/includes/admin-import.php:223 #, php-format msgid "Import of %1$s events successful!" msgstr "" -#: admin/includes/admin-import.php:202 +#: admin/includes/admin-import.php:224 msgid "Go back to All Events" msgstr "" -#: admin/includes/admin-import.php:206 +#: admin/includes/admin-import.php:227 msgid "Errors during Import" msgstr "" -#: admin/includes/admin-import.php:215 +#: admin/includes/admin-import.php:235 msgid "Event from CSV-line" msgstr "" -#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 -#: includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77 +#: includes/widget_helptexts.php:9 msgid "Title" msgstr "Titel" -#: admin/includes/admin-import.php:227 +#: admin/includes/admin-import.php:248 msgid "Start Date" msgstr "Starter" -#: admin/includes/admin-import.php:228 +#: admin/includes/admin-import.php:249 msgid "End Date" msgstr "Slutter" -#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 -#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 +#: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:69 msgid "Time" msgstr "Tidspunkt" -#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62 -#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57 -#: includes/options_helptexts.php:58 +#: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78 +#: admin/includes/admin-new.php:107 includes/options_helptexts.php:75 +#: includes/options_helptexts.php:76 msgid "Location" msgstr "Lokalitet" -#: admin/includes/admin-import.php:231 +#: admin/includes/admin-import.php:252 msgid "Content" msgstr "" -#: admin/includes/admin-import.php:232 +#: admin/includes/admin-import.php:253 msgid "Category slugs" msgstr "" -#: admin/includes/admin-import.php:274 +#: admin/includes/admin-import.php:297 msgid "Header line is missing or not correct!" msgstr "" -#: admin/includes/admin-import.php:275 +#: admin/includes/admin-import.php:298 #, php-format msgid "" "Have a look at the %1$sexample file%2$s to see the correct header line " "format." msgstr "" -#: admin/includes/admin-import.php:281 +#: admin/includes/admin-import.php:305 #, php-format msgid "Wrong number of items in line (%1$s items found, 6-7 required)" msgstr "" -#: admin/includes/admin-import.php:309 +#: admin/includes/admin-import.php:334 msgid "Empty event title found" msgstr "" -#: admin/includes/admin-import.php:315 +#: admin/includes/admin-import.php:340 msgid "Wrong date format for startdate" msgstr "" -#: admin/includes/admin-import.php:324 +#: admin/includes/admin-import.php:348 msgid "Wrong date format for enddate" msgstr "" -#: admin/includes/admin-import.php:365 +#: admin/includes/admin-import.php:401 msgid "Import events" msgstr "" -#: admin/includes/admin-import.php:366 +#: admin/includes/admin-import.php:402 msgid "Add additional categories" msgstr "" -#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +#: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257 msgid "Import" msgstr "Importér" -#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +#: admin/includes/admin-import.php:428 includes/events_post_type.php:78 msgid "No events found" msgstr "" -#: admin/includes/admin-import.php:432 +#: admin/includes/admin-import.php:473 msgid "Saving of event failed!" msgstr "" -#: admin/includes/admin-main.php:60 +#: admin/includes/admin-main.php:76 msgid "Event Date" msgstr "" -#: admin/includes/admin-main.php:64 +#: admin/includes/admin-main.php:80 msgid "Author" msgstr "Forfatter" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 #, php-format msgid "Add a copy of %1$s" msgstr "" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 msgid "Copy" msgstr "" -#: admin/includes/admin-new.php:51 +#: admin/includes/admin-new.php:58 msgid "Event data" msgstr "" -#: admin/includes/admin-new.php:80 +#: admin/includes/admin-new.php:90 msgid "Add Copy" msgstr "" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "Date" msgstr "Dato" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "required" msgstr "" -#: admin/includes/admin-new.php:87 +#: admin/includes/admin-new.php:101 msgid "Multi-Day Event" msgstr "" -#: admin/includes/admin-new.php:106 +#: admin/includes/admin-new.php:121 msgid "Event Title" msgstr "" -#: admin/includes/admin-new.php:121 +#: admin/includes/admin-new.php:137 msgid "Event Content" msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203 msgid "Event updated." msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205 msgid "View event" msgstr "" -#: admin/includes/admin-new.php:184 +#: admin/includes/admin-new.php:204 #, php-format msgid "Event restored to revision from %1$s" msgstr "" -#: admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:205 msgid "Event published." msgstr "" -#: admin/includes/admin-new.php:187 +#: admin/includes/admin-new.php:207 msgid "Event submitted." msgstr "" -#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209 +#: admin/includes/admin-new.php:210 msgid "Preview event" msgstr "" -#: admin/includes/admin-new.php:188 +#: admin/includes/admin-new.php:208 #, php-format msgid "Event scheduled for: %1$s>" msgstr "" -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:210 msgid "Event draft updated." msgstr "" -#: admin/includes/admin-settings.php:71 +#: admin/includes/admin-settings.php:79 msgid "Go to Event Category switching page" msgstr "" -#: admin/includes/admin-settings.php:83 +#: admin/includes/admin-settings.php:93 msgid "Frontend Settings" msgstr "Frontend-indstillinger" -#: admin/includes/admin-settings.php:84 +#: admin/includes/admin-settings.php:94 msgid "Admin Page Settings" msgstr "Admin Page-indstillinger" -#: admin/includes/admin-settings.php:85 +#: admin/includes/admin-settings.php:95 msgid "Feed Settings" msgstr "Feed-indstillinger" -#: admin/includes/admin-settings.php:86 +#: admin/includes/admin-settings.php:96 msgid "Category Taxonomy" msgstr "" -#: includes/daterange_helptexts.php:7 +#: includes/daterange_helptexts.php:8 msgid "Year" msgstr "År" -#: includes/daterange_helptexts.php:8 +#: includes/daterange_helptexts.php:9 msgid "A year can be specified in 4 digit format." msgstr "" -#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14 -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:47 #, php-format msgid "" "For a start date filter the first day of %1$s is used, in an end date the " "last day." msgstr "" -#: includes/daterange_helptexts.php:9 +#: includes/daterange_helptexts.php:10 msgid "the resulting year" msgstr "" -#: includes/daterange_helptexts.php:12 +#: includes/daterange_helptexts.php:15 msgid "Month" msgstr "Måned" -#: includes/daterange_helptexts.php:13 +#: includes/daterange_helptexts.php:16 msgid "" "A month can be specified with 4 digits for the year and 2 digits for the " "month, seperated by a hyphen (-)." msgstr "" -#: includes/daterange_helptexts.php:14 +#: includes/daterange_helptexts.php:17 msgid "the resulting month" msgstr "" -#: includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:22 msgid "Day" msgstr "Dag" -#: includes/daterange_helptexts.php:18 +#: includes/daterange_helptexts.php:23 msgid "" "A day can be specified in the format 4 digits for the year, 2 digits for the" " month and 2 digets for the day, seperated by hyphens (-)." msgstr "" -#: includes/daterange_helptexts.php:21 +#: includes/daterange_helptexts.php:28 msgid "Relative Year" msgstr "" -#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28 -#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55 #, php-format msgid "%1$s from now can be specified in the following notation: %2$s" msgstr "" -#: includes/daterange_helptexts.php:22 +#: includes/daterange_helptexts.php:29 msgid "A relative year" msgstr "" -#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29 -#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38 +#: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56 #, php-format msgid "" "This means you can specify a positive or negative (%1$s) %2$s from now with " "%3$s or %4$s attached (see also the example below)." msgstr "" -#: includes/daterange_helptexts.php:23 +#: includes/daterange_helptexts.php:30 msgid "number of years" msgstr "antal år" -#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30 -#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44 +#: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39 +#: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57 #, php-format msgid "Additionally the following values are available: %1$s" msgstr "" -#: includes/daterange_helptexts.php:27 +#: includes/daterange_helptexts.php:36 msgid "Relative Month" msgstr "" -#: includes/daterange_helptexts.php:28 +#: includes/daterange_helptexts.php:37 msgid "A relative month" msgstr "" -#: includes/daterange_helptexts.php:29 +#: includes/daterange_helptexts.php:38 msgid "number of months" msgstr "Antal måneder" -#: includes/daterange_helptexts.php:33 +#: includes/daterange_helptexts.php:44 msgid "Relative Week" msgstr "" -#: includes/daterange_helptexts.php:34 +#: includes/daterange_helptexts.php:45 msgid "A relative week" msgstr "" -#: includes/daterange_helptexts.php:35 +#: includes/daterange_helptexts.php:46 msgid "number of weeks" msgstr "Antal uger" -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:47 msgid "the resulting week" msgstr "" -#: includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:48 #, php-format msgid "" "The first day of the week is depending on the option %1$s which can be found" " and changed in %2$s." msgstr "" -#: includes/daterange_helptexts.php:41 +#: includes/daterange_helptexts.php:54 msgid "Relative Day" msgstr "" -#: includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:55 msgid "A relative day" msgstr "" -#: includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:56 msgid "number of days" msgstr "" -#: includes/daterange_helptexts.php:49 +#: includes/daterange_helptexts.php:64 msgid "Date range" msgstr "" -#: includes/daterange_helptexts.php:50 +#: includes/daterange_helptexts.php:66 msgid "" "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n" "\t For the start and end date any available date format can be used." msgstr "" -#: includes/daterange_helptexts.php:55 +#: includes/daterange_helptexts.php:75 msgid "This value defines a range without any limits." msgstr "" -#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61 -#: includes/daterange_helptexts.php:66 +#: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83 +#: includes/daterange_helptexts.php:90 #, php-format msgid "The corresponding date_range format is: %1$s" msgstr "" -#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 +#: includes/daterange_helptexts.php:81 includes/filterbar.php:310 msgid "Upcoming" msgstr "Kommende" -#: includes/daterange_helptexts.php:60 +#: includes/daterange_helptexts.php:82 msgid "This value defines a range from the actual day to the future." msgstr "" -#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 +#: includes/daterange_helptexts.php:88 includes/filterbar.php:318 msgid "Past" msgstr "Tidligere" -#: includes/daterange_helptexts.php:65 +#: includes/daterange_helptexts.php:89 msgid "This value defines a range from the past to the previous day." msgstr "" -#: includes/event.php:107 +#: includes/event.php:124 msgid "No valid start date provided" msgstr "" -#: includes/events_post_type.php:60 +#: includes/event.php:299 includes/event.php:301 +#: includes/sc_event-list.php:298 +msgid "read more" +msgstr "" + +#: includes/events_post_type.php:69 msgid "Events" msgstr "Begivenheder" -#: includes/events_post_type.php:61 +#: includes/events_post_type.php:70 msgid "Event" msgstr "" -#: includes/events_post_type.php:62 +#: includes/events_post_type.php:71 msgid "Add New" msgstr "Tilføj ny" -#: includes/events_post_type.php:63 +#: includes/events_post_type.php:72 msgid "Add New Event" msgstr "Tilføj ny begivenhed" -#: includes/events_post_type.php:64 +#: includes/events_post_type.php:73 msgid "Edit Event" msgstr "Redigér begivenhed" -#: includes/events_post_type.php:65 +#: includes/events_post_type.php:74 msgid "New Event" msgstr "" -#: includes/events_post_type.php:66 +#: includes/events_post_type.php:75 msgid "View Event" msgstr "" -#: includes/events_post_type.php:67 +#: includes/events_post_type.php:76 msgid "View Events" msgstr "" -#: includes/events_post_type.php:68 +#: includes/events_post_type.php:77 msgid "Search Events" msgstr "" -#: includes/events_post_type.php:70 +#: includes/events_post_type.php:79 msgid "No events found in Trash" msgstr "" -#: includes/events_post_type.php:72 +#: includes/events_post_type.php:81 msgid "All Events" msgstr "Alle begivenheder" -#: includes/events_post_type.php:73 +#: includes/events_post_type.php:82 msgid "Event Archives" msgstr "" -#: includes/events_post_type.php:74 +#: includes/events_post_type.php:83 msgid "Event Attributes" msgstr "" -#: includes/events_post_type.php:75 +#: includes/events_post_type.php:84 msgid "Insert into event" msgstr "" -#: includes/events_post_type.php:76 +#: includes/events_post_type.php:85 msgid "Uploaded to this event" msgstr "" -#: includes/events_post_type.php:77 +#: includes/events_post_type.php:86 msgid "Event List" msgstr "Event List" -#: includes/events_post_type.php:78 +#: includes/events_post_type.php:87 msgid "Filter events list" msgstr "" -#: includes/events_post_type.php:79 +#: includes/events_post_type.php:88 msgid "Events list navigation" msgstr "" -#: includes/events_post_type.php:80 +#: includes/events_post_type.php:89 msgid "Events list" msgstr "" -#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +#: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90 msgid "Reset" msgstr "" -#: includes/filterbar.php:278 +#: includes/filterbar.php:296 msgid "All" msgstr "Alle" -#: includes/filterbar.php:281 +#: includes/filterbar.php:298 msgid "All Dates" msgstr "" -#: includes/options_helptexts.php:10 +#: includes/options_helptexts.php:11 msgid "CSV File to import" msgstr "" -#: includes/options_helptexts.php:12 +#: includes/options_helptexts.php:13 msgid "Please select the file which contains the event data in CSV format." msgstr "" -#: includes/options_helptexts.php:15 +#: includes/options_helptexts.php:18 msgid "Used date format" msgstr "" -#: includes/options_helptexts.php:17 +#: includes/options_helptexts.php:21 msgid "" "With this option the given date format for event start and end date in the " "CSV file can be specified." msgstr "" -#: includes/options_helptexts.php:18 +#: includes/options_helptexts.php:23 #, php-format msgid "" "You can use the php date format options given in %1$s, the most important " "ones are:" msgstr "" -#: includes/options_helptexts.php:20 +#: includes/options_helptexts.php:26 msgid "full year representation, with 4 digits" msgstr "" -#: includes/options_helptexts.php:21 +#: includes/options_helptexts.php:27 msgid "numeric representation of a month, with leading zeros" msgstr "" -#: includes/options_helptexts.php:22 +#: includes/options_helptexts.php:28 msgid "day of the month, 2 digits with leading zeros" msgstr "" -#: includes/options_helptexts.php:24 +#: includes/options_helptexts.php:30 msgid "" "If the date format in the CSV file does not correspond to the given format, " "the import script tries to recognize the date format by itself." msgstr "" -#: includes/options_helptexts.php:25 +#: includes/options_helptexts.php:31 msgid "" "But this can cause problems or result in wrong dates, so it is recommended " "to specify the correct date format here." msgstr "" -#: includes/options_helptexts.php:26 +#: includes/options_helptexts.php:32 msgid "Examples" msgstr "" -#: includes/options_helptexts.php:33 +#: includes/options_helptexts.php:41 msgid "Text for no events" msgstr "Tekst hvis ingen begivenheder" -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:43 msgid "" "This option defines the displayed text when no events are available for the " "selected view." msgstr "" -#: includes/options_helptexts.php:38 +#: includes/options_helptexts.php:48 msgid "Multiday filter range" msgstr "" -#: includes/options_helptexts.php:39 +#: includes/options_helptexts.php:49 msgid "Use the complete event range in the date filter" msgstr "" -#: includes/options_helptexts.php:40 +#: includes/options_helptexts.php:51 msgid "" "This option defines if the complete range of a multiday event shall be " "considered in the date filter." msgstr "" -#: includes/options_helptexts.php:41 +#: includes/options_helptexts.php:52 msgid "" "If disabled, only the start day of an event is considered in the filter." msgstr "" -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:53 msgid "" "For an example multiday event which started yesterday and ends tomorrow this" " means, that it is displayed in umcoming dates when this option is enabled, " "but it is hidden when the option is disabled." msgstr "" -#: includes/options_helptexts.php:45 +#: includes/options_helptexts.php:58 msgid "Date display" msgstr "" -#: includes/options_helptexts.php:46 +#: includes/options_helptexts.php:59 msgid "Show the date only once per day" msgstr "" -#: includes/options_helptexts.php:47 +#: includes/options_helptexts.php:61 msgid "" "With this option enabled the date is only displayed once per day if more " "than one event is available on the same day." msgstr "" -#: includes/options_helptexts.php:48 +#: includes/options_helptexts.php:62 msgid "" "If enabled, the events are ordered in a different way (end date before start" " time) to allow using the same date for as much events as possible." msgstr "" -#: includes/options_helptexts.php:51 +#: includes/options_helptexts.php:67 msgid "HTML tags" msgstr "HTML tags" -#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:75 #, php-format msgid "Allow HTML tags in the event field \"%1$s\"" msgstr "" -#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 +#: includes/options_helptexts.php:69 includes/options_helptexts.php:76 #, php-format msgid "" "This option specifies if HTML tags are allowed in the event field \"%1$s\"." msgstr "" -#: includes/options_helptexts.php:61 +#: includes/options_helptexts.php:81 msgid "Preferred language file" msgstr "" -#: includes/options_helptexts.php:62 +#: includes/options_helptexts.php:82 msgid "Load translations from general language directory first" msgstr "" -#: includes/options_helptexts.php:63 +#: includes/options_helptexts.php:84 #, php-format msgid "" "The default is to load the %1$s translation file from the plugin language " "directory first (%2$s)." msgstr "" -#: includes/options_helptexts.php:64 +#: includes/options_helptexts.php:85 #, php-format msgid "" "If you want to load your own language file from the general language " @@ -1123,295 +1128,312 @@ msgid "" "language directory, you have to enable this option." msgstr "" -#: includes/options_helptexts.php:68 +#: includes/options_helptexts.php:91 msgid "Events permalink slug" msgstr "" -#: includes/options_helptexts.php:69 +#: includes/options_helptexts.php:92 msgid "" "With this option the slug for the events permalink URLs can be defined." msgstr "" -#: includes/options_helptexts.php:72 +#: includes/options_helptexts.php:97 msgid "Text for \"Show content\"" msgstr "" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:98 msgid "" "With this option the displayed text for the link to show the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:76 +#: includes/options_helptexts.php:103 msgid "Text for \"Hide content\"" msgstr "" -#: includes/options_helptexts.php:77 +#: includes/options_helptexts.php:104 msgid "" "With this option the displayed text for the link to hide the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:109 msgid "Disable CSS file" msgstr "Deaktiver CSS-fil" -#: includes/options_helptexts.php:81 +#: includes/options_helptexts.php:110 #, php-format msgid "Disable the %1$s file." msgstr "" -#: includes/options_helptexts.php:82 +#: includes/options_helptexts.php:112 #, php-format msgid "With this option you can disable the inclusion of the %1$s file." msgstr "" -#: includes/options_helptexts.php:83 +#: includes/options_helptexts.php:113 msgid "" "This normally only make sense if you have css conflicts with your theme and " "want to set all required css styles somewhere else (e.g. in the theme css)." msgstr "" -#: includes/options_helptexts.php:87 +#: includes/options_helptexts.php:119 msgid "Date format in edit form" msgstr "" -#: includes/options_helptexts.php:88 +#: includes/options_helptexts.php:121 msgid "" "This option sets the displayed date format for the event date fields in the " "event new / edit form." msgstr "" -#: includes/options_helptexts.php:89 +#: includes/options_helptexts.php:122 msgid "The default is an empty string to use the Wordpress standard setting." msgstr "" -#: includes/options_helptexts.php:90 +#: includes/options_helptexts.php:123 #, php-format msgid "" "All available options to specify the date format can be found %1$shere%2$s." msgstr "" -#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 +#: includes/options_helptexts.php:129 msgid "Enable RSS feed" msgstr "" -#: includes/options_helptexts.php:95 -msgid "Enable support for an event RSS feed" +#: includes/options_helptexts.php:130 +msgid "Enable support for the event RSS feed" msgstr "" -#: includes/options_helptexts.php:96 -msgid "This option activates a RSS feed for the events." +#: includes/options_helptexts.php:132 +msgid "" +"This option activates the RSS feed for the events and adds a feed link in " +"the html head." msgstr "" -#: includes/options_helptexts.php:97 +#: includes/options_helptexts.php:133 msgid "" "You have to enable this option if you want to use one of the RSS feed " "features." msgstr "" -#: includes/options_helptexts.php:100 -msgid "Feed name" +#: includes/options_helptexts.php:138 +msgid "Enable iCal feed" msgstr "" -#: includes/options_helptexts.php:101 -#, php-format -msgid "This option sets the feed name. The default value is %1$s." +#: includes/options_helptexts.php:139 +msgid "Enable support for the event iCal feed" msgstr "" -#: includes/options_helptexts.php:102 -#, php-format -msgid "" -"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " -"enabled)." +#: includes/options_helptexts.php:141 +msgid "This option activates the iCal feed for events." msgstr "" -#: includes/options_helptexts.php:105 -msgid "Feed Description" +#: includes/options_helptexts.php:142 +msgid "" +"You have to enable this option if you want to use one of the iCal features." msgstr "" -#: includes/options_helptexts.php:106 -#, php-format -msgid "This options set the feed description. The default value is %1$s." +#: includes/options_helptexts.php:147 +msgid "Position of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:107 -msgid "" -"This description will be used in the title for the feed link in the html " -"head and for the description in the feed itself." +#: includes/options_helptexts.php:149 +msgid "at the top (above the navigation bar)" msgstr "" -#: includes/options_helptexts.php:110 -msgid "Listed events" +#: includes/options_helptexts.php:150 +msgid "between navigation bar and events" msgstr "" -#: includes/options_helptexts.php:111 -msgid "Only show upcoming events in feed" +#: includes/options_helptexts.php:151 +msgid "at the bottom" msgstr "" -#: includes/options_helptexts.php:112 +#: includes/options_helptexts.php:153 msgid "" -"If this option is enabled only the upcoming events are listed in the feed." +"This option specifies the position of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:113 -msgid "If disabled all events (upcoming and past) will be listed." +#: includes/options_helptexts.php:158 +msgid "Align of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:116 -msgid "Add RSS feed link in head" +#: includes/options_helptexts.php:160 +msgid "left" msgstr "" -#: includes/options_helptexts.php:117 -msgid "Add RSS feed link in the html head" +#: includes/options_helptexts.php:161 +msgid "center" msgstr "" -#: includes/options_helptexts.php:118 -msgid "This option adds a RSS feed in the html head for the events." +#: includes/options_helptexts.php:162 +msgid "right" msgstr "" -#: includes/options_helptexts.php:119 -msgid "There are 2 alternatives to include the RSS feed" +#: includes/options_helptexts.php:164 +msgid "" +"This option specifies the align of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:120 -msgid "" -"The first way is this option to include a link in the html head. This link " -"will be recognized by browers or feed readers." +#: includes/options_helptexts.php:169 +msgid "RSS feed name" msgstr "" -#: includes/options_helptexts.php:121 +#: includes/options_helptexts.php:171 #, php-format -msgid "" -"The second way is to include a visible feed link directly in the event list." -" This can be done by setting the shortcode attribute %1$s to %2$s." +msgid "This option sets the RSS feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:122 +#: includes/options_helptexts.php:172 #, php-format -msgid "This option is only valid if the setting %1$s is enabled." +msgid "" +"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " +"enabled)." msgstr "" -#: includes/options_helptexts.php:125 -msgid "Position of the RSS feed link" +#: includes/options_helptexts.php:177 +msgid "RSS feed Description" msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the top (above the navigation bar)" +#: includes/options_helptexts.php:179 +#, php-format +msgid "This options set the RSS feed description. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:126 -msgid "between navigation bar and events" +#: includes/options_helptexts.php:180 +msgid "" +"This description will be used in the title for the feed link in the html " +"head and for the description in the feed itself." msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the bottom" +#: includes/options_helptexts.php:185 +msgid "RSS feed events" msgstr "" -#: includes/options_helptexts.php:127 -msgid "" -"This option specifies the position of the RSS feed link in the event list." +#: includes/options_helptexts.php:186 +msgid "Only show upcoming events in the RSS feed" msgstr "" -#: includes/options_helptexts.php:128 includes/options_helptexts.php:134 -#: includes/options_helptexts.php:140 includes/options_helptexts.php:146 -#, php-format +#: includes/options_helptexts.php:188 msgid "" -"You have to set the shortcode attribute %1$s to %2$s if you want to show the" -" feed link." +"If this option is enabled only the upcoming events are listed in the RSS " +"feed." msgstr "" -#: includes/options_helptexts.php:131 -msgid "Align of the RSS feed link" +#: includes/options_helptexts.php:189 includes/options_helptexts.php:215 +msgid "If disabled, all events (upcoming and past) will be listed." msgstr "" -#: includes/options_helptexts.php:132 -msgid "left" +#: includes/options_helptexts.php:194 +msgid "RSS link text" msgstr "" -#: includes/options_helptexts.php:132 -msgid "center" +#: includes/options_helptexts.php:196 +msgid "This option sets the caption of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:132 -msgid "right" +#: includes/options_helptexts.php:197 +msgid "Use an empty text to only show the rss image." msgstr "" -#: includes/options_helptexts.php:133 +#: includes/options_helptexts.php:198 +#, php-format msgid "" -"This option specifies the align of the RSS feed link in the event list." +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" RSS feed link." msgstr "" -#: includes/options_helptexts.php:137 -msgid "Feed link text" +#: includes/options_helptexts.php:203 +msgid "iCal feed name" msgstr "" -#: includes/options_helptexts.php:138 +#: includes/options_helptexts.php:205 +#, php-format +msgid "This option sets the iCal feed name. The default value is %1$s." +msgstr "" + +#: includes/options_helptexts.php:206 +#, php-format msgid "" -"This option specifies the caption of the RSS feed link in the event list." +"This name will be used in the iCal feed url (e.g. %1$s, or %2$s with " +"permalinks enabled)." msgstr "" -#: includes/options_helptexts.php:139 +#: includes/options_helptexts.php:211 +msgid "iCal feed events" +msgstr "" + +#: includes/options_helptexts.php:212 +msgid "Only show upcoming events in the iCal feed" +msgstr "" + +#: includes/options_helptexts.php:214 msgid "" -"Insert an empty text to hide any text if you only want to show the rss " -"image." +"If this option is enabled only the upcoming events are listed in the iCal " +"file." +msgstr "" + +#: includes/options_helptexts.php:220 +msgid "iCal link text" msgstr "" -#: includes/options_helptexts.php:143 -msgid "Feed link image" +#: includes/options_helptexts.php:222 +msgid "This option sets the iCal link text in the event list." msgstr "" -#: includes/options_helptexts.php:144 -msgid "Show rss image in feed link" +#: includes/options_helptexts.php:223 +msgid "Use an empty text to only show the iCal image." msgstr "" -#: includes/options_helptexts.php:145 +#: includes/options_helptexts.php:224 +#, php-format msgid "" -"This option specifies if the an image should be dispayed in the feed link in" -" front of the text." +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" iCal feed link." msgstr "" -#: includes/options_helptexts.php:151 +#: includes/options_helptexts.php:231 msgid "Event Category handling" msgstr "" -#: includes/options_helptexts.php:152 +#: includes/options_helptexts.php:232 msgid "Use Post Categories" msgstr "" -#: includes/options_helptexts.php:153 +#: includes/options_helptexts.php:234 msgid "" "Do not maintain seperate categories for the events, and use the existing " "post categories instead." msgstr "" -#: includes/options_helptexts.php:154 +#: includes/options_helptexts.php:235 msgid "Attention" msgstr "" -#: includes/options_helptexts.php:155 +#: includes/options_helptexts.php:236 msgid "" "This option cannot be changed directly, but you can go to the Event Category" " switching page from here." msgstr "" -#: includes/options.php:40 +#: includes/options.php:73 msgid "events" msgstr "" -#: includes/options.php:41 +#: includes/options.php:77 msgid "Show content" msgstr "" -#: includes/options.php:42 +#: includes/options.php:81 msgid "Hide content" msgstr "" -#: includes/sc_event-list_helptexts.php:7 +#: includes/sc_event-list_helptexts.php:8 msgid "event-id" msgstr "" -#: includes/sc_event-list_helptexts.php:8 +#: includes/sc_event-list_helptexts.php:9 #, php-format msgid "" "By default the event-list is displayed initially. But if an event-id (e.g. " @@ -1419,107 +1441,107 @@ msgid "" "this event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:10 -#: includes/sc_event-list_helptexts.php:22 +#: includes/sc_event-list_helptexts.php:13 +#: includes/sc_event-list_helptexts.php:31 msgid "year" msgstr "" -#: includes/sc_event-list_helptexts.php:11 +#: includes/sc_event-list_helptexts.php:14 msgid "" "This attribute defines which events are initially shown. The default is to " "show the upcoming events only." msgstr "" -#: includes/sc_event-list_helptexts.php:12 +#: includes/sc_event-list_helptexts.php:15 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:14 +#: includes/sc_event-list_helptexts.php:19 msgid "category slug" msgstr "" -#: includes/sc_event-list_helptexts.php:15 +#: includes/sc_event-list_helptexts.php:20 msgid "" "This attribute defines the category of which events are initially shown. The" " default is to show events of all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:16 +#: includes/sc_event-list_helptexts.php:21 msgid "" "Provide a category slug to change this behavior. It is still possible to " "change the displayed categories via the filterbar or url parameters." msgstr "" -#: includes/sc_event-list_helptexts.php:19 +#: includes/sc_event-list_helptexts.php:26 msgid "This attribute defines the initial order of the events." msgstr "" -#: includes/sc_event-list_helptexts.php:20 +#: includes/sc_event-list_helptexts.php:27 msgid "" "With %1$S (default value) the events are sorted from old to new, with %2$s " "in the opposite direction (from new to old)." msgstr "" -#: includes/sc_event-list_helptexts.php:23 +#: includes/sc_event-list_helptexts.php:32 #, php-format msgid "" "This attribute defines the dates and date ranges of which events are " "displayed. The default is %1$s to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:24 +#: includes/sc_event-list_helptexts.php:33 #, php-format msgid "" "Filtered events according to %1$s value are not available in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:25 +#: includes/sc_event-list_helptexts.php:34 #, php-format msgid "" "You can find all available values with a description and examples in the " "sections %1$s and %2$s below." msgstr "" -#: includes/sc_event-list_helptexts.php:26 +#: includes/sc_event-list_helptexts.php:35 #, php-format msgid "See %1$s description if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:28 +#: includes/sc_event-list_helptexts.php:39 msgid "category slugs" msgstr "" -#: includes/sc_event-list_helptexts.php:29 +#: includes/sc_event-list_helptexts.php:40 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:30 +#: includes/sc_event-list_helptexts.php:41 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:31 +#: includes/sc_event-list_helptexts.php:42 #, php-format msgid "" "The filter is specified via the given category slugs. See %1$s description " "if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:33 -#: includes/sc_event-list_helptexts.php:74 -#: includes/sc_event-list_helptexts.php:89 -#: includes/sc_event-list_helptexts.php:104 +#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:111 +#: includes/sc_event-list_helptexts.php:138 +#: includes/sc_event-list_helptexts.php:177 msgid "number" msgstr "" -#: includes/sc_event-list_helptexts.php:34 +#: includes/sc_event-list_helptexts.php:47 #, php-format msgid "" "This attribute defines how many events should be displayed if upcoming " @@ -1527,109 +1549,109 @@ msgid "" "displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:48 msgid "" "Please not that in the actual version there is no pagination of the events " "available, so the event list can be very long." msgstr "" -#: includes/sc_event-list_helptexts.php:38 +#: includes/sc_event-list_helptexts.php:53 msgid "" "This attribute defines if the filterbar should be displayed. The filterbar " "allows the users to specify filters for the listed events." msgstr "" -#: includes/sc_event-list_helptexts.php:39 +#: includes/sc_event-list_helptexts.php:54 #, php-format msgid "Choose %1$s to always hide and %2$s to always show the filterbar." msgstr "" -#: includes/sc_event-list_helptexts.php:40 +#: includes/sc_event-list_helptexts.php:55 #, php-format msgid "" "With %1$s the filterbar is only visible in the event list and with %2$s only" " in the single event view." msgstr "" -#: includes/sc_event-list_helptexts.php:43 +#: includes/sc_event-list_helptexts.php:60 #, php-format msgid "" "This attribute specifies the available items in the filterbar. This options " "are only valid if the filterbar is displayed (see %1$s attribute)." msgstr "" -#: includes/sc_event-list_helptexts.php:44 +#: includes/sc_event-list_helptexts.php:61 msgid "" "Find below an overview of the available filterbar items and their options:" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "filterbar item" msgstr "" -#: includes/sc_event-list_helptexts.php:46 -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:96 msgid "description" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "item options" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option values" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "default value" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option description" msgstr "" -#: includes/sc_event-list_helptexts.php:47 +#: includes/sc_event-list_helptexts.php:67 msgid "" "Show a list of all available years. Additional there are some special " "entries available (see item options)." msgstr "" -#: includes/sc_event-list_helptexts.php:48 -#: includes/sc_event-list_helptexts.php:53 +#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:82 msgid "Add an entry to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:49 -#: includes/sc_event-list_helptexts.php:54 +#: includes/sc_event-list_helptexts.php:73 +#: includes/sc_event-list_helptexts.php:84 msgid "Add an entry to show all upcoming events." msgstr "" -#: includes/sc_event-list_helptexts.php:50 -#: includes/sc_event-list_helptexts.php:55 +#: includes/sc_event-list_helptexts.php:74 +#: includes/sc_event-list_helptexts.php:85 msgid "Add an entry to show events in the past." msgstr "" -#: includes/sc_event-list_helptexts.php:51 +#: includes/sc_event-list_helptexts.php:75 msgid "Set descending or ascending order of year entries." msgstr "" -#: includes/sc_event-list_helptexts.php:52 +#: includes/sc_event-list_helptexts.php:78 msgid "Show a list of all available months." msgstr "" -#: includes/sc_event-list_helptexts.php:56 +#: includes/sc_event-list_helptexts.php:86 msgid "Set descending or ascending order of month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "php date-formats" msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "Set the displayed date format of the month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "With this item you can display the special entries %1$s, %2$s and %3$s. You " @@ -1637,65 +1659,65 @@ msgid "" "order." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "Specifies the displayed values and their order. The items must be seperated " "by %1$s." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Show a list of all available categories." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Add an entry to show events from all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "A link to reset the eventlist filter to standard." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "any text" msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "Set the caption of the link." msgstr "" -#: includes/sc_event-list_helptexts.php:61 +#: includes/sc_event-list_helptexts.php:93 msgid "Find below an overview of the available filterbar display options:" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "display option" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "available for" msgstr "" -#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:97 #, php-format msgid "Shows a horizonal list seperated by %1$s with a link to each item." msgstr "" -#: includes/sc_event-list_helptexts.php:65 +#: includes/sc_event-list_helptexts.php:98 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:66 +#: includes/sc_event-list_helptexts.php:99 msgid "Shows a simple link which can be clicked." msgstr "" -#: includes/sc_event-list_helptexts.php:67 +#: includes/sc_event-list_helptexts.php:102 msgid "Find below some declaration examples with descriptions:" msgstr "" -#: includes/sc_event-list_helptexts.php:69 +#: includes/sc_event-list_helptexts.php:104 #, php-format msgid "" "In this example you can see that the filterbar item and the used display " @@ -1703,22 +1725,22 @@ msgid "" "items seperated by a comma %2$s. These items will be displayed left-aligned." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "option_name" msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "value" msgstr "" -#: includes/sc_event-list_helptexts.php:72 +#: includes/sc_event-list_helptexts.php:107 #, php-format msgid "" "The 2 semicolon %1$s devides the bar in 3 section. The first section will be" @@ -1727,75 +1749,84 @@ msgid "" "left-aligned and the reset link will be on the right side." msgstr "" -#: includes/sc_event-list_helptexts.php:75 -#: includes/sc_event-list_helptexts.php:90 +#: includes/sc_event-list_helptexts.php:112 +#: includes/sc_event-list_helptexts.php:139 msgid "" "This attribute specifies if the title should be truncated to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:76 -#: includes/sc_event-list_helptexts.php:91 +#: includes/sc_event-list_helptexts.php:113 +#: includes/sc_event-list_helptexts.php:140 #, php-format msgid "" "With the standard value %1$s the full text is displayed, with %2$s the text " "is automatically truncated via css." msgstr "" -#: includes/sc_event-list_helptexts.php:77 -#: includes/sc_event-list_helptexts.php:92 -#: includes/sc_event-list_helptexts.php:107 +#: includes/sc_event-list_helptexts.php:114 +#: includes/sc_event-list_helptexts.php:141 +#: includes/sc_event-list_helptexts.php:180 msgid "This attribute has no influence if only a single event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:80 +#: includes/sc_event-list_helptexts.php:120 msgid "" "This attribute specifies if the starttime is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n" "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:85 +#: includes/sc_event-list_helptexts.php:130 msgid "" "This attribute specifies if the location is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n" "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:95 +#: includes/sc_event-list_helptexts.php:147 msgid "" "This attribute specifies if the categories are displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n" "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:100 +#: includes/sc_event-list_helptexts.php:157 msgid "" "This attribute specifies if the content is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n" "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:105 +#: includes/sc_event-list_helptexts.php:167 +msgid "" +"This attribute specifies if the excerpt is displayed in the event list.<br />\n" +"\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n" +"\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" +"\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" +"\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)." +msgstr "" + +#: includes/sc_event-list_helptexts.php:178 msgid "" "This attribute specifies if the content should be truncate to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:106 +#: includes/sc_event-list_helptexts.php:179 #, php-format msgid "With the standard value %1$s the full text is displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:110 +#: includes/sc_event-list_helptexts.php:186 msgid "" -"This attribute specifies if the content should be collapsed initially.<br />\n" +"This attribute specifies if the content or excerpt should be collapsed initially.<br />\n" "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n" "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n" "\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." msgstr "" -#: includes/sc_event-list_helptexts.php:116 +#: includes/sc_event-list_helptexts.php:197 msgid "" "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n" "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n" @@ -1803,7 +1834,7 @@ msgid "" "\t With \"events_with_content_only\" the link is only added in the event list for events with event content." msgstr "" -#: includes/sc_event-list_helptexts.php:122 +#: includes/sc_event-list_helptexts.php:208 msgid "" "This attribute specifies if a rss feed link should be added.<br />\n" "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n" @@ -1812,32 +1843,52 @@ msgid "" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:128 +#: includes/sc_event-list_helptexts.php:220 +msgid "" +"This attribute specifies if a ical feed link should be added.<br />\n" +"\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n" +"\t On that page you can also find some settings to modify the output.<br />\n" +"\t Choose \"false\" to never add and \"true\" to always add the link.<br />" +msgstr "" + +#: includes/sc_event-list_helptexts.php:231 msgid "" "This attribute specifies the page or post url for event links.<br />\n" "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n" "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget." msgstr "" -#: includes/sc_event-list_helptexts.php:135 +#: includes/sc_event-list_helptexts.php:243 msgid "" "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n" "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget." msgstr "" -#: includes/sc_event-list.php:135 +#: includes/sc_event-list.php:154 +msgid "Sorry, the requested event is not available!" +msgstr "" + +#: includes/sc_event-list.php:163 msgid "Event Information:" msgstr "" -#: includes/widget_helptexts.php:10 +#: includes/sc_event-list.php:405 +msgid "Link to RSS feed" +msgstr "" + +#: includes/sc_event-list.php:414 +msgid "Link to iCal feed" +msgstr "" + +#: includes/widget_helptexts.php:11 msgid "This option defines the displayed title for the widget." msgstr "" -#: includes/widget_helptexts.php:15 +#: includes/widget_helptexts.php:18 msgid "Category Filter" msgstr "" -#: includes/widget_helptexts.php:17 +#: includes/widget_helptexts.php:20 msgid "" "This option defines the categories of which events are shown. The standard " "is all or an empty string to show all events. Specify a category slug or a " @@ -1846,137 +1897,145 @@ msgid "" "all possibilities." msgstr "" -#: includes/widget_helptexts.php:22 +#: includes/widget_helptexts.php:27 msgid "Number of listed events" msgstr "" -#: includes/widget_helptexts.php:24 +#: includes/widget_helptexts.php:29 msgid "The number of upcoming events to display" msgstr "" -#: includes/widget_helptexts.php:29 +#: includes/widget_helptexts.php:36 msgid "Truncate event title to" msgstr "" -#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52 -#: includes/widget_helptexts.php:67 +#: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65 +#: includes/widget_helptexts.php:93 msgid "characters" msgstr "" -#: includes/widget_helptexts.php:31 +#: includes/widget_helptexts.php:38 msgid "" "This option defines the number of displayed characters for the event title." msgstr "" -#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54 +#: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67 #, php-format msgid "" "Set this value to %1$s to view the full text, or set it to %2$s to " "automatically truncate the text via css." msgstr "" -#: includes/widget_helptexts.php:37 +#: includes/widget_helptexts.php:46 msgid "Show event starttime" msgstr "" -#: includes/widget_helptexts.php:39 +#: includes/widget_helptexts.php:48 msgid "This option defines if the event start time will be displayed." msgstr "" -#: includes/widget_helptexts.php:44 +#: includes/widget_helptexts.php:55 msgid "Show event location" msgstr "" -#: includes/widget_helptexts.php:46 +#: includes/widget_helptexts.php:57 msgid "This option defines if the event location will be displayed." msgstr "" -#: includes/widget_helptexts.php:51 +#: includes/widget_helptexts.php:64 msgid "Truncate location to" msgstr "" -#: includes/widget_helptexts.php:53 +#: includes/widget_helptexts.php:66 msgid "" "If the event location is diplayed this option defines the number of " "displayed characters." msgstr "" -#: includes/widget_helptexts.php:59 +#: includes/widget_helptexts.php:74 +msgid "Show event excerpt" +msgstr "" + +#: includes/widget_helptexts.php:76 +msgid "This option defines if the event excerpt will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:83 msgid "Show event content" msgstr "" -#: includes/widget_helptexts.php:61 +#: includes/widget_helptexts.php:85 msgid "This option defines if the event content will be displayed." msgstr "" -#: includes/widget_helptexts.php:66 +#: includes/widget_helptexts.php:92 msgid "Truncate content to" msgstr "" -#: includes/widget_helptexts.php:68 +#: includes/widget_helptexts.php:94 msgid "" "If the event content are diplayed this option defines the number of diplayed" " characters." msgstr "" -#: includes/widget_helptexts.php:69 +#: includes/widget_helptexts.php:95 #, php-format msgid "Set this value to %1$s to view the full text." msgstr "" -#: includes/widget_helptexts.php:74 +#: includes/widget_helptexts.php:102 msgid "URL to the linked Event List page" msgstr "" -#: includes/widget_helptexts.php:76 +#: includes/widget_helptexts.php:104 msgid "" "This option defines the url to the linked Event List page. This option is " "required if you want to use one of the options below." msgstr "" -#: includes/widget_helptexts.php:81 +#: includes/widget_helptexts.php:111 msgid "Shortcode ID on linked page" msgstr "" -#: includes/widget_helptexts.php:83 +#: includes/widget_helptexts.php:113 msgid "" "This option defines the shortcode-id for the Event List on the linked page. " "Normally the standard value 1 is correct, you only have to change it if you " "use multiple event-list shortcodes on the linked page." msgstr "" -#: includes/widget_helptexts.php:90 +#: includes/widget_helptexts.php:122 msgid "" "With this option you can add a link to the single event page for every " "displayed event. You have to specify the url to the page and the shortcode " "id option if you want to use it." msgstr "" -#: includes/widget_helptexts.php:97 +#: includes/widget_helptexts.php:131 msgid "" "With this option you can add a link to the event-list page below the " "diplayed events. You have to specify the url to page option if you want to " "use it." msgstr "" -#: includes/widget_helptexts.php:102 +#: includes/widget_helptexts.php:138 msgid "Caption for the link" msgstr "" -#: includes/widget_helptexts.php:104 +#: includes/widget_helptexts.php:140 msgid "" "This option defines the text for the link to the Event List page if the " "approriate option is selected." msgstr "" -#: includes/widget.php:20 +#: includes/widget.php:21 msgid "With this widget a list of upcoming events can be displayed." msgstr "Med denne widget kan en liste over alle kommende begivenheder vises." -#: includes/widget.php:25 +#: includes/widget.php:26 msgid "Upcoming events" msgstr "Kommende begivenheder" -#: includes/widget.php:38 +#: includes/widget.php:40 msgid "show events page" msgstr "Vis begivenheds-side" diff --git a/wp-content/plugins/event-list/languages/event-list-de_DE.mo b/wp-content/plugins/event-list/languages/event-list-de_DE.mo index bcded04e4b6d5dea8f9f212fe0fe69004d853d71..29537c00d3f29477a2ded35bd4f920c14cdece50 100644 Binary files a/wp-content/plugins/event-list/languages/event-list-de_DE.mo and b/wp-content/plugins/event-list/languages/event-list-de_DE.mo differ diff --git a/wp-content/plugins/event-list/languages/event-list-de_DE.po b/wp-content/plugins/event-list/languages/event-list-de_DE.po index a552464785c46bed030bb57b73f729668ae703e1..78d86275cc30212eef2727e914d51b2fdc9d3bbf 100644 --- a/wp-content/plugins/event-list/languages/event-list-de_DE.po +++ b/wp-content/plugins/event-list/languages/event-list-de_DE.po @@ -1,5 +1,5 @@ # Translation file for the 'Event List' WordPress plugin -# Copyright (C) 2018 by mibuthu +# Copyright (C) 2021 by mibuthu # This file is distributed under the same license as the corresponding wordpress plugin. # # Translators: @@ -7,13 +7,14 @@ # Lasse Schulz <lasse.schulz@netthelp.de>, 2016 # li rak <romankost@gmx.ch>, 2017 # Marco Schwarzenbach <sp1n@gmx.ch>, 2016 +# mibuthu, 2021 # mibuthu, 2015,2017-2018 msgid "" msgstr "" "Project-Id-Version: wp-event-list\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n" -"POT-Creation-Date: 2018-05-27 12:20+0200\n" -"PO-Revision-Date: 2018-05-27 10:20+0000\n" +"POT-Creation-Date: 2021-04-24 11:28+0200\n" +"PO-Revision-Date: 2021-04-24 09:30+0000\n" "Last-Translator: mibuthu\n" "Language-Team: German (Germany) (http://www.transifex.com/mibuthu/wp-event-list/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -22,117 +23,117 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Errors during upgrade of plugin %1$s" msgstr "Fehler während des %1$s Plugin Upgrades" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Upgrade of plugin %1$s successful" msgstr "Upgrade des Plugins %1$s erfolgreich" -#: admin/admin.php:106 admin/includes/admin-settings.php:65 +#: admin/admin.php:116 admin/includes/admin-settings.php:73 msgid "Event List Settings" msgstr "Event List Einstellungen" -#: admin/admin.php:106 +#: admin/admin.php:116 msgid "Settings" msgstr "Einstellungen" -#: admin/admin.php:110 admin/includes/admin-about.php:37 +#: admin/admin.php:120 admin/includes/admin-about.php:43 msgid "About Event List" msgstr "Informationen zu Event List" -#: admin/admin.php:110 +#: admin/admin.php:120 msgid "About" msgstr "Informationen" -#: admin/admin.php:132 +#: admin/admin.php:144 #, php-format msgid "%s Event" msgid_plural "%s Events" msgstr[0] "%s Termin" msgstr[1] "%s Termine" -#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 +#: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92 msgid "General" msgstr "Allgemein" -#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 -#: admin/includes/admin-about.php:105 +#: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88 +#: admin/includes/admin-about.php:117 msgid "Shortcode Attributes" msgstr "Shortcode Attribute" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:82 msgid "Help and Instructions" msgstr "Hilfe und Anleitungen" -#: admin/includes/admin-about.php:73 +#: admin/includes/admin-about.php:83 #, php-format msgid "You can manage the events %1$shere%2$s" msgstr "Die Termine können %1$shier%2$s verwaltet werden" -#: admin/includes/admin-about.php:74 +#: admin/includes/admin-about.php:84 msgid "To show the events on your site you have 2 possibilities" msgstr "Für die Anzeige von Terminen auf der Homepage gibt es 2 Möglichkeiten" -#: admin/includes/admin-about.php:75 +#: admin/includes/admin-about.php:85 #, php-format msgid "you can place the <strong>shortcode</strong> %1$s on any page or post" msgstr "durch Einfügen des <strong>Shortcodes</strong> %1$s auf einer beliebigen Seite oder eines Beitrags" -#: admin/includes/admin-about.php:76 +#: admin/includes/admin-about.php:86 #, php-format msgid "you can add the <strong>widget</strong> %1$s in your sidebars" msgstr "durch das Einfügen des <strong>Widgets</strong> %1$s in einem Widgetbereich" -#: admin/includes/admin-about.php:77 +#: admin/includes/admin-about.php:87 msgid "" "The displayed events and their style can be modified with the available " "widget settings and the available attributes for the shortcode." msgstr "Die angezeigten Termine und deren Anzeigestil kann über die Widget Einstellungen und die verfügbaren Shortcode Attribute angepasst werden." -#: admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:88 #, php-format msgid "" "A list of all available shortcode attributes with their descriptions is " "available in the %1$s tab." msgstr "Eine Liste aller verfügbarer Shortcode Attribute und deren Beschreibung ist im Reiter %1$s verfügbar." -#: admin/includes/admin-about.php:79 +#: admin/includes/admin-about.php:89 msgid "The available widget options are described in their tooltip text." msgstr "Alle verfügbaren Widget Einstellungen sind im jeweiligen Tooltip Text beschrieben." -#: admin/includes/admin-about.php:80 +#: admin/includes/admin-about.php:90 #, php-format msgid "" "If you enable one of the links options (%1$s or %2$s) in the widget you have" " to insert an URL to the linked event-list page." 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." -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120 msgid "Add links to the single events" msgstr "Füge Links zu den einzelnen Terminen ein" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129 msgid "Add a link to the Event List page" msgstr "Füge einen Link zur Event List Seite hinzu" -#: admin/includes/admin-about.php:81 +#: admin/includes/admin-about.php:91 msgid "" "This is required because the widget does not know in which page or post the " "shortcode was included." msgstr "Dies ist erforderlich, weil das Widget nicht weiß, in welcher Seite oder welchem Beitrag der Shortcode eingefügt worden ist." -#: admin/includes/admin-about.php:82 +#: admin/includes/admin-about.php:92 msgid "" "Additionally you have to insert the correct Shortcode id on the linked page." " This id describes which shortcode should be used on the given page or post " "if you have more than one." 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." -#: admin/includes/admin-about.php:83 +#: admin/includes/admin-about.php:93 #, php-format msgid "" "The default value %1$s is normally o.k. (for pages with 1 shortcode only), " @@ -140,986 +141,991 @@ msgid "" "link on your linked page or post." 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." -#: admin/includes/admin-about.php:84 +#: admin/includes/admin-about.php:94 #, php-format msgid "The id is available at the end of the URL parameters (e.g. %1$s)." msgstr "Die ID befindet sich am Ende der URL Parameter (z.B. %1$s)." -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 #, php-format msgid "" "Be sure to also check the %1$s to get the plugin behaving just the way you " "want." msgstr "Bitte werfe auch einen Blick auf die %1$s in der das Plugin nach deinen Vorstellungen angepasst werden kann." -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 msgid "Settings page" msgstr "Einstellungs-Seite" -#: admin/includes/admin-about.php:92 +#: admin/includes/admin-about.php:103 msgid "About the plugin author" msgstr "Über den Autor des Plugins" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:105 #, php-format msgid "" "This plugin is developed by %1$s, you can find more information about the " "plugin on the %2$s." msgstr "Dieses Plugin wird von %1$s entwickelt, zusätzliche Informationen über das Plugin stehen auf der %2$s zur Verfügung." -#: admin/includes/admin-about.php:94 -msgid "wordpress plugin site" -msgstr "Wordpress Plugin Seite" +#: admin/includes/admin-about.php:105 +msgid "WordPress plugin site" +msgstr "" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:106 #, php-format msgid "If you like the plugin please rate it on the %1$s." msgstr "Wenn dir das Plugin gefällt bewerte es bitte unter der %1$s." -#: admin/includes/admin-about.php:95 -msgid "wordpress plugin review site" -msgstr "Wordpress Plugin-Bewertungsseite" +#: admin/includes/admin-about.php:106 +msgid "WordPress plugin review site" +msgstr "" -#: admin/includes/admin-about.php:96 +#: admin/includes/admin-about.php:107 msgid "" "If you want to support the plugin I would be happy to get a small donation" msgstr "Um das Plugin zu unterstützen würde ich mich auch über eine kleine Spende freuen" -#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 -#: admin/includes/admin-about.php:99 +#: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109 +#: admin/includes/admin-about.php:110 #, php-format msgid "Donate with %1$s" msgstr "Spende über %1$s" -#: admin/includes/admin-about.php:107 +#: admin/includes/admin-about.php:119 msgid "" "You have the possibility to modify the output if you add some of the " "following attributes to the shortcode." msgstr "Mit dem Hinzufügen der folgenden Shortcode-Attribute kann die Ausgabe entsprechend angepasst werden." -#: admin/includes/admin-about.php:108 +#: admin/includes/admin-about.php:120 #, php-format msgid "" "You can combine and add as much attributes as you want. E.g. the shortcode " "including the attributes %1$s and %2$s would looks like this:" 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:" -#: admin/includes/admin-about.php:110 +#: admin/includes/admin-about.php:122 msgid "" "Below you can find a list of all supported attributes with their " "descriptions and available options:" msgstr "In der folgenden Liste sind alle unterstützten Shortcode-Attribute mit deren Beschreibung und verfügbaren Optionen angegeben:" -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:137 msgid "Attribute name" msgstr "Name" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:138 msgid "Value options" msgstr "zulässige Werte" -#: admin/includes/admin-about.php:126 +#: admin/includes/admin-about.php:139 msgid "Default value" msgstr "Standard-Wert" -#: admin/includes/admin-about.php:127 +#: admin/includes/admin-about.php:140 msgid "Description" msgstr "Beschreibung" -#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 -#: includes/sc_event-list_helptexts.php:31 +#: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:42 msgid "Filter Syntax" msgstr "Filter Syntax" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:160 msgid "" "For date and cat filters you can specify complex filters with the following " "syntax:" msgstr "Für Datums- und Kategoriefilter können komplexe Filter mit der folgenden Syntax definiert werden:" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 #, php-format msgid "" "You can use %1$s and %2$s connections to define complex filters. " "Additionally you can set brackets %3$s for nested queries." 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." -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "AND" msgstr "UND" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "OR" msgstr "ODER" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "or" msgstr "oder" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "and" msgstr "und" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:162 msgid "Examples for cat filters:" msgstr "Beispiele für Kategorie-Filter:" -#: admin/includes/admin-about.php:149 +#: admin/includes/admin-about.php:163 #, php-format msgid "Show all events with category %1$s." msgstr "Zeige alle Termine mit der Kategorie %1$s." -#: admin/includes/admin-about.php:150 +#: admin/includes/admin-about.php:164 #, php-format msgid "Show all events with category %1$s or %2$s." msgstr "Zeige alle Termine mit der Kategorie %1$s oder %2$s." -#: admin/includes/admin-about.php:151 +#: admin/includes/admin-about.php:165 #, php-format msgid "" "Show all events with category %1$s and all events where category %2$s as " "well as %3$s is selected." msgstr "Zeige alle Termine mit der Kategorie %1$s und alle Termine, in denen die Kategorie %2$s sowie %3$s gesetzt ist." -#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34 msgid "Available Date Formats" msgstr "Verfügbare Datumsformate" -#: admin/includes/admin-about.php:157 +#: admin/includes/admin-about.php:172 msgid "For date filters you can use the following date formats:" msgstr "Für die Datums-Filterung stehen folgende Datums-Formate zur Verfügung:" -#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34 msgid "Available Date Range Formats" msgstr "Verfügbare Datumsbereichs-Formate" -#: admin/includes/admin-about.php:166 +#: admin/includes/admin-about.php:182 msgid "For date filters you can use the following daterange formats:" msgstr "Für die Datums-Filterung stehen folgende Formate für Datumsbereiche zur Verfügung:" -#: admin/includes/admin-about.php:178 +#: admin/includes/admin-about.php:195 msgid "Value" msgstr "Wert" -#: admin/includes/admin-about.php:182 +#: admin/includes/admin-about.php:199 msgid "Example" msgstr "Beispiel" -#: admin/includes/admin-categories.php:38 +#: admin/includes/admin-categories.php:54 msgid "Synchronize with post categories" msgstr "Synchronisation mit den Beitrags-Kategorien" -#: admin/includes/admin-categories.php:46 +#: admin/includes/admin-categories.php:63 #, php-format msgid "%1$s categories modified (%2$s)" msgstr "%1$s Kategorien geändert (%2$s)" -#: admin/includes/admin-categories.php:47 +#: admin/includes/admin-categories.php:64 #, php-format msgid "%1$s categories added (%2$s)" msgstr "%1$s Kategorien erstellt (%2$s)" -#: admin/includes/admin-categories.php:48 +#: admin/includes/admin-categories.php:65 #, php-format msgid "%1$s categories deleted (%2$s)" msgstr "%1$s Kategorien gelöscht (%2$s)" -#: admin/includes/admin-categories.php:50 +#: admin/includes/admin-categories.php:67 #, php-format msgid "%1$s categories not modified (%2$s)" msgstr "%1$s Kategorien nicht geändert (%2$s)" -#: admin/includes/admin-categories.php:51 +#: admin/includes/admin-categories.php:68 #, php-format msgid "%1$s categories not added (%2$s)" msgstr "%1$s Kategorien nicht erstellt (%2$s)" -#: admin/includes/admin-categories.php:52 +#: admin/includes/admin-categories.php:69 #, php-format msgid "%1$s categories not deleted (%2$s)" msgstr "%1$s Kategorien nicht gelöscht (%2$s)" -#: admin/includes/admin-categories.php:55 +#: admin/includes/admin-categories.php:72 msgid "An Error occured during the category sync" msgstr "Während der Kategorie-Synchronisation ist ein Fehler aufgetreten" -#: admin/includes/admin-categories.php:59 +#: admin/includes/admin-categories.php:75 msgid "Category sync finished" msgstr "Kategorie-Synchronisation abgeschlossen" -#: admin/includes/admin-category-sync.php:45 +#: admin/includes/admin-category-sync.php:54 msgid "Error: You are not allowed to view this page!" msgstr "Fehler: Sie sind nicht befugt dieser Seite aufzurufen!" -#: admin/includes/admin-category-sync.php:62 +#: admin/includes/admin-category-sync.php:70 msgid "Affected Categories when switching to seperate Event Categories" msgstr "Betroffene Kategorien beim Wechseln zu separaten Termin-Kategorien" -#: admin/includes/admin-category-sync.php:63 +#: admin/includes/admin-category-sync.php:71 msgid "Switch option to seperate Event Categories" msgstr "Ändere Einstellung zur Verwendung separater Termin-Kategorien" -#: admin/includes/admin-category-sync.php:64 +#: admin/includes/admin-category-sync.php:72 msgid "" "If you proceed, all post categories will be copied and all events will be " "re-assigned to this new categories." msgstr "Beim Fortsetzen werden alle Beitrags-Kategorien kopiert und alle Termine den neuen Kategorien zugeordnet." -#: admin/includes/admin-category-sync.php:65 +#: admin/includes/admin-category-sync.php:73 msgid "" "Afterwards the event categories are independent of the post categories." msgstr "Anschließend sind die Termin-Kategorien unabhängig von den Beitrags-Kategorien." -#: admin/includes/admin-category-sync.php:68 +#: admin/includes/admin-category-sync.php:75 msgid "Affected Categories when switching to use Post Categories for events" msgstr "Betroffene Kategorien beim Wechseln zur Verwendung von Beitrags-Kategorien für Termine" -#: admin/includes/admin-category-sync.php:69 +#: admin/includes/admin-category-sync.php:76 msgid "Switch option to use Post Categories for events" msgstr "Ändere Einstellung zur Verwendung der Beitrags-Kategorien für Termine" -#: admin/includes/admin-category-sync.php:70 +#: admin/includes/admin-category-sync.php:77 msgid "" "Take a detailed look at the affected categories above before you proceed! " "All seperate event categories will be deleted, this cannot be undone!" 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!" -#: admin/includes/admin-category-sync.php:73 +#: admin/includes/admin-category-sync.php:79 msgid "Event Categories: Synchronise with Post Categories" msgstr "Termin-Kategorien: Synchronisiere mit Beitrags-Kategorien" -#: admin/includes/admin-category-sync.php:74 +#: admin/includes/admin-category-sync.php:80 msgid "Start synchronisation" msgstr "Starte Synchronisation" -#: admin/includes/admin-category-sync.php:75 +#: admin/includes/admin-category-sync.php:81 msgid "" "If this option is enabled the above listed categories will be deleted and " "removed from the existing events!" msgstr "Wenn diese Einstellung aktiviert ist, werden alle oben angezeigten Kategorien gelöscht und aus den vorhandenen Terminen entfernt!" -#: admin/includes/admin-category-sync.php:90 +#: admin/includes/admin-category-sync.php:96 msgid "Categories to modify" msgstr "Kategorien, die geändert werden" -#: admin/includes/admin-category-sync.php:91 +#: admin/includes/admin-category-sync.php:97 msgid "Categories to add" msgstr "Kategorien, die hinzugefügt werden" -#: admin/includes/admin-category-sync.php:92 +#: admin/includes/admin-category-sync.php:98 msgid "Categories to delete (optional)" msgstr "Kategorien, die gelöscht werden (optional)" -#: admin/includes/admin-category-sync.php:93 +#: admin/includes/admin-category-sync.php:99 msgid "Delete not available post categories" msgstr "Lösche nicht verfügbare Beitrags-Kategorien" -#: admin/includes/admin-category-sync.php:97 +#: admin/includes/admin-category-sync.php:102 msgid "Categories with differences" msgstr "Kategorien, die unterschiedlich sind" -#: admin/includes/admin-category-sync.php:98 +#: admin/includes/admin-category-sync.php:103 msgid "Categories to add (optional)" msgstr "Kategorien, die hinzugefügt werden (optional)" -#: admin/includes/admin-category-sync.php:99 +#: admin/includes/admin-category-sync.php:104 msgid "Add not available post categories" msgstr "Ergänze nicht verfügbare Beitrags-Kategorien" -#: admin/includes/admin-category-sync.php:117 +#: admin/includes/admin-category-sync.php:123 msgid "none" msgstr "keine" -#: admin/includes/admin-import.php:49 +#: admin/includes/admin-import.php:58 msgid "Import Events" msgstr "Importiere Termine" -#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116 +#: admin/includes/admin-import.php:220 msgid "Step" msgstr "Schritt" -#: admin/includes/admin-import.php:69 +#: admin/includes/admin-import.php:79 msgid "Set import file and options" msgstr "Datei und Optionen zum Importieren wählen" -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:82 #, php-format msgid "Proceed with Step %1$s" msgstr "Weiter zu Schritt %1$s" -#: admin/includes/admin-import.php:75 +#: admin/includes/admin-import.php:85 msgid "Example file" msgstr "Beispieldatei" -#: admin/includes/admin-import.php:76 +#: admin/includes/admin-import.php:86 #, php-format msgid "" "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)" msgstr "Du kannst eine Beispieldatei herunterladen %1$shere%2$s (Das CSV-Trennzeichen ist ein Komma!)" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "Note" msgstr "Achtung" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "" "Do not change the column header and separator line (first two lines), " "otherwise the import will fail!" msgstr "Die Kopfzeile und die Separator Zeile dürfen nicht geändert werden, ansonsten wird der Import " -#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 +#: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103 msgid "Sorry, there has been an error." msgstr "Entschuldigung, ein Fehler ist aufgetreten." -#: admin/includes/admin-import.php:85 +#: admin/includes/admin-import.php:96 msgid "The file does not exist, please try again." msgstr "Die Datei existiert nicht, bitte erneut versuchen." -#: admin/includes/admin-import.php:93 +#: admin/includes/admin-import.php:104 msgid "The uploaded file does not have the required csv extension." msgstr "" -#: admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:116 msgid "Events review and additonal category selection" msgstr "Eventüberprüfung und zusätzliche Kategorieauswahl" -#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133 msgid "Error" msgstr "" -#: admin/includes/admin-import.php:111 +#: admin/includes/admin-import.php:122 msgid "This CSV file cannot be imported" msgstr "" -#: admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:133 msgid "None of the events in this CSV file can be imported" msgstr "" -#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179 msgid "Warning" msgstr "" -#: admin/includes/admin-import.php:126 +#: admin/includes/admin-import.php:138 #, php-format msgid "There is %1$s event which cannot be imported" msgid_plural "There are %1$s events which cannot be imported" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-import.php:134 +#: admin/includes/admin-import.php:150 #, php-format msgid "CSV line %1$s" msgstr "" -#: admin/includes/admin-import.php:144 +#: admin/includes/admin-import.php:160 msgid "You can still import all other events listed below." msgstr "" -#: admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:179 msgid "" "The following category slugs are not available and will be removed from the " "imported events" msgstr "" -#: admin/includes/admin-import.php:169 +#: admin/includes/admin-import.php:185 msgid "" "If you want to keep these categories, please create these Categories first " "and do the import afterwards." msgstr "Wenn diese Kategorien erhalten bleiben sollen, bitte zuerst die Kategorien anlegen und erst anschließend den Import ausführen." -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:220 msgid "Import result" msgstr "" -#: admin/includes/admin-import.php:201 +#: admin/includes/admin-import.php:223 #, php-format msgid "Import of %1$s events successful!" msgstr "" -#: admin/includes/admin-import.php:202 +#: admin/includes/admin-import.php:224 msgid "Go back to All Events" msgstr "Gehe zurück zu Alle Termine" -#: admin/includes/admin-import.php:206 +#: admin/includes/admin-import.php:227 msgid "Errors during Import" msgstr "" -#: admin/includes/admin-import.php:215 +#: admin/includes/admin-import.php:235 msgid "Event from CSV-line" msgstr "" -#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 -#: includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77 +#: includes/widget_helptexts.php:9 msgid "Title" msgstr "Titel" -#: admin/includes/admin-import.php:227 +#: admin/includes/admin-import.php:248 msgid "Start Date" msgstr "Start-Datum" -#: admin/includes/admin-import.php:228 +#: admin/includes/admin-import.php:249 msgid "End Date" msgstr "End-Datum" -#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 -#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 +#: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:69 msgid "Time" msgstr "Uhrzeit" -#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62 -#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57 -#: includes/options_helptexts.php:58 +#: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78 +#: admin/includes/admin-new.php:107 includes/options_helptexts.php:75 +#: includes/options_helptexts.php:76 msgid "Location" msgstr "Ort" -#: admin/includes/admin-import.php:231 +#: admin/includes/admin-import.php:252 msgid "Content" msgstr "Inhalt" -#: admin/includes/admin-import.php:232 +#: admin/includes/admin-import.php:253 msgid "Category slugs" msgstr "Kategorie-Slugs" -#: admin/includes/admin-import.php:274 +#: admin/includes/admin-import.php:297 msgid "Header line is missing or not correct!" msgstr "" -#: admin/includes/admin-import.php:275 +#: admin/includes/admin-import.php:298 #, php-format msgid "" "Have a look at the %1$sexample file%2$s to see the correct header line " "format." msgstr "" -#: admin/includes/admin-import.php:281 +#: admin/includes/admin-import.php:305 #, php-format msgid "Wrong number of items in line (%1$s items found, 6-7 required)" msgstr "" -#: admin/includes/admin-import.php:309 +#: admin/includes/admin-import.php:334 msgid "Empty event title found" msgstr "" -#: admin/includes/admin-import.php:315 +#: admin/includes/admin-import.php:340 msgid "Wrong date format for startdate" msgstr "" -#: admin/includes/admin-import.php:324 +#: admin/includes/admin-import.php:348 msgid "Wrong date format for enddate" msgstr "" -#: admin/includes/admin-import.php:365 +#: admin/includes/admin-import.php:401 msgid "Import events" msgstr "Importiere die Termine" -#: admin/includes/admin-import.php:366 +#: admin/includes/admin-import.php:402 msgid "Add additional categories" msgstr "Kategorien ergänzen" -#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +#: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257 msgid "Import" msgstr "Importieren" -#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +#: admin/includes/admin-import.php:428 includes/events_post_type.php:78 msgid "No events found" msgstr "Keine Termine gefunden" -#: admin/includes/admin-import.php:432 +#: admin/includes/admin-import.php:473 msgid "Saving of event failed!" msgstr "" -#: admin/includes/admin-main.php:60 +#: admin/includes/admin-main.php:76 msgid "Event Date" msgstr "Termin-Datum" -#: admin/includes/admin-main.php:64 +#: admin/includes/admin-main.php:80 msgid "Author" msgstr "Autor" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 #, php-format msgid "Add a copy of %1$s" msgstr "Erstelle eine Kopie von %1$s" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 msgid "Copy" msgstr "Kopieren" -#: admin/includes/admin-new.php:51 +#: admin/includes/admin-new.php:58 msgid "Event data" msgstr "Termin-Daten" -#: admin/includes/admin-new.php:80 +#: admin/includes/admin-new.php:90 msgid "Add Copy" msgstr "Kopie erstellen" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "Date" msgstr "Datum" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "required" msgstr "erforderlich" -#: admin/includes/admin-new.php:87 +#: admin/includes/admin-new.php:101 msgid "Multi-Day Event" msgstr "Mehrtägiger Termin" -#: admin/includes/admin-new.php:106 +#: admin/includes/admin-new.php:121 msgid "Event Title" msgstr "Termin-Titel" -#: admin/includes/admin-new.php:121 +#: admin/includes/admin-new.php:137 msgid "Event Content" msgstr "Termin-Inhalt" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203 msgid "Event updated." msgstr "Termin aktualisiert." -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205 msgid "View event" msgstr "Termin anzeigen" -#: admin/includes/admin-new.php:184 +#: admin/includes/admin-new.php:204 #, php-format msgid "Event restored to revision from %1$s" msgstr "Termin wiederhergestellt mit Revision von %1$s" -#: admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:205 msgid "Event published." msgstr "Termin veröffentlicht." -#: admin/includes/admin-new.php:187 +#: admin/includes/admin-new.php:207 msgid "Event submitted." msgstr "Termin eingereicht." -#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209 +#: admin/includes/admin-new.php:210 msgid "Preview event" msgstr "Termin-Vorschau anzeigen" -#: admin/includes/admin-new.php:188 +#: admin/includes/admin-new.php:208 #, php-format msgid "Event scheduled for: %1$s>" msgstr "Termin eingeplant für: %1$s" -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:210 msgid "Event draft updated." msgstr "Termin-Entwurf aktualisiert." -#: admin/includes/admin-settings.php:71 +#: admin/includes/admin-settings.php:79 msgid "Go to Event Category switching page" msgstr "Gehe zur Wechel-Seite für die Termin-Kategorien" -#: admin/includes/admin-settings.php:83 +#: admin/includes/admin-settings.php:93 msgid "Frontend Settings" msgstr "Frontend Einstellungen" -#: admin/includes/admin-settings.php:84 +#: admin/includes/admin-settings.php:94 msgid "Admin Page Settings" msgstr "Admin-Seiten Einstellungen" -#: admin/includes/admin-settings.php:85 +#: admin/includes/admin-settings.php:95 msgid "Feed Settings" msgstr "Feed Einstellungen" -#: admin/includes/admin-settings.php:86 +#: admin/includes/admin-settings.php:96 msgid "Category Taxonomy" msgstr "Kategorie-Taxonomie" -#: includes/daterange_helptexts.php:7 +#: includes/daterange_helptexts.php:8 msgid "Year" msgstr "Jahr" -#: includes/daterange_helptexts.php:8 +#: includes/daterange_helptexts.php:9 msgid "A year can be specified in 4 digit format." msgstr "Eine Jahrzahl kann als 4-stellige Nummer angegeben werden." -#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14 -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:47 #, php-format msgid "" "For a start date filter the first day of %1$s is used, in an end date the " "last day." msgstr "Für den Filter eines Startdatums wird der erste Tag %1$s verwendet, in einem Enddatum der letzte Tag." -#: includes/daterange_helptexts.php:9 +#: includes/daterange_helptexts.php:10 msgid "the resulting year" msgstr "des entsprechenden Jahres" -#: includes/daterange_helptexts.php:12 +#: includes/daterange_helptexts.php:15 msgid "Month" msgstr "Monat" -#: includes/daterange_helptexts.php:13 +#: includes/daterange_helptexts.php:16 msgid "" "A month can be specified with 4 digits for the year and 2 digits for the " "month, seperated by a hyphen (-)." msgstr "Ein Monat kann als 4-stellige Jahreszahl und 2-stellige Monatszahl, getrennt durch einen Bindestrich (-), angegeben werden." -#: includes/daterange_helptexts.php:14 +#: includes/daterange_helptexts.php:17 msgid "the resulting month" msgstr "des entsprechenden Monats" -#: includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:22 msgid "Day" msgstr "Tag" -#: includes/daterange_helptexts.php:18 +#: includes/daterange_helptexts.php:23 msgid "" "A day can be specified in the format 4 digits for the year, 2 digits for the" " month and 2 digets for the day, seperated by hyphens (-)." msgstr "Ein Tag kann im Format 4-stellige Jahreszahl, 2-stellige Monatszahl und 2-stelliger Monatstag, getrennt durch Bindestriche (-), angegeben werden." -#: includes/daterange_helptexts.php:21 +#: includes/daterange_helptexts.php:28 msgid "Relative Year" msgstr "Relatives Jahr" -#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28 -#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55 #, php-format msgid "%1$s from now can be specified in the following notation: %2$s" msgstr "%1$s, ausgehend vom aktuellen Tag, kann in der folgenden Notation angegeben werden: %2$s" -#: includes/daterange_helptexts.php:22 +#: includes/daterange_helptexts.php:29 msgid "A relative year" msgstr "Ein relatives Jahr" -#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29 -#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38 +#: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56 #, php-format msgid "" "This means you can specify a positive or negative (%1$s) %2$s from now with " "%3$s or %4$s attached (see also the example below)." 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)." -#: includes/daterange_helptexts.php:23 +#: includes/daterange_helptexts.php:30 msgid "number of years" msgstr "Jahresanzahl" -#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30 -#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44 +#: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39 +#: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57 #, php-format msgid "Additionally the following values are available: %1$s" msgstr "Zusätzlich stehen folgende Werte zur Verfügung: %1$s" -#: includes/daterange_helptexts.php:27 +#: includes/daterange_helptexts.php:36 msgid "Relative Month" msgstr "Relativer Monat" -#: includes/daterange_helptexts.php:28 +#: includes/daterange_helptexts.php:37 msgid "A relative month" msgstr "Ein relativer Monat" -#: includes/daterange_helptexts.php:29 +#: includes/daterange_helptexts.php:38 msgid "number of months" msgstr "Monatsanzahl" -#: includes/daterange_helptexts.php:33 +#: includes/daterange_helptexts.php:44 msgid "Relative Week" msgstr "Relative Woche" -#: includes/daterange_helptexts.php:34 +#: includes/daterange_helptexts.php:45 msgid "A relative week" msgstr "Eine relative Woche" -#: includes/daterange_helptexts.php:35 +#: includes/daterange_helptexts.php:46 msgid "number of weeks" msgstr "Wochenanzahl" -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:47 msgid "the resulting week" msgstr "der entsprechende Woche" -#: includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:48 #, php-format msgid "" "The first day of the week is depending on the option %1$s which can be found" " and changed in %2$s." msgstr "Der erste Tag der Woche ist abhängig von der Einstellung %1$s, die in %2$s geändert werden kann." -#: includes/daterange_helptexts.php:41 +#: includes/daterange_helptexts.php:54 msgid "Relative Day" msgstr "Relativer Tag" -#: includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:55 msgid "A relative day" msgstr "Ein relativer Tag" -#: includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:56 msgid "number of days" msgstr "Tagesanzahl" -#: includes/daterange_helptexts.php:49 +#: includes/daterange_helptexts.php:64 msgid "Date range" msgstr "Datumsbereich" -#: includes/daterange_helptexts.php:50 +#: includes/daterange_helptexts.php:66 msgid "" "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n" "\t For the start and end date any available date format can be used." 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." -#: includes/daterange_helptexts.php:55 +#: includes/daterange_helptexts.php:75 msgid "This value defines a range without any limits." msgstr "Dieser Wert definiert einen Datumsbereich ohne jede Grenze." -#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61 -#: includes/daterange_helptexts.php:66 +#: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83 +#: includes/daterange_helptexts.php:90 #, php-format msgid "The corresponding date_range format is: %1$s" msgstr "Der gleichbedeutende Datumsbereich lautet: %1$s" -#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 +#: includes/daterange_helptexts.php:81 includes/filterbar.php:310 msgid "Upcoming" msgstr "Anstehend" -#: includes/daterange_helptexts.php:60 +#: includes/daterange_helptexts.php:82 msgid "This value defines a range from the actual day to the future." msgstr "Dieser Wert definiert einen Datumsbereich vom aktuellen Tag an bis in die Zukunft." -#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 +#: includes/daterange_helptexts.php:88 includes/filterbar.php:318 msgid "Past" msgstr "Beendet" -#: includes/daterange_helptexts.php:65 +#: includes/daterange_helptexts.php:89 msgid "This value defines a range from the past to the previous day." msgstr "Dieser Wert definiert einen Datumsbereich von der Vergangenheit bis zum gestrigen Tag." -#: includes/event.php:107 +#: includes/event.php:124 msgid "No valid start date provided" msgstr "Kein gültiges Start-Datum angegeben" -#: includes/events_post_type.php:60 +#: includes/event.php:299 includes/event.php:301 +#: includes/sc_event-list.php:298 +msgid "read more" +msgstr "" + +#: includes/events_post_type.php:69 msgid "Events" msgstr "Termine" -#: includes/events_post_type.php:61 +#: includes/events_post_type.php:70 msgid "Event" msgstr "Termin" -#: includes/events_post_type.php:62 +#: includes/events_post_type.php:71 msgid "Add New" msgstr "Erstellen" -#: includes/events_post_type.php:63 +#: includes/events_post_type.php:72 msgid "Add New Event" msgstr "Neuen Termin erstellen" -#: includes/events_post_type.php:64 +#: includes/events_post_type.php:73 msgid "Edit Event" msgstr "Termin bearbeiten" -#: includes/events_post_type.php:65 +#: includes/events_post_type.php:74 msgid "New Event" msgstr "Neuer Termin" -#: includes/events_post_type.php:66 +#: includes/events_post_type.php:75 msgid "View Event" msgstr "Termin anzeigen" -#: includes/events_post_type.php:67 +#: includes/events_post_type.php:76 msgid "View Events" msgstr "Termine anzeigen" -#: includes/events_post_type.php:68 +#: includes/events_post_type.php:77 msgid "Search Events" msgstr "Termine durchsuchen" -#: includes/events_post_type.php:70 +#: includes/events_post_type.php:79 msgid "No events found in Trash" msgstr "Keine Termine im Papierkorb gefunden" -#: includes/events_post_type.php:72 +#: includes/events_post_type.php:81 msgid "All Events" msgstr "Alle Termine" -#: includes/events_post_type.php:73 +#: includes/events_post_type.php:82 msgid "Event Archives" msgstr "Termin-Archiv" -#: includes/events_post_type.php:74 +#: includes/events_post_type.php:83 msgid "Event Attributes" msgstr "Termin Attribute" -#: includes/events_post_type.php:75 +#: includes/events_post_type.php:84 msgid "Insert into event" msgstr "Im Termin einfügen" -#: includes/events_post_type.php:76 +#: includes/events_post_type.php:85 msgid "Uploaded to this event" msgstr "Zu diesem Termin hochgeladen" -#: includes/events_post_type.php:77 +#: includes/events_post_type.php:86 msgid "Event List" msgstr "Event List" -#: includes/events_post_type.php:78 +#: includes/events_post_type.php:87 msgid "Filter events list" msgstr "Termin-Liste filtern" -#: includes/events_post_type.php:79 +#: includes/events_post_type.php:88 msgid "Events list navigation" msgstr "Termin-Listen-Navigation" -#: includes/events_post_type.php:80 +#: includes/events_post_type.php:89 msgid "Events list" msgstr "Termin-Liste" -#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +#: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90 msgid "Reset" msgstr "Zurücksetzen" -#: includes/filterbar.php:278 +#: includes/filterbar.php:296 msgid "All" msgstr "Alle" -#: includes/filterbar.php:281 +#: includes/filterbar.php:298 msgid "All Dates" msgstr "Alle Datumsbereiche" -#: includes/options_helptexts.php:10 +#: includes/options_helptexts.php:11 msgid "CSV File to import" msgstr "Zu importierende CSV-Datei" -#: includes/options_helptexts.php:12 +#: includes/options_helptexts.php:13 msgid "Please select the file which contains the event data in CSV format." msgstr "Bitte wähle die Datei aus, welche die Eventdaten im CSV-Format enthält." -#: includes/options_helptexts.php:15 +#: includes/options_helptexts.php:18 msgid "Used date format" msgstr "Verwendetes Datumsformat" -#: includes/options_helptexts.php:17 +#: includes/options_helptexts.php:21 msgid "" "With this option the given date format for event start and end date in the " "CSV file can be specified." msgstr "" -#: includes/options_helptexts.php:18 +#: includes/options_helptexts.php:23 #, php-format msgid "" "You can use the php date format options given in %1$s, the most important " "ones are:" msgstr "" -#: includes/options_helptexts.php:20 +#: includes/options_helptexts.php:26 msgid "full year representation, with 4 digits" msgstr "" -#: includes/options_helptexts.php:21 +#: includes/options_helptexts.php:27 msgid "numeric representation of a month, with leading zeros" msgstr "" -#: includes/options_helptexts.php:22 +#: includes/options_helptexts.php:28 msgid "day of the month, 2 digits with leading zeros" msgstr "" -#: includes/options_helptexts.php:24 +#: includes/options_helptexts.php:30 msgid "" "If the date format in the CSV file does not correspond to the given format, " "the import script tries to recognize the date format by itself." msgstr "" -#: includes/options_helptexts.php:25 +#: includes/options_helptexts.php:31 msgid "" "But this can cause problems or result in wrong dates, so it is recommended " "to specify the correct date format here." msgstr "" -#: includes/options_helptexts.php:26 +#: includes/options_helptexts.php:32 msgid "Examples" msgstr "" -#: includes/options_helptexts.php:33 +#: includes/options_helptexts.php:41 msgid "Text for no events" msgstr "Text für keine Termine" -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:43 msgid "" "This option defines the displayed text when no events are available for the " "selected view." msgstr "Diese Einstellung legt den angezeigten Text fest, wenn keine Termine in der ausgewählten Ansicht verfügbar sind." -#: includes/options_helptexts.php:38 +#: includes/options_helptexts.php:48 msgid "Multiday filter range" msgstr "Mehrtägiger Bereich für Filter" -#: includes/options_helptexts.php:39 +#: includes/options_helptexts.php:49 msgid "Use the complete event range in the date filter" msgstr "Verwende den kompletten Terminbereich für den Datumsfilter" -#: includes/options_helptexts.php:40 +#: includes/options_helptexts.php:51 msgid "" "This option defines if the complete range of a multiday event shall be " "considered in the date filter." msgstr "Diese Einstellung legt fest, ob der komplette Bereich eines mehrtägigen Termins im Datumsfilter verwendet werden soll." -#: includes/options_helptexts.php:41 +#: includes/options_helptexts.php:52 msgid "" "If disabled, only the start day of an event is considered in the filter." msgstr "Wenn die Einstellung deaktiviert ist wird nur der Start-Tag eines Termins im Filter berücksichtigt." -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:53 msgid "" "For an example multiday event which started yesterday and ends tomorrow this" " means, that it is displayed in umcoming dates when this option is enabled, " "but it is hidden when the option is disabled." msgstr "Für einen mehrtätigen Beispieltermin, der gestern gestartet hat und morgen endet, bedeutet dies, dass er in den anstehenden Terminen angezeigt wird, wenn die Einstellung aktiviert ist, bzw. nicht angezeigt wird, wenn die Einstellung deaktiviert ist." -#: includes/options_helptexts.php:45 +#: includes/options_helptexts.php:58 msgid "Date display" msgstr "Datumsanzeige" -#: includes/options_helptexts.php:46 +#: includes/options_helptexts.php:59 msgid "Show the date only once per day" msgstr "Zeige das Datum nur einmal pro Tag" -#: includes/options_helptexts.php:47 +#: includes/options_helptexts.php:61 msgid "" "With this option enabled the date is only displayed once per day if more " "than one event is available on the same day." msgstr "Ist diese Einstellung aktiviert, dann wird das Datum nur einmal pro Tag angezeigt, wenn mehr als ein Termin am selben Tag verfügbar ist." -#: includes/options_helptexts.php:48 +#: includes/options_helptexts.php:62 msgid "" "If enabled, the events are ordered in a different way (end date before start" " time) to allow using the same date for as much events as possible." msgstr "Wenn die Einstellung aktiviert ist, werden die Termine auf eine andere Art sortiert (End-Datum vor Start-Zeit) um möglichst viele Termine mit dem selben Datum anzuzeigen." -#: includes/options_helptexts.php:51 +#: includes/options_helptexts.php:67 msgid "HTML tags" msgstr "HTML-Tags" -#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:75 #, php-format msgid "Allow HTML tags in the event field \"%1$s\"" msgstr "Erlaube HTML-Tags im Termin-Feld \"%1$s\"" -#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 +#: includes/options_helptexts.php:69 includes/options_helptexts.php:76 #, php-format msgid "" "This option specifies if HTML tags are allowed in the event field \"%1$s\"." msgstr "Diese Einstellung legt fest, ob HTML-Tags im Termin-Feld \"%1$s\" zulässig sind." -#: includes/options_helptexts.php:61 +#: includes/options_helptexts.php:81 msgid "Preferred language file" msgstr "Bevorzugte Sprachdatei" -#: includes/options_helptexts.php:62 +#: includes/options_helptexts.php:82 msgid "Load translations from general language directory first" msgstr "Lade zuerst die Übersetzungen aus dem generellen Sprachverzeichnis" -#: includes/options_helptexts.php:63 +#: includes/options_helptexts.php:84 #, php-format msgid "" "The default is to load the %1$s translation file from the plugin language " "directory first (%2$s)." msgstr "Standardmäßig wird zuerst die %1$s Übersetzungsdatei aus dem Sprachverzeichnis des Plugins geladen (%2$s)." -#: includes/options_helptexts.php:64 +#: includes/options_helptexts.php:85 #, php-format msgid "" "If you want to load your own language file from the general language " @@ -1127,295 +1133,312 @@ msgid "" "language directory, you have to enable this option." msgstr "Wenn eine eigene Übersetzungsdatei aus dem generellen Übersetzungsverzeichnis %1$s verwendet werden soll, die bereits im Sprachverzeichnis des Plugins vorhanden ist, dann muss diese Option aktiviert werden." -#: includes/options_helptexts.php:68 +#: includes/options_helptexts.php:91 msgid "Events permalink slug" msgstr "" -#: includes/options_helptexts.php:69 +#: includes/options_helptexts.php:92 msgid "" "With this option the slug for the events permalink URLs can be defined." msgstr "" -#: includes/options_helptexts.php:72 +#: includes/options_helptexts.php:97 msgid "Text for \"Show content\"" msgstr "" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:98 msgid "" "With this option the displayed text for the link to show the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:76 +#: includes/options_helptexts.php:103 msgid "Text for \"Hide content\"" msgstr "" -#: includes/options_helptexts.php:77 +#: includes/options_helptexts.php:104 msgid "" "With this option the displayed text for the link to hide the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:109 msgid "Disable CSS file" msgstr "Deaktiviere die CSS-Datei" -#: includes/options_helptexts.php:81 +#: includes/options_helptexts.php:110 #, php-format msgid "Disable the %1$s file." msgstr "Deaktiviere die %1$s Datei." -#: includes/options_helptexts.php:82 +#: includes/options_helptexts.php:112 #, php-format msgid "With this option you can disable the inclusion of the %1$s file." msgstr "Mit dieser Einstellung kann das Einbinden der Datei %1$s deaktiviert werden." -#: includes/options_helptexts.php:83 +#: includes/options_helptexts.php:113 msgid "" "This normally only make sense if you have css conflicts with your theme and " "want to set all required css styles somewhere else (e.g. in the theme css)." msgstr "Dies ist normalerweise nur bei CSS-Konflikten mit dem verwendeten Theme sinnvoll. Alle erforderlichen CSS-Stile müssen dann irgendwo anders gesetzt werden (z.B. in der CSS-Datei des Themes)." -#: includes/options_helptexts.php:87 +#: includes/options_helptexts.php:119 msgid "Date format in edit form" msgstr "Datumsformat im Formular" -#: includes/options_helptexts.php:88 +#: includes/options_helptexts.php:121 msgid "" "This option sets the displayed date format for the event date fields in the " "event new / edit form." msgstr "Diese Einstellung setzt das angezeigte Datumsformat für die Datumsfelder im Termin Erstellungs- / Änderungsformular." -#: includes/options_helptexts.php:89 +#: includes/options_helptexts.php:122 msgid "The default is an empty string to use the Wordpress standard setting." msgstr "Der Standardwert ist ein leerer String, um die Standard-Wordpress-Einstellung zu verwenden." -#: includes/options_helptexts.php:90 +#: includes/options_helptexts.php:123 #, php-format msgid "" "All available options to specify the date format can be found %1$shere%2$s." msgstr "Alle verfügbaren Optionen zur Spezifizierung des Datumformats sind %1$shier%2$s ersichtlich." -#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 +#: includes/options_helptexts.php:129 msgid "Enable RSS feed" msgstr "RSS feed aktivieren" -#: includes/options_helptexts.php:95 -msgid "Enable support for an event RSS feed" -msgstr "Support für ein Termin-RSS-Feed aktivieren" +#: includes/options_helptexts.php:130 +msgid "Enable support for the event RSS feed" +msgstr "" -#: includes/options_helptexts.php:96 -msgid "This option activates a RSS feed for the events." -msgstr "Diese Einstellung aktiviert einen RSS-Feed für die Termine." +#: includes/options_helptexts.php:132 +msgid "" +"This option activates the RSS feed for the events and adds a feed link in " +"the html head." +msgstr "" -#: includes/options_helptexts.php:97 +#: includes/options_helptexts.php:133 msgid "" "You have to enable this option if you want to use one of the RSS feed " "features." msgstr "Diese Option muss aktiviert werden, um eine der RSS-Feed Funktionen nutzen zu können." -#: includes/options_helptexts.php:100 -msgid "Feed name" -msgstr "Feed-Name" - -#: includes/options_helptexts.php:101 -#, php-format -msgid "This option sets the feed name. The default value is %1$s." -msgstr "Diese Einstellung setzt den Feed-Namen. Der Standardwert ist %1$s." - -#: includes/options_helptexts.php:102 -#, php-format -msgid "" -"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " -"enabled)." -msgstr "Dieser Name wird in der Feed-URL verwendet (z.B. %1$s, oder %2$s bei Verwendung von Permalinks)" - -#: includes/options_helptexts.php:105 -msgid "Feed Description" -msgstr "Feed-Beschreibung" - -#: includes/options_helptexts.php:106 -#, php-format -msgid "This options set the feed description. The default value is %1$s." -msgstr "Diese Einstellung setzt die Feed-Beschreibung. Der Standardwert ist %1$s." - -#: includes/options_helptexts.php:107 -msgid "" -"This description will be used in the title for the feed link in the html " -"head and for the description in the feed itself." -msgstr "Diese Beschreibung wird im HTML-Kopf für den Titel des Feed-Links verwendet und für die Beschreibung im Feed selbst." - -#: includes/options_helptexts.php:110 -msgid "Listed events" -msgstr "Anzuzeigende Termine" - -#: includes/options_helptexts.php:111 -msgid "Only show upcoming events in feed" -msgstr "Zeige nur anstehende Termine im Feed an" - -#: includes/options_helptexts.php:112 -msgid "" -"If this option is enabled only the upcoming events are listed in the feed." -msgstr "Wenn diese Option aktiviert ist, werden nur die anstehenden Termine im Feed angezeigt." - -#: includes/options_helptexts.php:113 -msgid "If disabled all events (upcoming and past) will be listed." -msgstr "Ist die Einstellung deaktiviert, sind alle Termine (anstehende und beendete) im Feed vorhanden." - -#: includes/options_helptexts.php:116 -msgid "Add RSS feed link in head" -msgstr "Füge einen RSS-Link in der Kopfzeile hinzu" - -#: includes/options_helptexts.php:117 -msgid "Add RSS feed link in the html head" -msgstr "Füge einen RSS-Feed-Link im HTML-Kopf ein" - -#: includes/options_helptexts.php:118 -msgid "This option adds a RSS feed in the html head for the events." -msgstr "Diese Einstellung fügt einen RSS-Feed für die Termine in den HTML-Kopf ein." +#: includes/options_helptexts.php:138 +msgid "Enable iCal feed" +msgstr "" -#: includes/options_helptexts.php:119 -msgid "There are 2 alternatives to include the RSS feed" -msgstr "Es gibt 2 Möglichkeiten zur Einbingung eines RSS-Feed" +#: includes/options_helptexts.php:139 +msgid "Enable support for the event iCal feed" +msgstr "" -#: includes/options_helptexts.php:120 -msgid "" -"The first way is this option to include a link in the html head. This link " -"will be recognized by browers or feed readers." -msgstr "Die erste Variante ist diese Einstellung, mit der ein Link in den HTML-Kopfeingefügt wird. Dieser Link wird von den Browsern und Feed-Readern erkannt." +#: includes/options_helptexts.php:141 +msgid "This option activates the iCal feed for events." +msgstr "" -#: includes/options_helptexts.php:121 -#, php-format +#: includes/options_helptexts.php:142 msgid "" -"The second way is to include a visible feed link directly in the event list." -" This can be done by setting the shortcode attribute %1$s to %2$s." -msgstr "Die 2. Variante ist die Einbindung eines sichtbaren Feed-Links direkt in der Terminliste. Dies kann durch das Setzen des Shortcode-Attributs %1$s auf %2$s erreicht werden." - -#: includes/options_helptexts.php:122 -#, php-format -msgid "This option is only valid if the setting %1$s is enabled." -msgstr "Diese Einstellung ist nur gültig, wenn die Option %1$s aktiviert ist." +"You have to enable this option if you want to use one of the iCal features." +msgstr "" -#: includes/options_helptexts.php:125 +#: includes/options_helptexts.php:147 msgid "Position of the RSS feed link" msgstr "Position des RSS feed Links" -#: includes/options_helptexts.php:126 +#: includes/options_helptexts.php:149 msgid "at the top (above the navigation bar)" msgstr "oben (über der Navigationsleiste)" -#: includes/options_helptexts.php:126 +#: includes/options_helptexts.php:150 msgid "between navigation bar and events" msgstr "zwischen Navigationsleiste und Terminliste" -#: includes/options_helptexts.php:126 +#: includes/options_helptexts.php:151 msgid "at the bottom" msgstr "unterhalb der Terminliste" -#: includes/options_helptexts.php:127 +#: includes/options_helptexts.php:153 msgid "" "This option specifies the position of the RSS feed link in the event list." msgstr "Diese Einstellung definiert die Position des RSS-Feed-Links in der Terminliste." -#: includes/options_helptexts.php:128 includes/options_helptexts.php:134 -#: includes/options_helptexts.php:140 includes/options_helptexts.php:146 -#, php-format -msgid "" -"You have to set the shortcode attribute %1$s to %2$s if you want to show the" -" feed link." -msgstr "Das Shortcode-Attribut %1$s muss auf %2$s gesetzt werden, um die Anzeige des Feed-Links zu aktivieren." - -#: includes/options_helptexts.php:131 +#: includes/options_helptexts.php:158 msgid "Align of the RSS feed link" msgstr "Ausrichtung des RSS-Feed-Links" -#: includes/options_helptexts.php:132 +#: includes/options_helptexts.php:160 msgid "left" msgstr "links" -#: includes/options_helptexts.php:132 +#: includes/options_helptexts.php:161 msgid "center" msgstr "mittig" -#: includes/options_helptexts.php:132 +#: includes/options_helptexts.php:162 msgid "right" msgstr "rechts" -#: includes/options_helptexts.php:133 +#: includes/options_helptexts.php:164 msgid "" "This option specifies the align of the RSS feed link in the event list." msgstr "Diese Einstellung definiert die Ausrichtung des RSS-Feed-Links in der Terminliste." -#: includes/options_helptexts.php:137 -msgid "Feed link text" -msgstr "Feed Link Text" +#: includes/options_helptexts.php:169 +msgid "RSS feed name" +msgstr "" -#: includes/options_helptexts.php:138 +#: includes/options_helptexts.php:171 +#, php-format +msgid "This option sets the RSS feed name. The default value is %1$s." +msgstr "" + +#: includes/options_helptexts.php:172 +#, php-format msgid "" -"This option specifies the caption of the RSS feed link in the event list." -msgstr "Diese Einstellung definiert die Beschriftung des RSS-Feed-Links in der Terminliste." +"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " +"enabled)." +msgstr "Dieser Name wird in der Feed-URL verwendet (z.B. %1$s, oder %2$s bei Verwendung von Permalinks)" -#: includes/options_helptexts.php:139 +#: includes/options_helptexts.php:177 +msgid "RSS feed Description" +msgstr "" + +#: includes/options_helptexts.php:179 +#, php-format +msgid "This options set the RSS feed description. The default value is %1$s." +msgstr "" + +#: includes/options_helptexts.php:180 msgid "" -"Insert an empty text to hide any text if you only want to show the rss " -"image." -msgstr "Wir der Text leer gelassen, dann wird nur das RSS-Bild angezeigt." +"This description will be used in the title for the feed link in the html " +"head and for the description in the feed itself." +msgstr "Diese Beschreibung wird im HTML-Kopf für den Titel des Feed-Links verwendet und für die Beschreibung im Feed selbst." -#: includes/options_helptexts.php:143 -msgid "Feed link image" -msgstr "Bild für den Feed-Link" +#: includes/options_helptexts.php:185 +msgid "RSS feed events" +msgstr "" -#: includes/options_helptexts.php:144 -msgid "Show rss image in feed link" -msgstr "Zeige das RSS-Bild im Feed-Link an" +#: includes/options_helptexts.php:186 +msgid "Only show upcoming events in the RSS feed" +msgstr "" -#: includes/options_helptexts.php:145 +#: includes/options_helptexts.php:188 msgid "" -"This option specifies if the an image should be dispayed in the feed link in" -" front of the text." -msgstr "Diese Einstellung definiert ein Bild, das im Feed-Link links von der Beschriftung angezeigt wird." +"If this option is enabled only the upcoming events are listed in the RSS " +"feed." +msgstr "" -#: includes/options_helptexts.php:151 +#: includes/options_helptexts.php:189 includes/options_helptexts.php:215 +msgid "If disabled, all events (upcoming and past) will be listed." +msgstr "" + +#: includes/options_helptexts.php:194 +msgid "RSS link text" +msgstr "" + +#: includes/options_helptexts.php:196 +msgid "This option sets the caption of the RSS feed link in the event list." +msgstr "" + +#: includes/options_helptexts.php:197 +msgid "Use an empty text to only show the rss image." +msgstr "" + +#: includes/options_helptexts.php:198 +#, php-format +msgid "" +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" RSS feed link." +msgstr "" + +#: includes/options_helptexts.php:203 +msgid "iCal feed name" +msgstr "" + +#: includes/options_helptexts.php:205 +#, php-format +msgid "This option sets the iCal feed name. The default value is %1$s." +msgstr "" + +#: includes/options_helptexts.php:206 +#, php-format +msgid "" +"This name will be used in the iCal feed url (e.g. %1$s, or %2$s with " +"permalinks enabled)." +msgstr "" + +#: includes/options_helptexts.php:211 +msgid "iCal feed events" +msgstr "" + +#: includes/options_helptexts.php:212 +msgid "Only show upcoming events in the iCal feed" +msgstr "" + +#: includes/options_helptexts.php:214 +msgid "" +"If this option is enabled only the upcoming events are listed in the iCal " +"file." +msgstr "" + +#: includes/options_helptexts.php:220 +msgid "iCal link text" +msgstr "" + +#: includes/options_helptexts.php:222 +msgid "This option sets the iCal link text in the event list." +msgstr "" + +#: includes/options_helptexts.php:223 +msgid "Use an empty text to only show the iCal image." +msgstr "" + +#: includes/options_helptexts.php:224 +#, php-format +msgid "" +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" iCal feed link." +msgstr "" + +#: includes/options_helptexts.php:231 msgid "Event Category handling" msgstr "" -#: includes/options_helptexts.php:152 +#: includes/options_helptexts.php:232 msgid "Use Post Categories" msgstr "" -#: includes/options_helptexts.php:153 +#: includes/options_helptexts.php:234 msgid "" "Do not maintain seperate categories for the events, and use the existing " "post categories instead." msgstr "" -#: includes/options_helptexts.php:154 +#: includes/options_helptexts.php:235 msgid "Attention" msgstr "Achtung" -#: includes/options_helptexts.php:155 +#: includes/options_helptexts.php:236 msgid "" "This option cannot be changed directly, but you can go to the Event Category" " switching page from here." msgstr "" -#: includes/options.php:40 +#: includes/options.php:73 msgid "events" msgstr "" -#: includes/options.php:41 +#: includes/options.php:77 msgid "Show content" msgstr "" -#: includes/options.php:42 +#: includes/options.php:81 msgid "Hide content" msgstr "" -#: includes/sc_event-list_helptexts.php:7 +#: includes/sc_event-list_helptexts.php:8 msgid "event-id" msgstr "Termin-ID" -#: includes/sc_event-list_helptexts.php:8 +#: includes/sc_event-list_helptexts.php:9 #, php-format msgid "" "By default the event-list is displayed initially. But if an event-id (e.g. " @@ -1423,107 +1446,107 @@ msgid "" "this event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:10 -#: includes/sc_event-list_helptexts.php:22 +#: includes/sc_event-list_helptexts.php:13 +#: includes/sc_event-list_helptexts.php:31 msgid "year" msgstr "Jahr" -#: includes/sc_event-list_helptexts.php:11 +#: includes/sc_event-list_helptexts.php:14 msgid "" "This attribute defines which events are initially shown. The default is to " "show the upcoming events only." msgstr "Dieses Attribut bestimmt die Termine, die anfänglich angezeigt werden. Der Standard ist nur die Anzeige der anstehenden Termine." -#: includes/sc_event-list_helptexts.php:12 +#: includes/sc_event-list_helptexts.php:15 #, php-format msgid "" "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." 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." -#: includes/sc_event-list_helptexts.php:14 +#: includes/sc_event-list_helptexts.php:19 msgid "category slug" msgstr "Kategorie-Slug" -#: includes/sc_event-list_helptexts.php:15 +#: includes/sc_event-list_helptexts.php:20 msgid "" "This attribute defines the category of which events are initially shown. The" " default is to show events of all categories." msgstr "Dieses Attribut definiert die Kategorien, aus denen die Termine anfänglich angezeigt werden. Standardmäßig werden die Termine aus allen Kategorien angezeigt." -#: includes/sc_event-list_helptexts.php:16 +#: includes/sc_event-list_helptexts.php:21 msgid "" "Provide a category slug to change this behavior. It is still possible to " "change the displayed categories via the filterbar or url parameters." 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." -#: includes/sc_event-list_helptexts.php:19 +#: includes/sc_event-list_helptexts.php:26 msgid "This attribute defines the initial order of the events." msgstr "Dieses Attribut definiert die anfängliche Sortierung der Termine." -#: includes/sc_event-list_helptexts.php:20 +#: includes/sc_event-list_helptexts.php:27 msgid "" "With %1$S (default value) the events are sorted from old to new, with %2$s " "in the opposite direction (from new to old)." 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)." -#: includes/sc_event-list_helptexts.php:23 +#: includes/sc_event-list_helptexts.php:32 #, php-format msgid "" "This attribute defines the dates and date ranges of which events are " "displayed. The default is %1$s to show all events." msgstr "Dieses Attribut definiert die Datumsbereiche, aus denen die Termine angezeigt werden. Standardmäßig wird %1$s verwendet um alle Termine anzuzeigen." -#: includes/sc_event-list_helptexts.php:24 +#: includes/sc_event-list_helptexts.php:33 #, php-format msgid "" "Filtered events according to %1$s value are not available in the event list." msgstr "Gefilterte Termine aufgrund des Wertes von %1$s sind in der Termin-Liste nicht verfügbar." -#: includes/sc_event-list_helptexts.php:25 +#: includes/sc_event-list_helptexts.php:34 #, php-format msgid "" "You can find all available values with a description and examples in the " "sections %1$s and %2$s below." msgstr "Alle möglichen Angaben mit Beschreibungen und Beispielen sind unten stehend in den Abschnitten %1$s und %2$s zu finden." -#: includes/sc_event-list_helptexts.php:26 +#: includes/sc_event-list_helptexts.php:35 #, php-format msgid "See %1$s description if you want to define complex filters." msgstr "Siehe die Beschreibung zu %1$s um komplexe Filter zu definieren." -#: includes/sc_event-list_helptexts.php:28 +#: includes/sc_event-list_helptexts.php:39 msgid "category slugs" msgstr "Kategorie-Slugs" -#: includes/sc_event-list_helptexts.php:29 +#: includes/sc_event-list_helptexts.php:40 msgid "" "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." 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." -#: includes/sc_event-list_helptexts.php:30 +#: includes/sc_event-list_helptexts.php:41 #, php-format msgid "" "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." 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." -#: includes/sc_event-list_helptexts.php:31 +#: includes/sc_event-list_helptexts.php:42 #, php-format msgid "" "The filter is specified via the given category slugs. See %1$s description " "if you want to define complex filters." msgstr "Der Filter wird durch die Angabe der Kagegorie-Slugs definiert. Unter %1$s ist eine Beschreibung zu finden, die auch komplexe Filter beinhaltet. " -#: includes/sc_event-list_helptexts.php:33 -#: includes/sc_event-list_helptexts.php:74 -#: includes/sc_event-list_helptexts.php:89 -#: includes/sc_event-list_helptexts.php:104 +#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:111 +#: includes/sc_event-list_helptexts.php:138 +#: includes/sc_event-list_helptexts.php:177 msgid "number" msgstr "Nummer" -#: includes/sc_event-list_helptexts.php:34 +#: includes/sc_event-list_helptexts.php:47 #, php-format msgid "" "This attribute defines how many events should be displayed if upcoming " @@ -1531,109 +1554,109 @@ msgid "" "displayed." 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." -#: includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:48 msgid "" "Please not that in the actual version there is no pagination of the events " "available, so the event list can be very long." msgstr "Bitte beachte, dass in der aktuellen Version keine Pagination der Termine verfügbar ist, die Termin-Liste kann dadurch ziemlich lange sein." -#: includes/sc_event-list_helptexts.php:38 +#: includes/sc_event-list_helptexts.php:53 msgid "" "This attribute defines if the filterbar should be displayed. The filterbar " "allows the users to specify filters for the listed events." msgstr "Dieses Attribut definiert, ob die Filter-Leiste angezeigt wird. Die Filter-Liste erlaubt es dem Anwender die Termin-Liste zu filtern." -#: includes/sc_event-list_helptexts.php:39 +#: includes/sc_event-list_helptexts.php:54 #, php-format msgid "Choose %1$s to always hide and %2$s to always show the filterbar." msgstr "Wähle %1$s um die Filter-Leiste immer zu verstecken und %2$s um sie immer anzuzeigen." -#: includes/sc_event-list_helptexts.php:40 +#: includes/sc_event-list_helptexts.php:55 #, php-format msgid "" "With %1$s the filterbar is only visible in the event list and with %2$s only" " in the single event view." msgstr "Mit %1$s wird die Filter-Leiste nur in der Termin-Liste angezeigt, mit %2$s nur in der Termin-Detailansicht." -#: includes/sc_event-list_helptexts.php:43 +#: includes/sc_event-list_helptexts.php:60 #, php-format msgid "" "This attribute specifies the available items in the filterbar. This options " "are only valid if the filterbar is displayed (see %1$s attribute)." 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)." -#: includes/sc_event-list_helptexts.php:44 +#: includes/sc_event-list_helptexts.php:61 msgid "" "Find below an overview of the available filterbar items and their options:" msgstr "Anbei die Übersicht der verfügbaren Filterleisten-Elemente und deren Optionen:" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "filterbar item" msgstr "Element" -#: includes/sc_event-list_helptexts.php:46 -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:96 msgid "description" msgstr "Beschreibung" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "item options" msgstr "Element Optionen" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option values" msgstr "Options-Werte" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "default value" msgstr "Standard-Wert" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option description" msgstr "Options-Beschreibung" -#: includes/sc_event-list_helptexts.php:47 +#: includes/sc_event-list_helptexts.php:67 msgid "" "Show a list of all available years. Additional there are some special " "entries available (see item options)." msgstr "Zeigt eine Liste mit allen verfügbaren Jahren. Zusätzlich sind einige Spezial-Einträge verfügbar (siehe Element-Optionen)." -#: includes/sc_event-list_helptexts.php:48 -#: includes/sc_event-list_helptexts.php:53 +#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:82 msgid "Add an entry to show all events." msgstr "Ergänzt einen Eintrag zur Anzeige aller Termine." -#: includes/sc_event-list_helptexts.php:49 -#: includes/sc_event-list_helptexts.php:54 +#: includes/sc_event-list_helptexts.php:73 +#: includes/sc_event-list_helptexts.php:84 msgid "Add an entry to show all upcoming events." msgstr "Ergänzt einen Eintrag zum Anzeigen aller anstehenden Termine." -#: includes/sc_event-list_helptexts.php:50 -#: includes/sc_event-list_helptexts.php:55 +#: includes/sc_event-list_helptexts.php:74 +#: includes/sc_event-list_helptexts.php:85 msgid "Add an entry to show events in the past." msgstr "Ergänzt einen Eintrag zum Anzeigen aller beendeter Termine." -#: includes/sc_event-list_helptexts.php:51 +#: includes/sc_event-list_helptexts.php:75 msgid "Set descending or ascending order of year entries." msgstr "Setzt die Sortierreihenfolge der Jahres-Einträge." -#: includes/sc_event-list_helptexts.php:52 +#: includes/sc_event-list_helptexts.php:78 msgid "Show a list of all available months." msgstr "Zeigt eine Liste mit allen verfügbaren Monaten." -#: includes/sc_event-list_helptexts.php:56 +#: includes/sc_event-list_helptexts.php:86 msgid "Set descending or ascending order of month entries." msgstr "Setzt die Sortierungreihenfolge der Monats-Einträge." -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "php date-formats" msgstr "PHP Datumsformate" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "Set the displayed date format of the month entries." msgstr "Setzt das angezeigte Datumsformat für die Monatseinträge." -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "With this item you can display the special entries %1$s, %2$s and %3$s. You " @@ -1641,65 +1664,65 @@ msgid "" "order." 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." -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "Specifies the displayed values and their order. The items must be seperated " "by %1$s." msgstr "Definiert die angezeigten Werte und deren Reihenfolge. Die Einträge müssen durch ein %1$s getrennt werden." -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Show a list of all available categories." msgstr "Zeigt eine Liste aller verfügbaren Kategorien." -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Add an entry to show events from all categories." msgstr "Fügt zusätzlich einen Eintrag zum anzeigen aller Kategorien ein." -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "A link to reset the eventlist filter to standard." msgstr "Ein Link, um den Termin-Filter wieder auf den Standard zurückzusetzen." -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "any text" msgstr "beliebiger Text" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "Set the caption of the link." msgstr "Setzt die Beschriftung des Links." -#: includes/sc_event-list_helptexts.php:61 +#: includes/sc_event-list_helptexts.php:93 msgid "Find below an overview of the available filterbar display options:" msgstr "Anbei eine Übersicht über die verfügbaren Filterleisten-Ansichtsoptionen:" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "display option" msgstr "Anzeige-Option" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "available for" msgstr "verfügbar für" -#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:97 #, php-format msgid "Shows a horizonal list seperated by %1$s with a link to each item." msgstr "Zeigt eine horizontale Liste mit einem Link zu jedem Element getrennt durch ein %1$s." -#: includes/sc_event-list_helptexts.php:65 +#: includes/sc_event-list_helptexts.php:98 msgid "" "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." 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." -#: includes/sc_event-list_helptexts.php:66 +#: includes/sc_event-list_helptexts.php:99 msgid "Shows a simple link which can be clicked." msgstr "Zeigt einen einfachen Link, auf den geklickt werden kann." -#: includes/sc_event-list_helptexts.php:67 +#: includes/sc_event-list_helptexts.php:102 msgid "Find below some declaration examples with descriptions:" msgstr "Nachfolgend werden einige Beispiele gezeigt und beschrieben:" -#: includes/sc_event-list_helptexts.php:69 +#: includes/sc_event-list_helptexts.php:104 #, php-format msgid "" "In this example you can see that the filterbar item and the used display " @@ -1707,22 +1730,22 @@ msgid "" "items seperated by a comma %2$s. These items will be displayed left-aligned." 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." -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 #, php-format msgid "" "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." 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." -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "option_name" msgstr "options_name" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "value" msgstr "wert" -#: includes/sc_event-list_helptexts.php:72 +#: includes/sc_event-list_helptexts.php:107 #, php-format msgid "" "The 2 semicolon %1$s devides the bar in 3 section. The first section will be" @@ -1731,75 +1754,84 @@ msgid "" "left-aligned and the reset link will be on the right side." 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." -#: includes/sc_event-list_helptexts.php:75 -#: includes/sc_event-list_helptexts.php:90 +#: includes/sc_event-list_helptexts.php:112 +#: includes/sc_event-list_helptexts.php:139 msgid "" "This attribute specifies if the title should be truncated to the given " "number of characters in the event list." msgstr "Dieses Attribut bestimmt, ob der Titel auf die angegebene Anzahl Zeichen gekürzt werden soll." -#: includes/sc_event-list_helptexts.php:76 -#: includes/sc_event-list_helptexts.php:91 +#: includes/sc_event-list_helptexts.php:113 +#: includes/sc_event-list_helptexts.php:140 #, php-format msgid "" "With the standard value %1$s the full text is displayed, with %2$s the text " "is automatically truncated via css." msgstr "Mit der Grundeinstellung %1$s wird der gesamte Text angezeigt, mit %2$s wird der Text automatisch via CSS gekürzt." -#: includes/sc_event-list_helptexts.php:77 -#: includes/sc_event-list_helptexts.php:92 -#: includes/sc_event-list_helptexts.php:107 +#: includes/sc_event-list_helptexts.php:114 +#: includes/sc_event-list_helptexts.php:141 +#: includes/sc_event-list_helptexts.php:180 msgid "This attribute has no influence if only a single event is shown." msgstr "Dieses Attribut hat keinen Einfluss wenn nur die Details eines einzelnen Termins angezeigt werden." -#: includes/sc_event-list_helptexts.php:80 +#: includes/sc_event-list_helptexts.php:120 msgid "" "This attribute specifies if the starttime is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n" "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:85 +#: includes/sc_event-list_helptexts.php:130 msgid "" "This attribute specifies if the location is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n" "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:95 +#: includes/sc_event-list_helptexts.php:147 msgid "" "This attribute specifies if the categories are displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n" "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:100 +#: includes/sc_event-list_helptexts.php:157 msgid "" "This attribute specifies if the content is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n" "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:105 +#: includes/sc_event-list_helptexts.php:167 +msgid "" +"This attribute specifies if the excerpt is displayed in the event list.<br />\n" +"\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n" +"\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" +"\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" +"\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)." +msgstr "" + +#: includes/sc_event-list_helptexts.php:178 msgid "" "This attribute specifies if the content should be truncate to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:106 +#: includes/sc_event-list_helptexts.php:179 #, php-format msgid "With the standard value %1$s the full text is displayed." msgstr "Mit der Grundeinstellung %1$s wird der gesamte Text angezeigt." -#: includes/sc_event-list_helptexts.php:110 +#: includes/sc_event-list_helptexts.php:186 msgid "" -"This attribute specifies if the content should be collapsed initially.<br />\n" +"This attribute specifies if the content or excerpt should be collapsed initially.<br />\n" "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n" "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n" "\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." msgstr "" -#: includes/sc_event-list_helptexts.php:116 +#: includes/sc_event-list_helptexts.php:197 msgid "" "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n" "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n" @@ -1807,7 +1839,7 @@ msgid "" "\t With \"events_with_content_only\" the link is only added in the event list for events with event content." msgstr "" -#: includes/sc_event-list_helptexts.php:122 +#: includes/sc_event-list_helptexts.php:208 msgid "" "This attribute specifies if a rss feed link should be added.<br />\n" "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n" @@ -1816,32 +1848,52 @@ msgid "" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:128 +#: includes/sc_event-list_helptexts.php:220 +msgid "" +"This attribute specifies if a ical feed link should be added.<br />\n" +"\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n" +"\t On that page you can also find some settings to modify the output.<br />\n" +"\t Choose \"false\" to never add and \"true\" to always add the link.<br />" +msgstr "" + +#: includes/sc_event-list_helptexts.php:231 msgid "" "This attribute specifies the page or post url for event links.<br />\n" "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n" "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget." msgstr "" -#: includes/sc_event-list_helptexts.php:135 +#: includes/sc_event-list_helptexts.php:243 msgid "" "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n" "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget." msgstr "" -#: includes/sc_event-list.php:135 +#: includes/sc_event-list.php:154 +msgid "Sorry, the requested event is not available!" +msgstr "Entschuldigung, die der angeforderte Termin ist nicht verfügbar!" + +#: includes/sc_event-list.php:163 msgid "Event Information:" msgstr "Termin Informationen:" -#: includes/widget_helptexts.php:10 +#: includes/sc_event-list.php:405 +msgid "Link to RSS feed" +msgstr "" + +#: includes/sc_event-list.php:414 +msgid "Link to iCal feed" +msgstr "" + +#: includes/widget_helptexts.php:11 msgid "This option defines the displayed title for the widget." msgstr "Diese Option legt den anzuzeigenden Titel für das Widget fest." -#: includes/widget_helptexts.php:15 +#: includes/widget_helptexts.php:18 msgid "Category Filter" msgstr "Kategoriefilter" -#: includes/widget_helptexts.php:17 +#: includes/widget_helptexts.php:20 msgid "" "This option defines the categories of which events are shown. The standard " "is all or an empty string to show all events. Specify a category slug or a " @@ -1850,137 +1902,145 @@ msgid "" "all possibilities." msgstr "Diese Option legt die Kategorien fest, aus denen die Termine angezeigt werden sollen. Der Standard-Wert ist all oder ein leerer Text mit dem alle Termine aus allen Kategorien angezeigt werden. Wird ein Kategorie-Permalink oder eine Liste von mehreren Kategorie-Permalinks angegeben, werden nur Termine angezeigt, bei denen eine dieser Kategorien gesetzt ist. Siehe hierzu die Beschreibung des Shortcode Attributs cat_filter für detaillierte Informationen zu allen Möglichkeiten." -#: includes/widget_helptexts.php:22 +#: includes/widget_helptexts.php:27 msgid "Number of listed events" msgstr "Anzahl der angezeigten Termine" -#: includes/widget_helptexts.php:24 +#: includes/widget_helptexts.php:29 msgid "The number of upcoming events to display" msgstr "Die Anzahl der anstehenden Termine, die angezeigt werden sollen." -#: includes/widget_helptexts.php:29 +#: includes/widget_helptexts.php:36 msgid "Truncate event title to" msgstr "Kürze den Termin-Titel auf" -#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52 -#: includes/widget_helptexts.php:67 +#: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65 +#: includes/widget_helptexts.php:93 msgid "characters" msgstr "Buchstaben" -#: includes/widget_helptexts.php:31 +#: includes/widget_helptexts.php:38 msgid "" "This option defines the number of displayed characters for the event title." msgstr "Diese Option legt die Anzahl der angezeigten Buchstaben für den Termin-Titel fest." -#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54 +#: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67 #, php-format msgid "" "Set this value to %1$s to view the full text, or set it to %2$s to " "automatically truncate the text via css." 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." -#: includes/widget_helptexts.php:37 +#: includes/widget_helptexts.php:46 msgid "Show event starttime" msgstr "Zeige die Termin-Uhrzeit" -#: includes/widget_helptexts.php:39 +#: includes/widget_helptexts.php:48 msgid "This option defines if the event start time will be displayed." msgstr "Diese Option definiert, ob die Uhrzeit des Termins angezeigt wird." -#: includes/widget_helptexts.php:44 +#: includes/widget_helptexts.php:55 msgid "Show event location" msgstr "Zeige den Termin-Ort" -#: includes/widget_helptexts.php:46 +#: includes/widget_helptexts.php:57 msgid "This option defines if the event location will be displayed." msgstr "Diese Option definiert, ob der Ort des Termins angezeigt wird." -#: includes/widget_helptexts.php:51 +#: includes/widget_helptexts.php:64 msgid "Truncate location to" msgstr "Kürze den Ort auf" -#: includes/widget_helptexts.php:53 +#: includes/widget_helptexts.php:66 msgid "" "If the event location is diplayed this option defines the number of " "displayed characters." msgstr "Wenn die Termin-Ort angezeigt wird, dann legt diese Option die Anzahl der angezeigten Buchstaben fest." -#: includes/widget_helptexts.php:59 +#: includes/widget_helptexts.php:74 +msgid "Show event excerpt" +msgstr "" + +#: includes/widget_helptexts.php:76 +msgid "This option defines if the event excerpt will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:83 msgid "Show event content" msgstr "" -#: includes/widget_helptexts.php:61 +#: includes/widget_helptexts.php:85 msgid "This option defines if the event content will be displayed." msgstr "" -#: includes/widget_helptexts.php:66 +#: includes/widget_helptexts.php:92 msgid "Truncate content to" msgstr "" -#: includes/widget_helptexts.php:68 +#: includes/widget_helptexts.php:94 msgid "" "If the event content are diplayed this option defines the number of diplayed" " characters." msgstr "" -#: includes/widget_helptexts.php:69 +#: includes/widget_helptexts.php:95 #, php-format msgid "Set this value to %1$s to view the full text." msgstr "Wird der Wert auf %1$s gesetzt, wird der gesamte Text angezeigt." -#: includes/widget_helptexts.php:74 +#: includes/widget_helptexts.php:102 msgid "URL to the linked Event List page" msgstr "URL zur verlinkten Event List Seite" -#: includes/widget_helptexts.php:76 +#: includes/widget_helptexts.php:104 msgid "" "This option defines the url to the linked Event List page. This option is " "required if you want to use one of the options below." 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." -#: includes/widget_helptexts.php:81 +#: includes/widget_helptexts.php:111 msgid "Shortcode ID on linked page" msgstr "Shortcode ID auf der verlinkten Seite" -#: includes/widget_helptexts.php:83 +#: includes/widget_helptexts.php:113 msgid "" "This option defines the shortcode-id for the Event List on the linked page. " "Normally the standard value 1 is correct, you only have to change it if you " "use multiple event-list shortcodes on the linked page." 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." -#: includes/widget_helptexts.php:90 +#: includes/widget_helptexts.php:122 msgid "" "With this option you can add a link to the single event page for every " "displayed event. You have to specify the url to the page and the shortcode " "id option if you want to use it." 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." -#: includes/widget_helptexts.php:97 +#: includes/widget_helptexts.php:131 msgid "" "With this option you can add a link to the event-list page below the " "diplayed events. You have to specify the url to page option if you want to " "use it." 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." -#: includes/widget_helptexts.php:102 +#: includes/widget_helptexts.php:138 msgid "Caption for the link" msgstr "Anzuzeigender Text für den Link" -#: includes/widget_helptexts.php:104 +#: includes/widget_helptexts.php:140 msgid "" "This option defines the text for the link to the Event List page if the " "approriate option is selected." msgstr "Diese Option legt den anzuzeigenden Text für den Link zur Event List Seite fest, wenn die entsprechende Option ausgewählt wurde." -#: includes/widget.php:20 +#: includes/widget.php:21 msgid "With this widget a list of upcoming events can be displayed." msgstr "Mit diesem Widget kann eine Liste mit den anstehenden Terminen angezeigt werden." -#: includes/widget.php:25 +#: includes/widget.php:26 msgid "Upcoming events" msgstr "Anstehende Termine" -#: includes/widget.php:38 +#: includes/widget.php:40 msgid "show events page" msgstr "öffne den Kalender" diff --git a/wp-content/plugins/event-list/languages/event-list-es_AR.mo b/wp-content/plugins/event-list/languages/event-list-es_AR.mo index a24cdcd97e4521d39e3252a739671009b3b25cab..f11105d7feb06f632e9e3a4f5c162edec333ffbf 100644 Binary files a/wp-content/plugins/event-list/languages/event-list-es_AR.mo and b/wp-content/plugins/event-list/languages/event-list-es_AR.mo differ diff --git a/wp-content/plugins/event-list/languages/event-list-es_AR.po b/wp-content/plugins/event-list/languages/event-list-es_AR.po index 3f350f6ea9373bb02211440ab4917e62dcc806cc..93e737043f1d6552e456f822df8f3eb1de03b6d8 100644 --- a/wp-content/plugins/event-list/languages/event-list-es_AR.po +++ b/wp-content/plugins/event-list/languages/event-list-es_AR.po @@ -1,5 +1,5 @@ # Translation file for the 'Event List' WordPress plugin -# Copyright (C) 2018 by mibuthu +# Copyright (C) 2021 by mibuthu # This file is distributed under the same license as the corresponding wordpress plugin. # # Translators: @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: wp-event-list\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n" -"POT-Creation-Date: 2018-05-27 12:20+0200\n" -"PO-Revision-Date: 2018-05-27 10:20+0000\n" +"POT-Creation-Date: 2021-04-24 11:28+0200\n" +"PO-Revision-Date: 2021-04-24 09:26+0000\n" "Last-Translator: mibuthu\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/mibuthu/wp-event-list/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -18,117 +18,117 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Errors during upgrade of plugin %1$s" msgstr "" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Upgrade of plugin %1$s successful" msgstr "" -#: admin/admin.php:106 admin/includes/admin-settings.php:65 +#: admin/admin.php:116 admin/includes/admin-settings.php:73 msgid "Event List Settings" msgstr "Configuraciones del Listado de Eventos" -#: admin/admin.php:106 +#: admin/admin.php:116 msgid "Settings" msgstr "Configuraciones" -#: admin/admin.php:110 admin/includes/admin-about.php:37 +#: admin/admin.php:120 admin/includes/admin-about.php:43 msgid "About Event List" msgstr "Sobre Listado de Eventos" -#: admin/admin.php:110 +#: admin/admin.php:120 msgid "About" msgstr "Sobre" -#: admin/admin.php:132 +#: admin/admin.php:144 #, php-format msgid "%s Event" msgid_plural "%s Events" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 +#: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92 msgid "General" msgstr "" -#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 -#: admin/includes/admin-about.php:105 +#: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88 +#: admin/includes/admin-about.php:117 msgid "Shortcode Attributes" msgstr "" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:82 msgid "Help and Instructions" msgstr "Ayuda e Instrucciones" -#: admin/includes/admin-about.php:73 +#: admin/includes/admin-about.php:83 #, php-format msgid "You can manage the events %1$shere%2$s" msgstr "" -#: admin/includes/admin-about.php:74 +#: admin/includes/admin-about.php:84 msgid "To show the events on your site you have 2 possibilities" msgstr "Para mostrar el evento en su sitio tiene 2 posibilidades" -#: admin/includes/admin-about.php:75 +#: admin/includes/admin-about.php:85 #, php-format msgid "you can place the <strong>shortcode</strong> %1$s on any page or post" msgstr "Ud. puede colocar <strong>shortcode</strong> %1$s en cualquier página o post, del sitio" -#: admin/includes/admin-about.php:76 +#: admin/includes/admin-about.php:86 #, php-format msgid "you can add the <strong>widget</strong> %1$s in your sidebars" msgstr "Usted puede agregar el <strong>widget</strong> %1$s en el menú lateral" -#: admin/includes/admin-about.php:77 +#: admin/includes/admin-about.php:87 msgid "" "The displayed events and their style can be modified with the available " "widget settings and the available attributes for the shortcode." 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." -#: admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:88 #, php-format msgid "" "A list of all available shortcode attributes with their descriptions is " "available in the %1$s tab." msgstr "" -#: admin/includes/admin-about.php:79 +#: admin/includes/admin-about.php:89 msgid "The available widget options are described in their tooltip text." msgstr "Las opciones disponibles para el widget estan descriptas en el texto de información." -#: admin/includes/admin-about.php:80 +#: admin/includes/admin-about.php:90 #, php-format msgid "" "If you enable one of the links options (%1$s or %2$s) in the widget you have" " to insert an URL to the linked event-list page." msgstr "" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120 msgid "Add links to the single events" msgstr "" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129 msgid "Add a link to the Event List page" msgstr "" -#: admin/includes/admin-about.php:81 +#: admin/includes/admin-about.php:91 msgid "" "This is required because the widget does not know in which page or post the " "shortcode was included." msgstr "" -#: admin/includes/admin-about.php:82 +#: admin/includes/admin-about.php:92 msgid "" "Additionally you have to insert the correct Shortcode id on the linked page." " This id describes which shortcode should be used on the given page or post " "if you have more than one." msgstr "" -#: admin/includes/admin-about.php:83 +#: admin/includes/admin-about.php:93 #, php-format msgid "" "The default value %1$s is normally o.k. (for pages with 1 shortcode only), " @@ -136,986 +136,991 @@ msgid "" "link on your linked page or post." msgstr "" -#: admin/includes/admin-about.php:84 +#: admin/includes/admin-about.php:94 #, php-format msgid "The id is available at the end of the URL parameters (e.g. %1$s)." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 #, php-format msgid "" "Be sure to also check the %1$s to get the plugin behaving just the way you " "want." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 msgid "Settings page" msgstr "" -#: admin/includes/admin-about.php:92 +#: admin/includes/admin-about.php:103 msgid "About the plugin author" msgstr "" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:105 #, php-format msgid "" "This plugin is developed by %1$s, you can find more information about the " "plugin on the %2$s." msgstr "" -#: admin/includes/admin-about.php:94 -msgid "wordpress plugin site" +#: admin/includes/admin-about.php:105 +msgid "WordPress plugin site" msgstr "" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:106 #, php-format msgid "If you like the plugin please rate it on the %1$s." msgstr "" -#: admin/includes/admin-about.php:95 -msgid "wordpress plugin review site" +#: admin/includes/admin-about.php:106 +msgid "WordPress plugin review site" msgstr "" -#: admin/includes/admin-about.php:96 +#: admin/includes/admin-about.php:107 msgid "" "If you want to support the plugin I would be happy to get a small donation" msgstr "" -#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 -#: admin/includes/admin-about.php:99 +#: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109 +#: admin/includes/admin-about.php:110 #, php-format msgid "Donate with %1$s" msgstr "" -#: admin/includes/admin-about.php:107 +#: admin/includes/admin-about.php:119 msgid "" "You have the possibility to modify the output if you add some of the " "following attributes to the shortcode." msgstr "" -#: admin/includes/admin-about.php:108 +#: admin/includes/admin-about.php:120 #, php-format msgid "" "You can combine and add as much attributes as you want. E.g. the shortcode " "including the attributes %1$s and %2$s would looks like this:" msgstr "" -#: admin/includes/admin-about.php:110 +#: admin/includes/admin-about.php:122 msgid "" "Below you can find a list of all supported attributes with their " "descriptions and available options:" msgstr "" -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:137 msgid "Attribute name" msgstr "" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:138 msgid "Value options" msgstr "" -#: admin/includes/admin-about.php:126 +#: admin/includes/admin-about.php:139 msgid "Default value" msgstr "" -#: admin/includes/admin-about.php:127 +#: admin/includes/admin-about.php:140 msgid "Description" msgstr "Descripción" -#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 -#: includes/sc_event-list_helptexts.php:31 +#: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:42 msgid "Filter Syntax" msgstr "" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:160 msgid "" "For date and cat filters you can specify complex filters with the following " "syntax:" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 #, php-format msgid "" "You can use %1$s and %2$s connections to define complex filters. " "Additionally you can set brackets %3$s for nested queries." msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "AND" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "OR" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "or" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "and" msgstr "" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:162 msgid "Examples for cat filters:" msgstr "" -#: admin/includes/admin-about.php:149 +#: admin/includes/admin-about.php:163 #, php-format msgid "Show all events with category %1$s." msgstr "" -#: admin/includes/admin-about.php:150 +#: admin/includes/admin-about.php:164 #, php-format msgid "Show all events with category %1$s or %2$s." msgstr "" -#: admin/includes/admin-about.php:151 +#: admin/includes/admin-about.php:165 #, php-format msgid "" "Show all events with category %1$s and all events where category %2$s as " "well as %3$s is selected." msgstr "" -#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34 msgid "Available Date Formats" msgstr "" -#: admin/includes/admin-about.php:157 +#: admin/includes/admin-about.php:172 msgid "For date filters you can use the following date formats:" msgstr "" -#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34 msgid "Available Date Range Formats" msgstr "" -#: admin/includes/admin-about.php:166 +#: admin/includes/admin-about.php:182 msgid "For date filters you can use the following daterange formats:" msgstr "" -#: admin/includes/admin-about.php:178 +#: admin/includes/admin-about.php:195 msgid "Value" msgstr "" -#: admin/includes/admin-about.php:182 +#: admin/includes/admin-about.php:199 msgid "Example" msgstr "" -#: admin/includes/admin-categories.php:38 +#: admin/includes/admin-categories.php:54 msgid "Synchronize with post categories" msgstr "" -#: admin/includes/admin-categories.php:46 +#: admin/includes/admin-categories.php:63 #, php-format msgid "%1$s categories modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:47 +#: admin/includes/admin-categories.php:64 #, php-format msgid "%1$s categories added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:48 +#: admin/includes/admin-categories.php:65 #, php-format msgid "%1$s categories deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:50 +#: admin/includes/admin-categories.php:67 #, php-format msgid "%1$s categories not modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:51 +#: admin/includes/admin-categories.php:68 #, php-format msgid "%1$s categories not added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:52 +#: admin/includes/admin-categories.php:69 #, php-format msgid "%1$s categories not deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:55 +#: admin/includes/admin-categories.php:72 msgid "An Error occured during the category sync" msgstr "" -#: admin/includes/admin-categories.php:59 +#: admin/includes/admin-categories.php:75 msgid "Category sync finished" msgstr "" -#: admin/includes/admin-category-sync.php:45 +#: admin/includes/admin-category-sync.php:54 msgid "Error: You are not allowed to view this page!" msgstr "" -#: admin/includes/admin-category-sync.php:62 +#: admin/includes/admin-category-sync.php:70 msgid "Affected Categories when switching to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:63 +#: admin/includes/admin-category-sync.php:71 msgid "Switch option to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:64 +#: admin/includes/admin-category-sync.php:72 msgid "" "If you proceed, all post categories will be copied and all events will be " "re-assigned to this new categories." msgstr "" -#: admin/includes/admin-category-sync.php:65 +#: admin/includes/admin-category-sync.php:73 msgid "" "Afterwards the event categories are independent of the post categories." msgstr "" -#: admin/includes/admin-category-sync.php:68 +#: admin/includes/admin-category-sync.php:75 msgid "Affected Categories when switching to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:69 +#: admin/includes/admin-category-sync.php:76 msgid "Switch option to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:70 +#: admin/includes/admin-category-sync.php:77 msgid "" "Take a detailed look at the affected categories above before you proceed! " "All seperate event categories will be deleted, this cannot be undone!" msgstr "" -#: admin/includes/admin-category-sync.php:73 +#: admin/includes/admin-category-sync.php:79 msgid "Event Categories: Synchronise with Post Categories" msgstr "" -#: admin/includes/admin-category-sync.php:74 +#: admin/includes/admin-category-sync.php:80 msgid "Start synchronisation" msgstr "" -#: admin/includes/admin-category-sync.php:75 +#: admin/includes/admin-category-sync.php:81 msgid "" "If this option is enabled the above listed categories will be deleted and " "removed from the existing events!" msgstr "" -#: admin/includes/admin-category-sync.php:90 +#: admin/includes/admin-category-sync.php:96 msgid "Categories to modify" msgstr "" -#: admin/includes/admin-category-sync.php:91 +#: admin/includes/admin-category-sync.php:97 msgid "Categories to add" msgstr "" -#: admin/includes/admin-category-sync.php:92 +#: admin/includes/admin-category-sync.php:98 msgid "Categories to delete (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:93 +#: admin/includes/admin-category-sync.php:99 msgid "Delete not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:97 +#: admin/includes/admin-category-sync.php:102 msgid "Categories with differences" msgstr "" -#: admin/includes/admin-category-sync.php:98 +#: admin/includes/admin-category-sync.php:103 msgid "Categories to add (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:99 +#: admin/includes/admin-category-sync.php:104 msgid "Add not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:117 +#: admin/includes/admin-category-sync.php:123 msgid "none" msgstr "" -#: admin/includes/admin-import.php:49 +#: admin/includes/admin-import.php:58 msgid "Import Events" msgstr "Importar Eventos" -#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116 +#: admin/includes/admin-import.php:220 msgid "Step" msgstr "" -#: admin/includes/admin-import.php:69 +#: admin/includes/admin-import.php:79 msgid "Set import file and options" msgstr "" -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:82 #, php-format msgid "Proceed with Step %1$s" msgstr "" -#: admin/includes/admin-import.php:75 +#: admin/includes/admin-import.php:85 msgid "Example file" msgstr "" -#: admin/includes/admin-import.php:76 +#: admin/includes/admin-import.php:86 #, php-format msgid "" "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)" msgstr "" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "Note" msgstr "" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "" "Do not change the column header and separator line (first two lines), " "otherwise the import will fail!" msgstr "" -#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 +#: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103 msgid "Sorry, there has been an error." msgstr "" -#: admin/includes/admin-import.php:85 +#: admin/includes/admin-import.php:96 msgid "The file does not exist, please try again." msgstr "" -#: admin/includes/admin-import.php:93 +#: admin/includes/admin-import.php:104 msgid "The uploaded file does not have the required csv extension." msgstr "" -#: admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:116 msgid "Events review and additonal category selection" msgstr "" -#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133 msgid "Error" msgstr "" -#: admin/includes/admin-import.php:111 +#: admin/includes/admin-import.php:122 msgid "This CSV file cannot be imported" msgstr "" -#: admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:133 msgid "None of the events in this CSV file can be imported" msgstr "" -#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179 msgid "Warning" msgstr "" -#: admin/includes/admin-import.php:126 +#: admin/includes/admin-import.php:138 #, php-format msgid "There is %1$s event which cannot be imported" msgid_plural "There are %1$s events which cannot be imported" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-import.php:134 +#: admin/includes/admin-import.php:150 #, php-format msgid "CSV line %1$s" msgstr "" -#: admin/includes/admin-import.php:144 +#: admin/includes/admin-import.php:160 msgid "You can still import all other events listed below." msgstr "" -#: admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:179 msgid "" "The following category slugs are not available and will be removed from the " "imported events" msgstr "" -#: admin/includes/admin-import.php:169 +#: admin/includes/admin-import.php:185 msgid "" "If you want to keep these categories, please create these Categories first " "and do the import afterwards." msgstr "" -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:220 msgid "Import result" msgstr "" -#: admin/includes/admin-import.php:201 +#: admin/includes/admin-import.php:223 #, php-format msgid "Import of %1$s events successful!" msgstr "" -#: admin/includes/admin-import.php:202 +#: admin/includes/admin-import.php:224 msgid "Go back to All Events" msgstr "" -#: admin/includes/admin-import.php:206 +#: admin/includes/admin-import.php:227 msgid "Errors during Import" msgstr "" -#: admin/includes/admin-import.php:215 +#: admin/includes/admin-import.php:235 msgid "Event from CSV-line" msgstr "" -#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 -#: includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77 +#: includes/widget_helptexts.php:9 msgid "Title" msgstr "Título" -#: admin/includes/admin-import.php:227 +#: admin/includes/admin-import.php:248 msgid "Start Date" msgstr "" -#: admin/includes/admin-import.php:228 +#: admin/includes/admin-import.php:249 msgid "End Date" msgstr "" -#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 -#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 +#: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:69 msgid "Time" msgstr "" -#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62 -#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57 -#: includes/options_helptexts.php:58 +#: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78 +#: admin/includes/admin-new.php:107 includes/options_helptexts.php:75 +#: includes/options_helptexts.php:76 msgid "Location" msgstr "" -#: admin/includes/admin-import.php:231 +#: admin/includes/admin-import.php:252 msgid "Content" msgstr "" -#: admin/includes/admin-import.php:232 +#: admin/includes/admin-import.php:253 msgid "Category slugs" msgstr "" -#: admin/includes/admin-import.php:274 +#: admin/includes/admin-import.php:297 msgid "Header line is missing or not correct!" msgstr "" -#: admin/includes/admin-import.php:275 +#: admin/includes/admin-import.php:298 #, php-format msgid "" "Have a look at the %1$sexample file%2$s to see the correct header line " "format." msgstr "" -#: admin/includes/admin-import.php:281 +#: admin/includes/admin-import.php:305 #, php-format msgid "Wrong number of items in line (%1$s items found, 6-7 required)" msgstr "" -#: admin/includes/admin-import.php:309 +#: admin/includes/admin-import.php:334 msgid "Empty event title found" msgstr "" -#: admin/includes/admin-import.php:315 +#: admin/includes/admin-import.php:340 msgid "Wrong date format for startdate" msgstr "" -#: admin/includes/admin-import.php:324 +#: admin/includes/admin-import.php:348 msgid "Wrong date format for enddate" msgstr "" -#: admin/includes/admin-import.php:365 +#: admin/includes/admin-import.php:401 msgid "Import events" msgstr "" -#: admin/includes/admin-import.php:366 +#: admin/includes/admin-import.php:402 msgid "Add additional categories" msgstr "" -#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +#: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257 msgid "Import" msgstr "Importar" -#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +#: admin/includes/admin-import.php:428 includes/events_post_type.php:78 msgid "No events found" msgstr "" -#: admin/includes/admin-import.php:432 +#: admin/includes/admin-import.php:473 msgid "Saving of event failed!" msgstr "" -#: admin/includes/admin-main.php:60 +#: admin/includes/admin-main.php:76 msgid "Event Date" msgstr "" -#: admin/includes/admin-main.php:64 +#: admin/includes/admin-main.php:80 msgid "Author" msgstr "" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 #, php-format msgid "Add a copy of %1$s" msgstr "" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 msgid "Copy" msgstr "" -#: admin/includes/admin-new.php:51 +#: admin/includes/admin-new.php:58 msgid "Event data" msgstr "" -#: admin/includes/admin-new.php:80 +#: admin/includes/admin-new.php:90 msgid "Add Copy" msgstr "" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "Date" msgstr "" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "required" msgstr "" -#: admin/includes/admin-new.php:87 +#: admin/includes/admin-new.php:101 msgid "Multi-Day Event" msgstr "" -#: admin/includes/admin-new.php:106 +#: admin/includes/admin-new.php:121 msgid "Event Title" msgstr "" -#: admin/includes/admin-new.php:121 +#: admin/includes/admin-new.php:137 msgid "Event Content" msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203 msgid "Event updated." msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205 msgid "View event" msgstr "" -#: admin/includes/admin-new.php:184 +#: admin/includes/admin-new.php:204 #, php-format msgid "Event restored to revision from %1$s" msgstr "" -#: admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:205 msgid "Event published." msgstr "" -#: admin/includes/admin-new.php:187 +#: admin/includes/admin-new.php:207 msgid "Event submitted." msgstr "" -#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209 +#: admin/includes/admin-new.php:210 msgid "Preview event" msgstr "" -#: admin/includes/admin-new.php:188 +#: admin/includes/admin-new.php:208 #, php-format msgid "Event scheduled for: %1$s>" msgstr "" -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:210 msgid "Event draft updated." msgstr "" -#: admin/includes/admin-settings.php:71 +#: admin/includes/admin-settings.php:79 msgid "Go to Event Category switching page" msgstr "" -#: admin/includes/admin-settings.php:83 +#: admin/includes/admin-settings.php:93 msgid "Frontend Settings" msgstr "" -#: admin/includes/admin-settings.php:84 +#: admin/includes/admin-settings.php:94 msgid "Admin Page Settings" msgstr "" -#: admin/includes/admin-settings.php:85 +#: admin/includes/admin-settings.php:95 msgid "Feed Settings" msgstr "" -#: admin/includes/admin-settings.php:86 +#: admin/includes/admin-settings.php:96 msgid "Category Taxonomy" msgstr "" -#: includes/daterange_helptexts.php:7 +#: includes/daterange_helptexts.php:8 msgid "Year" msgstr "" -#: includes/daterange_helptexts.php:8 +#: includes/daterange_helptexts.php:9 msgid "A year can be specified in 4 digit format." msgstr "" -#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14 -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:47 #, php-format msgid "" "For a start date filter the first day of %1$s is used, in an end date the " "last day." msgstr "" -#: includes/daterange_helptexts.php:9 +#: includes/daterange_helptexts.php:10 msgid "the resulting year" msgstr "" -#: includes/daterange_helptexts.php:12 +#: includes/daterange_helptexts.php:15 msgid "Month" msgstr "" -#: includes/daterange_helptexts.php:13 +#: includes/daterange_helptexts.php:16 msgid "" "A month can be specified with 4 digits for the year and 2 digits for the " "month, seperated by a hyphen (-)." msgstr "" -#: includes/daterange_helptexts.php:14 +#: includes/daterange_helptexts.php:17 msgid "the resulting month" msgstr "" -#: includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:22 msgid "Day" msgstr "" -#: includes/daterange_helptexts.php:18 +#: includes/daterange_helptexts.php:23 msgid "" "A day can be specified in the format 4 digits for the year, 2 digits for the" " month and 2 digets for the day, seperated by hyphens (-)." msgstr "" -#: includes/daterange_helptexts.php:21 +#: includes/daterange_helptexts.php:28 msgid "Relative Year" msgstr "" -#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28 -#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55 #, php-format msgid "%1$s from now can be specified in the following notation: %2$s" msgstr "" -#: includes/daterange_helptexts.php:22 +#: includes/daterange_helptexts.php:29 msgid "A relative year" msgstr "" -#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29 -#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38 +#: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56 #, php-format msgid "" "This means you can specify a positive or negative (%1$s) %2$s from now with " "%3$s or %4$s attached (see also the example below)." msgstr "" -#: includes/daterange_helptexts.php:23 +#: includes/daterange_helptexts.php:30 msgid "number of years" msgstr "" -#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30 -#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44 +#: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39 +#: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57 #, php-format msgid "Additionally the following values are available: %1$s" msgstr "" -#: includes/daterange_helptexts.php:27 +#: includes/daterange_helptexts.php:36 msgid "Relative Month" msgstr "" -#: includes/daterange_helptexts.php:28 +#: includes/daterange_helptexts.php:37 msgid "A relative month" msgstr "" -#: includes/daterange_helptexts.php:29 +#: includes/daterange_helptexts.php:38 msgid "number of months" msgstr "" -#: includes/daterange_helptexts.php:33 +#: includes/daterange_helptexts.php:44 msgid "Relative Week" msgstr "" -#: includes/daterange_helptexts.php:34 +#: includes/daterange_helptexts.php:45 msgid "A relative week" msgstr "" -#: includes/daterange_helptexts.php:35 +#: includes/daterange_helptexts.php:46 msgid "number of weeks" msgstr "" -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:47 msgid "the resulting week" msgstr "" -#: includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:48 #, php-format msgid "" "The first day of the week is depending on the option %1$s which can be found" " and changed in %2$s." msgstr "" -#: includes/daterange_helptexts.php:41 +#: includes/daterange_helptexts.php:54 msgid "Relative Day" msgstr "" -#: includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:55 msgid "A relative day" msgstr "" -#: includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:56 msgid "number of days" msgstr "" -#: includes/daterange_helptexts.php:49 +#: includes/daterange_helptexts.php:64 msgid "Date range" msgstr "" -#: includes/daterange_helptexts.php:50 +#: includes/daterange_helptexts.php:66 msgid "" "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n" "\t For the start and end date any available date format can be used." msgstr "" -#: includes/daterange_helptexts.php:55 +#: includes/daterange_helptexts.php:75 msgid "This value defines a range without any limits." msgstr "" -#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61 -#: includes/daterange_helptexts.php:66 +#: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83 +#: includes/daterange_helptexts.php:90 #, php-format msgid "The corresponding date_range format is: %1$s" msgstr "" -#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 +#: includes/daterange_helptexts.php:81 includes/filterbar.php:310 msgid "Upcoming" msgstr "Próximos" -#: includes/daterange_helptexts.php:60 +#: includes/daterange_helptexts.php:82 msgid "This value defines a range from the actual day to the future." msgstr "" -#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 +#: includes/daterange_helptexts.php:88 includes/filterbar.php:318 msgid "Past" msgstr "Pasado" -#: includes/daterange_helptexts.php:65 +#: includes/daterange_helptexts.php:89 msgid "This value defines a range from the past to the previous day." msgstr "" -#: includes/event.php:107 +#: includes/event.php:124 msgid "No valid start date provided" msgstr "" -#: includes/events_post_type.php:60 +#: includes/event.php:299 includes/event.php:301 +#: includes/sc_event-list.php:298 +msgid "read more" +msgstr "" + +#: includes/events_post_type.php:69 msgid "Events" msgstr "Eventos" -#: includes/events_post_type.php:61 +#: includes/events_post_type.php:70 msgid "Event" msgstr "" -#: includes/events_post_type.php:62 +#: includes/events_post_type.php:71 msgid "Add New" msgstr "Agregar Nuevo" -#: includes/events_post_type.php:63 +#: includes/events_post_type.php:72 msgid "Add New Event" msgstr "Agregar un Nuevo Evento" -#: includes/events_post_type.php:64 +#: includes/events_post_type.php:73 msgid "Edit Event" msgstr "Editar Evento" -#: includes/events_post_type.php:65 +#: includes/events_post_type.php:74 msgid "New Event" msgstr "" -#: includes/events_post_type.php:66 +#: includes/events_post_type.php:75 msgid "View Event" msgstr "" -#: includes/events_post_type.php:67 +#: includes/events_post_type.php:76 msgid "View Events" msgstr "" -#: includes/events_post_type.php:68 +#: includes/events_post_type.php:77 msgid "Search Events" msgstr "" -#: includes/events_post_type.php:70 +#: includes/events_post_type.php:79 msgid "No events found in Trash" msgstr "" -#: includes/events_post_type.php:72 +#: includes/events_post_type.php:81 msgid "All Events" msgstr "Todos los Eventos" -#: includes/events_post_type.php:73 +#: includes/events_post_type.php:82 msgid "Event Archives" msgstr "" -#: includes/events_post_type.php:74 +#: includes/events_post_type.php:83 msgid "Event Attributes" msgstr "" -#: includes/events_post_type.php:75 +#: includes/events_post_type.php:84 msgid "Insert into event" msgstr "" -#: includes/events_post_type.php:76 +#: includes/events_post_type.php:85 msgid "Uploaded to this event" msgstr "" -#: includes/events_post_type.php:77 +#: includes/events_post_type.php:86 msgid "Event List" msgstr "Listado de Eventos" -#: includes/events_post_type.php:78 +#: includes/events_post_type.php:87 msgid "Filter events list" msgstr "" -#: includes/events_post_type.php:79 +#: includes/events_post_type.php:88 msgid "Events list navigation" msgstr "" -#: includes/events_post_type.php:80 +#: includes/events_post_type.php:89 msgid "Events list" msgstr "" -#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +#: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90 msgid "Reset" msgstr "" -#: includes/filterbar.php:278 +#: includes/filterbar.php:296 msgid "All" msgstr "Todos" -#: includes/filterbar.php:281 +#: includes/filterbar.php:298 msgid "All Dates" msgstr "" -#: includes/options_helptexts.php:10 +#: includes/options_helptexts.php:11 msgid "CSV File to import" msgstr "" -#: includes/options_helptexts.php:12 +#: includes/options_helptexts.php:13 msgid "Please select the file which contains the event data in CSV format." msgstr "" -#: includes/options_helptexts.php:15 +#: includes/options_helptexts.php:18 msgid "Used date format" msgstr "" -#: includes/options_helptexts.php:17 +#: includes/options_helptexts.php:21 msgid "" "With this option the given date format for event start and end date in the " "CSV file can be specified." msgstr "" -#: includes/options_helptexts.php:18 +#: includes/options_helptexts.php:23 #, php-format msgid "" "You can use the php date format options given in %1$s, the most important " "ones are:" msgstr "" -#: includes/options_helptexts.php:20 +#: includes/options_helptexts.php:26 msgid "full year representation, with 4 digits" msgstr "" -#: includes/options_helptexts.php:21 +#: includes/options_helptexts.php:27 msgid "numeric representation of a month, with leading zeros" msgstr "" -#: includes/options_helptexts.php:22 +#: includes/options_helptexts.php:28 msgid "day of the month, 2 digits with leading zeros" msgstr "" -#: includes/options_helptexts.php:24 +#: includes/options_helptexts.php:30 msgid "" "If the date format in the CSV file does not correspond to the given format, " "the import script tries to recognize the date format by itself." msgstr "" -#: includes/options_helptexts.php:25 +#: includes/options_helptexts.php:31 msgid "" "But this can cause problems or result in wrong dates, so it is recommended " "to specify the correct date format here." msgstr "" -#: includes/options_helptexts.php:26 +#: includes/options_helptexts.php:32 msgid "Examples" msgstr "" -#: includes/options_helptexts.php:33 +#: includes/options_helptexts.php:41 msgid "Text for no events" msgstr "" -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:43 msgid "" "This option defines the displayed text when no events are available for the " "selected view." msgstr "" -#: includes/options_helptexts.php:38 +#: includes/options_helptexts.php:48 msgid "Multiday filter range" msgstr "" -#: includes/options_helptexts.php:39 +#: includes/options_helptexts.php:49 msgid "Use the complete event range in the date filter" msgstr "" -#: includes/options_helptexts.php:40 +#: includes/options_helptexts.php:51 msgid "" "This option defines if the complete range of a multiday event shall be " "considered in the date filter." msgstr "" -#: includes/options_helptexts.php:41 +#: includes/options_helptexts.php:52 msgid "" "If disabled, only the start day of an event is considered in the filter." msgstr "" -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:53 msgid "" "For an example multiday event which started yesterday and ends tomorrow this" " means, that it is displayed in umcoming dates when this option is enabled, " "but it is hidden when the option is disabled." msgstr "" -#: includes/options_helptexts.php:45 +#: includes/options_helptexts.php:58 msgid "Date display" msgstr "" -#: includes/options_helptexts.php:46 +#: includes/options_helptexts.php:59 msgid "Show the date only once per day" msgstr "" -#: includes/options_helptexts.php:47 +#: includes/options_helptexts.php:61 msgid "" "With this option enabled the date is only displayed once per day if more " "than one event is available on the same day." msgstr "" -#: includes/options_helptexts.php:48 +#: includes/options_helptexts.php:62 msgid "" "If enabled, the events are ordered in a different way (end date before start" " time) to allow using the same date for as much events as possible." msgstr "" -#: includes/options_helptexts.php:51 +#: includes/options_helptexts.php:67 msgid "HTML tags" msgstr "" -#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:75 #, php-format msgid "Allow HTML tags in the event field \"%1$s\"" msgstr "" -#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 +#: includes/options_helptexts.php:69 includes/options_helptexts.php:76 #, php-format msgid "" "This option specifies if HTML tags are allowed in the event field \"%1$s\"." msgstr "" -#: includes/options_helptexts.php:61 +#: includes/options_helptexts.php:81 msgid "Preferred language file" msgstr "" -#: includes/options_helptexts.php:62 +#: includes/options_helptexts.php:82 msgid "Load translations from general language directory first" msgstr "" -#: includes/options_helptexts.php:63 +#: includes/options_helptexts.php:84 #, php-format msgid "" "The default is to load the %1$s translation file from the plugin language " "directory first (%2$s)." msgstr "" -#: includes/options_helptexts.php:64 +#: includes/options_helptexts.php:85 #, php-format msgid "" "If you want to load your own language file from the general language " @@ -1123,295 +1128,312 @@ msgid "" "language directory, you have to enable this option." msgstr "" -#: includes/options_helptexts.php:68 +#: includes/options_helptexts.php:91 msgid "Events permalink slug" msgstr "" -#: includes/options_helptexts.php:69 +#: includes/options_helptexts.php:92 msgid "" "With this option the slug for the events permalink URLs can be defined." msgstr "" -#: includes/options_helptexts.php:72 +#: includes/options_helptexts.php:97 msgid "Text for \"Show content\"" msgstr "" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:98 msgid "" "With this option the displayed text for the link to show the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:76 +#: includes/options_helptexts.php:103 msgid "Text for \"Hide content\"" msgstr "" -#: includes/options_helptexts.php:77 +#: includes/options_helptexts.php:104 msgid "" "With this option the displayed text for the link to hide the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:109 msgid "Disable CSS file" msgstr "" -#: includes/options_helptexts.php:81 +#: includes/options_helptexts.php:110 #, php-format msgid "Disable the %1$s file." msgstr "" -#: includes/options_helptexts.php:82 +#: includes/options_helptexts.php:112 #, php-format msgid "With this option you can disable the inclusion of the %1$s file." msgstr "" -#: includes/options_helptexts.php:83 +#: includes/options_helptexts.php:113 msgid "" "This normally only make sense if you have css conflicts with your theme and " "want to set all required css styles somewhere else (e.g. in the theme css)." msgstr "" -#: includes/options_helptexts.php:87 +#: includes/options_helptexts.php:119 msgid "Date format in edit form" msgstr "" -#: includes/options_helptexts.php:88 +#: includes/options_helptexts.php:121 msgid "" "This option sets the displayed date format for the event date fields in the " "event new / edit form." msgstr "" -#: includes/options_helptexts.php:89 +#: includes/options_helptexts.php:122 msgid "The default is an empty string to use the Wordpress standard setting." msgstr "" -#: includes/options_helptexts.php:90 +#: includes/options_helptexts.php:123 #, php-format msgid "" "All available options to specify the date format can be found %1$shere%2$s." msgstr "" -#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 +#: includes/options_helptexts.php:129 msgid "Enable RSS feed" msgstr "" -#: includes/options_helptexts.php:95 -msgid "Enable support for an event RSS feed" +#: includes/options_helptexts.php:130 +msgid "Enable support for the event RSS feed" msgstr "" -#: includes/options_helptexts.php:96 -msgid "This option activates a RSS feed for the events." +#: includes/options_helptexts.php:132 +msgid "" +"This option activates the RSS feed for the events and adds a feed link in " +"the html head." msgstr "" -#: includes/options_helptexts.php:97 +#: includes/options_helptexts.php:133 msgid "" "You have to enable this option if you want to use one of the RSS feed " "features." msgstr "" -#: includes/options_helptexts.php:100 -msgid "Feed name" +#: includes/options_helptexts.php:138 +msgid "Enable iCal feed" msgstr "" -#: includes/options_helptexts.php:101 -#, php-format -msgid "This option sets the feed name. The default value is %1$s." +#: includes/options_helptexts.php:139 +msgid "Enable support for the event iCal feed" msgstr "" -#: includes/options_helptexts.php:102 -#, php-format -msgid "" -"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " -"enabled)." +#: includes/options_helptexts.php:141 +msgid "This option activates the iCal feed for events." msgstr "" -#: includes/options_helptexts.php:105 -msgid "Feed Description" +#: includes/options_helptexts.php:142 +msgid "" +"You have to enable this option if you want to use one of the iCal features." msgstr "" -#: includes/options_helptexts.php:106 -#, php-format -msgid "This options set the feed description. The default value is %1$s." +#: includes/options_helptexts.php:147 +msgid "Position of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:107 -msgid "" -"This description will be used in the title for the feed link in the html " -"head and for the description in the feed itself." +#: includes/options_helptexts.php:149 +msgid "at the top (above the navigation bar)" msgstr "" -#: includes/options_helptexts.php:110 -msgid "Listed events" -msgstr "Eventos Listados" +#: includes/options_helptexts.php:150 +msgid "between navigation bar and events" +msgstr "" -#: includes/options_helptexts.php:111 -msgid "Only show upcoming events in feed" +#: includes/options_helptexts.php:151 +msgid "at the bottom" msgstr "" -#: includes/options_helptexts.php:112 +#: includes/options_helptexts.php:153 msgid "" -"If this option is enabled only the upcoming events are listed in the feed." +"This option specifies the position of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:113 -msgid "If disabled all events (upcoming and past) will be listed." +#: includes/options_helptexts.php:158 +msgid "Align of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:116 -msgid "Add RSS feed link in head" +#: includes/options_helptexts.php:160 +msgid "left" msgstr "" -#: includes/options_helptexts.php:117 -msgid "Add RSS feed link in the html head" +#: includes/options_helptexts.php:161 +msgid "center" msgstr "" -#: includes/options_helptexts.php:118 -msgid "This option adds a RSS feed in the html head for the events." +#: includes/options_helptexts.php:162 +msgid "right" msgstr "" -#: includes/options_helptexts.php:119 -msgid "There are 2 alternatives to include the RSS feed" +#: includes/options_helptexts.php:164 +msgid "" +"This option specifies the align of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:120 -msgid "" -"The first way is this option to include a link in the html head. This link " -"will be recognized by browers or feed readers." +#: includes/options_helptexts.php:169 +msgid "RSS feed name" msgstr "" -#: includes/options_helptexts.php:121 +#: includes/options_helptexts.php:171 #, php-format -msgid "" -"The second way is to include a visible feed link directly in the event list." -" This can be done by setting the shortcode attribute %1$s to %2$s." +msgid "This option sets the RSS feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:122 +#: includes/options_helptexts.php:172 #, php-format -msgid "This option is only valid if the setting %1$s is enabled." +msgid "" +"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " +"enabled)." msgstr "" -#: includes/options_helptexts.php:125 -msgid "Position of the RSS feed link" +#: includes/options_helptexts.php:177 +msgid "RSS feed Description" msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the top (above the navigation bar)" +#: includes/options_helptexts.php:179 +#, php-format +msgid "This options set the RSS feed description. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:126 -msgid "between navigation bar and events" +#: includes/options_helptexts.php:180 +msgid "" +"This description will be used in the title for the feed link in the html " +"head and for the description in the feed itself." msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the bottom" +#: includes/options_helptexts.php:185 +msgid "RSS feed events" msgstr "" -#: includes/options_helptexts.php:127 -msgid "" -"This option specifies the position of the RSS feed link in the event list." +#: includes/options_helptexts.php:186 +msgid "Only show upcoming events in the RSS feed" msgstr "" -#: includes/options_helptexts.php:128 includes/options_helptexts.php:134 -#: includes/options_helptexts.php:140 includes/options_helptexts.php:146 -#, php-format +#: includes/options_helptexts.php:188 msgid "" -"You have to set the shortcode attribute %1$s to %2$s if you want to show the" -" feed link." +"If this option is enabled only the upcoming events are listed in the RSS " +"feed." msgstr "" -#: includes/options_helptexts.php:131 -msgid "Align of the RSS feed link" +#: includes/options_helptexts.php:189 includes/options_helptexts.php:215 +msgid "If disabled, all events (upcoming and past) will be listed." msgstr "" -#: includes/options_helptexts.php:132 -msgid "left" +#: includes/options_helptexts.php:194 +msgid "RSS link text" msgstr "" -#: includes/options_helptexts.php:132 -msgid "center" +#: includes/options_helptexts.php:196 +msgid "This option sets the caption of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:132 -msgid "right" +#: includes/options_helptexts.php:197 +msgid "Use an empty text to only show the rss image." msgstr "" -#: includes/options_helptexts.php:133 +#: includes/options_helptexts.php:198 +#, php-format msgid "" -"This option specifies the align of the RSS feed link in the event list." +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" RSS feed link." msgstr "" -#: includes/options_helptexts.php:137 -msgid "Feed link text" +#: includes/options_helptexts.php:203 +msgid "iCal feed name" msgstr "" -#: includes/options_helptexts.php:138 +#: includes/options_helptexts.php:205 +#, php-format +msgid "This option sets the iCal feed name. The default value is %1$s." +msgstr "" + +#: includes/options_helptexts.php:206 +#, php-format msgid "" -"This option specifies the caption of the RSS feed link in the event list." +"This name will be used in the iCal feed url (e.g. %1$s, or %2$s with " +"permalinks enabled)." msgstr "" -#: includes/options_helptexts.php:139 +#: includes/options_helptexts.php:211 +msgid "iCal feed events" +msgstr "" + +#: includes/options_helptexts.php:212 +msgid "Only show upcoming events in the iCal feed" +msgstr "" + +#: includes/options_helptexts.php:214 msgid "" -"Insert an empty text to hide any text if you only want to show the rss " -"image." +"If this option is enabled only the upcoming events are listed in the iCal " +"file." +msgstr "" + +#: includes/options_helptexts.php:220 +msgid "iCal link text" msgstr "" -#: includes/options_helptexts.php:143 -msgid "Feed link image" +#: includes/options_helptexts.php:222 +msgid "This option sets the iCal link text in the event list." msgstr "" -#: includes/options_helptexts.php:144 -msgid "Show rss image in feed link" +#: includes/options_helptexts.php:223 +msgid "Use an empty text to only show the iCal image." msgstr "" -#: includes/options_helptexts.php:145 +#: includes/options_helptexts.php:224 +#, php-format msgid "" -"This option specifies if the an image should be dispayed in the feed link in" -" front of the text." +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" iCal feed link." msgstr "" -#: includes/options_helptexts.php:151 +#: includes/options_helptexts.php:231 msgid "Event Category handling" msgstr "" -#: includes/options_helptexts.php:152 +#: includes/options_helptexts.php:232 msgid "Use Post Categories" msgstr "" -#: includes/options_helptexts.php:153 +#: includes/options_helptexts.php:234 msgid "" "Do not maintain seperate categories for the events, and use the existing " "post categories instead." msgstr "" -#: includes/options_helptexts.php:154 +#: includes/options_helptexts.php:235 msgid "Attention" msgstr "" -#: includes/options_helptexts.php:155 +#: includes/options_helptexts.php:236 msgid "" "This option cannot be changed directly, but you can go to the Event Category" " switching page from here." msgstr "" -#: includes/options.php:40 +#: includes/options.php:73 msgid "events" msgstr "" -#: includes/options.php:41 +#: includes/options.php:77 msgid "Show content" msgstr "" -#: includes/options.php:42 +#: includes/options.php:81 msgid "Hide content" msgstr "" -#: includes/sc_event-list_helptexts.php:7 +#: includes/sc_event-list_helptexts.php:8 msgid "event-id" msgstr "" -#: includes/sc_event-list_helptexts.php:8 +#: includes/sc_event-list_helptexts.php:9 #, php-format msgid "" "By default the event-list is displayed initially. But if an event-id (e.g. " @@ -1419,107 +1441,107 @@ msgid "" "this event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:10 -#: includes/sc_event-list_helptexts.php:22 +#: includes/sc_event-list_helptexts.php:13 +#: includes/sc_event-list_helptexts.php:31 msgid "year" msgstr "" -#: includes/sc_event-list_helptexts.php:11 +#: includes/sc_event-list_helptexts.php:14 msgid "" "This attribute defines which events are initially shown. The default is to " "show the upcoming events only." msgstr "" -#: includes/sc_event-list_helptexts.php:12 +#: includes/sc_event-list_helptexts.php:15 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:14 +#: includes/sc_event-list_helptexts.php:19 msgid "category slug" msgstr "" -#: includes/sc_event-list_helptexts.php:15 +#: includes/sc_event-list_helptexts.php:20 msgid "" "This attribute defines the category of which events are initially shown. The" " default is to show events of all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:16 +#: includes/sc_event-list_helptexts.php:21 msgid "" "Provide a category slug to change this behavior. It is still possible to " "change the displayed categories via the filterbar or url parameters." msgstr "" -#: includes/sc_event-list_helptexts.php:19 +#: includes/sc_event-list_helptexts.php:26 msgid "This attribute defines the initial order of the events." msgstr "" -#: includes/sc_event-list_helptexts.php:20 +#: includes/sc_event-list_helptexts.php:27 msgid "" "With %1$S (default value) the events are sorted from old to new, with %2$s " "in the opposite direction (from new to old)." msgstr "" -#: includes/sc_event-list_helptexts.php:23 +#: includes/sc_event-list_helptexts.php:32 #, php-format msgid "" "This attribute defines the dates and date ranges of which events are " "displayed. The default is %1$s to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:24 +#: includes/sc_event-list_helptexts.php:33 #, php-format msgid "" "Filtered events according to %1$s value are not available in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:25 +#: includes/sc_event-list_helptexts.php:34 #, php-format msgid "" "You can find all available values with a description and examples in the " "sections %1$s and %2$s below." msgstr "" -#: includes/sc_event-list_helptexts.php:26 +#: includes/sc_event-list_helptexts.php:35 #, php-format msgid "See %1$s description if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:28 +#: includes/sc_event-list_helptexts.php:39 msgid "category slugs" msgstr "" -#: includes/sc_event-list_helptexts.php:29 +#: includes/sc_event-list_helptexts.php:40 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:30 +#: includes/sc_event-list_helptexts.php:41 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:31 +#: includes/sc_event-list_helptexts.php:42 #, php-format msgid "" "The filter is specified via the given category slugs. See %1$s description " "if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:33 -#: includes/sc_event-list_helptexts.php:74 -#: includes/sc_event-list_helptexts.php:89 -#: includes/sc_event-list_helptexts.php:104 +#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:111 +#: includes/sc_event-list_helptexts.php:138 +#: includes/sc_event-list_helptexts.php:177 msgid "number" msgstr "" -#: includes/sc_event-list_helptexts.php:34 +#: includes/sc_event-list_helptexts.php:47 #, php-format msgid "" "This attribute defines how many events should be displayed if upcoming " @@ -1527,109 +1549,109 @@ msgid "" "displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:48 msgid "" "Please not that in the actual version there is no pagination of the events " "available, so the event list can be very long." msgstr "" -#: includes/sc_event-list_helptexts.php:38 +#: includes/sc_event-list_helptexts.php:53 msgid "" "This attribute defines if the filterbar should be displayed. The filterbar " "allows the users to specify filters for the listed events." msgstr "" -#: includes/sc_event-list_helptexts.php:39 +#: includes/sc_event-list_helptexts.php:54 #, php-format msgid "Choose %1$s to always hide and %2$s to always show the filterbar." msgstr "" -#: includes/sc_event-list_helptexts.php:40 +#: includes/sc_event-list_helptexts.php:55 #, php-format msgid "" "With %1$s the filterbar is only visible in the event list and with %2$s only" " in the single event view." msgstr "" -#: includes/sc_event-list_helptexts.php:43 +#: includes/sc_event-list_helptexts.php:60 #, php-format msgid "" "This attribute specifies the available items in the filterbar. This options " "are only valid if the filterbar is displayed (see %1$s attribute)." msgstr "" -#: includes/sc_event-list_helptexts.php:44 +#: includes/sc_event-list_helptexts.php:61 msgid "" "Find below an overview of the available filterbar items and their options:" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "filterbar item" msgstr "" -#: includes/sc_event-list_helptexts.php:46 -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:96 msgid "description" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "item options" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option values" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "default value" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option description" msgstr "" -#: includes/sc_event-list_helptexts.php:47 +#: includes/sc_event-list_helptexts.php:67 msgid "" "Show a list of all available years. Additional there are some special " "entries available (see item options)." msgstr "" -#: includes/sc_event-list_helptexts.php:48 -#: includes/sc_event-list_helptexts.php:53 +#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:82 msgid "Add an entry to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:49 -#: includes/sc_event-list_helptexts.php:54 +#: includes/sc_event-list_helptexts.php:73 +#: includes/sc_event-list_helptexts.php:84 msgid "Add an entry to show all upcoming events." msgstr "" -#: includes/sc_event-list_helptexts.php:50 -#: includes/sc_event-list_helptexts.php:55 +#: includes/sc_event-list_helptexts.php:74 +#: includes/sc_event-list_helptexts.php:85 msgid "Add an entry to show events in the past." msgstr "" -#: includes/sc_event-list_helptexts.php:51 +#: includes/sc_event-list_helptexts.php:75 msgid "Set descending or ascending order of year entries." msgstr "" -#: includes/sc_event-list_helptexts.php:52 +#: includes/sc_event-list_helptexts.php:78 msgid "Show a list of all available months." msgstr "" -#: includes/sc_event-list_helptexts.php:56 +#: includes/sc_event-list_helptexts.php:86 msgid "Set descending or ascending order of month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "php date-formats" msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "Set the displayed date format of the month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "With this item you can display the special entries %1$s, %2$s and %3$s. You " @@ -1637,65 +1659,65 @@ msgid "" "order." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "Specifies the displayed values and their order. The items must be seperated " "by %1$s." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Show a list of all available categories." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Add an entry to show events from all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "A link to reset the eventlist filter to standard." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "any text" msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "Set the caption of the link." msgstr "" -#: includes/sc_event-list_helptexts.php:61 +#: includes/sc_event-list_helptexts.php:93 msgid "Find below an overview of the available filterbar display options:" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "display option" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "available for" msgstr "" -#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:97 #, php-format msgid "Shows a horizonal list seperated by %1$s with a link to each item." msgstr "" -#: includes/sc_event-list_helptexts.php:65 +#: includes/sc_event-list_helptexts.php:98 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:66 +#: includes/sc_event-list_helptexts.php:99 msgid "Shows a simple link which can be clicked." msgstr "" -#: includes/sc_event-list_helptexts.php:67 +#: includes/sc_event-list_helptexts.php:102 msgid "Find below some declaration examples with descriptions:" msgstr "" -#: includes/sc_event-list_helptexts.php:69 +#: includes/sc_event-list_helptexts.php:104 #, php-format msgid "" "In this example you can see that the filterbar item and the used display " @@ -1703,22 +1725,22 @@ msgid "" "items seperated by a comma %2$s. These items will be displayed left-aligned." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "option_name" msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "value" msgstr "" -#: includes/sc_event-list_helptexts.php:72 +#: includes/sc_event-list_helptexts.php:107 #, php-format msgid "" "The 2 semicolon %1$s devides the bar in 3 section. The first section will be" @@ -1727,75 +1749,84 @@ msgid "" "left-aligned and the reset link will be on the right side." msgstr "" -#: includes/sc_event-list_helptexts.php:75 -#: includes/sc_event-list_helptexts.php:90 +#: includes/sc_event-list_helptexts.php:112 +#: includes/sc_event-list_helptexts.php:139 msgid "" "This attribute specifies if the title should be truncated to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:76 -#: includes/sc_event-list_helptexts.php:91 +#: includes/sc_event-list_helptexts.php:113 +#: includes/sc_event-list_helptexts.php:140 #, php-format msgid "" "With the standard value %1$s the full text is displayed, with %2$s the text " "is automatically truncated via css." msgstr "" -#: includes/sc_event-list_helptexts.php:77 -#: includes/sc_event-list_helptexts.php:92 -#: includes/sc_event-list_helptexts.php:107 +#: includes/sc_event-list_helptexts.php:114 +#: includes/sc_event-list_helptexts.php:141 +#: includes/sc_event-list_helptexts.php:180 msgid "This attribute has no influence if only a single event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:80 +#: includes/sc_event-list_helptexts.php:120 msgid "" "This attribute specifies if the starttime is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n" "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:85 +#: includes/sc_event-list_helptexts.php:130 msgid "" "This attribute specifies if the location is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n" "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:95 +#: includes/sc_event-list_helptexts.php:147 msgid "" "This attribute specifies if the categories are displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n" "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:100 +#: includes/sc_event-list_helptexts.php:157 msgid "" "This attribute specifies if the content is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n" "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:105 +#: includes/sc_event-list_helptexts.php:167 +msgid "" +"This attribute specifies if the excerpt is displayed in the event list.<br />\n" +"\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n" +"\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" +"\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" +"\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)." +msgstr "" + +#: includes/sc_event-list_helptexts.php:178 msgid "" "This attribute specifies if the content should be truncate to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:106 +#: includes/sc_event-list_helptexts.php:179 #, php-format msgid "With the standard value %1$s the full text is displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:110 +#: includes/sc_event-list_helptexts.php:186 msgid "" -"This attribute specifies if the content should be collapsed initially.<br />\n" +"This attribute specifies if the content or excerpt should be collapsed initially.<br />\n" "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n" "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n" "\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." msgstr "" -#: includes/sc_event-list_helptexts.php:116 +#: includes/sc_event-list_helptexts.php:197 msgid "" "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n" "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n" @@ -1803,7 +1834,7 @@ msgid "" "\t With \"events_with_content_only\" the link is only added in the event list for events with event content." msgstr "" -#: includes/sc_event-list_helptexts.php:122 +#: includes/sc_event-list_helptexts.php:208 msgid "" "This attribute specifies if a rss feed link should be added.<br />\n" "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n" @@ -1812,32 +1843,52 @@ msgid "" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:128 +#: includes/sc_event-list_helptexts.php:220 +msgid "" +"This attribute specifies if a ical feed link should be added.<br />\n" +"\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n" +"\t On that page you can also find some settings to modify the output.<br />\n" +"\t Choose \"false\" to never add and \"true\" to always add the link.<br />" +msgstr "" + +#: includes/sc_event-list_helptexts.php:231 msgid "" "This attribute specifies the page or post url for event links.<br />\n" "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n" "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget." msgstr "" -#: includes/sc_event-list_helptexts.php:135 +#: includes/sc_event-list_helptexts.php:243 msgid "" "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n" "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget." msgstr "" -#: includes/sc_event-list.php:135 +#: includes/sc_event-list.php:154 +msgid "Sorry, the requested event is not available!" +msgstr "" + +#: includes/sc_event-list.php:163 msgid "Event Information:" msgstr "Información del evento:" -#: includes/widget_helptexts.php:10 +#: includes/sc_event-list.php:405 +msgid "Link to RSS feed" +msgstr "" + +#: includes/sc_event-list.php:414 +msgid "Link to iCal feed" +msgstr "" + +#: includes/widget_helptexts.php:11 msgid "This option defines the displayed title for the widget." msgstr "" -#: includes/widget_helptexts.php:15 +#: includes/widget_helptexts.php:18 msgid "Category Filter" msgstr "Filtro de categoría" -#: includes/widget_helptexts.php:17 +#: includes/widget_helptexts.php:20 msgid "" "This option defines the categories of which events are shown. The standard " "is all or an empty string to show all events. Specify a category slug or a " @@ -1846,137 +1897,145 @@ msgid "" "all possibilities." msgstr "" -#: includes/widget_helptexts.php:22 +#: includes/widget_helptexts.php:27 msgid "Number of listed events" msgstr "Cantidad de eventos listados" -#: includes/widget_helptexts.php:24 +#: includes/widget_helptexts.php:29 msgid "The number of upcoming events to display" msgstr "" -#: includes/widget_helptexts.php:29 +#: includes/widget_helptexts.php:36 msgid "Truncate event title to" msgstr "" -#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52 -#: includes/widget_helptexts.php:67 +#: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65 +#: includes/widget_helptexts.php:93 msgid "characters" msgstr "caracteres" -#: includes/widget_helptexts.php:31 +#: includes/widget_helptexts.php:38 msgid "" "This option defines the number of displayed characters for the event title." msgstr "" -#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54 +#: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67 #, php-format msgid "" "Set this value to %1$s to view the full text, or set it to %2$s to " "automatically truncate the text via css." msgstr "" -#: includes/widget_helptexts.php:37 +#: includes/widget_helptexts.php:46 msgid "Show event starttime" msgstr "Mostrar horario de comienzo del evento" -#: includes/widget_helptexts.php:39 +#: includes/widget_helptexts.php:48 msgid "This option defines if the event start time will be displayed." msgstr "" -#: includes/widget_helptexts.php:44 +#: includes/widget_helptexts.php:55 msgid "Show event location" msgstr "Mostrar localización del evento" -#: includes/widget_helptexts.php:46 +#: includes/widget_helptexts.php:57 msgid "This option defines if the event location will be displayed." msgstr "" -#: includes/widget_helptexts.php:51 +#: includes/widget_helptexts.php:64 msgid "Truncate location to" msgstr "Recortar la localización a" -#: includes/widget_helptexts.php:53 +#: includes/widget_helptexts.php:66 msgid "" "If the event location is diplayed this option defines the number of " "displayed characters." msgstr "" -#: includes/widget_helptexts.php:59 +#: includes/widget_helptexts.php:74 +msgid "Show event excerpt" +msgstr "" + +#: includes/widget_helptexts.php:76 +msgid "This option defines if the event excerpt will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:83 msgid "Show event content" msgstr "" -#: includes/widget_helptexts.php:61 +#: includes/widget_helptexts.php:85 msgid "This option defines if the event content will be displayed." msgstr "" -#: includes/widget_helptexts.php:66 +#: includes/widget_helptexts.php:92 msgid "Truncate content to" msgstr "" -#: includes/widget_helptexts.php:68 +#: includes/widget_helptexts.php:94 msgid "" "If the event content are diplayed this option defines the number of diplayed" " characters." msgstr "" -#: includes/widget_helptexts.php:69 +#: includes/widget_helptexts.php:95 #, php-format msgid "Set this value to %1$s to view the full text." msgstr "" -#: includes/widget_helptexts.php:74 +#: includes/widget_helptexts.php:102 msgid "URL to the linked Event List page" msgstr "Link a la Página del Evento" -#: includes/widget_helptexts.php:76 +#: includes/widget_helptexts.php:104 msgid "" "This option defines the url to the linked Event List page. This option is " "required if you want to use one of the options below." msgstr "" -#: includes/widget_helptexts.php:81 +#: includes/widget_helptexts.php:111 msgid "Shortcode ID on linked page" msgstr "" -#: includes/widget_helptexts.php:83 +#: includes/widget_helptexts.php:113 msgid "" "This option defines the shortcode-id for the Event List on the linked page. " "Normally the standard value 1 is correct, you only have to change it if you " "use multiple event-list shortcodes on the linked page." msgstr "" -#: includes/widget_helptexts.php:90 +#: includes/widget_helptexts.php:122 msgid "" "With this option you can add a link to the single event page for every " "displayed event. You have to specify the url to the page and the shortcode " "id option if you want to use it." msgstr "" -#: includes/widget_helptexts.php:97 +#: includes/widget_helptexts.php:131 msgid "" "With this option you can add a link to the event-list page below the " "diplayed events. You have to specify the url to page option if you want to " "use it." msgstr "" -#: includes/widget_helptexts.php:102 +#: includes/widget_helptexts.php:138 msgid "Caption for the link" msgstr "" -#: includes/widget_helptexts.php:104 +#: includes/widget_helptexts.php:140 msgid "" "This option defines the text for the link to the Event List page if the " "approriate option is selected." msgstr "" -#: includes/widget.php:20 +#: includes/widget.php:21 msgid "With this widget a list of upcoming events can be displayed." msgstr "" -#: includes/widget.php:25 +#: includes/widget.php:26 msgid "Upcoming events" msgstr "Eventos próximos" -#: includes/widget.php:38 +#: includes/widget.php:40 msgid "show events page" msgstr "Mostrar página de eventos" diff --git a/wp-content/plugins/event-list/languages/event-list-es_ES.mo b/wp-content/plugins/event-list/languages/event-list-es_ES.mo index cb5ac238d952df55e1bec42139a341141dd4c10e..3218327c74b13a6a2f972e1689636528875f9fa4 100644 Binary files a/wp-content/plugins/event-list/languages/event-list-es_ES.mo and b/wp-content/plugins/event-list/languages/event-list-es_ES.mo differ diff --git a/wp-content/plugins/event-list/languages/event-list-es_ES.po b/wp-content/plugins/event-list/languages/event-list-es_ES.po index 39209867bbc658ae4b9f760578e32128828c4104..3c414162ca4a302a9969feb339d5e0047d430c65 100644 --- a/wp-content/plugins/event-list/languages/event-list-es_ES.po +++ b/wp-content/plugins/event-list/languages/event-list-es_ES.po @@ -1,5 +1,5 @@ # Translation file for the 'Event List' WordPress plugin -# Copyright (C) 2018 by mibuthu +# Copyright (C) 2021 by mibuthu # This file is distributed under the same license as the corresponding wordpress plugin. # # Translators: @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: wp-event-list\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n" -"POT-Creation-Date: 2018-05-27 12:20+0200\n" -"PO-Revision-Date: 2018-05-27 10:20+0000\n" +"POT-Creation-Date: 2021-04-24 11:28+0200\n" +"PO-Revision-Date: 2021-04-24 09:26+0000\n" "Last-Translator: mibuthu\n" "Language-Team: Spanish (Spain) (http://www.transifex.com/mibuthu/wp-event-list/language/es_ES/)\n" "MIME-Version: 1.0\n" @@ -17,117 +17,117 @@ msgstr "" "Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Errors during upgrade of plugin %1$s" msgstr "" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Upgrade of plugin %1$s successful" msgstr "" -#: admin/admin.php:106 admin/includes/admin-settings.php:65 +#: admin/admin.php:116 admin/includes/admin-settings.php:73 msgid "Event List Settings" msgstr "Ajustes de eventos" -#: admin/admin.php:106 +#: admin/admin.php:116 msgid "Settings" msgstr "Ajustes" -#: admin/admin.php:110 admin/includes/admin-about.php:37 +#: admin/admin.php:120 admin/includes/admin-about.php:43 msgid "About Event List" msgstr "Acerca de la lista de eventos" -#: admin/admin.php:110 +#: admin/admin.php:120 msgid "About" msgstr "Sobre" -#: admin/admin.php:132 +#: admin/admin.php:144 #, php-format msgid "%s Event" msgid_plural "%s Events" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 +#: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92 msgid "General" msgstr "General" -#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 -#: admin/includes/admin-about.php:105 +#: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88 +#: admin/includes/admin-about.php:117 msgid "Shortcode Attributes" msgstr "" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:82 msgid "Help and Instructions" msgstr "Ayuda e instrucciones" -#: admin/includes/admin-about.php:73 +#: admin/includes/admin-about.php:83 #, php-format msgid "You can manage the events %1$shere%2$s" msgstr "" -#: admin/includes/admin-about.php:74 +#: admin/includes/admin-about.php:84 msgid "To show the events on your site you have 2 possibilities" msgstr "Para mostrar los eventos en tu sitio web tienes 2 posibilidades" -#: admin/includes/admin-about.php:75 +#: admin/includes/admin-about.php:85 #, php-format msgid "you can place the <strong>shortcode</strong> %1$s on any page or post" msgstr "" -#: admin/includes/admin-about.php:76 +#: admin/includes/admin-about.php:86 #, php-format msgid "you can add the <strong>widget</strong> %1$s in your sidebars" msgstr "" -#: admin/includes/admin-about.php:77 +#: admin/includes/admin-about.php:87 msgid "" "The displayed events and their style can be modified with the available " "widget settings and the available attributes for the shortcode." msgstr "" -#: admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:88 #, php-format msgid "" "A list of all available shortcode attributes with their descriptions is " "available in the %1$s tab." msgstr "" -#: admin/includes/admin-about.php:79 +#: admin/includes/admin-about.php:89 msgid "The available widget options are described in their tooltip text." msgstr "" -#: admin/includes/admin-about.php:80 +#: admin/includes/admin-about.php:90 #, php-format msgid "" "If you enable one of the links options (%1$s or %2$s) in the widget you have" " to insert an URL to the linked event-list page." msgstr "" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120 msgid "Add links to the single events" msgstr "" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129 msgid "Add a link to the Event List page" msgstr "" -#: admin/includes/admin-about.php:81 +#: admin/includes/admin-about.php:91 msgid "" "This is required because the widget does not know in which page or post the " "shortcode was included." msgstr "" -#: admin/includes/admin-about.php:82 +#: admin/includes/admin-about.php:92 msgid "" "Additionally you have to insert the correct Shortcode id on the linked page." " This id describes which shortcode should be used on the given page or post " "if you have more than one." msgstr "" -#: admin/includes/admin-about.php:83 +#: admin/includes/admin-about.php:93 #, php-format msgid "" "The default value %1$s is normally o.k. (for pages with 1 shortcode only), " @@ -135,986 +135,991 @@ msgid "" "link on your linked page or post." msgstr "" -#: admin/includes/admin-about.php:84 +#: admin/includes/admin-about.php:94 #, php-format msgid "The id is available at the end of the URL parameters (e.g. %1$s)." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 #, php-format msgid "" "Be sure to also check the %1$s to get the plugin behaving just the way you " "want." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 msgid "Settings page" msgstr "" -#: admin/includes/admin-about.php:92 +#: admin/includes/admin-about.php:103 msgid "About the plugin author" msgstr "" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:105 #, php-format msgid "" "This plugin is developed by %1$s, you can find more information about the " "plugin on the %2$s." msgstr "" -#: admin/includes/admin-about.php:94 -msgid "wordpress plugin site" +#: admin/includes/admin-about.php:105 +msgid "WordPress plugin site" msgstr "" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:106 #, php-format msgid "If you like the plugin please rate it on the %1$s." msgstr "" -#: admin/includes/admin-about.php:95 -msgid "wordpress plugin review site" +#: admin/includes/admin-about.php:106 +msgid "WordPress plugin review site" msgstr "" -#: admin/includes/admin-about.php:96 +#: admin/includes/admin-about.php:107 msgid "" "If you want to support the plugin I would be happy to get a small donation" msgstr "" -#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 -#: admin/includes/admin-about.php:99 +#: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109 +#: admin/includes/admin-about.php:110 #, php-format msgid "Donate with %1$s" msgstr "" -#: admin/includes/admin-about.php:107 +#: admin/includes/admin-about.php:119 msgid "" "You have the possibility to modify the output if you add some of the " "following attributes to the shortcode." msgstr "" -#: admin/includes/admin-about.php:108 +#: admin/includes/admin-about.php:120 #, php-format msgid "" "You can combine and add as much attributes as you want. E.g. the shortcode " "including the attributes %1$s and %2$s would looks like this:" msgstr "" -#: admin/includes/admin-about.php:110 +#: admin/includes/admin-about.php:122 msgid "" "Below you can find a list of all supported attributes with their " "descriptions and available options:" msgstr "" -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:137 msgid "Attribute name" msgstr "Nombre de atributo" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:138 msgid "Value options" msgstr "Opciones de valor" -#: admin/includes/admin-about.php:126 +#: admin/includes/admin-about.php:139 msgid "Default value" msgstr "Valor por defecto" -#: admin/includes/admin-about.php:127 +#: admin/includes/admin-about.php:140 msgid "Description" msgstr "Descripción" -#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 -#: includes/sc_event-list_helptexts.php:31 +#: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:42 msgid "Filter Syntax" msgstr "Sintaxis de filtro" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:160 msgid "" "For date and cat filters you can specify complex filters with the following " "syntax:" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 #, php-format msgid "" "You can use %1$s and %2$s connections to define complex filters. " "Additionally you can set brackets %3$s for nested queries." msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "AND" msgstr "Y" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "OR" msgstr "O" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "or" msgstr "o" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "and" msgstr "y" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:162 msgid "Examples for cat filters:" msgstr "Ejemplos de filtros cat:" -#: admin/includes/admin-about.php:149 +#: admin/includes/admin-about.php:163 #, php-format msgid "Show all events with category %1$s." msgstr "" -#: admin/includes/admin-about.php:150 +#: admin/includes/admin-about.php:164 #, php-format msgid "Show all events with category %1$s or %2$s." msgstr "" -#: admin/includes/admin-about.php:151 +#: admin/includes/admin-about.php:165 #, php-format msgid "" "Show all events with category %1$s and all events where category %2$s as " "well as %3$s is selected." msgstr "" -#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34 msgid "Available Date Formats" msgstr "Formatos de fecha disponibles" -#: admin/includes/admin-about.php:157 +#: admin/includes/admin-about.php:172 msgid "For date filters you can use the following date formats:" msgstr "" -#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34 msgid "Available Date Range Formats" msgstr "Formatos Rango Fecha Disponible" -#: admin/includes/admin-about.php:166 +#: admin/includes/admin-about.php:182 msgid "For date filters you can use the following daterange formats:" msgstr "" -#: admin/includes/admin-about.php:178 +#: admin/includes/admin-about.php:195 msgid "Value" msgstr "Valor" -#: admin/includes/admin-about.php:182 +#: admin/includes/admin-about.php:199 msgid "Example" msgstr "Ejemplo" -#: admin/includes/admin-categories.php:38 +#: admin/includes/admin-categories.php:54 msgid "Synchronize with post categories" msgstr "" -#: admin/includes/admin-categories.php:46 +#: admin/includes/admin-categories.php:63 #, php-format msgid "%1$s categories modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:47 +#: admin/includes/admin-categories.php:64 #, php-format msgid "%1$s categories added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:48 +#: admin/includes/admin-categories.php:65 #, php-format msgid "%1$s categories deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:50 +#: admin/includes/admin-categories.php:67 #, php-format msgid "%1$s categories not modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:51 +#: admin/includes/admin-categories.php:68 #, php-format msgid "%1$s categories not added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:52 +#: admin/includes/admin-categories.php:69 #, php-format msgid "%1$s categories not deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:55 +#: admin/includes/admin-categories.php:72 msgid "An Error occured during the category sync" msgstr "" -#: admin/includes/admin-categories.php:59 +#: admin/includes/admin-categories.php:75 msgid "Category sync finished" msgstr "" -#: admin/includes/admin-category-sync.php:45 +#: admin/includes/admin-category-sync.php:54 msgid "Error: You are not allowed to view this page!" msgstr "" -#: admin/includes/admin-category-sync.php:62 +#: admin/includes/admin-category-sync.php:70 msgid "Affected Categories when switching to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:63 +#: admin/includes/admin-category-sync.php:71 msgid "Switch option to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:64 +#: admin/includes/admin-category-sync.php:72 msgid "" "If you proceed, all post categories will be copied and all events will be " "re-assigned to this new categories." msgstr "" -#: admin/includes/admin-category-sync.php:65 +#: admin/includes/admin-category-sync.php:73 msgid "" "Afterwards the event categories are independent of the post categories." msgstr "" -#: admin/includes/admin-category-sync.php:68 +#: admin/includes/admin-category-sync.php:75 msgid "Affected Categories when switching to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:69 +#: admin/includes/admin-category-sync.php:76 msgid "Switch option to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:70 +#: admin/includes/admin-category-sync.php:77 msgid "" "Take a detailed look at the affected categories above before you proceed! " "All seperate event categories will be deleted, this cannot be undone!" msgstr "" -#: admin/includes/admin-category-sync.php:73 +#: admin/includes/admin-category-sync.php:79 msgid "Event Categories: Synchronise with Post Categories" msgstr "" -#: admin/includes/admin-category-sync.php:74 +#: admin/includes/admin-category-sync.php:80 msgid "Start synchronisation" msgstr "" -#: admin/includes/admin-category-sync.php:75 +#: admin/includes/admin-category-sync.php:81 msgid "" "If this option is enabled the above listed categories will be deleted and " "removed from the existing events!" msgstr "" -#: admin/includes/admin-category-sync.php:90 +#: admin/includes/admin-category-sync.php:96 msgid "Categories to modify" msgstr "" -#: admin/includes/admin-category-sync.php:91 +#: admin/includes/admin-category-sync.php:97 msgid "Categories to add" msgstr "" -#: admin/includes/admin-category-sync.php:92 +#: admin/includes/admin-category-sync.php:98 msgid "Categories to delete (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:93 +#: admin/includes/admin-category-sync.php:99 msgid "Delete not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:97 +#: admin/includes/admin-category-sync.php:102 msgid "Categories with differences" msgstr "" -#: admin/includes/admin-category-sync.php:98 +#: admin/includes/admin-category-sync.php:103 msgid "Categories to add (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:99 +#: admin/includes/admin-category-sync.php:104 msgid "Add not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:117 +#: admin/includes/admin-category-sync.php:123 msgid "none" msgstr "" -#: admin/includes/admin-import.php:49 +#: admin/includes/admin-import.php:58 msgid "Import Events" msgstr "Importar Eventos" -#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116 +#: admin/includes/admin-import.php:220 msgid "Step" msgstr "Paso" -#: admin/includes/admin-import.php:69 +#: admin/includes/admin-import.php:79 msgid "Set import file and options" msgstr "" -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:82 #, php-format msgid "Proceed with Step %1$s" msgstr "" -#: admin/includes/admin-import.php:75 +#: admin/includes/admin-import.php:85 msgid "Example file" msgstr "Archivo de ejemplo" -#: admin/includes/admin-import.php:76 +#: admin/includes/admin-import.php:86 #, php-format msgid "" "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)" msgstr "" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "Note" msgstr "Nota" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "" "Do not change the column header and separator line (first two lines), " "otherwise the import will fail!" msgstr "" -#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 +#: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103 msgid "Sorry, there has been an error." msgstr "" -#: admin/includes/admin-import.php:85 +#: admin/includes/admin-import.php:96 msgid "The file does not exist, please try again." msgstr "" -#: admin/includes/admin-import.php:93 +#: admin/includes/admin-import.php:104 msgid "The uploaded file does not have the required csv extension." msgstr "" -#: admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:116 msgid "Events review and additonal category selection" msgstr "" -#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133 msgid "Error" msgstr "" -#: admin/includes/admin-import.php:111 +#: admin/includes/admin-import.php:122 msgid "This CSV file cannot be imported" msgstr "" -#: admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:133 msgid "None of the events in this CSV file can be imported" msgstr "" -#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179 msgid "Warning" msgstr "" -#: admin/includes/admin-import.php:126 +#: admin/includes/admin-import.php:138 #, php-format msgid "There is %1$s event which cannot be imported" msgid_plural "There are %1$s events which cannot be imported" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-import.php:134 +#: admin/includes/admin-import.php:150 #, php-format msgid "CSV line %1$s" msgstr "" -#: admin/includes/admin-import.php:144 +#: admin/includes/admin-import.php:160 msgid "You can still import all other events listed below." msgstr "" -#: admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:179 msgid "" "The following category slugs are not available and will be removed from the " "imported events" msgstr "" -#: admin/includes/admin-import.php:169 +#: admin/includes/admin-import.php:185 msgid "" "If you want to keep these categories, please create these Categories first " "and do the import afterwards." msgstr "" -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:220 msgid "Import result" msgstr "" -#: admin/includes/admin-import.php:201 +#: admin/includes/admin-import.php:223 #, php-format msgid "Import of %1$s events successful!" msgstr "" -#: admin/includes/admin-import.php:202 +#: admin/includes/admin-import.php:224 msgid "Go back to All Events" msgstr "" -#: admin/includes/admin-import.php:206 +#: admin/includes/admin-import.php:227 msgid "Errors during Import" msgstr "" -#: admin/includes/admin-import.php:215 +#: admin/includes/admin-import.php:235 msgid "Event from CSV-line" msgstr "" -#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 -#: includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77 +#: includes/widget_helptexts.php:9 msgid "Title" msgstr "Título" -#: admin/includes/admin-import.php:227 +#: admin/includes/admin-import.php:248 msgid "Start Date" msgstr "Fecha Inicio" -#: admin/includes/admin-import.php:228 +#: admin/includes/admin-import.php:249 msgid "End Date" msgstr "Fecha Final" -#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 -#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 +#: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:69 msgid "Time" msgstr "Hora" -#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62 -#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57 -#: includes/options_helptexts.php:58 +#: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78 +#: admin/includes/admin-new.php:107 includes/options_helptexts.php:75 +#: includes/options_helptexts.php:76 msgid "Location" msgstr "Ubicación" -#: admin/includes/admin-import.php:231 +#: admin/includes/admin-import.php:252 msgid "Content" msgstr "" -#: admin/includes/admin-import.php:232 +#: admin/includes/admin-import.php:253 msgid "Category slugs" msgstr "" -#: admin/includes/admin-import.php:274 +#: admin/includes/admin-import.php:297 msgid "Header line is missing or not correct!" msgstr "" -#: admin/includes/admin-import.php:275 +#: admin/includes/admin-import.php:298 #, php-format msgid "" "Have a look at the %1$sexample file%2$s to see the correct header line " "format." msgstr "" -#: admin/includes/admin-import.php:281 +#: admin/includes/admin-import.php:305 #, php-format msgid "Wrong number of items in line (%1$s items found, 6-7 required)" msgstr "" -#: admin/includes/admin-import.php:309 +#: admin/includes/admin-import.php:334 msgid "Empty event title found" msgstr "" -#: admin/includes/admin-import.php:315 +#: admin/includes/admin-import.php:340 msgid "Wrong date format for startdate" msgstr "" -#: admin/includes/admin-import.php:324 +#: admin/includes/admin-import.php:348 msgid "Wrong date format for enddate" msgstr "" -#: admin/includes/admin-import.php:365 +#: admin/includes/admin-import.php:401 msgid "Import events" msgstr "" -#: admin/includes/admin-import.php:366 +#: admin/includes/admin-import.php:402 msgid "Add additional categories" msgstr "" -#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +#: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257 msgid "Import" msgstr "Importar" -#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +#: admin/includes/admin-import.php:428 includes/events_post_type.php:78 msgid "No events found" msgstr "" -#: admin/includes/admin-import.php:432 +#: admin/includes/admin-import.php:473 msgid "Saving of event failed!" msgstr "" -#: admin/includes/admin-main.php:60 +#: admin/includes/admin-main.php:76 msgid "Event Date" msgstr "" -#: admin/includes/admin-main.php:64 +#: admin/includes/admin-main.php:80 msgid "Author" msgstr "Autor" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 #, php-format msgid "Add a copy of %1$s" msgstr "" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 msgid "Copy" msgstr "" -#: admin/includes/admin-new.php:51 +#: admin/includes/admin-new.php:58 msgid "Event data" msgstr "" -#: admin/includes/admin-new.php:80 +#: admin/includes/admin-new.php:90 msgid "Add Copy" msgstr "" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "Date" msgstr "Fecha" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "required" msgstr "obligatorio" -#: admin/includes/admin-new.php:87 +#: admin/includes/admin-new.php:101 msgid "Multi-Day Event" msgstr "Evento de varios días" -#: admin/includes/admin-new.php:106 +#: admin/includes/admin-new.php:121 msgid "Event Title" msgstr "" -#: admin/includes/admin-new.php:121 +#: admin/includes/admin-new.php:137 msgid "Event Content" msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203 msgid "Event updated." msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205 msgid "View event" msgstr "" -#: admin/includes/admin-new.php:184 +#: admin/includes/admin-new.php:204 #, php-format msgid "Event restored to revision from %1$s" msgstr "" -#: admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:205 msgid "Event published." msgstr "" -#: admin/includes/admin-new.php:187 +#: admin/includes/admin-new.php:207 msgid "Event submitted." msgstr "" -#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209 +#: admin/includes/admin-new.php:210 msgid "Preview event" msgstr "" -#: admin/includes/admin-new.php:188 +#: admin/includes/admin-new.php:208 #, php-format msgid "Event scheduled for: %1$s>" msgstr "" -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:210 msgid "Event draft updated." msgstr "" -#: admin/includes/admin-settings.php:71 +#: admin/includes/admin-settings.php:79 msgid "Go to Event Category switching page" msgstr "" -#: admin/includes/admin-settings.php:83 +#: admin/includes/admin-settings.php:93 msgid "Frontend Settings" msgstr "Configuración de interfaz" -#: admin/includes/admin-settings.php:84 +#: admin/includes/admin-settings.php:94 msgid "Admin Page Settings" msgstr "Configuración de página de administrador" -#: admin/includes/admin-settings.php:85 +#: admin/includes/admin-settings.php:95 msgid "Feed Settings" msgstr "Configuración Conectores" -#: admin/includes/admin-settings.php:86 +#: admin/includes/admin-settings.php:96 msgid "Category Taxonomy" msgstr "" -#: includes/daterange_helptexts.php:7 +#: includes/daterange_helptexts.php:8 msgid "Year" msgstr "Año" -#: includes/daterange_helptexts.php:8 +#: includes/daterange_helptexts.php:9 msgid "A year can be specified in 4 digit format." msgstr "" -#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14 -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:47 #, php-format msgid "" "For a start date filter the first day of %1$s is used, in an end date the " "last day." msgstr "" -#: includes/daterange_helptexts.php:9 +#: includes/daterange_helptexts.php:10 msgid "the resulting year" msgstr "" -#: includes/daterange_helptexts.php:12 +#: includes/daterange_helptexts.php:15 msgid "Month" msgstr "Mes" -#: includes/daterange_helptexts.php:13 +#: includes/daterange_helptexts.php:16 msgid "" "A month can be specified with 4 digits for the year and 2 digits for the " "month, seperated by a hyphen (-)." msgstr "" -#: includes/daterange_helptexts.php:14 +#: includes/daterange_helptexts.php:17 msgid "the resulting month" msgstr "" -#: includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:22 msgid "Day" msgstr "Día" -#: includes/daterange_helptexts.php:18 +#: includes/daterange_helptexts.php:23 msgid "" "A day can be specified in the format 4 digits for the year, 2 digits for the" " month and 2 digets for the day, seperated by hyphens (-)." msgstr "" -#: includes/daterange_helptexts.php:21 +#: includes/daterange_helptexts.php:28 msgid "Relative Year" msgstr "Año relativo" -#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28 -#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55 #, php-format msgid "%1$s from now can be specified in the following notation: %2$s" msgstr "" -#: includes/daterange_helptexts.php:22 +#: includes/daterange_helptexts.php:29 msgid "A relative year" msgstr "" -#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29 -#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38 +#: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56 #, php-format msgid "" "This means you can specify a positive or negative (%1$s) %2$s from now with " "%3$s or %4$s attached (see also the example below)." msgstr "" -#: includes/daterange_helptexts.php:23 +#: includes/daterange_helptexts.php:30 msgid "number of years" msgstr "" -#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30 -#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44 +#: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39 +#: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57 #, php-format msgid "Additionally the following values are available: %1$s" msgstr "" -#: includes/daterange_helptexts.php:27 +#: includes/daterange_helptexts.php:36 msgid "Relative Month" msgstr "Mes relativo" -#: includes/daterange_helptexts.php:28 +#: includes/daterange_helptexts.php:37 msgid "A relative month" msgstr "Un mes relativo" -#: includes/daterange_helptexts.php:29 +#: includes/daterange_helptexts.php:38 msgid "number of months" msgstr "número de meses" -#: includes/daterange_helptexts.php:33 +#: includes/daterange_helptexts.php:44 msgid "Relative Week" msgstr "Semana relativa" -#: includes/daterange_helptexts.php:34 +#: includes/daterange_helptexts.php:45 msgid "A relative week" msgstr "Una semana relativa" -#: includes/daterange_helptexts.php:35 +#: includes/daterange_helptexts.php:46 msgid "number of weeks" msgstr "número de semanas" -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:47 msgid "the resulting week" msgstr "" -#: includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:48 #, php-format msgid "" "The first day of the week is depending on the option %1$s which can be found" " and changed in %2$s." msgstr "" -#: includes/daterange_helptexts.php:41 +#: includes/daterange_helptexts.php:54 msgid "Relative Day" msgstr "Día relativo" -#: includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:55 msgid "A relative day" msgstr "Un día relativo" -#: includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:56 msgid "number of days" msgstr "Número de días" -#: includes/daterange_helptexts.php:49 +#: includes/daterange_helptexts.php:64 msgid "Date range" msgstr "Rango de fechas" -#: includes/daterange_helptexts.php:50 +#: includes/daterange_helptexts.php:66 msgid "" "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n" "\t For the start and end date any available date format can be used." msgstr "" -#: includes/daterange_helptexts.php:55 +#: includes/daterange_helptexts.php:75 msgid "This value defines a range without any limits." msgstr "" -#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61 -#: includes/daterange_helptexts.php:66 +#: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83 +#: includes/daterange_helptexts.php:90 #, php-format msgid "The corresponding date_range format is: %1$s" msgstr "" -#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 +#: includes/daterange_helptexts.php:81 includes/filterbar.php:310 msgid "Upcoming" msgstr "Próximamente" -#: includes/daterange_helptexts.php:60 +#: includes/daterange_helptexts.php:82 msgid "This value defines a range from the actual day to the future." msgstr "" -#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 +#: includes/daterange_helptexts.php:88 includes/filterbar.php:318 msgid "Past" msgstr "Pasado" -#: includes/daterange_helptexts.php:65 +#: includes/daterange_helptexts.php:89 msgid "This value defines a range from the past to the previous day." msgstr "" -#: includes/event.php:107 +#: includes/event.php:124 msgid "No valid start date provided" msgstr "" -#: includes/events_post_type.php:60 +#: includes/event.php:299 includes/event.php:301 +#: includes/sc_event-list.php:298 +msgid "read more" +msgstr "" + +#: includes/events_post_type.php:69 msgid "Events" msgstr "Eventos" -#: includes/events_post_type.php:61 +#: includes/events_post_type.php:70 msgid "Event" msgstr "" -#: includes/events_post_type.php:62 +#: includes/events_post_type.php:71 msgid "Add New" msgstr "Añadir Nuevo" -#: includes/events_post_type.php:63 +#: includes/events_post_type.php:72 msgid "Add New Event" msgstr "Añadir Nuevo Evento" -#: includes/events_post_type.php:64 +#: includes/events_post_type.php:73 msgid "Edit Event" msgstr "Editar Evento" -#: includes/events_post_type.php:65 +#: includes/events_post_type.php:74 msgid "New Event" msgstr "" -#: includes/events_post_type.php:66 +#: includes/events_post_type.php:75 msgid "View Event" msgstr "" -#: includes/events_post_type.php:67 +#: includes/events_post_type.php:76 msgid "View Events" msgstr "" -#: includes/events_post_type.php:68 +#: includes/events_post_type.php:77 msgid "Search Events" msgstr "" -#: includes/events_post_type.php:70 +#: includes/events_post_type.php:79 msgid "No events found in Trash" msgstr "" -#: includes/events_post_type.php:72 +#: includes/events_post_type.php:81 msgid "All Events" msgstr "Añadir Eventos" -#: includes/events_post_type.php:73 +#: includes/events_post_type.php:82 msgid "Event Archives" msgstr "" -#: includes/events_post_type.php:74 +#: includes/events_post_type.php:83 msgid "Event Attributes" msgstr "" -#: includes/events_post_type.php:75 +#: includes/events_post_type.php:84 msgid "Insert into event" msgstr "" -#: includes/events_post_type.php:76 +#: includes/events_post_type.php:85 msgid "Uploaded to this event" msgstr "" -#: includes/events_post_type.php:77 +#: includes/events_post_type.php:86 msgid "Event List" msgstr "Listado Eventos" -#: includes/events_post_type.php:78 +#: includes/events_post_type.php:87 msgid "Filter events list" msgstr "" -#: includes/events_post_type.php:79 +#: includes/events_post_type.php:88 msgid "Events list navigation" msgstr "" -#: includes/events_post_type.php:80 +#: includes/events_post_type.php:89 msgid "Events list" msgstr "" -#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +#: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90 msgid "Reset" msgstr "" -#: includes/filterbar.php:278 +#: includes/filterbar.php:296 msgid "All" msgstr "Todos" -#: includes/filterbar.php:281 +#: includes/filterbar.php:298 msgid "All Dates" msgstr "" -#: includes/options_helptexts.php:10 +#: includes/options_helptexts.php:11 msgid "CSV File to import" msgstr "Importar vía archivo CSV" -#: includes/options_helptexts.php:12 +#: includes/options_helptexts.php:13 msgid "Please select the file which contains the event data in CSV format." msgstr "" -#: includes/options_helptexts.php:15 +#: includes/options_helptexts.php:18 msgid "Used date format" msgstr "Formato de Fecha utilizado" -#: includes/options_helptexts.php:17 +#: includes/options_helptexts.php:21 msgid "" "With this option the given date format for event start and end date in the " "CSV file can be specified." msgstr "" -#: includes/options_helptexts.php:18 +#: includes/options_helptexts.php:23 #, php-format msgid "" "You can use the php date format options given in %1$s, the most important " "ones are:" msgstr "" -#: includes/options_helptexts.php:20 +#: includes/options_helptexts.php:26 msgid "full year representation, with 4 digits" msgstr "" -#: includes/options_helptexts.php:21 +#: includes/options_helptexts.php:27 msgid "numeric representation of a month, with leading zeros" msgstr "" -#: includes/options_helptexts.php:22 +#: includes/options_helptexts.php:28 msgid "day of the month, 2 digits with leading zeros" msgstr "" -#: includes/options_helptexts.php:24 +#: includes/options_helptexts.php:30 msgid "" "If the date format in the CSV file does not correspond to the given format, " "the import script tries to recognize the date format by itself." msgstr "" -#: includes/options_helptexts.php:25 +#: includes/options_helptexts.php:31 msgid "" "But this can cause problems or result in wrong dates, so it is recommended " "to specify the correct date format here." msgstr "" -#: includes/options_helptexts.php:26 +#: includes/options_helptexts.php:32 msgid "Examples" msgstr "" -#: includes/options_helptexts.php:33 +#: includes/options_helptexts.php:41 msgid "Text for no events" msgstr "Texto para ningún evento" -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:43 msgid "" "This option defines the displayed text when no events are available for the " "selected view." msgstr "" -#: includes/options_helptexts.php:38 +#: includes/options_helptexts.php:48 msgid "Multiday filter range" msgstr "" -#: includes/options_helptexts.php:39 +#: includes/options_helptexts.php:49 msgid "Use the complete event range in the date filter" msgstr "" -#: includes/options_helptexts.php:40 +#: includes/options_helptexts.php:51 msgid "" "This option defines if the complete range of a multiday event shall be " "considered in the date filter." msgstr "" -#: includes/options_helptexts.php:41 +#: includes/options_helptexts.php:52 msgid "" "If disabled, only the start day of an event is considered in the filter." msgstr "" -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:53 msgid "" "For an example multiday event which started yesterday and ends tomorrow this" " means, that it is displayed in umcoming dates when this option is enabled, " "but it is hidden when the option is disabled." msgstr "" -#: includes/options_helptexts.php:45 +#: includes/options_helptexts.php:58 msgid "Date display" msgstr "Indicación de la fecha" -#: includes/options_helptexts.php:46 +#: includes/options_helptexts.php:59 msgid "Show the date only once per day" msgstr "" -#: includes/options_helptexts.php:47 +#: includes/options_helptexts.php:61 msgid "" "With this option enabled the date is only displayed once per day if more " "than one event is available on the same day." msgstr "" -#: includes/options_helptexts.php:48 +#: includes/options_helptexts.php:62 msgid "" "If enabled, the events are ordered in a different way (end date before start" " time) to allow using the same date for as much events as possible." msgstr "" -#: includes/options_helptexts.php:51 +#: includes/options_helptexts.php:67 msgid "HTML tags" msgstr "Etiquetas HTML" -#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:75 #, php-format msgid "Allow HTML tags in the event field \"%1$s\"" msgstr "" -#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 +#: includes/options_helptexts.php:69 includes/options_helptexts.php:76 #, php-format msgid "" "This option specifies if HTML tags are allowed in the event field \"%1$s\"." msgstr "" -#: includes/options_helptexts.php:61 +#: includes/options_helptexts.php:81 msgid "Preferred language file" msgstr "" -#: includes/options_helptexts.php:62 +#: includes/options_helptexts.php:82 msgid "Load translations from general language directory first" msgstr "" -#: includes/options_helptexts.php:63 +#: includes/options_helptexts.php:84 #, php-format msgid "" "The default is to load the %1$s translation file from the plugin language " "directory first (%2$s)." msgstr "" -#: includes/options_helptexts.php:64 +#: includes/options_helptexts.php:85 #, php-format msgid "" "If you want to load your own language file from the general language " @@ -1122,295 +1127,312 @@ msgid "" "language directory, you have to enable this option." msgstr "" -#: includes/options_helptexts.php:68 +#: includes/options_helptexts.php:91 msgid "Events permalink slug" msgstr "" -#: includes/options_helptexts.php:69 +#: includes/options_helptexts.php:92 msgid "" "With this option the slug for the events permalink URLs can be defined." msgstr "" -#: includes/options_helptexts.php:72 +#: includes/options_helptexts.php:97 msgid "Text for \"Show content\"" msgstr "" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:98 msgid "" "With this option the displayed text for the link to show the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:76 +#: includes/options_helptexts.php:103 msgid "Text for \"Hide content\"" msgstr "" -#: includes/options_helptexts.php:77 +#: includes/options_helptexts.php:104 msgid "" "With this option the displayed text for the link to hide the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:109 msgid "Disable CSS file" msgstr "Deshabitar CSS" -#: includes/options_helptexts.php:81 +#: includes/options_helptexts.php:110 #, php-format msgid "Disable the %1$s file." msgstr "" -#: includes/options_helptexts.php:82 +#: includes/options_helptexts.php:112 #, php-format msgid "With this option you can disable the inclusion of the %1$s file." msgstr "" -#: includes/options_helptexts.php:83 +#: includes/options_helptexts.php:113 msgid "" "This normally only make sense if you have css conflicts with your theme and " "want to set all required css styles somewhere else (e.g. in the theme css)." msgstr "" -#: includes/options_helptexts.php:87 +#: includes/options_helptexts.php:119 msgid "Date format in edit form" msgstr "" -#: includes/options_helptexts.php:88 +#: includes/options_helptexts.php:121 msgid "" "This option sets the displayed date format for the event date fields in the " "event new / edit form." msgstr "" -#: includes/options_helptexts.php:89 +#: includes/options_helptexts.php:122 msgid "The default is an empty string to use the Wordpress standard setting." msgstr "" -#: includes/options_helptexts.php:90 +#: includes/options_helptexts.php:123 #, php-format msgid "" "All available options to specify the date format can be found %1$shere%2$s." msgstr "" -#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 +#: includes/options_helptexts.php:129 msgid "Enable RSS feed" msgstr "" -#: includes/options_helptexts.php:95 -msgid "Enable support for an event RSS feed" +#: includes/options_helptexts.php:130 +msgid "Enable support for the event RSS feed" msgstr "" -#: includes/options_helptexts.php:96 -msgid "This option activates a RSS feed for the events." +#: includes/options_helptexts.php:132 +msgid "" +"This option activates the RSS feed for the events and adds a feed link in " +"the html head." msgstr "" -#: includes/options_helptexts.php:97 +#: includes/options_helptexts.php:133 msgid "" "You have to enable this option if you want to use one of the RSS feed " "features." msgstr "" -#: includes/options_helptexts.php:100 -msgid "Feed name" +#: includes/options_helptexts.php:138 +msgid "Enable iCal feed" msgstr "" -#: includes/options_helptexts.php:101 -#, php-format -msgid "This option sets the feed name. The default value is %1$s." +#: includes/options_helptexts.php:139 +msgid "Enable support for the event iCal feed" msgstr "" -#: includes/options_helptexts.php:102 -#, php-format -msgid "" -"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " -"enabled)." +#: includes/options_helptexts.php:141 +msgid "This option activates the iCal feed for events." msgstr "" -#: includes/options_helptexts.php:105 -msgid "Feed Description" +#: includes/options_helptexts.php:142 +msgid "" +"You have to enable this option if you want to use one of the iCal features." msgstr "" -#: includes/options_helptexts.php:106 -#, php-format -msgid "This options set the feed description. The default value is %1$s." +#: includes/options_helptexts.php:147 +msgid "Position of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:107 -msgid "" -"This description will be used in the title for the feed link in the html " -"head and for the description in the feed itself." +#: includes/options_helptexts.php:149 +msgid "at the top (above the navigation bar)" msgstr "" -#: includes/options_helptexts.php:110 -msgid "Listed events" +#: includes/options_helptexts.php:150 +msgid "between navigation bar and events" msgstr "" -#: includes/options_helptexts.php:111 -msgid "Only show upcoming events in feed" +#: includes/options_helptexts.php:151 +msgid "at the bottom" msgstr "" -#: includes/options_helptexts.php:112 +#: includes/options_helptexts.php:153 msgid "" -"If this option is enabled only the upcoming events are listed in the feed." +"This option specifies the position of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:113 -msgid "If disabled all events (upcoming and past) will be listed." +#: includes/options_helptexts.php:158 +msgid "Align of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:116 -msgid "Add RSS feed link in head" +#: includes/options_helptexts.php:160 +msgid "left" msgstr "" -#: includes/options_helptexts.php:117 -msgid "Add RSS feed link in the html head" +#: includes/options_helptexts.php:161 +msgid "center" msgstr "" -#: includes/options_helptexts.php:118 -msgid "This option adds a RSS feed in the html head for the events." +#: includes/options_helptexts.php:162 +msgid "right" msgstr "" -#: includes/options_helptexts.php:119 -msgid "There are 2 alternatives to include the RSS feed" +#: includes/options_helptexts.php:164 +msgid "" +"This option specifies the align of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:120 -msgid "" -"The first way is this option to include a link in the html head. This link " -"will be recognized by browers or feed readers." +#: includes/options_helptexts.php:169 +msgid "RSS feed name" msgstr "" -#: includes/options_helptexts.php:121 +#: includes/options_helptexts.php:171 #, php-format -msgid "" -"The second way is to include a visible feed link directly in the event list." -" This can be done by setting the shortcode attribute %1$s to %2$s." +msgid "This option sets the RSS feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:122 +#: includes/options_helptexts.php:172 #, php-format -msgid "This option is only valid if the setting %1$s is enabled." +msgid "" +"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " +"enabled)." msgstr "" -#: includes/options_helptexts.php:125 -msgid "Position of the RSS feed link" +#: includes/options_helptexts.php:177 +msgid "RSS feed Description" msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the top (above the navigation bar)" +#: includes/options_helptexts.php:179 +#, php-format +msgid "This options set the RSS feed description. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:126 -msgid "between navigation bar and events" +#: includes/options_helptexts.php:180 +msgid "" +"This description will be used in the title for the feed link in the html " +"head and for the description in the feed itself." msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the bottom" +#: includes/options_helptexts.php:185 +msgid "RSS feed events" msgstr "" -#: includes/options_helptexts.php:127 -msgid "" -"This option specifies the position of the RSS feed link in the event list." +#: includes/options_helptexts.php:186 +msgid "Only show upcoming events in the RSS feed" msgstr "" -#: includes/options_helptexts.php:128 includes/options_helptexts.php:134 -#: includes/options_helptexts.php:140 includes/options_helptexts.php:146 -#, php-format +#: includes/options_helptexts.php:188 msgid "" -"You have to set the shortcode attribute %1$s to %2$s if you want to show the" -" feed link." +"If this option is enabled only the upcoming events are listed in the RSS " +"feed." msgstr "" -#: includes/options_helptexts.php:131 -msgid "Align of the RSS feed link" +#: includes/options_helptexts.php:189 includes/options_helptexts.php:215 +msgid "If disabled, all events (upcoming and past) will be listed." msgstr "" -#: includes/options_helptexts.php:132 -msgid "left" +#: includes/options_helptexts.php:194 +msgid "RSS link text" msgstr "" -#: includes/options_helptexts.php:132 -msgid "center" +#: includes/options_helptexts.php:196 +msgid "This option sets the caption of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:132 -msgid "right" +#: includes/options_helptexts.php:197 +msgid "Use an empty text to only show the rss image." msgstr "" -#: includes/options_helptexts.php:133 +#: includes/options_helptexts.php:198 +#, php-format msgid "" -"This option specifies the align of the RSS feed link in the event list." +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" RSS feed link." msgstr "" -#: includes/options_helptexts.php:137 -msgid "Feed link text" +#: includes/options_helptexts.php:203 +msgid "iCal feed name" msgstr "" -#: includes/options_helptexts.php:138 +#: includes/options_helptexts.php:205 +#, php-format +msgid "This option sets the iCal feed name. The default value is %1$s." +msgstr "" + +#: includes/options_helptexts.php:206 +#, php-format msgid "" -"This option specifies the caption of the RSS feed link in the event list." +"This name will be used in the iCal feed url (e.g. %1$s, or %2$s with " +"permalinks enabled)." msgstr "" -#: includes/options_helptexts.php:139 +#: includes/options_helptexts.php:211 +msgid "iCal feed events" +msgstr "" + +#: includes/options_helptexts.php:212 +msgid "Only show upcoming events in the iCal feed" +msgstr "" + +#: includes/options_helptexts.php:214 msgid "" -"Insert an empty text to hide any text if you only want to show the rss " -"image." +"If this option is enabled only the upcoming events are listed in the iCal " +"file." +msgstr "" + +#: includes/options_helptexts.php:220 +msgid "iCal link text" msgstr "" -#: includes/options_helptexts.php:143 -msgid "Feed link image" +#: includes/options_helptexts.php:222 +msgid "This option sets the iCal link text in the event list." msgstr "" -#: includes/options_helptexts.php:144 -msgid "Show rss image in feed link" +#: includes/options_helptexts.php:223 +msgid "Use an empty text to only show the iCal image." msgstr "" -#: includes/options_helptexts.php:145 +#: includes/options_helptexts.php:224 +#, php-format msgid "" -"This option specifies if the an image should be dispayed in the feed link in" -" front of the text." +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" iCal feed link." msgstr "" -#: includes/options_helptexts.php:151 +#: includes/options_helptexts.php:231 msgid "Event Category handling" msgstr "" -#: includes/options_helptexts.php:152 +#: includes/options_helptexts.php:232 msgid "Use Post Categories" msgstr "" -#: includes/options_helptexts.php:153 +#: includes/options_helptexts.php:234 msgid "" "Do not maintain seperate categories for the events, and use the existing " "post categories instead." msgstr "" -#: includes/options_helptexts.php:154 +#: includes/options_helptexts.php:235 msgid "Attention" msgstr "Atención" -#: includes/options_helptexts.php:155 +#: includes/options_helptexts.php:236 msgid "" "This option cannot be changed directly, but you can go to the Event Category" " switching page from here." msgstr "" -#: includes/options.php:40 +#: includes/options.php:73 msgid "events" msgstr "" -#: includes/options.php:41 +#: includes/options.php:77 msgid "Show content" msgstr "" -#: includes/options.php:42 +#: includes/options.php:81 msgid "Hide content" msgstr "" -#: includes/sc_event-list_helptexts.php:7 +#: includes/sc_event-list_helptexts.php:8 msgid "event-id" msgstr "" -#: includes/sc_event-list_helptexts.php:8 +#: includes/sc_event-list_helptexts.php:9 #, php-format msgid "" "By default the event-list is displayed initially. But if an event-id (e.g. " @@ -1418,107 +1440,107 @@ msgid "" "this event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:10 -#: includes/sc_event-list_helptexts.php:22 +#: includes/sc_event-list_helptexts.php:13 +#: includes/sc_event-list_helptexts.php:31 msgid "year" msgstr "" -#: includes/sc_event-list_helptexts.php:11 +#: includes/sc_event-list_helptexts.php:14 msgid "" "This attribute defines which events are initially shown. The default is to " "show the upcoming events only." msgstr "" -#: includes/sc_event-list_helptexts.php:12 +#: includes/sc_event-list_helptexts.php:15 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:14 +#: includes/sc_event-list_helptexts.php:19 msgid "category slug" msgstr "" -#: includes/sc_event-list_helptexts.php:15 +#: includes/sc_event-list_helptexts.php:20 msgid "" "This attribute defines the category of which events are initially shown. The" " default is to show events of all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:16 +#: includes/sc_event-list_helptexts.php:21 msgid "" "Provide a category slug to change this behavior. It is still possible to " "change the displayed categories via the filterbar or url parameters." msgstr "" -#: includes/sc_event-list_helptexts.php:19 +#: includes/sc_event-list_helptexts.php:26 msgid "This attribute defines the initial order of the events." msgstr "" -#: includes/sc_event-list_helptexts.php:20 +#: includes/sc_event-list_helptexts.php:27 msgid "" "With %1$S (default value) the events are sorted from old to new, with %2$s " "in the opposite direction (from new to old)." msgstr "" -#: includes/sc_event-list_helptexts.php:23 +#: includes/sc_event-list_helptexts.php:32 #, php-format msgid "" "This attribute defines the dates and date ranges of which events are " "displayed. The default is %1$s to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:24 +#: includes/sc_event-list_helptexts.php:33 #, php-format msgid "" "Filtered events according to %1$s value are not available in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:25 +#: includes/sc_event-list_helptexts.php:34 #, php-format msgid "" "You can find all available values with a description and examples in the " "sections %1$s and %2$s below." msgstr "" -#: includes/sc_event-list_helptexts.php:26 +#: includes/sc_event-list_helptexts.php:35 #, php-format msgid "See %1$s description if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:28 +#: includes/sc_event-list_helptexts.php:39 msgid "category slugs" msgstr "" -#: includes/sc_event-list_helptexts.php:29 +#: includes/sc_event-list_helptexts.php:40 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:30 +#: includes/sc_event-list_helptexts.php:41 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:31 +#: includes/sc_event-list_helptexts.php:42 #, php-format msgid "" "The filter is specified via the given category slugs. See %1$s description " "if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:33 -#: includes/sc_event-list_helptexts.php:74 -#: includes/sc_event-list_helptexts.php:89 -#: includes/sc_event-list_helptexts.php:104 +#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:111 +#: includes/sc_event-list_helptexts.php:138 +#: includes/sc_event-list_helptexts.php:177 msgid "number" msgstr "" -#: includes/sc_event-list_helptexts.php:34 +#: includes/sc_event-list_helptexts.php:47 #, php-format msgid "" "This attribute defines how many events should be displayed if upcoming " @@ -1526,109 +1548,109 @@ msgid "" "displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:48 msgid "" "Please not that in the actual version there is no pagination of the events " "available, so the event list can be very long." msgstr "" -#: includes/sc_event-list_helptexts.php:38 +#: includes/sc_event-list_helptexts.php:53 msgid "" "This attribute defines if the filterbar should be displayed. The filterbar " "allows the users to specify filters for the listed events." msgstr "" -#: includes/sc_event-list_helptexts.php:39 +#: includes/sc_event-list_helptexts.php:54 #, php-format msgid "Choose %1$s to always hide and %2$s to always show the filterbar." msgstr "" -#: includes/sc_event-list_helptexts.php:40 +#: includes/sc_event-list_helptexts.php:55 #, php-format msgid "" "With %1$s the filterbar is only visible in the event list and with %2$s only" " in the single event view." msgstr "" -#: includes/sc_event-list_helptexts.php:43 +#: includes/sc_event-list_helptexts.php:60 #, php-format msgid "" "This attribute specifies the available items in the filterbar. This options " "are only valid if the filterbar is displayed (see %1$s attribute)." msgstr "" -#: includes/sc_event-list_helptexts.php:44 +#: includes/sc_event-list_helptexts.php:61 msgid "" "Find below an overview of the available filterbar items and their options:" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "filterbar item" msgstr "" -#: includes/sc_event-list_helptexts.php:46 -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:96 msgid "description" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "item options" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option values" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "default value" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option description" msgstr "" -#: includes/sc_event-list_helptexts.php:47 +#: includes/sc_event-list_helptexts.php:67 msgid "" "Show a list of all available years. Additional there are some special " "entries available (see item options)." msgstr "" -#: includes/sc_event-list_helptexts.php:48 -#: includes/sc_event-list_helptexts.php:53 +#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:82 msgid "Add an entry to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:49 -#: includes/sc_event-list_helptexts.php:54 +#: includes/sc_event-list_helptexts.php:73 +#: includes/sc_event-list_helptexts.php:84 msgid "Add an entry to show all upcoming events." msgstr "" -#: includes/sc_event-list_helptexts.php:50 -#: includes/sc_event-list_helptexts.php:55 +#: includes/sc_event-list_helptexts.php:74 +#: includes/sc_event-list_helptexts.php:85 msgid "Add an entry to show events in the past." msgstr "" -#: includes/sc_event-list_helptexts.php:51 +#: includes/sc_event-list_helptexts.php:75 msgid "Set descending or ascending order of year entries." msgstr "" -#: includes/sc_event-list_helptexts.php:52 +#: includes/sc_event-list_helptexts.php:78 msgid "Show a list of all available months." msgstr "" -#: includes/sc_event-list_helptexts.php:56 +#: includes/sc_event-list_helptexts.php:86 msgid "Set descending or ascending order of month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "php date-formats" msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "Set the displayed date format of the month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "With this item you can display the special entries %1$s, %2$s and %3$s. You " @@ -1636,65 +1658,65 @@ msgid "" "order." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "Specifies the displayed values and their order. The items must be seperated " "by %1$s." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Show a list of all available categories." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Add an entry to show events from all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "A link to reset the eventlist filter to standard." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "any text" msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "Set the caption of the link." msgstr "" -#: includes/sc_event-list_helptexts.php:61 +#: includes/sc_event-list_helptexts.php:93 msgid "Find below an overview of the available filterbar display options:" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "display option" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "available for" msgstr "" -#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:97 #, php-format msgid "Shows a horizonal list seperated by %1$s with a link to each item." msgstr "" -#: includes/sc_event-list_helptexts.php:65 +#: includes/sc_event-list_helptexts.php:98 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:66 +#: includes/sc_event-list_helptexts.php:99 msgid "Shows a simple link which can be clicked." msgstr "" -#: includes/sc_event-list_helptexts.php:67 +#: includes/sc_event-list_helptexts.php:102 msgid "Find below some declaration examples with descriptions:" msgstr "" -#: includes/sc_event-list_helptexts.php:69 +#: includes/sc_event-list_helptexts.php:104 #, php-format msgid "" "In this example you can see that the filterbar item and the used display " @@ -1702,22 +1724,22 @@ msgid "" "items seperated by a comma %2$s. These items will be displayed left-aligned." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "option_name" msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "value" msgstr "" -#: includes/sc_event-list_helptexts.php:72 +#: includes/sc_event-list_helptexts.php:107 #, php-format msgid "" "The 2 semicolon %1$s devides the bar in 3 section. The first section will be" @@ -1726,75 +1748,84 @@ msgid "" "left-aligned and the reset link will be on the right side." msgstr "" -#: includes/sc_event-list_helptexts.php:75 -#: includes/sc_event-list_helptexts.php:90 +#: includes/sc_event-list_helptexts.php:112 +#: includes/sc_event-list_helptexts.php:139 msgid "" "This attribute specifies if the title should be truncated to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:76 -#: includes/sc_event-list_helptexts.php:91 +#: includes/sc_event-list_helptexts.php:113 +#: includes/sc_event-list_helptexts.php:140 #, php-format msgid "" "With the standard value %1$s the full text is displayed, with %2$s the text " "is automatically truncated via css." msgstr "" -#: includes/sc_event-list_helptexts.php:77 -#: includes/sc_event-list_helptexts.php:92 -#: includes/sc_event-list_helptexts.php:107 +#: includes/sc_event-list_helptexts.php:114 +#: includes/sc_event-list_helptexts.php:141 +#: includes/sc_event-list_helptexts.php:180 msgid "This attribute has no influence if only a single event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:80 +#: includes/sc_event-list_helptexts.php:120 msgid "" "This attribute specifies if the starttime is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n" "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:85 +#: includes/sc_event-list_helptexts.php:130 msgid "" "This attribute specifies if the location is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n" "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:95 +#: includes/sc_event-list_helptexts.php:147 msgid "" "This attribute specifies if the categories are displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n" "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:100 +#: includes/sc_event-list_helptexts.php:157 msgid "" "This attribute specifies if the content is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n" "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:105 +#: includes/sc_event-list_helptexts.php:167 +msgid "" +"This attribute specifies if the excerpt is displayed in the event list.<br />\n" +"\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n" +"\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" +"\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" +"\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)." +msgstr "" + +#: includes/sc_event-list_helptexts.php:178 msgid "" "This attribute specifies if the content should be truncate to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:106 +#: includes/sc_event-list_helptexts.php:179 #, php-format msgid "With the standard value %1$s the full text is displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:110 +#: includes/sc_event-list_helptexts.php:186 msgid "" -"This attribute specifies if the content should be collapsed initially.<br />\n" +"This attribute specifies if the content or excerpt should be collapsed initially.<br />\n" "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n" "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n" "\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." msgstr "" -#: includes/sc_event-list_helptexts.php:116 +#: includes/sc_event-list_helptexts.php:197 msgid "" "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n" "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n" @@ -1802,7 +1833,7 @@ msgid "" "\t With \"events_with_content_only\" the link is only added in the event list for events with event content." msgstr "" -#: includes/sc_event-list_helptexts.php:122 +#: includes/sc_event-list_helptexts.php:208 msgid "" "This attribute specifies if a rss feed link should be added.<br />\n" "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n" @@ -1811,32 +1842,52 @@ msgid "" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:128 +#: includes/sc_event-list_helptexts.php:220 +msgid "" +"This attribute specifies if a ical feed link should be added.<br />\n" +"\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n" +"\t On that page you can also find some settings to modify the output.<br />\n" +"\t Choose \"false\" to never add and \"true\" to always add the link.<br />" +msgstr "" + +#: includes/sc_event-list_helptexts.php:231 msgid "" "This attribute specifies the page or post url for event links.<br />\n" "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n" "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget." msgstr "" -#: includes/sc_event-list_helptexts.php:135 +#: includes/sc_event-list_helptexts.php:243 msgid "" "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n" "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget." msgstr "" -#: includes/sc_event-list.php:135 +#: includes/sc_event-list.php:154 +msgid "Sorry, the requested event is not available!" +msgstr "" + +#: includes/sc_event-list.php:163 msgid "Event Information:" msgstr "Información del evento:" -#: includes/widget_helptexts.php:10 +#: includes/sc_event-list.php:405 +msgid "Link to RSS feed" +msgstr "" + +#: includes/sc_event-list.php:414 +msgid "Link to iCal feed" +msgstr "" + +#: includes/widget_helptexts.php:11 msgid "This option defines the displayed title for the widget." msgstr "" -#: includes/widget_helptexts.php:15 +#: includes/widget_helptexts.php:18 msgid "Category Filter" msgstr "Categoría de filtro" -#: includes/widget_helptexts.php:17 +#: includes/widget_helptexts.php:20 msgid "" "This option defines the categories of which events are shown. The standard " "is all or an empty string to show all events. Specify a category slug or a " @@ -1845,137 +1896,145 @@ msgid "" "all possibilities." msgstr "" -#: includes/widget_helptexts.php:22 +#: includes/widget_helptexts.php:27 msgid "Number of listed events" msgstr "" -#: includes/widget_helptexts.php:24 +#: includes/widget_helptexts.php:29 msgid "The number of upcoming events to display" msgstr "" -#: includes/widget_helptexts.php:29 +#: includes/widget_helptexts.php:36 msgid "Truncate event title to" msgstr "" -#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52 -#: includes/widget_helptexts.php:67 +#: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65 +#: includes/widget_helptexts.php:93 msgid "characters" msgstr "caracteres" -#: includes/widget_helptexts.php:31 +#: includes/widget_helptexts.php:38 msgid "" "This option defines the number of displayed characters for the event title." msgstr "" -#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54 +#: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67 #, php-format msgid "" "Set this value to %1$s to view the full text, or set it to %2$s to " "automatically truncate the text via css." msgstr "" -#: includes/widget_helptexts.php:37 +#: includes/widget_helptexts.php:46 msgid "Show event starttime" msgstr "" -#: includes/widget_helptexts.php:39 +#: includes/widget_helptexts.php:48 msgid "This option defines if the event start time will be displayed." msgstr "" -#: includes/widget_helptexts.php:44 +#: includes/widget_helptexts.php:55 msgid "Show event location" msgstr "" -#: includes/widget_helptexts.php:46 +#: includes/widget_helptexts.php:57 msgid "This option defines if the event location will be displayed." msgstr "" -#: includes/widget_helptexts.php:51 +#: includes/widget_helptexts.php:64 msgid "Truncate location to" msgstr "" -#: includes/widget_helptexts.php:53 +#: includes/widget_helptexts.php:66 msgid "" "If the event location is diplayed this option defines the number of " "displayed characters." msgstr "" -#: includes/widget_helptexts.php:59 +#: includes/widget_helptexts.php:74 +msgid "Show event excerpt" +msgstr "" + +#: includes/widget_helptexts.php:76 +msgid "This option defines if the event excerpt will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:83 msgid "Show event content" msgstr "" -#: includes/widget_helptexts.php:61 +#: includes/widget_helptexts.php:85 msgid "This option defines if the event content will be displayed." msgstr "" -#: includes/widget_helptexts.php:66 +#: includes/widget_helptexts.php:92 msgid "Truncate content to" msgstr "" -#: includes/widget_helptexts.php:68 +#: includes/widget_helptexts.php:94 msgid "" "If the event content are diplayed this option defines the number of diplayed" " characters." msgstr "" -#: includes/widget_helptexts.php:69 +#: includes/widget_helptexts.php:95 #, php-format msgid "Set this value to %1$s to view the full text." msgstr "" -#: includes/widget_helptexts.php:74 +#: includes/widget_helptexts.php:102 msgid "URL to the linked Event List page" msgstr "" -#: includes/widget_helptexts.php:76 +#: includes/widget_helptexts.php:104 msgid "" "This option defines the url to the linked Event List page. This option is " "required if you want to use one of the options below." msgstr "" -#: includes/widget_helptexts.php:81 +#: includes/widget_helptexts.php:111 msgid "Shortcode ID on linked page" msgstr "" -#: includes/widget_helptexts.php:83 +#: includes/widget_helptexts.php:113 msgid "" "This option defines the shortcode-id for the Event List on the linked page. " "Normally the standard value 1 is correct, you only have to change it if you " "use multiple event-list shortcodes on the linked page." msgstr "" -#: includes/widget_helptexts.php:90 +#: includes/widget_helptexts.php:122 msgid "" "With this option you can add a link to the single event page for every " "displayed event. You have to specify the url to the page and the shortcode " "id option if you want to use it." msgstr "" -#: includes/widget_helptexts.php:97 +#: includes/widget_helptexts.php:131 msgid "" "With this option you can add a link to the event-list page below the " "diplayed events. You have to specify the url to page option if you want to " "use it." msgstr "" -#: includes/widget_helptexts.php:102 +#: includes/widget_helptexts.php:138 msgid "Caption for the link" msgstr "" -#: includes/widget_helptexts.php:104 +#: includes/widget_helptexts.php:140 msgid "" "This option defines the text for the link to the Event List page if the " "approriate option is selected." msgstr "" -#: includes/widget.php:20 +#: includes/widget.php:21 msgid "With this widget a list of upcoming events can be displayed." msgstr "" -#: includes/widget.php:25 +#: includes/widget.php:26 msgid "Upcoming events" msgstr "" -#: includes/widget.php:38 +#: includes/widget.php:40 msgid "show events page" msgstr "" diff --git a/wp-content/plugins/event-list/languages/event-list-et_EE.mo b/wp-content/plugins/event-list/languages/event-list-et_EE.mo index e0178cdcb958f7af7a8356f91633a33137eb8dc6..8717c46312ad466ac16aafa2006c2ac06d57f36d 100644 Binary files a/wp-content/plugins/event-list/languages/event-list-et_EE.mo and b/wp-content/plugins/event-list/languages/event-list-et_EE.mo differ diff --git a/wp-content/plugins/event-list/languages/event-list-et_EE.po b/wp-content/plugins/event-list/languages/event-list-et_EE.po index cb05b3a9055a7c78e0f2cbf5d44babd1241e7e3e..785155ed98600ac41137a7189a5e115bf76504af 100644 --- a/wp-content/plugins/event-list/languages/event-list-et_EE.po +++ b/wp-content/plugins/event-list/languages/event-list-et_EE.po @@ -1,5 +1,5 @@ # Translation file for the 'Event List' WordPress plugin -# Copyright (C) 2018 by mibuthu +# Copyright (C) 2021 by mibuthu # This file is distributed under the same license as the corresponding wordpress plugin. # # Translators: @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: wp-event-list\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n" -"POT-Creation-Date: 2018-05-27 12:20+0200\n" -"PO-Revision-Date: 2018-05-27 10:20+0000\n" +"POT-Creation-Date: 2021-04-24 11:28+0200\n" +"PO-Revision-Date: 2021-04-24 09:26+0000\n" "Last-Translator: mibuthu\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/mibuthu/wp-event-list/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -18,117 +18,117 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Errors during upgrade of plugin %1$s" msgstr "" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Upgrade of plugin %1$s successful" msgstr "" -#: admin/admin.php:106 admin/includes/admin-settings.php:65 +#: admin/admin.php:116 admin/includes/admin-settings.php:73 msgid "Event List Settings" msgstr "Sündmuste loendi seaded" -#: admin/admin.php:106 +#: admin/admin.php:116 msgid "Settings" msgstr "Seaded" -#: admin/admin.php:110 admin/includes/admin-about.php:37 +#: admin/admin.php:120 admin/includes/admin-about.php:43 msgid "About Event List" msgstr "Sündmuste loendist" -#: admin/admin.php:110 +#: admin/admin.php:120 msgid "About" msgstr "" -#: admin/admin.php:132 +#: admin/admin.php:144 #, php-format msgid "%s Event" msgid_plural "%s Events" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 +#: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92 msgid "General" msgstr "" -#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 -#: admin/includes/admin-about.php:105 +#: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88 +#: admin/includes/admin-about.php:117 msgid "Shortcode Attributes" msgstr "" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:82 msgid "Help and Instructions" msgstr "Abi ja juhised" -#: admin/includes/admin-about.php:73 +#: admin/includes/admin-about.php:83 #, php-format msgid "You can manage the events %1$shere%2$s" msgstr "" -#: admin/includes/admin-about.php:74 +#: admin/includes/admin-about.php:84 msgid "To show the events on your site you have 2 possibilities" msgstr "Saidil olevate sündmuste kuvamiseks on 2 võimalust" -#: admin/includes/admin-about.php:75 +#: admin/includes/admin-about.php:85 #, php-format msgid "you can place the <strong>shortcode</strong> %1$s on any page or post" msgstr "lisades lühikoodi<strong> shotcode</strong> %1$s mis tahes lehele või postitusele" -#: admin/includes/admin-about.php:76 +#: admin/includes/admin-about.php:86 #, php-format msgid "you can add the <strong>widget</strong> %1$s in your sidebars" msgstr "lisades vidina <strong>widget</strong> %1$s külgribale" -#: admin/includes/admin-about.php:77 +#: admin/includes/admin-about.php:87 msgid "" "The displayed events and their style can be modified with the available " "widget settings and the available attributes for the shortcode." msgstr "" -#: admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:88 #, php-format msgid "" "A list of all available shortcode attributes with their descriptions is " "available in the %1$s tab." msgstr "" -#: admin/includes/admin-about.php:79 +#: admin/includes/admin-about.php:89 msgid "The available widget options are described in their tooltip text." msgstr "" -#: admin/includes/admin-about.php:80 +#: admin/includes/admin-about.php:90 #, php-format msgid "" "If you enable one of the links options (%1$s or %2$s) in the widget you have" " to insert an URL to the linked event-list page." msgstr "" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120 msgid "Add links to the single events" msgstr "Lisa link sündmuse juurde" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129 msgid "Add a link to the Event List page" msgstr "Lisa link lehe sündmuste loendisse" -#: admin/includes/admin-about.php:81 +#: admin/includes/admin-about.php:91 msgid "" "This is required because the widget does not know in which page or post the " "shortcode was included." msgstr "" -#: admin/includes/admin-about.php:82 +#: admin/includes/admin-about.php:92 msgid "" "Additionally you have to insert the correct Shortcode id on the linked page." " This id describes which shortcode should be used on the given page or post " "if you have more than one." msgstr "" -#: admin/includes/admin-about.php:83 +#: admin/includes/admin-about.php:93 #, php-format msgid "" "The default value %1$s is normally o.k. (for pages with 1 shortcode only), " @@ -136,986 +136,991 @@ msgid "" "link on your linked page or post." msgstr "" -#: admin/includes/admin-about.php:84 +#: admin/includes/admin-about.php:94 #, php-format msgid "The id is available at the end of the URL parameters (e.g. %1$s)." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 #, php-format msgid "" "Be sure to also check the %1$s to get the plugin behaving just the way you " "want." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 msgid "Settings page" msgstr "Seadete leht" -#: admin/includes/admin-about.php:92 +#: admin/includes/admin-about.php:103 msgid "About the plugin author" msgstr "Plugina autorist" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:105 #, php-format msgid "" "This plugin is developed by %1$s, you can find more information about the " "plugin on the %2$s." msgstr "" -#: admin/includes/admin-about.php:94 -msgid "wordpress plugin site" +#: admin/includes/admin-about.php:105 +msgid "WordPress plugin site" msgstr "" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:106 #, php-format msgid "If you like the plugin please rate it on the %1$s." msgstr "" -#: admin/includes/admin-about.php:95 -msgid "wordpress plugin review site" +#: admin/includes/admin-about.php:106 +msgid "WordPress plugin review site" msgstr "" -#: admin/includes/admin-about.php:96 +#: admin/includes/admin-about.php:107 msgid "" "If you want to support the plugin I would be happy to get a small donation" msgstr "" -#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 -#: admin/includes/admin-about.php:99 +#: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109 +#: admin/includes/admin-about.php:110 #, php-format msgid "Donate with %1$s" msgstr "" -#: admin/includes/admin-about.php:107 +#: admin/includes/admin-about.php:119 msgid "" "You have the possibility to modify the output if you add some of the " "following attributes to the shortcode." msgstr "" -#: admin/includes/admin-about.php:108 +#: admin/includes/admin-about.php:120 #, php-format msgid "" "You can combine and add as much attributes as you want. E.g. the shortcode " "including the attributes %1$s and %2$s would looks like this:" msgstr "" -#: admin/includes/admin-about.php:110 +#: admin/includes/admin-about.php:122 msgid "" "Below you can find a list of all supported attributes with their " "descriptions and available options:" msgstr "" -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:137 msgid "Attribute name" msgstr "Atribuudi nimi" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:138 msgid "Value options" msgstr "" -#: admin/includes/admin-about.php:126 +#: admin/includes/admin-about.php:139 msgid "Default value" msgstr "" -#: admin/includes/admin-about.php:127 +#: admin/includes/admin-about.php:140 msgid "Description" msgstr "Kirjeldus" -#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 -#: includes/sc_event-list_helptexts.php:31 +#: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:42 msgid "Filter Syntax" msgstr "" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:160 msgid "" "For date and cat filters you can specify complex filters with the following " "syntax:" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 #, php-format msgid "" "You can use %1$s and %2$s connections to define complex filters. " "Additionally you can set brackets %3$s for nested queries." msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "AND" msgstr "JA" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "OR" msgstr "VÕI" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "or" msgstr "või" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "and" msgstr "ja" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:162 msgid "Examples for cat filters:" msgstr "" -#: admin/includes/admin-about.php:149 +#: admin/includes/admin-about.php:163 #, php-format msgid "Show all events with category %1$s." msgstr "Näita kõiki sündmusi koos kategooriaga %1$s." -#: admin/includes/admin-about.php:150 +#: admin/includes/admin-about.php:164 #, php-format msgid "Show all events with category %1$s or %2$s." msgstr "Näita kõiki sündmusi koos kategooriaga %1$s või %2$s." -#: admin/includes/admin-about.php:151 +#: admin/includes/admin-about.php:165 #, php-format msgid "" "Show all events with category %1$s and all events where category %2$s as " "well as %3$s is selected." msgstr "" -#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34 msgid "Available Date Formats" msgstr "Saadaolevad kuupäeva vormingud" -#: admin/includes/admin-about.php:157 +#: admin/includes/admin-about.php:172 msgid "For date filters you can use the following date formats:" msgstr "" -#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34 msgid "Available Date Range Formats" msgstr "Saadaolevad kuupäevavahemiku formaadid" -#: admin/includes/admin-about.php:166 +#: admin/includes/admin-about.php:182 msgid "For date filters you can use the following daterange formats:" msgstr "" -#: admin/includes/admin-about.php:178 +#: admin/includes/admin-about.php:195 msgid "Value" msgstr "Väärtus" -#: admin/includes/admin-about.php:182 +#: admin/includes/admin-about.php:199 msgid "Example" msgstr "Näide" -#: admin/includes/admin-categories.php:38 +#: admin/includes/admin-categories.php:54 msgid "Synchronize with post categories" msgstr "Sünkrooni postituste kategooriatega" -#: admin/includes/admin-categories.php:46 +#: admin/includes/admin-categories.php:63 #, php-format msgid "%1$s categories modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:47 +#: admin/includes/admin-categories.php:64 #, php-format msgid "%1$s categories added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:48 +#: admin/includes/admin-categories.php:65 #, php-format msgid "%1$s categories deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:50 +#: admin/includes/admin-categories.php:67 #, php-format msgid "%1$s categories not modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:51 +#: admin/includes/admin-categories.php:68 #, php-format msgid "%1$s categories not added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:52 +#: admin/includes/admin-categories.php:69 #, php-format msgid "%1$s categories not deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:55 +#: admin/includes/admin-categories.php:72 msgid "An Error occured during the category sync" msgstr "Kategooria sünkroonimisel tekkis viga" -#: admin/includes/admin-categories.php:59 +#: admin/includes/admin-categories.php:75 msgid "Category sync finished" msgstr "Kategooria sünkroonimine on lõpetatud" -#: admin/includes/admin-category-sync.php:45 +#: admin/includes/admin-category-sync.php:54 msgid "Error: You are not allowed to view this page!" msgstr "Viga: Sul ei ole luba seda lehekülge näha!" -#: admin/includes/admin-category-sync.php:62 +#: admin/includes/admin-category-sync.php:70 msgid "Affected Categories when switching to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:63 +#: admin/includes/admin-category-sync.php:71 msgid "Switch option to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:64 +#: admin/includes/admin-category-sync.php:72 msgid "" "If you proceed, all post categories will be copied and all events will be " "re-assigned to this new categories." msgstr "" -#: admin/includes/admin-category-sync.php:65 +#: admin/includes/admin-category-sync.php:73 msgid "" "Afterwards the event categories are independent of the post categories." msgstr "" -#: admin/includes/admin-category-sync.php:68 +#: admin/includes/admin-category-sync.php:75 msgid "Affected Categories when switching to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:69 +#: admin/includes/admin-category-sync.php:76 msgid "Switch option to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:70 +#: admin/includes/admin-category-sync.php:77 msgid "" "Take a detailed look at the affected categories above before you proceed! " "All seperate event categories will be deleted, this cannot be undone!" msgstr "" -#: admin/includes/admin-category-sync.php:73 +#: admin/includes/admin-category-sync.php:79 msgid "Event Categories: Synchronise with Post Categories" msgstr "Sündmuste kategooriate sünkroonimine postituskategooriatega" -#: admin/includes/admin-category-sync.php:74 +#: admin/includes/admin-category-sync.php:80 msgid "Start synchronisation" msgstr "Käivitage sünkroonimine" -#: admin/includes/admin-category-sync.php:75 +#: admin/includes/admin-category-sync.php:81 msgid "" "If this option is enabled the above listed categories will be deleted and " "removed from the existing events!" msgstr "" -#: admin/includes/admin-category-sync.php:90 +#: admin/includes/admin-category-sync.php:96 msgid "Categories to modify" msgstr "" -#: admin/includes/admin-category-sync.php:91 +#: admin/includes/admin-category-sync.php:97 msgid "Categories to add" msgstr "" -#: admin/includes/admin-category-sync.php:92 +#: admin/includes/admin-category-sync.php:98 msgid "Categories to delete (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:93 +#: admin/includes/admin-category-sync.php:99 msgid "Delete not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:97 +#: admin/includes/admin-category-sync.php:102 msgid "Categories with differences" msgstr "" -#: admin/includes/admin-category-sync.php:98 +#: admin/includes/admin-category-sync.php:103 msgid "Categories to add (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:99 +#: admin/includes/admin-category-sync.php:104 msgid "Add not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:117 +#: admin/includes/admin-category-sync.php:123 msgid "none" msgstr "pole ühtegi" -#: admin/includes/admin-import.php:49 +#: admin/includes/admin-import.php:58 msgid "Import Events" msgstr "Impordi sündmused" -#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116 +#: admin/includes/admin-import.php:220 msgid "Step" msgstr "Samm" -#: admin/includes/admin-import.php:69 +#: admin/includes/admin-import.php:79 msgid "Set import file and options" msgstr "Määrake impordifail ja valikud" -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:82 #, php-format msgid "Proceed with Step %1$s" msgstr "" -#: admin/includes/admin-import.php:75 +#: admin/includes/admin-import.php:85 msgid "Example file" msgstr "Näidisfail" -#: admin/includes/admin-import.php:76 +#: admin/includes/admin-import.php:86 #, php-format msgid "" "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)" msgstr "" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "Note" msgstr "Märge" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "" "Do not change the column header and separator line (first two lines), " "otherwise the import will fail!" msgstr "" -#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 +#: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103 msgid "Sorry, there has been an error." msgstr "Vabandage, tekkis viga." -#: admin/includes/admin-import.php:85 +#: admin/includes/admin-import.php:96 msgid "The file does not exist, please try again." msgstr "Sellist faili ei eksisteeri, palun proovi uuesti." -#: admin/includes/admin-import.php:93 +#: admin/includes/admin-import.php:104 msgid "The uploaded file does not have the required csv extension." msgstr "" -#: admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:116 msgid "Events review and additonal category selection" msgstr "" -#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133 msgid "Error" msgstr "" -#: admin/includes/admin-import.php:111 +#: admin/includes/admin-import.php:122 msgid "This CSV file cannot be imported" msgstr "" -#: admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:133 msgid "None of the events in this CSV file can be imported" msgstr "" -#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179 msgid "Warning" msgstr "" -#: admin/includes/admin-import.php:126 +#: admin/includes/admin-import.php:138 #, php-format msgid "There is %1$s event which cannot be imported" msgid_plural "There are %1$s events which cannot be imported" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-import.php:134 +#: admin/includes/admin-import.php:150 #, php-format msgid "CSV line %1$s" msgstr "" -#: admin/includes/admin-import.php:144 +#: admin/includes/admin-import.php:160 msgid "You can still import all other events listed below." msgstr "" -#: admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:179 msgid "" "The following category slugs are not available and will be removed from the " "imported events" msgstr "" -#: admin/includes/admin-import.php:169 +#: admin/includes/admin-import.php:185 msgid "" "If you want to keep these categories, please create these Categories first " "and do the import afterwards." msgstr "" -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:220 msgid "Import result" msgstr "" -#: admin/includes/admin-import.php:201 +#: admin/includes/admin-import.php:223 #, php-format msgid "Import of %1$s events successful!" msgstr "" -#: admin/includes/admin-import.php:202 +#: admin/includes/admin-import.php:224 msgid "Go back to All Events" msgstr "Mine tagasi \"Kõik sündmused\" juurde" -#: admin/includes/admin-import.php:206 +#: admin/includes/admin-import.php:227 msgid "Errors during Import" msgstr "" -#: admin/includes/admin-import.php:215 +#: admin/includes/admin-import.php:235 msgid "Event from CSV-line" msgstr "" -#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 -#: includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77 +#: includes/widget_helptexts.php:9 msgid "Title" msgstr "Pealkiri" -#: admin/includes/admin-import.php:227 +#: admin/includes/admin-import.php:248 msgid "Start Date" msgstr "Alguskuupäev" -#: admin/includes/admin-import.php:228 +#: admin/includes/admin-import.php:249 msgid "End Date" msgstr "Lõppkuupäev" -#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 -#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 +#: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:69 msgid "Time" msgstr "Aeg" -#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62 -#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57 -#: includes/options_helptexts.php:58 +#: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78 +#: admin/includes/admin-new.php:107 includes/options_helptexts.php:75 +#: includes/options_helptexts.php:76 msgid "Location" msgstr "Koht" -#: admin/includes/admin-import.php:231 +#: admin/includes/admin-import.php:252 msgid "Content" msgstr "Sisu" -#: admin/includes/admin-import.php:232 +#: admin/includes/admin-import.php:253 msgid "Category slugs" msgstr "" -#: admin/includes/admin-import.php:274 +#: admin/includes/admin-import.php:297 msgid "Header line is missing or not correct!" msgstr "" -#: admin/includes/admin-import.php:275 +#: admin/includes/admin-import.php:298 #, php-format msgid "" "Have a look at the %1$sexample file%2$s to see the correct header line " "format." msgstr "" -#: admin/includes/admin-import.php:281 +#: admin/includes/admin-import.php:305 #, php-format msgid "Wrong number of items in line (%1$s items found, 6-7 required)" msgstr "" -#: admin/includes/admin-import.php:309 +#: admin/includes/admin-import.php:334 msgid "Empty event title found" msgstr "" -#: admin/includes/admin-import.php:315 +#: admin/includes/admin-import.php:340 msgid "Wrong date format for startdate" msgstr "" -#: admin/includes/admin-import.php:324 +#: admin/includes/admin-import.php:348 msgid "Wrong date format for enddate" msgstr "" -#: admin/includes/admin-import.php:365 +#: admin/includes/admin-import.php:401 msgid "Import events" msgstr "Impordi sündmused" -#: admin/includes/admin-import.php:366 +#: admin/includes/admin-import.php:402 msgid "Add additional categories" msgstr "Lisage täiendavaid kategooriaid" -#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +#: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257 msgid "Import" msgstr "Impordi" -#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +#: admin/includes/admin-import.php:428 includes/events_post_type.php:78 msgid "No events found" msgstr "Ühtegi sündmust ei leitud" -#: admin/includes/admin-import.php:432 +#: admin/includes/admin-import.php:473 msgid "Saving of event failed!" msgstr "" -#: admin/includes/admin-main.php:60 +#: admin/includes/admin-main.php:76 msgid "Event Date" msgstr "Sündmuse kuupäev" -#: admin/includes/admin-main.php:64 +#: admin/includes/admin-main.php:80 msgid "Author" msgstr "Autor" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 #, php-format msgid "Add a copy of %1$s" msgstr "" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 msgid "Copy" msgstr "Kopeeri" -#: admin/includes/admin-new.php:51 +#: admin/includes/admin-new.php:58 msgid "Event data" msgstr "Sündmuse andmed" -#: admin/includes/admin-new.php:80 +#: admin/includes/admin-new.php:90 msgid "Add Copy" msgstr "Lisa koopia" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "Date" msgstr "Kuupäev" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "required" msgstr "nõutud" -#: admin/includes/admin-new.php:87 +#: admin/includes/admin-new.php:101 msgid "Multi-Day Event" msgstr "Mitmepäevane sündmus" -#: admin/includes/admin-new.php:106 +#: admin/includes/admin-new.php:121 msgid "Event Title" msgstr "Sündmuse pealkiri" -#: admin/includes/admin-new.php:121 +#: admin/includes/admin-new.php:137 msgid "Event Content" msgstr "Sündmuse sisu" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203 msgid "Event updated." msgstr "Sündmus uuendatud." -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205 msgid "View event" msgstr "Vaata sündmust" -#: admin/includes/admin-new.php:184 +#: admin/includes/admin-new.php:204 #, php-format msgid "Event restored to revision from %1$s" msgstr "" -#: admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:205 msgid "Event published." msgstr "Sündmus avaldatud." -#: admin/includes/admin-new.php:187 +#: admin/includes/admin-new.php:207 msgid "Event submitted." msgstr "Sündmus on esitatud." -#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209 +#: admin/includes/admin-new.php:210 msgid "Preview event" msgstr "Sündmuse eelvaade" -#: admin/includes/admin-new.php:188 +#: admin/includes/admin-new.php:208 #, php-format msgid "Event scheduled for: %1$s>" msgstr "" -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:210 msgid "Event draft updated." msgstr "Sündmuse visand uuendatud." -#: admin/includes/admin-settings.php:71 +#: admin/includes/admin-settings.php:79 msgid "Go to Event Category switching page" msgstr "" -#: admin/includes/admin-settings.php:83 +#: admin/includes/admin-settings.php:93 msgid "Frontend Settings" msgstr "" -#: admin/includes/admin-settings.php:84 +#: admin/includes/admin-settings.php:94 msgid "Admin Page Settings" msgstr "" -#: admin/includes/admin-settings.php:85 +#: admin/includes/admin-settings.php:95 msgid "Feed Settings" msgstr "" -#: admin/includes/admin-settings.php:86 +#: admin/includes/admin-settings.php:96 msgid "Category Taxonomy" msgstr "" -#: includes/daterange_helptexts.php:7 +#: includes/daterange_helptexts.php:8 msgid "Year" msgstr "Aasta" -#: includes/daterange_helptexts.php:8 +#: includes/daterange_helptexts.php:9 msgid "A year can be specified in 4 digit format." msgstr "" -#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14 -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:47 #, php-format msgid "" "For a start date filter the first day of %1$s is used, in an end date the " "last day." msgstr "" -#: includes/daterange_helptexts.php:9 +#: includes/daterange_helptexts.php:10 msgid "the resulting year" msgstr "" -#: includes/daterange_helptexts.php:12 +#: includes/daterange_helptexts.php:15 msgid "Month" msgstr "Kuu" -#: includes/daterange_helptexts.php:13 +#: includes/daterange_helptexts.php:16 msgid "" "A month can be specified with 4 digits for the year and 2 digits for the " "month, seperated by a hyphen (-)." msgstr "" -#: includes/daterange_helptexts.php:14 +#: includes/daterange_helptexts.php:17 msgid "the resulting month" msgstr "" -#: includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:22 msgid "Day" msgstr "Päev" -#: includes/daterange_helptexts.php:18 +#: includes/daterange_helptexts.php:23 msgid "" "A day can be specified in the format 4 digits for the year, 2 digits for the" " month and 2 digets for the day, seperated by hyphens (-)." msgstr "" -#: includes/daterange_helptexts.php:21 +#: includes/daterange_helptexts.php:28 msgid "Relative Year" msgstr "" -#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28 -#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55 #, php-format msgid "%1$s from now can be specified in the following notation: %2$s" msgstr "" -#: includes/daterange_helptexts.php:22 +#: includes/daterange_helptexts.php:29 msgid "A relative year" msgstr "" -#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29 -#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38 +#: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56 #, php-format msgid "" "This means you can specify a positive or negative (%1$s) %2$s from now with " "%3$s or %4$s attached (see also the example below)." msgstr "" -#: includes/daterange_helptexts.php:23 +#: includes/daterange_helptexts.php:30 msgid "number of years" msgstr "" -#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30 -#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44 +#: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39 +#: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57 #, php-format msgid "Additionally the following values are available: %1$s" msgstr "" -#: includes/daterange_helptexts.php:27 +#: includes/daterange_helptexts.php:36 msgid "Relative Month" msgstr "" -#: includes/daterange_helptexts.php:28 +#: includes/daterange_helptexts.php:37 msgid "A relative month" msgstr "" -#: includes/daterange_helptexts.php:29 +#: includes/daterange_helptexts.php:38 msgid "number of months" msgstr "" -#: includes/daterange_helptexts.php:33 +#: includes/daterange_helptexts.php:44 msgid "Relative Week" msgstr "" -#: includes/daterange_helptexts.php:34 +#: includes/daterange_helptexts.php:45 msgid "A relative week" msgstr "" -#: includes/daterange_helptexts.php:35 +#: includes/daterange_helptexts.php:46 msgid "number of weeks" msgstr "" -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:47 msgid "the resulting week" msgstr "" -#: includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:48 #, php-format msgid "" "The first day of the week is depending on the option %1$s which can be found" " and changed in %2$s." msgstr "" -#: includes/daterange_helptexts.php:41 +#: includes/daterange_helptexts.php:54 msgid "Relative Day" msgstr "" -#: includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:55 msgid "A relative day" msgstr "" -#: includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:56 msgid "number of days" msgstr "" -#: includes/daterange_helptexts.php:49 +#: includes/daterange_helptexts.php:64 msgid "Date range" msgstr "Kuupäevavahemik" -#: includes/daterange_helptexts.php:50 +#: includes/daterange_helptexts.php:66 msgid "" "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n" "\t For the start and end date any available date format can be used." msgstr "" -#: includes/daterange_helptexts.php:55 +#: includes/daterange_helptexts.php:75 msgid "This value defines a range without any limits." msgstr "" -#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61 -#: includes/daterange_helptexts.php:66 +#: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83 +#: includes/daterange_helptexts.php:90 #, php-format msgid "The corresponding date_range format is: %1$s" msgstr "" -#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 +#: includes/daterange_helptexts.php:81 includes/filterbar.php:310 msgid "Upcoming" msgstr "Tulemas" -#: includes/daterange_helptexts.php:60 +#: includes/daterange_helptexts.php:82 msgid "This value defines a range from the actual day to the future." msgstr "" -#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 +#: includes/daterange_helptexts.php:88 includes/filterbar.php:318 msgid "Past" msgstr "Toimunud" -#: includes/daterange_helptexts.php:65 +#: includes/daterange_helptexts.php:89 msgid "This value defines a range from the past to the previous day." msgstr "" -#: includes/event.php:107 +#: includes/event.php:124 msgid "No valid start date provided" msgstr "" -#: includes/events_post_type.php:60 +#: includes/event.php:299 includes/event.php:301 +#: includes/sc_event-list.php:298 +msgid "read more" +msgstr "" + +#: includes/events_post_type.php:69 msgid "Events" msgstr "Sündmused" -#: includes/events_post_type.php:61 +#: includes/events_post_type.php:70 msgid "Event" msgstr "Sündmus" -#: includes/events_post_type.php:62 +#: includes/events_post_type.php:71 msgid "Add New" msgstr "Lisa uus" -#: includes/events_post_type.php:63 +#: includes/events_post_type.php:72 msgid "Add New Event" msgstr "Lisa uus sündmus" -#: includes/events_post_type.php:64 +#: includes/events_post_type.php:73 msgid "Edit Event" msgstr "Muuda sündmust" -#: includes/events_post_type.php:65 +#: includes/events_post_type.php:74 msgid "New Event" msgstr "Uus sündmus" -#: includes/events_post_type.php:66 +#: includes/events_post_type.php:75 msgid "View Event" msgstr "Vaata sündmust" -#: includes/events_post_type.php:67 +#: includes/events_post_type.php:76 msgid "View Events" msgstr "Vaata sündmusi" -#: includes/events_post_type.php:68 +#: includes/events_post_type.php:77 msgid "Search Events" msgstr "Otsi sündmusi" -#: includes/events_post_type.php:70 +#: includes/events_post_type.php:79 msgid "No events found in Trash" msgstr "Prügikastist ei leitud ühtegi sündmust" -#: includes/events_post_type.php:72 +#: includes/events_post_type.php:81 msgid "All Events" msgstr "Kõik sündmused" -#: includes/events_post_type.php:73 +#: includes/events_post_type.php:82 msgid "Event Archives" msgstr "Sündmuste arhiiv" -#: includes/events_post_type.php:74 +#: includes/events_post_type.php:83 msgid "Event Attributes" msgstr "Sündmuse atribuudid" -#: includes/events_post_type.php:75 +#: includes/events_post_type.php:84 msgid "Insert into event" msgstr "" -#: includes/events_post_type.php:76 +#: includes/events_post_type.php:85 msgid "Uploaded to this event" msgstr "" -#: includes/events_post_type.php:77 +#: includes/events_post_type.php:86 msgid "Event List" msgstr "Sündmuse loend" -#: includes/events_post_type.php:78 +#: includes/events_post_type.php:87 msgid "Filter events list" msgstr "Filtreeri sündmuste loendit" -#: includes/events_post_type.php:79 +#: includes/events_post_type.php:88 msgid "Events list navigation" msgstr "Sündmuste loendi navigeerimine" -#: includes/events_post_type.php:80 +#: includes/events_post_type.php:89 msgid "Events list" msgstr "Sündmuste loend" -#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +#: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90 msgid "Reset" msgstr "Lähtesta" -#: includes/filterbar.php:278 +#: includes/filterbar.php:296 msgid "All" msgstr "Kõik" -#: includes/filterbar.php:281 +#: includes/filterbar.php:298 msgid "All Dates" msgstr "Kõik kuupäevad" -#: includes/options_helptexts.php:10 +#: includes/options_helptexts.php:11 msgid "CSV File to import" msgstr "" -#: includes/options_helptexts.php:12 +#: includes/options_helptexts.php:13 msgid "Please select the file which contains the event data in CSV format." msgstr "" -#: includes/options_helptexts.php:15 +#: includes/options_helptexts.php:18 msgid "Used date format" msgstr "Kasutatud kuupäevavorming" -#: includes/options_helptexts.php:17 +#: includes/options_helptexts.php:21 msgid "" "With this option the given date format for event start and end date in the " "CSV file can be specified." msgstr "" -#: includes/options_helptexts.php:18 +#: includes/options_helptexts.php:23 #, php-format msgid "" "You can use the php date format options given in %1$s, the most important " "ones are:" msgstr "" -#: includes/options_helptexts.php:20 +#: includes/options_helptexts.php:26 msgid "full year representation, with 4 digits" msgstr "" -#: includes/options_helptexts.php:21 +#: includes/options_helptexts.php:27 msgid "numeric representation of a month, with leading zeros" msgstr "" -#: includes/options_helptexts.php:22 +#: includes/options_helptexts.php:28 msgid "day of the month, 2 digits with leading zeros" msgstr "" -#: includes/options_helptexts.php:24 +#: includes/options_helptexts.php:30 msgid "" "If the date format in the CSV file does not correspond to the given format, " "the import script tries to recognize the date format by itself." msgstr "" -#: includes/options_helptexts.php:25 +#: includes/options_helptexts.php:31 msgid "" "But this can cause problems or result in wrong dates, so it is recommended " "to specify the correct date format here." msgstr "" -#: includes/options_helptexts.php:26 +#: includes/options_helptexts.php:32 msgid "Examples" msgstr "" -#: includes/options_helptexts.php:33 +#: includes/options_helptexts.php:41 msgid "Text for no events" msgstr "Tekst sündmuste puudumisel" -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:43 msgid "" "This option defines the displayed text when no events are available for the " "selected view." msgstr "" -#: includes/options_helptexts.php:38 +#: includes/options_helptexts.php:48 msgid "Multiday filter range" msgstr "Mitmepäevase filtri vahemik" -#: includes/options_helptexts.php:39 +#: includes/options_helptexts.php:49 msgid "Use the complete event range in the date filter" msgstr "" -#: includes/options_helptexts.php:40 +#: includes/options_helptexts.php:51 msgid "" "This option defines if the complete range of a multiday event shall be " "considered in the date filter." msgstr "" -#: includes/options_helptexts.php:41 +#: includes/options_helptexts.php:52 msgid "" "If disabled, only the start day of an event is considered in the filter." msgstr "" -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:53 msgid "" "For an example multiday event which started yesterday and ends tomorrow this" " means, that it is displayed in umcoming dates when this option is enabled, " "but it is hidden when the option is disabled." msgstr "" -#: includes/options_helptexts.php:45 +#: includes/options_helptexts.php:58 msgid "Date display" msgstr "Kuupäeva kuvamine" -#: includes/options_helptexts.php:46 +#: includes/options_helptexts.php:59 msgid "Show the date only once per day" msgstr "Kuva kuupäeva ainult ühe korra päeva kohta" -#: includes/options_helptexts.php:47 +#: includes/options_helptexts.php:61 msgid "" "With this option enabled the date is only displayed once per day if more " "than one event is available on the same day." msgstr "" -#: includes/options_helptexts.php:48 +#: includes/options_helptexts.php:62 msgid "" "If enabled, the events are ordered in a different way (end date before start" " time) to allow using the same date for as much events as possible." msgstr "" -#: includes/options_helptexts.php:51 +#: includes/options_helptexts.php:67 msgid "HTML tags" msgstr "" -#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:75 #, php-format msgid "Allow HTML tags in the event field \"%1$s\"" msgstr "" -#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 +#: includes/options_helptexts.php:69 includes/options_helptexts.php:76 #, php-format msgid "" "This option specifies if HTML tags are allowed in the event field \"%1$s\"." msgstr "" -#: includes/options_helptexts.php:61 +#: includes/options_helptexts.php:81 msgid "Preferred language file" msgstr "" -#: includes/options_helptexts.php:62 +#: includes/options_helptexts.php:82 msgid "Load translations from general language directory first" msgstr "" -#: includes/options_helptexts.php:63 +#: includes/options_helptexts.php:84 #, php-format msgid "" "The default is to load the %1$s translation file from the plugin language " "directory first (%2$s)." msgstr "" -#: includes/options_helptexts.php:64 +#: includes/options_helptexts.php:85 #, php-format msgid "" "If you want to load your own language file from the general language " @@ -1123,295 +1128,312 @@ msgid "" "language directory, you have to enable this option." msgstr "" -#: includes/options_helptexts.php:68 +#: includes/options_helptexts.php:91 msgid "Events permalink slug" msgstr "" -#: includes/options_helptexts.php:69 +#: includes/options_helptexts.php:92 msgid "" "With this option the slug for the events permalink URLs can be defined." msgstr "" -#: includes/options_helptexts.php:72 +#: includes/options_helptexts.php:97 msgid "Text for \"Show content\"" msgstr "Tekst \"Näita sisu\" jaoks" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:98 msgid "" "With this option the displayed text for the link to show the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:76 +#: includes/options_helptexts.php:103 msgid "Text for \"Hide content\"" msgstr "Tekst \"Peida sisu\" jaoks" -#: includes/options_helptexts.php:77 +#: includes/options_helptexts.php:104 msgid "" "With this option the displayed text for the link to hide the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:109 msgid "Disable CSS file" msgstr "Keela CSS-fail" -#: includes/options_helptexts.php:81 +#: includes/options_helptexts.php:110 #, php-format msgid "Disable the %1$s file." msgstr "Keela %1$s fail." -#: includes/options_helptexts.php:82 +#: includes/options_helptexts.php:112 #, php-format msgid "With this option you can disable the inclusion of the %1$s file." msgstr "" -#: includes/options_helptexts.php:83 +#: includes/options_helptexts.php:113 msgid "" "This normally only make sense if you have css conflicts with your theme and " "want to set all required css styles somewhere else (e.g. in the theme css)." msgstr "" -#: includes/options_helptexts.php:87 +#: includes/options_helptexts.php:119 msgid "Date format in edit form" msgstr "Kuupäevavorming muutmisvormis" -#: includes/options_helptexts.php:88 +#: includes/options_helptexts.php:121 msgid "" "This option sets the displayed date format for the event date fields in the " "event new / edit form." msgstr "" -#: includes/options_helptexts.php:89 +#: includes/options_helptexts.php:122 msgid "The default is an empty string to use the Wordpress standard setting." msgstr "" -#: includes/options_helptexts.php:90 +#: includes/options_helptexts.php:123 #, php-format msgid "" "All available options to specify the date format can be found %1$shere%2$s." msgstr "" -#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 +#: includes/options_helptexts.php:129 msgid "Enable RSS feed" msgstr "Luba RSS-voog" -#: includes/options_helptexts.php:95 -msgid "Enable support for an event RSS feed" +#: includes/options_helptexts.php:130 +msgid "Enable support for the event RSS feed" msgstr "" -#: includes/options_helptexts.php:96 -msgid "This option activates a RSS feed for the events." -msgstr "See valik aktiveerib ürituste RSS-voo." +#: includes/options_helptexts.php:132 +msgid "" +"This option activates the RSS feed for the events and adds a feed link in " +"the html head." +msgstr "" -#: includes/options_helptexts.php:97 +#: includes/options_helptexts.php:133 msgid "" "You have to enable this option if you want to use one of the RSS feed " "features." msgstr "" -#: includes/options_helptexts.php:100 -msgid "Feed name" +#: includes/options_helptexts.php:138 +msgid "Enable iCal feed" msgstr "" -#: includes/options_helptexts.php:101 +#: includes/options_helptexts.php:139 +msgid "Enable support for the event iCal feed" +msgstr "" + +#: includes/options_helptexts.php:141 +msgid "This option activates the iCal feed for events." +msgstr "" + +#: includes/options_helptexts.php:142 +msgid "" +"You have to enable this option if you want to use one of the iCal features." +msgstr "" + +#: includes/options_helptexts.php:147 +msgid "Position of the RSS feed link" +msgstr "Paiguta RSS-voo link" + +#: includes/options_helptexts.php:149 +msgid "at the top (above the navigation bar)" +msgstr "üles (navigatsiooniriba kohale)" + +#: includes/options_helptexts.php:150 +msgid "between navigation bar and events" +msgstr "navigatsiooniriba ja sündmuste vahele" + +#: includes/options_helptexts.php:151 +msgid "at the bottom" +msgstr "alla" + +#: includes/options_helptexts.php:153 +msgid "" +"This option specifies the position of the RSS feed link in the event list." +msgstr "See suvand määrab RSS-voo lingi asukoha sündmuste lehel." + +#: includes/options_helptexts.php:158 +msgid "Align of the RSS feed link" +msgstr "Joonda RSS-voo link" + +#: includes/options_helptexts.php:160 +msgid "left" +msgstr "vasakule" + +#: includes/options_helptexts.php:161 +msgid "center" +msgstr "keskele" + +#: includes/options_helptexts.php:162 +msgid "right" +msgstr "paremale" + +#: includes/options_helptexts.php:164 +msgid "" +"This option specifies the align of the RSS feed link in the event list." +msgstr "See suvand määrab RSS-voo lingi joonduse sündmuste lehel." + +#: includes/options_helptexts.php:169 +msgid "RSS feed name" +msgstr "" + +#: includes/options_helptexts.php:171 #, php-format -msgid "This option sets the feed name. The default value is %1$s." +msgid "This option sets the RSS feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:102 +#: includes/options_helptexts.php:172 #, php-format msgid "" "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " "enabled)." msgstr "" -#: includes/options_helptexts.php:105 -msgid "Feed Description" +#: includes/options_helptexts.php:177 +msgid "RSS feed Description" msgstr "" -#: includes/options_helptexts.php:106 +#: includes/options_helptexts.php:179 #, php-format -msgid "This options set the feed description. The default value is %1$s." +msgid "This options set the RSS feed description. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:107 +#: includes/options_helptexts.php:180 msgid "" "This description will be used in the title for the feed link in the html " "head and for the description in the feed itself." msgstr "" -#: includes/options_helptexts.php:110 -msgid "Listed events" -msgstr "Loetletud sündmused" +#: includes/options_helptexts.php:185 +msgid "RSS feed events" +msgstr "" -#: includes/options_helptexts.php:111 -msgid "Only show upcoming events in feed" -msgstr "Näita ainult eelseisvaid sündmusi sündmustevoos." +#: includes/options_helptexts.php:186 +msgid "Only show upcoming events in the RSS feed" +msgstr "" -#: includes/options_helptexts.php:112 +#: includes/options_helptexts.php:188 msgid "" -"If this option is enabled only the upcoming events are listed in the feed." -msgstr "Kui see suvand on lubatud, kuvatakse ainult eelolevad sündmused sündmustevoos." - -#: includes/options_helptexts.php:113 -msgid "If disabled all events (upcoming and past) will be listed." -msgstr "Kui see suvand ei ole lubatud, kuvatakse kõik (nii möödunud kui ka eelolevad) sündmused sündmustevoos." - -#: includes/options_helptexts.php:116 -msgid "Add RSS feed link in head" +"If this option is enabled only the upcoming events are listed in the RSS " +"feed." msgstr "" -#: includes/options_helptexts.php:117 -msgid "Add RSS feed link in the html head" +#: includes/options_helptexts.php:189 includes/options_helptexts.php:215 +msgid "If disabled, all events (upcoming and past) will be listed." msgstr "" -#: includes/options_helptexts.php:118 -msgid "This option adds a RSS feed in the html head for the events." +#: includes/options_helptexts.php:194 +msgid "RSS link text" msgstr "" -#: includes/options_helptexts.php:119 -msgid "There are 2 alternatives to include the RSS feed" +#: includes/options_helptexts.php:196 +msgid "This option sets the caption of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:120 -msgid "" -"The first way is this option to include a link in the html head. This link " -"will be recognized by browers or feed readers." +#: includes/options_helptexts.php:197 +msgid "Use an empty text to only show the rss image." msgstr "" -#: includes/options_helptexts.php:121 +#: includes/options_helptexts.php:198 #, php-format msgid "" -"The second way is to include a visible feed link directly in the event list." -" This can be done by setting the shortcode attribute %1$s to %2$s." +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" RSS feed link." msgstr "" -#: includes/options_helptexts.php:122 -#, php-format -msgid "This option is only valid if the setting %1$s is enabled." +#: includes/options_helptexts.php:203 +msgid "iCal feed name" msgstr "" -#: includes/options_helptexts.php:125 -msgid "Position of the RSS feed link" -msgstr "Paiguta RSS-voo link" - -#: includes/options_helptexts.php:126 -msgid "at the top (above the navigation bar)" -msgstr "üles (navigatsiooniriba kohale)" - -#: includes/options_helptexts.php:126 -msgid "between navigation bar and events" -msgstr "navigatsiooniriba ja sündmuste vahele" - -#: includes/options_helptexts.php:126 -msgid "at the bottom" -msgstr "alla" - -#: includes/options_helptexts.php:127 -msgid "" -"This option specifies the position of the RSS feed link in the event list." -msgstr "See suvand määrab RSS-voo lingi asukoha sündmuste lehel." +#: includes/options_helptexts.php:205 +#, php-format +msgid "This option sets the iCal feed name. The default value is %1$s." +msgstr "" -#: includes/options_helptexts.php:128 includes/options_helptexts.php:134 -#: includes/options_helptexts.php:140 includes/options_helptexts.php:146 +#: includes/options_helptexts.php:206 #, php-format msgid "" -"You have to set the shortcode attribute %1$s to %2$s if you want to show the" -" feed link." +"This name will be used in the iCal feed url (e.g. %1$s, or %2$s with " +"permalinks enabled)." msgstr "" -#: includes/options_helptexts.php:131 -msgid "Align of the RSS feed link" -msgstr "Joonda RSS-voo link" - -#: includes/options_helptexts.php:132 -msgid "left" -msgstr "vasakule" - -#: includes/options_helptexts.php:132 -msgid "center" -msgstr "keskele" - -#: includes/options_helptexts.php:132 -msgid "right" -msgstr "paremale" - -#: includes/options_helptexts.php:133 -msgid "" -"This option specifies the align of the RSS feed link in the event list." -msgstr "See suvand määrab RSS-voo lingi joonduse sündmuste lehel." +#: includes/options_helptexts.php:211 +msgid "iCal feed events" +msgstr "" -#: includes/options_helptexts.php:137 -msgid "Feed link text" +#: includes/options_helptexts.php:212 +msgid "Only show upcoming events in the iCal feed" msgstr "" -#: includes/options_helptexts.php:138 +#: includes/options_helptexts.php:214 msgid "" -"This option specifies the caption of the RSS feed link in the event list." +"If this option is enabled only the upcoming events are listed in the iCal " +"file." msgstr "" -#: includes/options_helptexts.php:139 -msgid "" -"Insert an empty text to hide any text if you only want to show the rss " -"image." +#: includes/options_helptexts.php:220 +msgid "iCal link text" msgstr "" -#: includes/options_helptexts.php:143 -msgid "Feed link image" +#: includes/options_helptexts.php:222 +msgid "This option sets the iCal link text in the event list." msgstr "" -#: includes/options_helptexts.php:144 -msgid "Show rss image in feed link" +#: includes/options_helptexts.php:223 +msgid "Use an empty text to only show the iCal image." msgstr "" -#: includes/options_helptexts.php:145 +#: includes/options_helptexts.php:224 +#, php-format msgid "" -"This option specifies if the an image should be dispayed in the feed link in" -" front of the text." +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" iCal feed link." msgstr "" -#: includes/options_helptexts.php:151 +#: includes/options_helptexts.php:231 msgid "Event Category handling" msgstr "" -#: includes/options_helptexts.php:152 +#: includes/options_helptexts.php:232 msgid "Use Post Categories" msgstr "Kasuta postituste kategooriaid" -#: includes/options_helptexts.php:153 +#: includes/options_helptexts.php:234 msgid "" "Do not maintain seperate categories for the events, and use the existing " "post categories instead." msgstr "Ära hoia sündmuste jaoks eraldi kategooriaid, vaid kasuta olemasolevaid postituste kategooriaid." -#: includes/options_helptexts.php:154 +#: includes/options_helptexts.php:235 msgid "Attention" msgstr "Tähelepanu" -#: includes/options_helptexts.php:155 +#: includes/options_helptexts.php:236 msgid "" "This option cannot be changed directly, but you can go to the Event Category" " switching page from here." msgstr "" -#: includes/options.php:40 +#: includes/options.php:73 msgid "events" msgstr "" -#: includes/options.php:41 +#: includes/options.php:77 msgid "Show content" msgstr "Näita sisu" -#: includes/options.php:42 +#: includes/options.php:81 msgid "Hide content" msgstr "Peida sisu" -#: includes/sc_event-list_helptexts.php:7 +#: includes/sc_event-list_helptexts.php:8 msgid "event-id" msgstr "" -#: includes/sc_event-list_helptexts.php:8 +#: includes/sc_event-list_helptexts.php:9 #, php-format msgid "" "By default the event-list is displayed initially. But if an event-id (e.g. " @@ -1419,107 +1441,107 @@ msgid "" "this event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:10 -#: includes/sc_event-list_helptexts.php:22 +#: includes/sc_event-list_helptexts.php:13 +#: includes/sc_event-list_helptexts.php:31 msgid "year" msgstr "aasta" -#: includes/sc_event-list_helptexts.php:11 +#: includes/sc_event-list_helptexts.php:14 msgid "" "This attribute defines which events are initially shown. The default is to " "show the upcoming events only." msgstr "" -#: includes/sc_event-list_helptexts.php:12 +#: includes/sc_event-list_helptexts.php:15 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:14 +#: includes/sc_event-list_helptexts.php:19 msgid "category slug" msgstr "" -#: includes/sc_event-list_helptexts.php:15 +#: includes/sc_event-list_helptexts.php:20 msgid "" "This attribute defines the category of which events are initially shown. The" " default is to show events of all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:16 +#: includes/sc_event-list_helptexts.php:21 msgid "" "Provide a category slug to change this behavior. It is still possible to " "change the displayed categories via the filterbar or url parameters." msgstr "" -#: includes/sc_event-list_helptexts.php:19 +#: includes/sc_event-list_helptexts.php:26 msgid "This attribute defines the initial order of the events." msgstr "" -#: includes/sc_event-list_helptexts.php:20 +#: includes/sc_event-list_helptexts.php:27 msgid "" "With %1$S (default value) the events are sorted from old to new, with %2$s " "in the opposite direction (from new to old)." msgstr "" -#: includes/sc_event-list_helptexts.php:23 +#: includes/sc_event-list_helptexts.php:32 #, php-format msgid "" "This attribute defines the dates and date ranges of which events are " "displayed. The default is %1$s to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:24 +#: includes/sc_event-list_helptexts.php:33 #, php-format msgid "" "Filtered events according to %1$s value are not available in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:25 +#: includes/sc_event-list_helptexts.php:34 #, php-format msgid "" "You can find all available values with a description and examples in the " "sections %1$s and %2$s below." msgstr "" -#: includes/sc_event-list_helptexts.php:26 +#: includes/sc_event-list_helptexts.php:35 #, php-format msgid "See %1$s description if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:28 +#: includes/sc_event-list_helptexts.php:39 msgid "category slugs" msgstr "" -#: includes/sc_event-list_helptexts.php:29 +#: includes/sc_event-list_helptexts.php:40 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:30 +#: includes/sc_event-list_helptexts.php:41 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:31 +#: includes/sc_event-list_helptexts.php:42 #, php-format msgid "" "The filter is specified via the given category slugs. See %1$s description " "if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:33 -#: includes/sc_event-list_helptexts.php:74 -#: includes/sc_event-list_helptexts.php:89 -#: includes/sc_event-list_helptexts.php:104 +#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:111 +#: includes/sc_event-list_helptexts.php:138 +#: includes/sc_event-list_helptexts.php:177 msgid "number" msgstr "number" -#: includes/sc_event-list_helptexts.php:34 +#: includes/sc_event-list_helptexts.php:47 #, php-format msgid "" "This attribute defines how many events should be displayed if upcoming " @@ -1527,109 +1549,109 @@ msgid "" "displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:48 msgid "" "Please not that in the actual version there is no pagination of the events " "available, so the event list can be very long." msgstr "" -#: includes/sc_event-list_helptexts.php:38 +#: includes/sc_event-list_helptexts.php:53 msgid "" "This attribute defines if the filterbar should be displayed. The filterbar " "allows the users to specify filters for the listed events." msgstr "" -#: includes/sc_event-list_helptexts.php:39 +#: includes/sc_event-list_helptexts.php:54 #, php-format msgid "Choose %1$s to always hide and %2$s to always show the filterbar." msgstr "" -#: includes/sc_event-list_helptexts.php:40 +#: includes/sc_event-list_helptexts.php:55 #, php-format msgid "" "With %1$s the filterbar is only visible in the event list and with %2$s only" " in the single event view." msgstr "" -#: includes/sc_event-list_helptexts.php:43 +#: includes/sc_event-list_helptexts.php:60 #, php-format msgid "" "This attribute specifies the available items in the filterbar. This options " "are only valid if the filterbar is displayed (see %1$s attribute)." msgstr "" -#: includes/sc_event-list_helptexts.php:44 +#: includes/sc_event-list_helptexts.php:61 msgid "" "Find below an overview of the available filterbar items and their options:" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "filterbar item" msgstr "" -#: includes/sc_event-list_helptexts.php:46 -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:96 msgid "description" msgstr "kirjeldus" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "item options" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option values" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "default value" msgstr "vaikeväärtus" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option description" msgstr "" -#: includes/sc_event-list_helptexts.php:47 +#: includes/sc_event-list_helptexts.php:67 msgid "" "Show a list of all available years. Additional there are some special " "entries available (see item options)." msgstr "" -#: includes/sc_event-list_helptexts.php:48 -#: includes/sc_event-list_helptexts.php:53 +#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:82 msgid "Add an entry to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:49 -#: includes/sc_event-list_helptexts.php:54 +#: includes/sc_event-list_helptexts.php:73 +#: includes/sc_event-list_helptexts.php:84 msgid "Add an entry to show all upcoming events." msgstr "" -#: includes/sc_event-list_helptexts.php:50 -#: includes/sc_event-list_helptexts.php:55 +#: includes/sc_event-list_helptexts.php:74 +#: includes/sc_event-list_helptexts.php:85 msgid "Add an entry to show events in the past." msgstr "" -#: includes/sc_event-list_helptexts.php:51 +#: includes/sc_event-list_helptexts.php:75 msgid "Set descending or ascending order of year entries." msgstr "" -#: includes/sc_event-list_helptexts.php:52 +#: includes/sc_event-list_helptexts.php:78 msgid "Show a list of all available months." msgstr "" -#: includes/sc_event-list_helptexts.php:56 +#: includes/sc_event-list_helptexts.php:86 msgid "Set descending or ascending order of month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "php date-formats" msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "Set the displayed date format of the month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "With this item you can display the special entries %1$s, %2$s and %3$s. You " @@ -1637,65 +1659,65 @@ msgid "" "order." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "Specifies the displayed values and their order. The items must be seperated " "by %1$s." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Show a list of all available categories." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Add an entry to show events from all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "A link to reset the eventlist filter to standard." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "any text" msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "Set the caption of the link." msgstr "" -#: includes/sc_event-list_helptexts.php:61 +#: includes/sc_event-list_helptexts.php:93 msgid "Find below an overview of the available filterbar display options:" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "display option" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "available for" msgstr "" -#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:97 #, php-format msgid "Shows a horizonal list seperated by %1$s with a link to each item." msgstr "" -#: includes/sc_event-list_helptexts.php:65 +#: includes/sc_event-list_helptexts.php:98 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:66 +#: includes/sc_event-list_helptexts.php:99 msgid "Shows a simple link which can be clicked." msgstr "" -#: includes/sc_event-list_helptexts.php:67 +#: includes/sc_event-list_helptexts.php:102 msgid "Find below some declaration examples with descriptions:" msgstr "" -#: includes/sc_event-list_helptexts.php:69 +#: includes/sc_event-list_helptexts.php:104 #, php-format msgid "" "In this example you can see that the filterbar item and the used display " @@ -1703,22 +1725,22 @@ msgid "" "items seperated by a comma %2$s. These items will be displayed left-aligned." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "option_name" msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "value" msgstr "" -#: includes/sc_event-list_helptexts.php:72 +#: includes/sc_event-list_helptexts.php:107 #, php-format msgid "" "The 2 semicolon %1$s devides the bar in 3 section. The first section will be" @@ -1727,75 +1749,84 @@ msgid "" "left-aligned and the reset link will be on the right side." msgstr "" -#: includes/sc_event-list_helptexts.php:75 -#: includes/sc_event-list_helptexts.php:90 +#: includes/sc_event-list_helptexts.php:112 +#: includes/sc_event-list_helptexts.php:139 msgid "" "This attribute specifies if the title should be truncated to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:76 -#: includes/sc_event-list_helptexts.php:91 +#: includes/sc_event-list_helptexts.php:113 +#: includes/sc_event-list_helptexts.php:140 #, php-format msgid "" "With the standard value %1$s the full text is displayed, with %2$s the text " "is automatically truncated via css." msgstr "" -#: includes/sc_event-list_helptexts.php:77 -#: includes/sc_event-list_helptexts.php:92 -#: includes/sc_event-list_helptexts.php:107 +#: includes/sc_event-list_helptexts.php:114 +#: includes/sc_event-list_helptexts.php:141 +#: includes/sc_event-list_helptexts.php:180 msgid "This attribute has no influence if only a single event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:80 +#: includes/sc_event-list_helptexts.php:120 msgid "" "This attribute specifies if the starttime is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n" "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:85 +#: includes/sc_event-list_helptexts.php:130 msgid "" "This attribute specifies if the location is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n" "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:95 +#: includes/sc_event-list_helptexts.php:147 msgid "" "This attribute specifies if the categories are displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n" "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:100 +#: includes/sc_event-list_helptexts.php:157 msgid "" "This attribute specifies if the content is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n" "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:105 +#: includes/sc_event-list_helptexts.php:167 +msgid "" +"This attribute specifies if the excerpt is displayed in the event list.<br />\n" +"\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n" +"\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" +"\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" +"\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)." +msgstr "" + +#: includes/sc_event-list_helptexts.php:178 msgid "" "This attribute specifies if the content should be truncate to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:106 +#: includes/sc_event-list_helptexts.php:179 #, php-format msgid "With the standard value %1$s the full text is displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:110 +#: includes/sc_event-list_helptexts.php:186 msgid "" -"This attribute specifies if the content should be collapsed initially.<br />\n" +"This attribute specifies if the content or excerpt should be collapsed initially.<br />\n" "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n" "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n" "\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." msgstr "" -#: includes/sc_event-list_helptexts.php:116 +#: includes/sc_event-list_helptexts.php:197 msgid "" "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n" "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n" @@ -1803,7 +1834,7 @@ msgid "" "\t With \"events_with_content_only\" the link is only added in the event list for events with event content." msgstr "" -#: includes/sc_event-list_helptexts.php:122 +#: includes/sc_event-list_helptexts.php:208 msgid "" "This attribute specifies if a rss feed link should be added.<br />\n" "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n" @@ -1812,32 +1843,52 @@ msgid "" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:128 +#: includes/sc_event-list_helptexts.php:220 +msgid "" +"This attribute specifies if a ical feed link should be added.<br />\n" +"\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n" +"\t On that page you can also find some settings to modify the output.<br />\n" +"\t Choose \"false\" to never add and \"true\" to always add the link.<br />" +msgstr "" + +#: includes/sc_event-list_helptexts.php:231 msgid "" "This attribute specifies the page or post url for event links.<br />\n" "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n" "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget." msgstr "" -#: includes/sc_event-list_helptexts.php:135 +#: includes/sc_event-list_helptexts.php:243 msgid "" "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n" "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget." msgstr "" -#: includes/sc_event-list.php:135 +#: includes/sc_event-list.php:154 +msgid "Sorry, the requested event is not available!" +msgstr "" + +#: includes/sc_event-list.php:163 msgid "Event Information:" msgstr "Sündmuse info:" -#: includes/widget_helptexts.php:10 +#: includes/sc_event-list.php:405 +msgid "Link to RSS feed" +msgstr "" + +#: includes/sc_event-list.php:414 +msgid "Link to iCal feed" +msgstr "" + +#: includes/widget_helptexts.php:11 msgid "This option defines the displayed title for the widget." msgstr "" -#: includes/widget_helptexts.php:15 +#: includes/widget_helptexts.php:18 msgid "Category Filter" msgstr "Kategooria filter" -#: includes/widget_helptexts.php:17 +#: includes/widget_helptexts.php:20 msgid "" "This option defines the categories of which events are shown. The standard " "is all or an empty string to show all events. Specify a category slug or a " @@ -1846,137 +1897,145 @@ msgid "" "all possibilities." msgstr "" -#: includes/widget_helptexts.php:22 +#: includes/widget_helptexts.php:27 msgid "Number of listed events" msgstr "Määra, mitu sündmust kuvatakse" -#: includes/widget_helptexts.php:24 +#: includes/widget_helptexts.php:29 msgid "The number of upcoming events to display" msgstr "Määra, mitu eelseisvat sündmust kuvatakse" -#: includes/widget_helptexts.php:29 +#: includes/widget_helptexts.php:36 msgid "Truncate event title to" msgstr "Kärbi sündmuse pealkiri" -#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52 -#: includes/widget_helptexts.php:67 +#: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65 +#: includes/widget_helptexts.php:93 msgid "characters" msgstr "tähemärgini" -#: includes/widget_helptexts.php:31 +#: includes/widget_helptexts.php:38 msgid "" "This option defines the number of displayed characters for the event title." msgstr "" -#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54 +#: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67 #, php-format msgid "" "Set this value to %1$s to view the full text, or set it to %2$s to " "automatically truncate the text via css." msgstr "" -#: includes/widget_helptexts.php:37 +#: includes/widget_helptexts.php:46 msgid "Show event starttime" msgstr "Kuva sündmuse algusaeg" -#: includes/widget_helptexts.php:39 +#: includes/widget_helptexts.php:48 msgid "This option defines if the event start time will be displayed." msgstr "" -#: includes/widget_helptexts.php:44 +#: includes/widget_helptexts.php:55 msgid "Show event location" msgstr "Kuva sündmuse koht" -#: includes/widget_helptexts.php:46 +#: includes/widget_helptexts.php:57 msgid "This option defines if the event location will be displayed." msgstr "" -#: includes/widget_helptexts.php:51 +#: includes/widget_helptexts.php:64 msgid "Truncate location to" msgstr "Kärbi sündmuse koht" -#: includes/widget_helptexts.php:53 +#: includes/widget_helptexts.php:66 msgid "" "If the event location is diplayed this option defines the number of " "displayed characters." msgstr "" -#: includes/widget_helptexts.php:59 +#: includes/widget_helptexts.php:74 +msgid "Show event excerpt" +msgstr "" + +#: includes/widget_helptexts.php:76 +msgid "This option defines if the event excerpt will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:83 msgid "Show event content" msgstr "Kuva sündmuse sisu" -#: includes/widget_helptexts.php:61 +#: includes/widget_helptexts.php:85 msgid "This option defines if the event content will be displayed." msgstr "" -#: includes/widget_helptexts.php:66 +#: includes/widget_helptexts.php:92 msgid "Truncate content to" msgstr "Kärbi sündmuse sisu" -#: includes/widget_helptexts.php:68 +#: includes/widget_helptexts.php:94 msgid "" "If the event content are diplayed this option defines the number of diplayed" " characters." msgstr "" -#: includes/widget_helptexts.php:69 +#: includes/widget_helptexts.php:95 #, php-format msgid "Set this value to %1$s to view the full text." msgstr "" -#: includes/widget_helptexts.php:74 +#: includes/widget_helptexts.php:102 msgid "URL to the linked Event List page" msgstr "" -#: includes/widget_helptexts.php:76 +#: includes/widget_helptexts.php:104 msgid "" "This option defines the url to the linked Event List page. This option is " "required if you want to use one of the options below." msgstr "" -#: includes/widget_helptexts.php:81 +#: includes/widget_helptexts.php:111 msgid "Shortcode ID on linked page" msgstr "" -#: includes/widget_helptexts.php:83 +#: includes/widget_helptexts.php:113 msgid "" "This option defines the shortcode-id for the Event List on the linked page. " "Normally the standard value 1 is correct, you only have to change it if you " "use multiple event-list shortcodes on the linked page." msgstr "" -#: includes/widget_helptexts.php:90 +#: includes/widget_helptexts.php:122 msgid "" "With this option you can add a link to the single event page for every " "displayed event. You have to specify the url to the page and the shortcode " "id option if you want to use it." msgstr "" -#: includes/widget_helptexts.php:97 +#: includes/widget_helptexts.php:131 msgid "" "With this option you can add a link to the event-list page below the " "diplayed events. You have to specify the url to page option if you want to " "use it." msgstr "" -#: includes/widget_helptexts.php:102 +#: includes/widget_helptexts.php:138 msgid "Caption for the link" msgstr "Lingi pealkiri" -#: includes/widget_helptexts.php:104 +#: includes/widget_helptexts.php:140 msgid "" "This option defines the text for the link to the Event List page if the " "approriate option is selected." msgstr "" -#: includes/widget.php:20 +#: includes/widget.php:21 msgid "With this widget a list of upcoming events can be displayed." msgstr "" -#: includes/widget.php:25 +#: includes/widget.php:26 msgid "Upcoming events" msgstr "Eesseisvad sündmused" -#: includes/widget.php:38 +#: includes/widget.php:40 msgid "show events page" msgstr "näita sündmuste lehte" diff --git a/wp-content/plugins/event-list/languages/event-list-fi_FI.mo b/wp-content/plugins/event-list/languages/event-list-fi_FI.mo index 89a870424890d5650f8ed1a77bf334640eb808df..738b08721b14cdf710c22339d3bb1ea22d3f876a 100644 Binary files a/wp-content/plugins/event-list/languages/event-list-fi_FI.mo and b/wp-content/plugins/event-list/languages/event-list-fi_FI.mo differ diff --git a/wp-content/plugins/event-list/languages/event-list-fi_FI.po b/wp-content/plugins/event-list/languages/event-list-fi_FI.po index 6439939d383ab8b61e67f85fc1d76e4aa75a4a53..98114d01bc62580184a9cba4fa5761258033a6a3 100644 --- a/wp-content/plugins/event-list/languages/event-list-fi_FI.po +++ b/wp-content/plugins/event-list/languages/event-list-fi_FI.po @@ -1,5 +1,5 @@ # Translation file for the 'Event List' WordPress plugin -# Copyright (C) 2018 by mibuthu +# Copyright (C) 2021 by mibuthu # This file is distributed under the same license as the corresponding wordpress plugin. # # Translators: @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: wp-event-list\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n" -"POT-Creation-Date: 2018-05-27 12:20+0200\n" -"PO-Revision-Date: 2018-05-27 10:20+0000\n" +"POT-Creation-Date: 2021-04-24 11:28+0200\n" +"PO-Revision-Date: 2021-04-24 09:26+0000\n" "Last-Translator: mibuthu\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/mibuthu/wp-event-list/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -20,117 +20,117 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Errors during upgrade of plugin %1$s" msgstr "" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Upgrade of plugin %1$s successful" msgstr "" -#: admin/admin.php:106 admin/includes/admin-settings.php:65 +#: admin/admin.php:116 admin/includes/admin-settings.php:73 msgid "Event List Settings" msgstr "Tapahtuma listan asetukset" -#: admin/admin.php:106 +#: admin/admin.php:116 msgid "Settings" msgstr "Asetukset" -#: admin/admin.php:110 admin/includes/admin-about.php:37 +#: admin/admin.php:120 admin/includes/admin-about.php:43 msgid "About Event List" msgstr "Lisätietoa Tapahtumalistasta" -#: admin/admin.php:110 +#: admin/admin.php:120 msgid "About" msgstr "Lisätietoa" -#: admin/admin.php:132 +#: admin/admin.php:144 #, php-format msgid "%s Event" msgid_plural "%s Events" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 +#: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92 msgid "General" msgstr "Yleinen" -#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 -#: admin/includes/admin-about.php:105 +#: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88 +#: admin/includes/admin-about.php:117 msgid "Shortcode Attributes" msgstr "" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:82 msgid "Help and Instructions" msgstr "Apu ja ohjeet" -#: admin/includes/admin-about.php:73 +#: admin/includes/admin-about.php:83 #, php-format msgid "You can manage the events %1$shere%2$s" msgstr "" -#: admin/includes/admin-about.php:74 +#: admin/includes/admin-about.php:84 msgid "To show the events on your site you have 2 possibilities" msgstr "Sinulla on 2 tapaa näyttää Tapahtumalistan tapahtumia sivullasi." -#: admin/includes/admin-about.php:75 +#: admin/includes/admin-about.php:85 #, php-format msgid "you can place the <strong>shortcode</strong> %1$s on any page or post" msgstr "Voit asettaa <strong>shortcoden</strong> %1$s mille tahansa sivulle tai mihin tahansa postaukseen." -#: admin/includes/admin-about.php:76 +#: admin/includes/admin-about.php:86 #, php-format msgid "you can add the <strong>widget</strong> %1$s in your sidebars" msgstr "Voit lisätä <strong>widgetin</strong> %1$s sivupalkkeihisi." -#: admin/includes/admin-about.php:77 +#: admin/includes/admin-about.php:87 msgid "" "The displayed events and their style can be modified with the available " "widget settings and the available attributes for the shortcode." msgstr "Näytettävät tapahtumat ja niiden ulkoasua voidaan muokata widgetin asetuksista ja käyttämällä attribuutteja shortcodessa." -#: admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:88 #, php-format msgid "" "A list of all available shortcode attributes with their descriptions is " "available in the %1$s tab." msgstr "" -#: admin/includes/admin-about.php:79 +#: admin/includes/admin-about.php:89 msgid "The available widget options are described in their tooltip text." msgstr "Saatavilla olevat widget-asetukset on kuvattu tooltipissä." -#: admin/includes/admin-about.php:80 +#: admin/includes/admin-about.php:90 #, php-format msgid "" "If you enable one of the links options (%1$s or %2$s) in the widget you have" " to insert an URL to the linked event-list page." msgstr "" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120 msgid "Add links to the single events" msgstr "Lisää linkkejä yksittäisiin tapahtumiin" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129 msgid "Add a link to the Event List page" msgstr "Lisää linkki Tapahtumalistan sivulle" -#: admin/includes/admin-about.php:81 +#: admin/includes/admin-about.php:91 msgid "" "This is required because the widget does not know in which page or post the " "shortcode was included." msgstr "" -#: admin/includes/admin-about.php:82 +#: admin/includes/admin-about.php:92 msgid "" "Additionally you have to insert the correct Shortcode id on the linked page." " This id describes which shortcode should be used on the given page or post " "if you have more than one." msgstr "" -#: admin/includes/admin-about.php:83 +#: admin/includes/admin-about.php:93 #, php-format msgid "" "The default value %1$s is normally o.k. (for pages with 1 shortcode only), " @@ -138,986 +138,991 @@ msgid "" "link on your linked page or post." msgstr "" -#: admin/includes/admin-about.php:84 +#: admin/includes/admin-about.php:94 #, php-format msgid "The id is available at the end of the URL parameters (e.g. %1$s)." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 #, php-format msgid "" "Be sure to also check the %1$s to get the plugin behaving just the way you " "want." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 msgid "Settings page" msgstr "Asetukset-sivu" -#: admin/includes/admin-about.php:92 +#: admin/includes/admin-about.php:103 msgid "About the plugin author" msgstr "" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:105 #, php-format msgid "" "This plugin is developed by %1$s, you can find more information about the " "plugin on the %2$s." msgstr "" -#: admin/includes/admin-about.php:94 -msgid "wordpress plugin site" +#: admin/includes/admin-about.php:105 +msgid "WordPress plugin site" msgstr "" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:106 #, php-format msgid "If you like the plugin please rate it on the %1$s." msgstr "" -#: admin/includes/admin-about.php:95 -msgid "wordpress plugin review site" +#: admin/includes/admin-about.php:106 +msgid "WordPress plugin review site" msgstr "" -#: admin/includes/admin-about.php:96 +#: admin/includes/admin-about.php:107 msgid "" "If you want to support the plugin I would be happy to get a small donation" msgstr "" -#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 -#: admin/includes/admin-about.php:99 +#: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109 +#: admin/includes/admin-about.php:110 #, php-format msgid "Donate with %1$s" msgstr "" -#: admin/includes/admin-about.php:107 +#: admin/includes/admin-about.php:119 msgid "" "You have the possibility to modify the output if you add some of the " "following attributes to the shortcode." msgstr "" -#: admin/includes/admin-about.php:108 +#: admin/includes/admin-about.php:120 #, php-format msgid "" "You can combine and add as much attributes as you want. E.g. the shortcode " "including the attributes %1$s and %2$s would looks like this:" msgstr "" -#: admin/includes/admin-about.php:110 +#: admin/includes/admin-about.php:122 msgid "" "Below you can find a list of all supported attributes with their " "descriptions and available options:" msgstr "" -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:137 msgid "Attribute name" msgstr "Atribuutin nimi" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:138 msgid "Value options" msgstr "Arvon vaihtoehdot" -#: admin/includes/admin-about.php:126 +#: admin/includes/admin-about.php:139 msgid "Default value" msgstr "Oletus arvo" -#: admin/includes/admin-about.php:127 +#: admin/includes/admin-about.php:140 msgid "Description" msgstr "Kuvaus" -#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 -#: includes/sc_event-list_helptexts.php:31 +#: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:42 msgid "Filter Syntax" msgstr "" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:160 msgid "" "For date and cat filters you can specify complex filters with the following " "syntax:" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 #, php-format msgid "" "You can use %1$s and %2$s connections to define complex filters. " "Additionally you can set brackets %3$s for nested queries." msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "AND" msgstr "JA" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "OR" msgstr "TAI" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "or" msgstr "tai" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "and" msgstr "ja" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:162 msgid "Examples for cat filters:" msgstr "" -#: admin/includes/admin-about.php:149 +#: admin/includes/admin-about.php:163 #, php-format msgid "Show all events with category %1$s." msgstr "" -#: admin/includes/admin-about.php:150 +#: admin/includes/admin-about.php:164 #, php-format msgid "Show all events with category %1$s or %2$s." msgstr "" -#: admin/includes/admin-about.php:151 +#: admin/includes/admin-about.php:165 #, php-format msgid "" "Show all events with category %1$s and all events where category %2$s as " "well as %3$s is selected." msgstr "" -#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34 msgid "Available Date Formats" msgstr "Käytettävissä olevat päivämäärän muotoilut" -#: admin/includes/admin-about.php:157 +#: admin/includes/admin-about.php:172 msgid "For date filters you can use the following date formats:" msgstr "" -#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34 msgid "Available Date Range Formats" msgstr "" -#: admin/includes/admin-about.php:166 +#: admin/includes/admin-about.php:182 msgid "For date filters you can use the following daterange formats:" msgstr "" -#: admin/includes/admin-about.php:178 +#: admin/includes/admin-about.php:195 msgid "Value" msgstr "Arvo" -#: admin/includes/admin-about.php:182 +#: admin/includes/admin-about.php:199 msgid "Example" msgstr "Esimerkki" -#: admin/includes/admin-categories.php:38 +#: admin/includes/admin-categories.php:54 msgid "Synchronize with post categories" msgstr "" -#: admin/includes/admin-categories.php:46 +#: admin/includes/admin-categories.php:63 #, php-format msgid "%1$s categories modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:47 +#: admin/includes/admin-categories.php:64 #, php-format msgid "%1$s categories added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:48 +#: admin/includes/admin-categories.php:65 #, php-format msgid "%1$s categories deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:50 +#: admin/includes/admin-categories.php:67 #, php-format msgid "%1$s categories not modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:51 +#: admin/includes/admin-categories.php:68 #, php-format msgid "%1$s categories not added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:52 +#: admin/includes/admin-categories.php:69 #, php-format msgid "%1$s categories not deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:55 +#: admin/includes/admin-categories.php:72 msgid "An Error occured during the category sync" msgstr "" -#: admin/includes/admin-categories.php:59 +#: admin/includes/admin-categories.php:75 msgid "Category sync finished" msgstr "" -#: admin/includes/admin-category-sync.php:45 +#: admin/includes/admin-category-sync.php:54 msgid "Error: You are not allowed to view this page!" msgstr "" -#: admin/includes/admin-category-sync.php:62 +#: admin/includes/admin-category-sync.php:70 msgid "Affected Categories when switching to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:63 +#: admin/includes/admin-category-sync.php:71 msgid "Switch option to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:64 +#: admin/includes/admin-category-sync.php:72 msgid "" "If you proceed, all post categories will be copied and all events will be " "re-assigned to this new categories." msgstr "" -#: admin/includes/admin-category-sync.php:65 +#: admin/includes/admin-category-sync.php:73 msgid "" "Afterwards the event categories are independent of the post categories." msgstr "" -#: admin/includes/admin-category-sync.php:68 +#: admin/includes/admin-category-sync.php:75 msgid "Affected Categories when switching to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:69 +#: admin/includes/admin-category-sync.php:76 msgid "Switch option to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:70 +#: admin/includes/admin-category-sync.php:77 msgid "" "Take a detailed look at the affected categories above before you proceed! " "All seperate event categories will be deleted, this cannot be undone!" msgstr "" -#: admin/includes/admin-category-sync.php:73 +#: admin/includes/admin-category-sync.php:79 msgid "Event Categories: Synchronise with Post Categories" msgstr "" -#: admin/includes/admin-category-sync.php:74 +#: admin/includes/admin-category-sync.php:80 msgid "Start synchronisation" msgstr "" -#: admin/includes/admin-category-sync.php:75 +#: admin/includes/admin-category-sync.php:81 msgid "" "If this option is enabled the above listed categories will be deleted and " "removed from the existing events!" msgstr "" -#: admin/includes/admin-category-sync.php:90 +#: admin/includes/admin-category-sync.php:96 msgid "Categories to modify" msgstr "" -#: admin/includes/admin-category-sync.php:91 +#: admin/includes/admin-category-sync.php:97 msgid "Categories to add" msgstr "" -#: admin/includes/admin-category-sync.php:92 +#: admin/includes/admin-category-sync.php:98 msgid "Categories to delete (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:93 +#: admin/includes/admin-category-sync.php:99 msgid "Delete not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:97 +#: admin/includes/admin-category-sync.php:102 msgid "Categories with differences" msgstr "" -#: admin/includes/admin-category-sync.php:98 +#: admin/includes/admin-category-sync.php:103 msgid "Categories to add (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:99 +#: admin/includes/admin-category-sync.php:104 msgid "Add not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:117 +#: admin/includes/admin-category-sync.php:123 msgid "none" msgstr "" -#: admin/includes/admin-import.php:49 +#: admin/includes/admin-import.php:58 msgid "Import Events" msgstr "Tuo tapahtumia" -#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116 +#: admin/includes/admin-import.php:220 msgid "Step" msgstr "Vaihe" -#: admin/includes/admin-import.php:69 +#: admin/includes/admin-import.php:79 msgid "Set import file and options" msgstr "" -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:82 #, php-format msgid "Proceed with Step %1$s" msgstr "" -#: admin/includes/admin-import.php:75 +#: admin/includes/admin-import.php:85 msgid "Example file" msgstr "Esimerkki tiedosto" -#: admin/includes/admin-import.php:76 +#: admin/includes/admin-import.php:86 #, php-format msgid "" "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)" msgstr "" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "Note" msgstr "" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "" "Do not change the column header and separator line (first two lines), " "otherwise the import will fail!" msgstr "" -#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 +#: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103 msgid "Sorry, there has been an error." msgstr "" -#: admin/includes/admin-import.php:85 +#: admin/includes/admin-import.php:96 msgid "The file does not exist, please try again." msgstr "Tiedosto ei ole olemassa, yritä uudelleen." -#: admin/includes/admin-import.php:93 +#: admin/includes/admin-import.php:104 msgid "The uploaded file does not have the required csv extension." msgstr "" -#: admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:116 msgid "Events review and additonal category selection" msgstr "" -#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133 msgid "Error" msgstr "" -#: admin/includes/admin-import.php:111 +#: admin/includes/admin-import.php:122 msgid "This CSV file cannot be imported" msgstr "" -#: admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:133 msgid "None of the events in this CSV file can be imported" msgstr "" -#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179 msgid "Warning" msgstr "" -#: admin/includes/admin-import.php:126 +#: admin/includes/admin-import.php:138 #, php-format msgid "There is %1$s event which cannot be imported" msgid_plural "There are %1$s events which cannot be imported" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-import.php:134 +#: admin/includes/admin-import.php:150 #, php-format msgid "CSV line %1$s" msgstr "" -#: admin/includes/admin-import.php:144 +#: admin/includes/admin-import.php:160 msgid "You can still import all other events listed below." msgstr "" -#: admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:179 msgid "" "The following category slugs are not available and will be removed from the " "imported events" msgstr "" -#: admin/includes/admin-import.php:169 +#: admin/includes/admin-import.php:185 msgid "" "If you want to keep these categories, please create these Categories first " "and do the import afterwards." msgstr "" -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:220 msgid "Import result" msgstr "" -#: admin/includes/admin-import.php:201 +#: admin/includes/admin-import.php:223 #, php-format msgid "Import of %1$s events successful!" msgstr "" -#: admin/includes/admin-import.php:202 +#: admin/includes/admin-import.php:224 msgid "Go back to All Events" msgstr "" -#: admin/includes/admin-import.php:206 +#: admin/includes/admin-import.php:227 msgid "Errors during Import" msgstr "" -#: admin/includes/admin-import.php:215 +#: admin/includes/admin-import.php:235 msgid "Event from CSV-line" msgstr "" -#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 -#: includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77 +#: includes/widget_helptexts.php:9 msgid "Title" msgstr "Otsikko" -#: admin/includes/admin-import.php:227 +#: admin/includes/admin-import.php:248 msgid "Start Date" msgstr "Alku päivämäärä" -#: admin/includes/admin-import.php:228 +#: admin/includes/admin-import.php:249 msgid "End Date" msgstr "Loppu päivämäärä" -#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 -#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 +#: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:69 msgid "Time" msgstr "Aika" -#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62 -#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57 -#: includes/options_helptexts.php:58 +#: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78 +#: admin/includes/admin-new.php:107 includes/options_helptexts.php:75 +#: includes/options_helptexts.php:76 msgid "Location" msgstr "Sijainti" -#: admin/includes/admin-import.php:231 +#: admin/includes/admin-import.php:252 msgid "Content" msgstr "" -#: admin/includes/admin-import.php:232 +#: admin/includes/admin-import.php:253 msgid "Category slugs" msgstr "" -#: admin/includes/admin-import.php:274 +#: admin/includes/admin-import.php:297 msgid "Header line is missing or not correct!" msgstr "" -#: admin/includes/admin-import.php:275 +#: admin/includes/admin-import.php:298 #, php-format msgid "" "Have a look at the %1$sexample file%2$s to see the correct header line " "format." msgstr "" -#: admin/includes/admin-import.php:281 +#: admin/includes/admin-import.php:305 #, php-format msgid "Wrong number of items in line (%1$s items found, 6-7 required)" msgstr "" -#: admin/includes/admin-import.php:309 +#: admin/includes/admin-import.php:334 msgid "Empty event title found" msgstr "" -#: admin/includes/admin-import.php:315 +#: admin/includes/admin-import.php:340 msgid "Wrong date format for startdate" msgstr "" -#: admin/includes/admin-import.php:324 +#: admin/includes/admin-import.php:348 msgid "Wrong date format for enddate" msgstr "" -#: admin/includes/admin-import.php:365 +#: admin/includes/admin-import.php:401 msgid "Import events" msgstr "Tuo tapahtumia" -#: admin/includes/admin-import.php:366 +#: admin/includes/admin-import.php:402 msgid "Add additional categories" msgstr "Lisää kategorioita" -#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +#: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257 msgid "Import" msgstr "Tuo" -#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +#: admin/includes/admin-import.php:428 includes/events_post_type.php:78 msgid "No events found" msgstr "" -#: admin/includes/admin-import.php:432 +#: admin/includes/admin-import.php:473 msgid "Saving of event failed!" msgstr "" -#: admin/includes/admin-main.php:60 +#: admin/includes/admin-main.php:76 msgid "Event Date" msgstr "" -#: admin/includes/admin-main.php:64 +#: admin/includes/admin-main.php:80 msgid "Author" msgstr "Kirjoittaja" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 #, php-format msgid "Add a copy of %1$s" msgstr "" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 msgid "Copy" msgstr "" -#: admin/includes/admin-new.php:51 +#: admin/includes/admin-new.php:58 msgid "Event data" msgstr "" -#: admin/includes/admin-new.php:80 +#: admin/includes/admin-new.php:90 msgid "Add Copy" msgstr "" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "Date" msgstr "Päiväys" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "required" msgstr "tarpeellinen" -#: admin/includes/admin-new.php:87 +#: admin/includes/admin-new.php:101 msgid "Multi-Day Event" msgstr "Monipäiväinen tapahtuma" -#: admin/includes/admin-new.php:106 +#: admin/includes/admin-new.php:121 msgid "Event Title" msgstr "" -#: admin/includes/admin-new.php:121 +#: admin/includes/admin-new.php:137 msgid "Event Content" msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203 msgid "Event updated." msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205 msgid "View event" msgstr "" -#: admin/includes/admin-new.php:184 +#: admin/includes/admin-new.php:204 #, php-format msgid "Event restored to revision from %1$s" msgstr "" -#: admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:205 msgid "Event published." msgstr "" -#: admin/includes/admin-new.php:187 +#: admin/includes/admin-new.php:207 msgid "Event submitted." msgstr "" -#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209 +#: admin/includes/admin-new.php:210 msgid "Preview event" msgstr "" -#: admin/includes/admin-new.php:188 +#: admin/includes/admin-new.php:208 #, php-format msgid "Event scheduled for: %1$s>" msgstr "" -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:210 msgid "Event draft updated." msgstr "" -#: admin/includes/admin-settings.php:71 +#: admin/includes/admin-settings.php:79 msgid "Go to Event Category switching page" msgstr "" -#: admin/includes/admin-settings.php:83 +#: admin/includes/admin-settings.php:93 msgid "Frontend Settings" msgstr "" -#: admin/includes/admin-settings.php:84 +#: admin/includes/admin-settings.php:94 msgid "Admin Page Settings" msgstr "Hallinnointisivun asetukset" -#: admin/includes/admin-settings.php:85 +#: admin/includes/admin-settings.php:95 msgid "Feed Settings" msgstr "Syöte asetukset" -#: admin/includes/admin-settings.php:86 +#: admin/includes/admin-settings.php:96 msgid "Category Taxonomy" msgstr "" -#: includes/daterange_helptexts.php:7 +#: includes/daterange_helptexts.php:8 msgid "Year" msgstr "Vuosi" -#: includes/daterange_helptexts.php:8 +#: includes/daterange_helptexts.php:9 msgid "A year can be specified in 4 digit format." msgstr "Vuosi määritellään 4-merkkisessä formaatissa." -#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14 -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:47 #, php-format msgid "" "For a start date filter the first day of %1$s is used, in an end date the " "last day." msgstr "" -#: includes/daterange_helptexts.php:9 +#: includes/daterange_helptexts.php:10 msgid "the resulting year" msgstr "" -#: includes/daterange_helptexts.php:12 +#: includes/daterange_helptexts.php:15 msgid "Month" msgstr "Kuukausi" -#: includes/daterange_helptexts.php:13 +#: includes/daterange_helptexts.php:16 msgid "" "A month can be specified with 4 digits for the year and 2 digits for the " "month, seperated by a hyphen (-)." msgstr "" -#: includes/daterange_helptexts.php:14 +#: includes/daterange_helptexts.php:17 msgid "the resulting month" msgstr "" -#: includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:22 msgid "Day" msgstr "Päivä" -#: includes/daterange_helptexts.php:18 +#: includes/daterange_helptexts.php:23 msgid "" "A day can be specified in the format 4 digits for the year, 2 digits for the" " month and 2 digets for the day, seperated by hyphens (-)." msgstr "" -#: includes/daterange_helptexts.php:21 +#: includes/daterange_helptexts.php:28 msgid "Relative Year" msgstr "" -#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28 -#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55 #, php-format msgid "%1$s from now can be specified in the following notation: %2$s" msgstr "" -#: includes/daterange_helptexts.php:22 +#: includes/daterange_helptexts.php:29 msgid "A relative year" msgstr "" -#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29 -#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38 +#: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56 #, php-format msgid "" "This means you can specify a positive or negative (%1$s) %2$s from now with " "%3$s or %4$s attached (see also the example below)." msgstr "" -#: includes/daterange_helptexts.php:23 +#: includes/daterange_helptexts.php:30 msgid "number of years" msgstr "" -#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30 -#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44 +#: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39 +#: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57 #, php-format msgid "Additionally the following values are available: %1$s" msgstr "" -#: includes/daterange_helptexts.php:27 +#: includes/daterange_helptexts.php:36 msgid "Relative Month" msgstr "" -#: includes/daterange_helptexts.php:28 +#: includes/daterange_helptexts.php:37 msgid "A relative month" msgstr "" -#: includes/daterange_helptexts.php:29 +#: includes/daterange_helptexts.php:38 msgid "number of months" msgstr "" -#: includes/daterange_helptexts.php:33 +#: includes/daterange_helptexts.php:44 msgid "Relative Week" msgstr "" -#: includes/daterange_helptexts.php:34 +#: includes/daterange_helptexts.php:45 msgid "A relative week" msgstr "" -#: includes/daterange_helptexts.php:35 +#: includes/daterange_helptexts.php:46 msgid "number of weeks" msgstr "" -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:47 msgid "the resulting week" msgstr "" -#: includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:48 #, php-format msgid "" "The first day of the week is depending on the option %1$s which can be found" " and changed in %2$s." msgstr "" -#: includes/daterange_helptexts.php:41 +#: includes/daterange_helptexts.php:54 msgid "Relative Day" msgstr "" -#: includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:55 msgid "A relative day" msgstr "" -#: includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:56 msgid "number of days" msgstr "päivien lukumäärä" -#: includes/daterange_helptexts.php:49 +#: includes/daterange_helptexts.php:64 msgid "Date range" msgstr "" -#: includes/daterange_helptexts.php:50 +#: includes/daterange_helptexts.php:66 msgid "" "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n" "\t For the start and end date any available date format can be used." msgstr "" -#: includes/daterange_helptexts.php:55 +#: includes/daterange_helptexts.php:75 msgid "This value defines a range without any limits." msgstr "" -#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61 -#: includes/daterange_helptexts.php:66 +#: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83 +#: includes/daterange_helptexts.php:90 #, php-format msgid "The corresponding date_range format is: %1$s" msgstr "" -#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 +#: includes/daterange_helptexts.php:81 includes/filterbar.php:310 msgid "Upcoming" msgstr "Tulevat" -#: includes/daterange_helptexts.php:60 +#: includes/daterange_helptexts.php:82 msgid "This value defines a range from the actual day to the future." msgstr "" -#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 +#: includes/daterange_helptexts.php:88 includes/filterbar.php:318 msgid "Past" msgstr "Menneet" -#: includes/daterange_helptexts.php:65 +#: includes/daterange_helptexts.php:89 msgid "This value defines a range from the past to the previous day." msgstr "" -#: includes/event.php:107 +#: includes/event.php:124 msgid "No valid start date provided" msgstr "" -#: includes/events_post_type.php:60 +#: includes/event.php:299 includes/event.php:301 +#: includes/sc_event-list.php:298 +msgid "read more" +msgstr "" + +#: includes/events_post_type.php:69 msgid "Events" msgstr "Tapahtumat" -#: includes/events_post_type.php:61 +#: includes/events_post_type.php:70 msgid "Event" msgstr "" -#: includes/events_post_type.php:62 +#: includes/events_post_type.php:71 msgid "Add New" msgstr "Lisää uusi" -#: includes/events_post_type.php:63 +#: includes/events_post_type.php:72 msgid "Add New Event" msgstr "Lisää uusi tapahtuma" -#: includes/events_post_type.php:64 +#: includes/events_post_type.php:73 msgid "Edit Event" msgstr "Muokkaa tapahtumaa" -#: includes/events_post_type.php:65 +#: includes/events_post_type.php:74 msgid "New Event" msgstr "" -#: includes/events_post_type.php:66 +#: includes/events_post_type.php:75 msgid "View Event" msgstr "" -#: includes/events_post_type.php:67 +#: includes/events_post_type.php:76 msgid "View Events" msgstr "" -#: includes/events_post_type.php:68 +#: includes/events_post_type.php:77 msgid "Search Events" msgstr "" -#: includes/events_post_type.php:70 +#: includes/events_post_type.php:79 msgid "No events found in Trash" msgstr "" -#: includes/events_post_type.php:72 +#: includes/events_post_type.php:81 msgid "All Events" msgstr "Kaikki tapahtumat" -#: includes/events_post_type.php:73 +#: includes/events_post_type.php:82 msgid "Event Archives" msgstr "" -#: includes/events_post_type.php:74 +#: includes/events_post_type.php:83 msgid "Event Attributes" msgstr "" -#: includes/events_post_type.php:75 +#: includes/events_post_type.php:84 msgid "Insert into event" msgstr "" -#: includes/events_post_type.php:76 +#: includes/events_post_type.php:85 msgid "Uploaded to this event" msgstr "" -#: includes/events_post_type.php:77 +#: includes/events_post_type.php:86 msgid "Event List" msgstr "Tapahtuma lista" -#: includes/events_post_type.php:78 +#: includes/events_post_type.php:87 msgid "Filter events list" msgstr "" -#: includes/events_post_type.php:79 +#: includes/events_post_type.php:88 msgid "Events list navigation" msgstr "" -#: includes/events_post_type.php:80 +#: includes/events_post_type.php:89 msgid "Events list" msgstr "" -#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +#: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90 msgid "Reset" msgstr "" -#: includes/filterbar.php:278 +#: includes/filterbar.php:296 msgid "All" msgstr "Kaikki" -#: includes/filterbar.php:281 +#: includes/filterbar.php:298 msgid "All Dates" msgstr "" -#: includes/options_helptexts.php:10 +#: includes/options_helptexts.php:11 msgid "CSV File to import" msgstr "Lisättävä CSV-tiedosto" -#: includes/options_helptexts.php:12 +#: includes/options_helptexts.php:13 msgid "Please select the file which contains the event data in CSV format." msgstr "Valitse tiedosto joka sisältää tapahtumatiedot CSV-formaatissa." -#: includes/options_helptexts.php:15 +#: includes/options_helptexts.php:18 msgid "Used date format" msgstr "" -#: includes/options_helptexts.php:17 +#: includes/options_helptexts.php:21 msgid "" "With this option the given date format for event start and end date in the " "CSV file can be specified." msgstr "" -#: includes/options_helptexts.php:18 +#: includes/options_helptexts.php:23 #, php-format msgid "" "You can use the php date format options given in %1$s, the most important " "ones are:" msgstr "" -#: includes/options_helptexts.php:20 +#: includes/options_helptexts.php:26 msgid "full year representation, with 4 digits" msgstr "" -#: includes/options_helptexts.php:21 +#: includes/options_helptexts.php:27 msgid "numeric representation of a month, with leading zeros" msgstr "" -#: includes/options_helptexts.php:22 +#: includes/options_helptexts.php:28 msgid "day of the month, 2 digits with leading zeros" msgstr "" -#: includes/options_helptexts.php:24 +#: includes/options_helptexts.php:30 msgid "" "If the date format in the CSV file does not correspond to the given format, " "the import script tries to recognize the date format by itself." msgstr "" -#: includes/options_helptexts.php:25 +#: includes/options_helptexts.php:31 msgid "" "But this can cause problems or result in wrong dates, so it is recommended " "to specify the correct date format here." msgstr "" -#: includes/options_helptexts.php:26 +#: includes/options_helptexts.php:32 msgid "Examples" msgstr "" -#: includes/options_helptexts.php:33 +#: includes/options_helptexts.php:41 msgid "Text for no events" msgstr "Ei tapahtumia teksti" -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:43 msgid "" "This option defines the displayed text when no events are available for the " "selected view." msgstr "" -#: includes/options_helptexts.php:38 +#: includes/options_helptexts.php:48 msgid "Multiday filter range" msgstr "" -#: includes/options_helptexts.php:39 +#: includes/options_helptexts.php:49 msgid "Use the complete event range in the date filter" msgstr "" -#: includes/options_helptexts.php:40 +#: includes/options_helptexts.php:51 msgid "" "This option defines if the complete range of a multiday event shall be " "considered in the date filter." msgstr "" -#: includes/options_helptexts.php:41 +#: includes/options_helptexts.php:52 msgid "" "If disabled, only the start day of an event is considered in the filter." msgstr "" -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:53 msgid "" "For an example multiday event which started yesterday and ends tomorrow this" " means, that it is displayed in umcoming dates when this option is enabled, " "but it is hidden when the option is disabled." msgstr "" -#: includes/options_helptexts.php:45 +#: includes/options_helptexts.php:58 msgid "Date display" msgstr "Päivä näyttö" -#: includes/options_helptexts.php:46 +#: includes/options_helptexts.php:59 msgid "Show the date only once per day" msgstr "" -#: includes/options_helptexts.php:47 +#: includes/options_helptexts.php:61 msgid "" "With this option enabled the date is only displayed once per day if more " "than one event is available on the same day." msgstr "" -#: includes/options_helptexts.php:48 +#: includes/options_helptexts.php:62 msgid "" "If enabled, the events are ordered in a different way (end date before start" " time) to allow using the same date for as much events as possible." msgstr "" -#: includes/options_helptexts.php:51 +#: includes/options_helptexts.php:67 msgid "HTML tags" msgstr "HTML merkit" -#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:75 #, php-format msgid "Allow HTML tags in the event field \"%1$s\"" msgstr "" -#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 +#: includes/options_helptexts.php:69 includes/options_helptexts.php:76 #, php-format msgid "" "This option specifies if HTML tags are allowed in the event field \"%1$s\"." msgstr "" -#: includes/options_helptexts.php:61 +#: includes/options_helptexts.php:81 msgid "Preferred language file" msgstr "" -#: includes/options_helptexts.php:62 +#: includes/options_helptexts.php:82 msgid "Load translations from general language directory first" msgstr "" -#: includes/options_helptexts.php:63 +#: includes/options_helptexts.php:84 #, php-format msgid "" "The default is to load the %1$s translation file from the plugin language " "directory first (%2$s)." msgstr "" -#: includes/options_helptexts.php:64 +#: includes/options_helptexts.php:85 #, php-format msgid "" "If you want to load your own language file from the general language " @@ -1125,295 +1130,312 @@ msgid "" "language directory, you have to enable this option." msgstr "" -#: includes/options_helptexts.php:68 +#: includes/options_helptexts.php:91 msgid "Events permalink slug" msgstr "" -#: includes/options_helptexts.php:69 +#: includes/options_helptexts.php:92 msgid "" "With this option the slug for the events permalink URLs can be defined." msgstr "" -#: includes/options_helptexts.php:72 +#: includes/options_helptexts.php:97 msgid "Text for \"Show content\"" msgstr "" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:98 msgid "" "With this option the displayed text for the link to show the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:76 +#: includes/options_helptexts.php:103 msgid "Text for \"Hide content\"" msgstr "" -#: includes/options_helptexts.php:77 +#: includes/options_helptexts.php:104 msgid "" "With this option the displayed text for the link to hide the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:109 msgid "Disable CSS file" msgstr "Estä CSS tiedosto" -#: includes/options_helptexts.php:81 +#: includes/options_helptexts.php:110 #, php-format msgid "Disable the %1$s file." msgstr "" -#: includes/options_helptexts.php:82 +#: includes/options_helptexts.php:112 #, php-format msgid "With this option you can disable the inclusion of the %1$s file." msgstr "" -#: includes/options_helptexts.php:83 +#: includes/options_helptexts.php:113 msgid "" "This normally only make sense if you have css conflicts with your theme and " "want to set all required css styles somewhere else (e.g. in the theme css)." msgstr "" -#: includes/options_helptexts.php:87 +#: includes/options_helptexts.php:119 msgid "Date format in edit form" msgstr "Päivämäärän muotoilu muokkaus lomakkeella" -#: includes/options_helptexts.php:88 +#: includes/options_helptexts.php:121 msgid "" "This option sets the displayed date format for the event date fields in the " "event new / edit form." msgstr "" -#: includes/options_helptexts.php:89 +#: includes/options_helptexts.php:122 msgid "The default is an empty string to use the Wordpress standard setting." msgstr "" -#: includes/options_helptexts.php:90 +#: includes/options_helptexts.php:123 #, php-format msgid "" "All available options to specify the date format can be found %1$shere%2$s." msgstr "" -#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 +#: includes/options_helptexts.php:129 msgid "Enable RSS feed" msgstr "Salli RSS syöte" -#: includes/options_helptexts.php:95 -msgid "Enable support for an event RSS feed" +#: includes/options_helptexts.php:130 +msgid "Enable support for the event RSS feed" msgstr "" -#: includes/options_helptexts.php:96 -msgid "This option activates a RSS feed for the events." +#: includes/options_helptexts.php:132 +msgid "" +"This option activates the RSS feed for the events and adds a feed link in " +"the html head." msgstr "" -#: includes/options_helptexts.php:97 +#: includes/options_helptexts.php:133 msgid "" "You have to enable this option if you want to use one of the RSS feed " "features." msgstr "" -#: includes/options_helptexts.php:100 -msgid "Feed name" -msgstr "Syötteen nimi" +#: includes/options_helptexts.php:138 +msgid "Enable iCal feed" +msgstr "" -#: includes/options_helptexts.php:101 -#, php-format -msgid "This option sets the feed name. The default value is %1$s." +#: includes/options_helptexts.php:139 +msgid "Enable support for the event iCal feed" msgstr "" -#: includes/options_helptexts.php:102 -#, php-format -msgid "" -"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " -"enabled)." +#: includes/options_helptexts.php:141 +msgid "This option activates the iCal feed for events." msgstr "" -#: includes/options_helptexts.php:105 -msgid "Feed Description" -msgstr "Syötteen kuvaus" +#: includes/options_helptexts.php:142 +msgid "" +"You have to enable this option if you want to use one of the iCal features." +msgstr "" -#: includes/options_helptexts.php:106 -#, php-format -msgid "This options set the feed description. The default value is %1$s." +#: includes/options_helptexts.php:147 +msgid "Position of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:107 -msgid "" -"This description will be used in the title for the feed link in the html " -"head and for the description in the feed itself." +#: includes/options_helptexts.php:149 +msgid "at the top (above the navigation bar)" msgstr "" -#: includes/options_helptexts.php:110 -msgid "Listed events" -msgstr "Listatut tapahtumat" +#: includes/options_helptexts.php:150 +msgid "between navigation bar and events" +msgstr "" -#: includes/options_helptexts.php:111 -msgid "Only show upcoming events in feed" +#: includes/options_helptexts.php:151 +msgid "at the bottom" msgstr "" -#: includes/options_helptexts.php:112 +#: includes/options_helptexts.php:153 msgid "" -"If this option is enabled only the upcoming events are listed in the feed." +"This option specifies the position of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:113 -msgid "If disabled all events (upcoming and past) will be listed." +#: includes/options_helptexts.php:158 +msgid "Align of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:116 -msgid "Add RSS feed link in head" -msgstr "" +#: includes/options_helptexts.php:160 +msgid "left" +msgstr "vasen" -#: includes/options_helptexts.php:117 -msgid "Add RSS feed link in the html head" +#: includes/options_helptexts.php:161 +msgid "center" +msgstr "keskitetty" + +#: includes/options_helptexts.php:162 +msgid "right" +msgstr "oikea" + +#: includes/options_helptexts.php:164 +msgid "" +"This option specifies the align of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:118 -msgid "This option adds a RSS feed in the html head for the events." +#: includes/options_helptexts.php:169 +msgid "RSS feed name" msgstr "" -#: includes/options_helptexts.php:119 -msgid "There are 2 alternatives to include the RSS feed" +#: includes/options_helptexts.php:171 +#, php-format +msgid "This option sets the RSS feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:120 +#: includes/options_helptexts.php:172 +#, php-format msgid "" -"The first way is this option to include a link in the html head. This link " -"will be recognized by browers or feed readers." +"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " +"enabled)." msgstr "" -#: includes/options_helptexts.php:121 +#: includes/options_helptexts.php:177 +msgid "RSS feed Description" +msgstr "" + +#: includes/options_helptexts.php:179 #, php-format +msgid "This options set the RSS feed description. The default value is %1$s." +msgstr "" + +#: includes/options_helptexts.php:180 msgid "" -"The second way is to include a visible feed link directly in the event list." -" This can be done by setting the shortcode attribute %1$s to %2$s." +"This description will be used in the title for the feed link in the html " +"head and for the description in the feed itself." msgstr "" -#: includes/options_helptexts.php:122 -#, php-format -msgid "This option is only valid if the setting %1$s is enabled." +#: includes/options_helptexts.php:185 +msgid "RSS feed events" msgstr "" -#: includes/options_helptexts.php:125 -msgid "Position of the RSS feed link" +#: includes/options_helptexts.php:186 +msgid "Only show upcoming events in the RSS feed" msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the top (above the navigation bar)" +#: includes/options_helptexts.php:188 +msgid "" +"If this option is enabled only the upcoming events are listed in the RSS " +"feed." msgstr "" -#: includes/options_helptexts.php:126 -msgid "between navigation bar and events" +#: includes/options_helptexts.php:189 includes/options_helptexts.php:215 +msgid "If disabled, all events (upcoming and past) will be listed." msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the bottom" +#: includes/options_helptexts.php:194 +msgid "RSS link text" msgstr "" -#: includes/options_helptexts.php:127 -msgid "" -"This option specifies the position of the RSS feed link in the event list." +#: includes/options_helptexts.php:196 +msgid "This option sets the caption of the RSS feed link in the event list." +msgstr "" + +#: includes/options_helptexts.php:197 +msgid "Use an empty text to only show the rss image." msgstr "" -#: includes/options_helptexts.php:128 includes/options_helptexts.php:134 -#: includes/options_helptexts.php:140 includes/options_helptexts.php:146 +#: includes/options_helptexts.php:198 #, php-format msgid "" "You have to set the shortcode attribute %1$s to %2$s if you want to show the" -" feed link." +" RSS feed link." msgstr "" -#: includes/options_helptexts.php:131 -msgid "Align of the RSS feed link" +#: includes/options_helptexts.php:203 +msgid "iCal feed name" msgstr "" -#: includes/options_helptexts.php:132 -msgid "left" -msgstr "vasen" - -#: includes/options_helptexts.php:132 -msgid "center" -msgstr "keskitetty" - -#: includes/options_helptexts.php:132 -msgid "right" -msgstr "oikea" +#: includes/options_helptexts.php:205 +#, php-format +msgid "This option sets the iCal feed name. The default value is %1$s." +msgstr "" -#: includes/options_helptexts.php:133 +#: includes/options_helptexts.php:206 +#, php-format msgid "" -"This option specifies the align of the RSS feed link in the event list." +"This name will be used in the iCal feed url (e.g. %1$s, or %2$s with " +"permalinks enabled)." msgstr "" -#: includes/options_helptexts.php:137 -msgid "Feed link text" +#: includes/options_helptexts.php:211 +msgid "iCal feed events" msgstr "" -#: includes/options_helptexts.php:138 -msgid "" -"This option specifies the caption of the RSS feed link in the event list." +#: includes/options_helptexts.php:212 +msgid "Only show upcoming events in the iCal feed" msgstr "" -#: includes/options_helptexts.php:139 +#: includes/options_helptexts.php:214 msgid "" -"Insert an empty text to hide any text if you only want to show the rss " -"image." +"If this option is enabled only the upcoming events are listed in the iCal " +"file." msgstr "" -#: includes/options_helptexts.php:143 -msgid "Feed link image" +#: includes/options_helptexts.php:220 +msgid "iCal link text" msgstr "" -#: includes/options_helptexts.php:144 -msgid "Show rss image in feed link" +#: includes/options_helptexts.php:222 +msgid "This option sets the iCal link text in the event list." msgstr "" -#: includes/options_helptexts.php:145 +#: includes/options_helptexts.php:223 +msgid "Use an empty text to only show the iCal image." +msgstr "" + +#: includes/options_helptexts.php:224 +#, php-format msgid "" -"This option specifies if the an image should be dispayed in the feed link in" -" front of the text." +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" iCal feed link." msgstr "" -#: includes/options_helptexts.php:151 +#: includes/options_helptexts.php:231 msgid "Event Category handling" msgstr "" -#: includes/options_helptexts.php:152 +#: includes/options_helptexts.php:232 msgid "Use Post Categories" msgstr "" -#: includes/options_helptexts.php:153 +#: includes/options_helptexts.php:234 msgid "" "Do not maintain seperate categories for the events, and use the existing " "post categories instead." msgstr "" -#: includes/options_helptexts.php:154 +#: includes/options_helptexts.php:235 msgid "Attention" msgstr "Huomio" -#: includes/options_helptexts.php:155 +#: includes/options_helptexts.php:236 msgid "" "This option cannot be changed directly, but you can go to the Event Category" " switching page from here." msgstr "" -#: includes/options.php:40 +#: includes/options.php:73 msgid "events" msgstr "" -#: includes/options.php:41 +#: includes/options.php:77 msgid "Show content" msgstr "" -#: includes/options.php:42 +#: includes/options.php:81 msgid "Hide content" msgstr "" -#: includes/sc_event-list_helptexts.php:7 +#: includes/sc_event-list_helptexts.php:8 msgid "event-id" msgstr "" -#: includes/sc_event-list_helptexts.php:8 +#: includes/sc_event-list_helptexts.php:9 #, php-format msgid "" "By default the event-list is displayed initially. But if an event-id (e.g. " @@ -1421,107 +1443,107 @@ msgid "" "this event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:10 -#: includes/sc_event-list_helptexts.php:22 +#: includes/sc_event-list_helptexts.php:13 +#: includes/sc_event-list_helptexts.php:31 msgid "year" msgstr "vuosi" -#: includes/sc_event-list_helptexts.php:11 +#: includes/sc_event-list_helptexts.php:14 msgid "" "This attribute defines which events are initially shown. The default is to " "show the upcoming events only." msgstr "" -#: includes/sc_event-list_helptexts.php:12 +#: includes/sc_event-list_helptexts.php:15 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:14 +#: includes/sc_event-list_helptexts.php:19 msgid "category slug" msgstr "" -#: includes/sc_event-list_helptexts.php:15 +#: includes/sc_event-list_helptexts.php:20 msgid "" "This attribute defines the category of which events are initially shown. The" " default is to show events of all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:16 +#: includes/sc_event-list_helptexts.php:21 msgid "" "Provide a category slug to change this behavior. It is still possible to " "change the displayed categories via the filterbar or url parameters." msgstr "" -#: includes/sc_event-list_helptexts.php:19 +#: includes/sc_event-list_helptexts.php:26 msgid "This attribute defines the initial order of the events." msgstr "" -#: includes/sc_event-list_helptexts.php:20 +#: includes/sc_event-list_helptexts.php:27 msgid "" "With %1$S (default value) the events are sorted from old to new, with %2$s " "in the opposite direction (from new to old)." msgstr "" -#: includes/sc_event-list_helptexts.php:23 +#: includes/sc_event-list_helptexts.php:32 #, php-format msgid "" "This attribute defines the dates and date ranges of which events are " "displayed. The default is %1$s to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:24 +#: includes/sc_event-list_helptexts.php:33 #, php-format msgid "" "Filtered events according to %1$s value are not available in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:25 +#: includes/sc_event-list_helptexts.php:34 #, php-format msgid "" "You can find all available values with a description and examples in the " "sections %1$s and %2$s below." msgstr "" -#: includes/sc_event-list_helptexts.php:26 +#: includes/sc_event-list_helptexts.php:35 #, php-format msgid "See %1$s description if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:28 +#: includes/sc_event-list_helptexts.php:39 msgid "category slugs" msgstr "" -#: includes/sc_event-list_helptexts.php:29 +#: includes/sc_event-list_helptexts.php:40 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:30 +#: includes/sc_event-list_helptexts.php:41 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:31 +#: includes/sc_event-list_helptexts.php:42 #, php-format msgid "" "The filter is specified via the given category slugs. See %1$s description " "if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:33 -#: includes/sc_event-list_helptexts.php:74 -#: includes/sc_event-list_helptexts.php:89 -#: includes/sc_event-list_helptexts.php:104 +#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:111 +#: includes/sc_event-list_helptexts.php:138 +#: includes/sc_event-list_helptexts.php:177 msgid "number" msgstr "numero" -#: includes/sc_event-list_helptexts.php:34 +#: includes/sc_event-list_helptexts.php:47 #, php-format msgid "" "This attribute defines how many events should be displayed if upcoming " @@ -1529,109 +1551,109 @@ msgid "" "displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:48 msgid "" "Please not that in the actual version there is no pagination of the events " "available, so the event list can be very long." msgstr "" -#: includes/sc_event-list_helptexts.php:38 +#: includes/sc_event-list_helptexts.php:53 msgid "" "This attribute defines if the filterbar should be displayed. The filterbar " "allows the users to specify filters for the listed events." msgstr "" -#: includes/sc_event-list_helptexts.php:39 +#: includes/sc_event-list_helptexts.php:54 #, php-format msgid "Choose %1$s to always hide and %2$s to always show the filterbar." msgstr "" -#: includes/sc_event-list_helptexts.php:40 +#: includes/sc_event-list_helptexts.php:55 #, php-format msgid "" "With %1$s the filterbar is only visible in the event list and with %2$s only" " in the single event view." msgstr "" -#: includes/sc_event-list_helptexts.php:43 +#: includes/sc_event-list_helptexts.php:60 #, php-format msgid "" "This attribute specifies the available items in the filterbar. This options " "are only valid if the filterbar is displayed (see %1$s attribute)." msgstr "" -#: includes/sc_event-list_helptexts.php:44 +#: includes/sc_event-list_helptexts.php:61 msgid "" "Find below an overview of the available filterbar items and their options:" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "filterbar item" msgstr "" -#: includes/sc_event-list_helptexts.php:46 -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:96 msgid "description" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "item options" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option values" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "default value" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option description" msgstr "" -#: includes/sc_event-list_helptexts.php:47 +#: includes/sc_event-list_helptexts.php:67 msgid "" "Show a list of all available years. Additional there are some special " "entries available (see item options)." msgstr "" -#: includes/sc_event-list_helptexts.php:48 -#: includes/sc_event-list_helptexts.php:53 +#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:82 msgid "Add an entry to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:49 -#: includes/sc_event-list_helptexts.php:54 +#: includes/sc_event-list_helptexts.php:73 +#: includes/sc_event-list_helptexts.php:84 msgid "Add an entry to show all upcoming events." msgstr "" -#: includes/sc_event-list_helptexts.php:50 -#: includes/sc_event-list_helptexts.php:55 +#: includes/sc_event-list_helptexts.php:74 +#: includes/sc_event-list_helptexts.php:85 msgid "Add an entry to show events in the past." msgstr "" -#: includes/sc_event-list_helptexts.php:51 +#: includes/sc_event-list_helptexts.php:75 msgid "Set descending or ascending order of year entries." msgstr "" -#: includes/sc_event-list_helptexts.php:52 +#: includes/sc_event-list_helptexts.php:78 msgid "Show a list of all available months." msgstr "" -#: includes/sc_event-list_helptexts.php:56 +#: includes/sc_event-list_helptexts.php:86 msgid "Set descending or ascending order of month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "php date-formats" msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "Set the displayed date format of the month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "With this item you can display the special entries %1$s, %2$s and %3$s. You " @@ -1639,65 +1661,65 @@ msgid "" "order." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "Specifies the displayed values and their order. The items must be seperated " "by %1$s." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Show a list of all available categories." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Add an entry to show events from all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "A link to reset the eventlist filter to standard." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "any text" msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "Set the caption of the link." msgstr "" -#: includes/sc_event-list_helptexts.php:61 +#: includes/sc_event-list_helptexts.php:93 msgid "Find below an overview of the available filterbar display options:" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "display option" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "available for" msgstr "" -#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:97 #, php-format msgid "Shows a horizonal list seperated by %1$s with a link to each item." msgstr "" -#: includes/sc_event-list_helptexts.php:65 +#: includes/sc_event-list_helptexts.php:98 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:66 +#: includes/sc_event-list_helptexts.php:99 msgid "Shows a simple link which can be clicked." msgstr "" -#: includes/sc_event-list_helptexts.php:67 +#: includes/sc_event-list_helptexts.php:102 msgid "Find below some declaration examples with descriptions:" msgstr "" -#: includes/sc_event-list_helptexts.php:69 +#: includes/sc_event-list_helptexts.php:104 #, php-format msgid "" "In this example you can see that the filterbar item and the used display " @@ -1705,22 +1727,22 @@ msgid "" "items seperated by a comma %2$s. These items will be displayed left-aligned." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "option_name" msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "value" msgstr "" -#: includes/sc_event-list_helptexts.php:72 +#: includes/sc_event-list_helptexts.php:107 #, php-format msgid "" "The 2 semicolon %1$s devides the bar in 3 section. The first section will be" @@ -1729,75 +1751,84 @@ msgid "" "left-aligned and the reset link will be on the right side." msgstr "" -#: includes/sc_event-list_helptexts.php:75 -#: includes/sc_event-list_helptexts.php:90 +#: includes/sc_event-list_helptexts.php:112 +#: includes/sc_event-list_helptexts.php:139 msgid "" "This attribute specifies if the title should be truncated to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:76 -#: includes/sc_event-list_helptexts.php:91 +#: includes/sc_event-list_helptexts.php:113 +#: includes/sc_event-list_helptexts.php:140 #, php-format msgid "" "With the standard value %1$s the full text is displayed, with %2$s the text " "is automatically truncated via css." msgstr "" -#: includes/sc_event-list_helptexts.php:77 -#: includes/sc_event-list_helptexts.php:92 -#: includes/sc_event-list_helptexts.php:107 +#: includes/sc_event-list_helptexts.php:114 +#: includes/sc_event-list_helptexts.php:141 +#: includes/sc_event-list_helptexts.php:180 msgid "This attribute has no influence if only a single event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:80 +#: includes/sc_event-list_helptexts.php:120 msgid "" "This attribute specifies if the starttime is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n" "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:85 +#: includes/sc_event-list_helptexts.php:130 msgid "" "This attribute specifies if the location is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n" "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:95 +#: includes/sc_event-list_helptexts.php:147 msgid "" "This attribute specifies if the categories are displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n" "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:100 +#: includes/sc_event-list_helptexts.php:157 msgid "" "This attribute specifies if the content is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n" "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:105 +#: includes/sc_event-list_helptexts.php:167 +msgid "" +"This attribute specifies if the excerpt is displayed in the event list.<br />\n" +"\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n" +"\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" +"\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" +"\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)." +msgstr "" + +#: includes/sc_event-list_helptexts.php:178 msgid "" "This attribute specifies if the content should be truncate to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:106 +#: includes/sc_event-list_helptexts.php:179 #, php-format msgid "With the standard value %1$s the full text is displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:110 +#: includes/sc_event-list_helptexts.php:186 msgid "" -"This attribute specifies if the content should be collapsed initially.<br />\n" +"This attribute specifies if the content or excerpt should be collapsed initially.<br />\n" "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n" "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n" "\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." msgstr "" -#: includes/sc_event-list_helptexts.php:116 +#: includes/sc_event-list_helptexts.php:197 msgid "" "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n" "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n" @@ -1805,7 +1836,7 @@ msgid "" "\t With \"events_with_content_only\" the link is only added in the event list for events with event content." msgstr "" -#: includes/sc_event-list_helptexts.php:122 +#: includes/sc_event-list_helptexts.php:208 msgid "" "This attribute specifies if a rss feed link should be added.<br />\n" "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n" @@ -1814,32 +1845,52 @@ msgid "" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:128 +#: includes/sc_event-list_helptexts.php:220 +msgid "" +"This attribute specifies if a ical feed link should be added.<br />\n" +"\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n" +"\t On that page you can also find some settings to modify the output.<br />\n" +"\t Choose \"false\" to never add and \"true\" to always add the link.<br />" +msgstr "" + +#: includes/sc_event-list_helptexts.php:231 msgid "" "This attribute specifies the page or post url for event links.<br />\n" "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n" "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget." msgstr "" -#: includes/sc_event-list_helptexts.php:135 +#: includes/sc_event-list_helptexts.php:243 msgid "" "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n" "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget." msgstr "" -#: includes/sc_event-list.php:135 +#: includes/sc_event-list.php:154 +msgid "Sorry, the requested event is not available!" +msgstr "" + +#: includes/sc_event-list.php:163 msgid "Event Information:" msgstr "Tapahtuman tiedot:" -#: includes/widget_helptexts.php:10 +#: includes/sc_event-list.php:405 +msgid "Link to RSS feed" +msgstr "" + +#: includes/sc_event-list.php:414 +msgid "Link to iCal feed" +msgstr "" + +#: includes/widget_helptexts.php:11 msgid "This option defines the displayed title for the widget." msgstr "Määritä vimpaimen näkyvä otsikko" -#: includes/widget_helptexts.php:15 +#: includes/widget_helptexts.php:18 msgid "Category Filter" msgstr "Kategoria suodatin" -#: includes/widget_helptexts.php:17 +#: includes/widget_helptexts.php:20 msgid "" "This option defines the categories of which events are shown. The standard " "is all or an empty string to show all events. Specify a category slug or a " @@ -1848,137 +1899,145 @@ msgid "" "all possibilities." msgstr "" -#: includes/widget_helptexts.php:22 +#: includes/widget_helptexts.php:27 msgid "Number of listed events" msgstr "Listattujen tapahtumien määrä" -#: includes/widget_helptexts.php:24 +#: includes/widget_helptexts.php:29 msgid "The number of upcoming events to display" msgstr "" -#: includes/widget_helptexts.php:29 +#: includes/widget_helptexts.php:36 msgid "Truncate event title to" msgstr "Tapahtuma otsikon lyhenne" -#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52 -#: includes/widget_helptexts.php:67 +#: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65 +#: includes/widget_helptexts.php:93 msgid "characters" msgstr "merkkejä" -#: includes/widget_helptexts.php:31 +#: includes/widget_helptexts.php:38 msgid "" "This option defines the number of displayed characters for the event title." msgstr "" -#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54 +#: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67 #, php-format msgid "" "Set this value to %1$s to view the full text, or set it to %2$s to " "automatically truncate the text via css." msgstr "" -#: includes/widget_helptexts.php:37 +#: includes/widget_helptexts.php:46 msgid "Show event starttime" msgstr "Näytä tapahtuman alkamisajankohta" -#: includes/widget_helptexts.php:39 +#: includes/widget_helptexts.php:48 msgid "This option defines if the event start time will be displayed." msgstr "" -#: includes/widget_helptexts.php:44 +#: includes/widget_helptexts.php:55 msgid "Show event location" msgstr "Näytä tapahtuman paikka" -#: includes/widget_helptexts.php:46 +#: includes/widget_helptexts.php:57 msgid "This option defines if the event location will be displayed." msgstr "" -#: includes/widget_helptexts.php:51 +#: includes/widget_helptexts.php:64 msgid "Truncate location to" msgstr "Sijainnin lyhenne" -#: includes/widget_helptexts.php:53 +#: includes/widget_helptexts.php:66 msgid "" "If the event location is diplayed this option defines the number of " "displayed characters." msgstr "" -#: includes/widget_helptexts.php:59 +#: includes/widget_helptexts.php:74 +msgid "Show event excerpt" +msgstr "" + +#: includes/widget_helptexts.php:76 +msgid "This option defines if the event excerpt will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:83 msgid "Show event content" msgstr "" -#: includes/widget_helptexts.php:61 +#: includes/widget_helptexts.php:85 msgid "This option defines if the event content will be displayed." msgstr "" -#: includes/widget_helptexts.php:66 +#: includes/widget_helptexts.php:92 msgid "Truncate content to" msgstr "" -#: includes/widget_helptexts.php:68 +#: includes/widget_helptexts.php:94 msgid "" "If the event content are diplayed this option defines the number of diplayed" " characters." msgstr "" -#: includes/widget_helptexts.php:69 +#: includes/widget_helptexts.php:95 #, php-format msgid "Set this value to %1$s to view the full text." msgstr "" -#: includes/widget_helptexts.php:74 +#: includes/widget_helptexts.php:102 msgid "URL to the linked Event List page" msgstr "" -#: includes/widget_helptexts.php:76 +#: includes/widget_helptexts.php:104 msgid "" "This option defines the url to the linked Event List page. This option is " "required if you want to use one of the options below." msgstr "" -#: includes/widget_helptexts.php:81 +#: includes/widget_helptexts.php:111 msgid "Shortcode ID on linked page" msgstr "" -#: includes/widget_helptexts.php:83 +#: includes/widget_helptexts.php:113 msgid "" "This option defines the shortcode-id for the Event List on the linked page. " "Normally the standard value 1 is correct, you only have to change it if you " "use multiple event-list shortcodes on the linked page." msgstr "" -#: includes/widget_helptexts.php:90 +#: includes/widget_helptexts.php:122 msgid "" "With this option you can add a link to the single event page for every " "displayed event. You have to specify the url to the page and the shortcode " "id option if you want to use it." msgstr "" -#: includes/widget_helptexts.php:97 +#: includes/widget_helptexts.php:131 msgid "" "With this option you can add a link to the event-list page below the " "diplayed events. You have to specify the url to page option if you want to " "use it." msgstr "" -#: includes/widget_helptexts.php:102 +#: includes/widget_helptexts.php:138 msgid "Caption for the link" msgstr "" -#: includes/widget_helptexts.php:104 +#: includes/widget_helptexts.php:140 msgid "" "This option defines the text for the link to the Event List page if the " "approriate option is selected." msgstr "" -#: includes/widget.php:20 +#: includes/widget.php:21 msgid "With this widget a list of upcoming events can be displayed." msgstr "Tällä vimpaimella voit näyttää tulevien tapahtumien listan." -#: includes/widget.php:25 +#: includes/widget.php:26 msgid "Upcoming events" msgstr "Tulevat tapahtumat" -#: includes/widget.php:38 +#: includes/widget.php:40 msgid "show events page" msgstr "näytä tapahtuma sivu" diff --git a/wp-content/plugins/event-list/languages/event-list-fr_FR.mo b/wp-content/plugins/event-list/languages/event-list-fr_FR.mo index b0a7afb826ec7ebea64382046c13fef22120df2b..560717c32080f5def9d91ce52427788a350132fd 100644 Binary files a/wp-content/plugins/event-list/languages/event-list-fr_FR.mo and b/wp-content/plugins/event-list/languages/event-list-fr_FR.mo differ diff --git a/wp-content/plugins/event-list/languages/event-list-fr_FR.po b/wp-content/plugins/event-list/languages/event-list-fr_FR.po index 37d9a03cd49f3f2b081209d172c46034fe927b32..81642269b1b6c825f689b0352d9bf914340644b1 100644 --- a/wp-content/plugins/event-list/languages/event-list-fr_FR.po +++ b/wp-content/plugins/event-list/languages/event-list-fr_FR.po @@ -1,17 +1,18 @@ # Translation file for the 'Event List' WordPress plugin -# Copyright (C) 2018 by mibuthu +# Copyright (C) 2021 by mibuthu # This file is distributed under the same license as the corresponding wordpress plugin. # # Translators: # Amélie Breffeil <amelie.breffeil@hotmail.fr>, 2017 # Gwenael Jan <gwejan@gmail.com>, 2015 # patoudss <patrice@desaintsteban.fr>, 2016-2017 +# Thomas, 2019 msgid "" msgstr "" "Project-Id-Version: wp-event-list\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n" -"POT-Creation-Date: 2018-05-27 12:20+0200\n" -"PO-Revision-Date: 2018-05-27 10:20+0000\n" +"POT-Creation-Date: 2021-04-24 11:28+0200\n" +"PO-Revision-Date: 2021-04-24 09:26+0000\n" "Last-Translator: mibuthu\n" "Language-Team: French (France) (http://www.transifex.com/mibuthu/wp-event-list/language/fr_FR/)\n" "MIME-Version: 1.0\n" @@ -20,117 +21,117 @@ msgstr "" "Language: fr_FR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Errors during upgrade of plugin %1$s" -msgstr "" +msgstr "Erreurs lors de la mise à niveau de l'extension %1$s" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Upgrade of plugin %1$s successful" -msgstr "" +msgstr "Mise à niveau de l'extension %1$s terminée" -#: admin/admin.php:106 admin/includes/admin-settings.php:65 +#: admin/admin.php:116 admin/includes/admin-settings.php:73 msgid "Event List Settings" msgstr "Préférences" -#: admin/admin.php:106 +#: admin/admin.php:116 msgid "Settings" msgstr "Préférences" -#: admin/admin.php:110 admin/includes/admin-about.php:37 +#: admin/admin.php:120 admin/includes/admin-about.php:43 msgid "About Event List" msgstr "A propos de la liste d'évènement" -#: admin/admin.php:110 +#: admin/admin.php:120 msgid "About" msgstr "A propos" -#: admin/admin.php:132 +#: admin/admin.php:144 #, php-format msgid "%s Event" msgid_plural "%s Events" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s évènement" +msgstr[1] "%s évènements" -#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 +#: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92 msgid "General" msgstr "Général" -#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 -#: admin/includes/admin-about.php:105 +#: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88 +#: admin/includes/admin-about.php:117 msgid "Shortcode Attributes" msgstr "Attributs du shortcode" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:82 msgid "Help and Instructions" msgstr "Aide et instructions" -#: admin/includes/admin-about.php:73 +#: admin/includes/admin-about.php:83 #, php-format msgid "You can manage the events %1$shere%2$s" msgstr "Vous pouvez gérer l'événement %1$sici%2$s" -#: admin/includes/admin-about.php:74 +#: admin/includes/admin-about.php:84 msgid "To show the events on your site you have 2 possibilities" msgstr "Pour voir les évènements sur votre site, vous avez 2 possibilités." -#: admin/includes/admin-about.php:75 +#: admin/includes/admin-about.php:85 #, php-format msgid "you can place the <strong>shortcode</strong> %1$s on any page or post" msgstr "Vous pouvez placer le <strong>shortcode</strong> %1$s sur n'importe quel page ou article." -#: admin/includes/admin-about.php:76 +#: admin/includes/admin-about.php:86 #, php-format msgid "you can add the <strong>widget</strong> %1$s in your sidebars" msgstr "Vous pouvez ajouter le <strong>widget</strong> %1$s dans votre barre latérale." -#: admin/includes/admin-about.php:77 +#: admin/includes/admin-about.php:87 msgid "" "The displayed events and their style can be modified with the available " "widget settings and the available attributes for the shortcode." msgstr "L'évènement affiché et son style peut être modifié avec les paramètres du widget et attributs disponible pour le shortcode." -#: admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:88 #, php-format msgid "" "A list of all available shortcode attributes with their descriptions is " "available in the %1$s tab." msgstr "Une liste de tous les attributs de shortcode avec leurs description est disponible dans l'onglet%1$s" -#: admin/includes/admin-about.php:79 +#: admin/includes/admin-about.php:89 msgid "The available widget options are described in their tooltip text." msgstr "Les options disponibles du widget sont disponible dans leurs infobulles" -#: admin/includes/admin-about.php:80 +#: admin/includes/admin-about.php:90 #, php-format msgid "" "If you enable one of the links options (%1$s or %2$s) in the widget you have" " to insert an URL to the linked event-list page." 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" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120 msgid "Add links to the single events" msgstr "Ajoute un lien vers le détail de l'évènement." -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129 msgid "Add a link to the Event List page" msgstr "Ajoute un liens vers la page des évènements." -#: admin/includes/admin-about.php:81 +#: admin/includes/admin-about.php:91 msgid "" "This is required because the widget does not know in which page or post the " "shortcode was included." msgstr "" -#: admin/includes/admin-about.php:82 +#: admin/includes/admin-about.php:92 msgid "" "Additionally you have to insert the correct Shortcode id on the linked page." " This id describes which shortcode should be used on the given page or post " "if you have more than one." msgstr "" -#: admin/includes/admin-about.php:83 +#: admin/includes/admin-about.php:93 #, php-format msgid "" "The default value %1$s is normally o.k. (for pages with 1 shortcode only), " @@ -138,986 +139,991 @@ msgid "" "link on your linked page or post." msgstr "" -#: admin/includes/admin-about.php:84 +#: admin/includes/admin-about.php:94 #, php-format msgid "The id is available at the end of the URL parameters (e.g. %1$s)." msgstr "L' id est disponible à la fin des paramètres de l'URL (ex %1$s)." -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 #, php-format msgid "" "Be sure to also check the %1$s to get the plugin behaving just the way you " "want." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 msgid "Settings page" msgstr "Page des paramètres" -#: admin/includes/admin-about.php:92 +#: admin/includes/admin-about.php:103 msgid "About the plugin author" msgstr "Au sujet de l'auteur du plugin" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:105 #, php-format msgid "" "This plugin is developed by %1$s, you can find more information about the " "plugin on the %2$s." msgstr "Ce plugin est développé par %1$s, plus d'informations au sujet du plugin sur %2$s " -#: admin/includes/admin-about.php:94 -msgid "wordpress plugin site" -msgstr "Site du plugin Wordpress" +#: admin/includes/admin-about.php:105 +msgid "WordPress plugin site" +msgstr "" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:106 #, php-format msgid "If you like the plugin please rate it on the %1$s." msgstr "Si vous aimez ce plugin, donnez-lui une note sur %1$s." -#: admin/includes/admin-about.php:95 -msgid "wordpress plugin review site" +#: admin/includes/admin-about.php:106 +msgid "WordPress plugin review site" msgstr "" -#: admin/includes/admin-about.php:96 +#: admin/includes/admin-about.php:107 msgid "" "If you want to support the plugin I would be happy to get a small donation" msgstr "Si vous voulez soutenir ce plugin, je serai ravi de recevoir un petit don !" -#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 -#: admin/includes/admin-about.php:99 +#: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109 +#: admin/includes/admin-about.php:110 #, php-format msgid "Donate with %1$s" -msgstr "" +msgstr "Faire un don avec %1$s" -#: admin/includes/admin-about.php:107 +#: admin/includes/admin-about.php:119 msgid "" "You have the possibility to modify the output if you add some of the " "following attributes to the shortcode." msgstr "Vous avez la possibilité de modifier le résultat si vous ajoutez certains des attributs suivant dans le shortcode." -#: admin/includes/admin-about.php:108 +#: admin/includes/admin-about.php:120 #, php-format msgid "" "You can combine and add as much attributes as you want. E.g. the shortcode " "including the attributes %1$s and %2$s would looks like this:" 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:" -#: admin/includes/admin-about.php:110 +#: admin/includes/admin-about.php:122 msgid "" "Below you can find a list of all supported attributes with their " "descriptions and available options:" msgstr "Ci-dessous, vous pouvez trouver une liste de tous les attributs supporté avec leurs descriptions et les options valables." -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:137 msgid "Attribute name" msgstr "Nom de l'attribut" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:138 msgid "Value options" msgstr "Valeurs possibles" -#: admin/includes/admin-about.php:126 +#: admin/includes/admin-about.php:139 msgid "Default value" msgstr "Valeur par défaut" -#: admin/includes/admin-about.php:127 +#: admin/includes/admin-about.php:140 msgid "Description" msgstr "Description" -#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 -#: includes/sc_event-list_helptexts.php:31 +#: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:42 msgid "Filter Syntax" msgstr "Syntaxe des filtres" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:160 msgid "" "For date and cat filters you can specify complex filters with the following " "syntax:" msgstr "Pour les filtres de dates et catégories, vous pouvez spécifier des filtres complexe avec la syntaxe suivante." -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 #, php-format msgid "" "You can use %1$s and %2$s connections to define complex filters. " "Additionally you can set brackets %3$s for nested queries." 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." -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "AND" msgstr "ET" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "OR" msgstr "OU" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "or" msgstr "ou" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "and" msgstr "et" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:162 msgid "Examples for cat filters:" msgstr "Exemple de filtre de catégorie :" -#: admin/includes/admin-about.php:149 +#: admin/includes/admin-about.php:163 #, php-format msgid "Show all events with category %1$s." msgstr "Voir tous les évènements de la catégorie %1$s." -#: admin/includes/admin-about.php:150 +#: admin/includes/admin-about.php:164 #, php-format msgid "Show all events with category %1$s or %2$s." msgstr "Voir tous les évènements de la catégorie %1$s ou %2$s." -#: admin/includes/admin-about.php:151 +#: admin/includes/admin-about.php:165 #, php-format msgid "" "Show all events with category %1$s and all events where category %2$s as " "well as %3$s is selected." 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." -#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34 msgid "Available Date Formats" msgstr "Formats de date disponible" -#: admin/includes/admin-about.php:157 +#: admin/includes/admin-about.php:172 msgid "For date filters you can use the following date formats:" msgstr "Pour les filtres de dates, vous pouvez utiliser les formats de dates suivants:" -#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34 msgid "Available Date Range Formats" msgstr "Formats de d'intervalle de date disponible" -#: admin/includes/admin-about.php:166 +#: admin/includes/admin-about.php:182 msgid "For date filters you can use the following daterange formats:" msgstr "Pour les filtres d'intervalles de date, vous pouvez utiliser les formats de dates suivants." -#: admin/includes/admin-about.php:178 +#: admin/includes/admin-about.php:195 msgid "Value" msgstr "Valeur" -#: admin/includes/admin-about.php:182 +#: admin/includes/admin-about.php:199 msgid "Example" msgstr "Exemple" -#: admin/includes/admin-categories.php:38 +#: admin/includes/admin-categories.php:54 msgid "Synchronize with post categories" msgstr "" -#: admin/includes/admin-categories.php:46 +#: admin/includes/admin-categories.php:63 #, php-format msgid "%1$s categories modified (%2$s)" -msgstr "" +msgstr "%1$s catégories modifiées (%2$s)" -#: admin/includes/admin-categories.php:47 +#: admin/includes/admin-categories.php:64 #, php-format msgid "%1$s categories added (%2$s)" -msgstr "" +msgstr "%1$s catégories ajoutées (%2$s)" -#: admin/includes/admin-categories.php:48 +#: admin/includes/admin-categories.php:65 #, php-format msgid "%1$s categories deleted (%2$s)" -msgstr "" +msgstr "%1$s catégories supprimées (%2$s)" -#: admin/includes/admin-categories.php:50 +#: admin/includes/admin-categories.php:67 #, php-format msgid "%1$s categories not modified (%2$s)" -msgstr "" +msgstr "%1$s catégories non modifiées (%2$s)" -#: admin/includes/admin-categories.php:51 +#: admin/includes/admin-categories.php:68 #, php-format msgid "%1$s categories not added (%2$s)" -msgstr "" +msgstr "%1$s catégories non ajoutées (%2$s)" -#: admin/includes/admin-categories.php:52 +#: admin/includes/admin-categories.php:69 #, php-format msgid "%1$s categories not deleted (%2$s)" -msgstr "" +msgstr "%1$s catégories non supprimées (%2$s)" -#: admin/includes/admin-categories.php:55 +#: admin/includes/admin-categories.php:72 msgid "An Error occured during the category sync" -msgstr "" +msgstr "Une erreur s'est produite lors de la synchronisation de catégorie" -#: admin/includes/admin-categories.php:59 +#: admin/includes/admin-categories.php:75 msgid "Category sync finished" -msgstr "" +msgstr "Synchronisation de la catégorie terminée" -#: admin/includes/admin-category-sync.php:45 +#: admin/includes/admin-category-sync.php:54 msgid "Error: You are not allowed to view this page!" -msgstr "" +msgstr "Erreur : vous n'êtes pas autorisé à consulter cette page !" -#: admin/includes/admin-category-sync.php:62 +#: admin/includes/admin-category-sync.php:70 msgid "Affected Categories when switching to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:63 +#: admin/includes/admin-category-sync.php:71 msgid "Switch option to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:64 +#: admin/includes/admin-category-sync.php:72 msgid "" "If you proceed, all post categories will be copied and all events will be " "re-assigned to this new categories." msgstr "" -#: admin/includes/admin-category-sync.php:65 +#: admin/includes/admin-category-sync.php:73 msgid "" "Afterwards the event categories are independent of the post categories." msgstr "" -#: admin/includes/admin-category-sync.php:68 +#: admin/includes/admin-category-sync.php:75 msgid "Affected Categories when switching to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:69 +#: admin/includes/admin-category-sync.php:76 msgid "Switch option to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:70 +#: admin/includes/admin-category-sync.php:77 msgid "" "Take a detailed look at the affected categories above before you proceed! " "All seperate event categories will be deleted, this cannot be undone!" msgstr "" -#: admin/includes/admin-category-sync.php:73 +#: admin/includes/admin-category-sync.php:79 msgid "Event Categories: Synchronise with Post Categories" msgstr "" -#: admin/includes/admin-category-sync.php:74 +#: admin/includes/admin-category-sync.php:80 msgid "Start synchronisation" -msgstr "" +msgstr "Démarrer la synchronisation" -#: admin/includes/admin-category-sync.php:75 +#: admin/includes/admin-category-sync.php:81 msgid "" "If this option is enabled the above listed categories will be deleted and " "removed from the existing events!" msgstr "" -#: admin/includes/admin-category-sync.php:90 +#: admin/includes/admin-category-sync.php:96 msgid "Categories to modify" -msgstr "" +msgstr "Catégories à modifier" -#: admin/includes/admin-category-sync.php:91 +#: admin/includes/admin-category-sync.php:97 msgid "Categories to add" -msgstr "" +msgstr "Catégories à ajouter" -#: admin/includes/admin-category-sync.php:92 +#: admin/includes/admin-category-sync.php:98 msgid "Categories to delete (optional)" -msgstr "" +msgstr "Catégories à supprimer (facultatif)" -#: admin/includes/admin-category-sync.php:93 +#: admin/includes/admin-category-sync.php:99 msgid "Delete not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:97 +#: admin/includes/admin-category-sync.php:102 msgid "Categories with differences" msgstr "" -#: admin/includes/admin-category-sync.php:98 +#: admin/includes/admin-category-sync.php:103 msgid "Categories to add (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:99 +#: admin/includes/admin-category-sync.php:104 msgid "Add not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:117 +#: admin/includes/admin-category-sync.php:123 msgid "none" -msgstr "" +msgstr "aucun" -#: admin/includes/admin-import.php:49 +#: admin/includes/admin-import.php:58 msgid "Import Events" msgstr "Importer évènements." -#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116 +#: admin/includes/admin-import.php:220 msgid "Step" msgstr "Etape" -#: admin/includes/admin-import.php:69 +#: admin/includes/admin-import.php:79 msgid "Set import file and options" msgstr "Sélection du fichier à importer et des options." -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:82 #, php-format msgid "Proceed with Step %1$s" msgstr "" -#: admin/includes/admin-import.php:75 +#: admin/includes/admin-import.php:85 msgid "Example file" msgstr "Fichier d'exemple" -#: admin/includes/admin-import.php:76 +#: admin/includes/admin-import.php:86 #, php-format msgid "" "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)" msgstr "Vous pouvez télécharger un fichier d'exemble %1$sici%2$s (Le séparateur du fichier CSV est une virgule!)" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "Note" msgstr "Remarque" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "" "Do not change the column header and separator line (first two lines), " "otherwise the import will fail!" msgstr "Ne pas changer la colonne d'entête et de séparateur (deux premières lignes), sinon l'import de fonctionnera pas!" -#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 +#: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103 msgid "Sorry, there has been an error." msgstr "Désolé, il y a eu une erreur." -#: admin/includes/admin-import.php:85 +#: admin/includes/admin-import.php:96 msgid "The file does not exist, please try again." msgstr "Le fichier n'existe pas, essayez encore." -#: admin/includes/admin-import.php:93 +#: admin/includes/admin-import.php:104 msgid "The uploaded file does not have the required csv extension." msgstr "" -#: admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:116 msgid "Events review and additonal category selection" msgstr "" -#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133 msgid "Error" -msgstr "" +msgstr "Erreur" -#: admin/includes/admin-import.php:111 +#: admin/includes/admin-import.php:122 msgid "This CSV file cannot be imported" -msgstr "" +msgstr "Ce fichier CSV ne peut pas être importé" -#: admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:133 msgid "None of the events in this CSV file can be imported" -msgstr "" +msgstr "Aucun évènement dans ce fichier CSV ne peut être importé" -#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179 msgid "Warning" -msgstr "" +msgstr "Attention" -#: admin/includes/admin-import.php:126 +#: admin/includes/admin-import.php:138 #, php-format msgid "There is %1$s event which cannot be imported" msgid_plural "There are %1$s events which cannot be imported" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1$s évènement ne peut pas être importé" +msgstr[1] "%1$s évènements ne peuvent pas être importés" -#: admin/includes/admin-import.php:134 +#: admin/includes/admin-import.php:150 #, php-format msgid "CSV line %1$s" -msgstr "" +msgstr "Ligne CSV %1$s" -#: admin/includes/admin-import.php:144 +#: admin/includes/admin-import.php:160 msgid "You can still import all other events listed below." -msgstr "" +msgstr "Vous pouvez toujours importer les évènements ci-dessous." -#: admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:179 msgid "" "The following category slugs are not available and will be removed from the " "imported events" msgstr "" -#: admin/includes/admin-import.php:169 +#: admin/includes/admin-import.php:185 msgid "" "If you want to keep these categories, please create these Categories first " "and do the import afterwards." msgstr "Si vous voulez conserver ces catégories, merci de les créer au préalable et de faire l'import en suivant." -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:220 msgid "Import result" -msgstr "" +msgstr "Résultat d'importation" -#: admin/includes/admin-import.php:201 +#: admin/includes/admin-import.php:223 #, php-format msgid "Import of %1$s events successful!" -msgstr "" +msgstr "Importation de %1$s évènements terminée !" -#: admin/includes/admin-import.php:202 +#: admin/includes/admin-import.php:224 msgid "Go back to All Events" msgstr "Retour à la liste des évènements" -#: admin/includes/admin-import.php:206 +#: admin/includes/admin-import.php:227 msgid "Errors during Import" -msgstr "" +msgstr "Erreurs lors de l'importation" -#: admin/includes/admin-import.php:215 +#: admin/includes/admin-import.php:235 msgid "Event from CSV-line" msgstr "" -#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 -#: includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77 +#: includes/widget_helptexts.php:9 msgid "Title" msgstr "Titre" -#: admin/includes/admin-import.php:227 +#: admin/includes/admin-import.php:248 msgid "Start Date" msgstr "Date de début" -#: admin/includes/admin-import.php:228 +#: admin/includes/admin-import.php:249 msgid "End Date" msgstr "Date de fin" -#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 -#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 +#: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:69 msgid "Time" msgstr "Heure" -#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62 -#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57 -#: includes/options_helptexts.php:58 +#: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78 +#: admin/includes/admin-new.php:107 includes/options_helptexts.php:75 +#: includes/options_helptexts.php:76 msgid "Location" msgstr "Lieu" -#: admin/includes/admin-import.php:231 +#: admin/includes/admin-import.php:252 msgid "Content" -msgstr "" +msgstr "Contenu" -#: admin/includes/admin-import.php:232 +#: admin/includes/admin-import.php:253 msgid "Category slugs" msgstr "" -#: admin/includes/admin-import.php:274 +#: admin/includes/admin-import.php:297 msgid "Header line is missing or not correct!" -msgstr "" +msgstr "Ligne d'en-tête manquante ou invalide !" -#: admin/includes/admin-import.php:275 +#: admin/includes/admin-import.php:298 #, php-format msgid "" "Have a look at the %1$sexample file%2$s to see the correct header line " "format." msgstr "" -#: admin/includes/admin-import.php:281 +#: admin/includes/admin-import.php:305 #, php-format msgid "Wrong number of items in line (%1$s items found, 6-7 required)" msgstr "" -#: admin/includes/admin-import.php:309 +#: admin/includes/admin-import.php:334 msgid "Empty event title found" msgstr "" -#: admin/includes/admin-import.php:315 +#: admin/includes/admin-import.php:340 msgid "Wrong date format for startdate" -msgstr "" +msgstr "Format de date incorrect pour la date de début" -#: admin/includes/admin-import.php:324 +#: admin/includes/admin-import.php:348 msgid "Wrong date format for enddate" -msgstr "" +msgstr "Format de date incorrect pour la date de fin" -#: admin/includes/admin-import.php:365 +#: admin/includes/admin-import.php:401 msgid "Import events" msgstr "Importer des événements" -#: admin/includes/admin-import.php:366 +#: admin/includes/admin-import.php:402 msgid "Add additional categories" msgstr "Ajouter plus de catégories" -#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +#: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257 msgid "Import" msgstr "Importer" -#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +#: admin/includes/admin-import.php:428 includes/events_post_type.php:78 msgid "No events found" -msgstr "" +msgstr "Aucun évènement trouvé" -#: admin/includes/admin-import.php:432 +#: admin/includes/admin-import.php:473 msgid "Saving of event failed!" -msgstr "" +msgstr "Impossible d'enregistrer l'évènement !" -#: admin/includes/admin-main.php:60 +#: admin/includes/admin-main.php:76 msgid "Event Date" -msgstr "" +msgstr "Date de l'évènement" -#: admin/includes/admin-main.php:64 +#: admin/includes/admin-main.php:80 msgid "Author" msgstr "Auteur" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 #, php-format msgid "Add a copy of %1$s" -msgstr "" +msgstr "Ajouter une copie de %1$s" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 msgid "Copy" -msgstr "" +msgstr "Copier" -#: admin/includes/admin-new.php:51 +#: admin/includes/admin-new.php:58 msgid "Event data" msgstr "" -#: admin/includes/admin-new.php:80 +#: admin/includes/admin-new.php:90 msgid "Add Copy" -msgstr "" +msgstr "Ajouter une copie" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "Date" msgstr "Date" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "required" msgstr "Requis" -#: admin/includes/admin-new.php:87 +#: admin/includes/admin-new.php:101 msgid "Multi-Day Event" msgstr "Evènement sur plusieurs jours" -#: admin/includes/admin-new.php:106 +#: admin/includes/admin-new.php:121 msgid "Event Title" -msgstr "" +msgstr "Titre de l'évènement" -#: admin/includes/admin-new.php:121 +#: admin/includes/admin-new.php:137 msgid "Event Content" -msgstr "" +msgstr "Contenu de l'évènement" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203 msgid "Event updated." -msgstr "" +msgstr "Évènement mis à jour." -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205 msgid "View event" -msgstr "" +msgstr "Voir l'évènement" -#: admin/includes/admin-new.php:184 +#: admin/includes/admin-new.php:204 #, php-format msgid "Event restored to revision from %1$s" msgstr "" -#: admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:205 msgid "Event published." -msgstr "" +msgstr "Évènement publié." -#: admin/includes/admin-new.php:187 +#: admin/includes/admin-new.php:207 msgid "Event submitted." -msgstr "" +msgstr "Évènement soumis." -#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209 +#: admin/includes/admin-new.php:210 msgid "Preview event" -msgstr "" +msgstr "Prévisualiser l'évènement" -#: admin/includes/admin-new.php:188 +#: admin/includes/admin-new.php:208 #, php-format msgid "Event scheduled for: %1$s>" msgstr "" -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:210 msgid "Event draft updated." -msgstr "" +msgstr "Brouillon de l'évènement mis à jour." -#: admin/includes/admin-settings.php:71 +#: admin/includes/admin-settings.php:79 msgid "Go to Event Category switching page" msgstr "" -#: admin/includes/admin-settings.php:83 +#: admin/includes/admin-settings.php:93 msgid "Frontend Settings" msgstr "Frontend Préférences" -#: admin/includes/admin-settings.php:84 +#: admin/includes/admin-settings.php:94 msgid "Admin Page Settings" msgstr "Administration Préférences" -#: admin/includes/admin-settings.php:85 +#: admin/includes/admin-settings.php:95 msgid "Feed Settings" msgstr "Flux RSS Préférences" -#: admin/includes/admin-settings.php:86 +#: admin/includes/admin-settings.php:96 msgid "Category Taxonomy" msgstr "" -#: includes/daterange_helptexts.php:7 +#: includes/daterange_helptexts.php:8 msgid "Year" msgstr "Année" -#: includes/daterange_helptexts.php:8 +#: includes/daterange_helptexts.php:9 msgid "A year can be specified in 4 digit format." msgstr "Une année peut être spécifié au format 4 chiffres." -#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14 -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:47 #, php-format msgid "" "For a start date filter the first day of %1$s is used, in an end date the " "last day." 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é." -#: includes/daterange_helptexts.php:9 +#: includes/daterange_helptexts.php:10 msgid "the resulting year" msgstr "Année résultante" -#: includes/daterange_helptexts.php:12 +#: includes/daterange_helptexts.php:15 msgid "Month" msgstr "Mois" -#: includes/daterange_helptexts.php:13 +#: includes/daterange_helptexts.php:16 msgid "" "A month can be specified with 4 digits for the year and 2 digits for the " "month, seperated by a hyphen (-)." 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 (-)." -#: includes/daterange_helptexts.php:14 +#: includes/daterange_helptexts.php:17 msgid "the resulting month" msgstr "Mois résultant" -#: includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:22 msgid "Day" msgstr "Jour" -#: includes/daterange_helptexts.php:18 +#: includes/daterange_helptexts.php:23 msgid "" "A day can be specified in the format 4 digits for the year, 2 digits for the" " month and 2 digets for the day, seperated by hyphens (-)." 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 (-)." -#: includes/daterange_helptexts.php:21 +#: includes/daterange_helptexts.php:28 msgid "Relative Year" msgstr "Année relative" -#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28 -#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55 #, php-format msgid "%1$s from now can be specified in the following notation: %2$s" msgstr "%1$s peut maintenant être spécifié avec la notation suivante : %2$s" -#: includes/daterange_helptexts.php:22 +#: includes/daterange_helptexts.php:29 msgid "A relative year" msgstr "Une année relative" -#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29 -#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38 +#: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56 #, php-format msgid "" "This means you can specify a positive or negative (%1$s) %2$s from now with " "%3$s or %4$s attached (see also the example below)." 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)" -#: includes/daterange_helptexts.php:23 +#: includes/daterange_helptexts.php:30 msgid "number of years" msgstr "nombre d'année" -#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30 -#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44 +#: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39 +#: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57 #, php-format msgid "Additionally the following values are available: %1$s" msgstr "De plus, les valeurs suivantes sont disponibles : %1$s" -#: includes/daterange_helptexts.php:27 +#: includes/daterange_helptexts.php:36 msgid "Relative Month" msgstr "Mois relatif" -#: includes/daterange_helptexts.php:28 +#: includes/daterange_helptexts.php:37 msgid "A relative month" msgstr "Un mois relatif" -#: includes/daterange_helptexts.php:29 +#: includes/daterange_helptexts.php:38 msgid "number of months" msgstr "Nombre de mois" -#: includes/daterange_helptexts.php:33 +#: includes/daterange_helptexts.php:44 msgid "Relative Week" msgstr "Semaine relative" -#: includes/daterange_helptexts.php:34 +#: includes/daterange_helptexts.php:45 msgid "A relative week" msgstr "Une semaine relative" -#: includes/daterange_helptexts.php:35 +#: includes/daterange_helptexts.php:46 msgid "number of weeks" msgstr "Nombre de semaines" -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:47 msgid "the resulting week" msgstr "Une semaine relative" -#: includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:48 #, php-format msgid "" "The first day of the week is depending on the option %1$s which can be found" " and changed in %2$s." msgstr "Le premier jour de la semaine dépens de l'option %1$s qui peut être trouvé et changé dans %2$s" -#: includes/daterange_helptexts.php:41 +#: includes/daterange_helptexts.php:54 msgid "Relative Day" msgstr "Jour relatif" -#: includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:55 msgid "A relative day" msgstr "Un jour relatif" -#: includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:56 msgid "number of days" msgstr "nombre de jours" -#: includes/daterange_helptexts.php:49 +#: includes/daterange_helptexts.php:64 msgid "Date range" msgstr "Période" -#: includes/daterange_helptexts.php:50 +#: includes/daterange_helptexts.php:66 msgid "" "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n" "\t For the start and end date any available date format can be used." 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é." -#: includes/daterange_helptexts.php:55 +#: includes/daterange_helptexts.php:75 msgid "This value defines a range without any limits." msgstr "Cette valeur définie une période sans aucune limites" -#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61 -#: includes/daterange_helptexts.php:66 +#: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83 +#: includes/daterange_helptexts.php:90 #, php-format msgid "The corresponding date_range format is: %1$s" msgstr "Le période correspondant est : %1$s" -#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 +#: includes/daterange_helptexts.php:81 includes/filterbar.php:310 msgid "Upcoming" msgstr "A venir" -#: includes/daterange_helptexts.php:60 +#: includes/daterange_helptexts.php:82 msgid "This value defines a range from the actual day to the future." msgstr "Cette valeur définie une période à partir du jour actuel juste que dans le future." -#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 +#: includes/daterange_helptexts.php:88 includes/filterbar.php:318 msgid "Past" msgstr "Passé" -#: includes/daterange_helptexts.php:65 +#: includes/daterange_helptexts.php:89 msgid "This value defines a range from the past to the previous day." msgstr "Cette valeur définie une période antérieur à la date du jour." -#: includes/event.php:107 +#: includes/event.php:124 msgid "No valid start date provided" msgstr "" -#: includes/events_post_type.php:60 +#: includes/event.php:299 includes/event.php:301 +#: includes/sc_event-list.php:298 +msgid "read more" +msgstr "" + +#: includes/events_post_type.php:69 msgid "Events" msgstr "Evénements" -#: includes/events_post_type.php:61 +#: includes/events_post_type.php:70 msgid "Event" -msgstr "" +msgstr "Évènement" -#: includes/events_post_type.php:62 +#: includes/events_post_type.php:71 msgid "Add New" msgstr "Ajouter" -#: includes/events_post_type.php:63 +#: includes/events_post_type.php:72 msgid "Add New Event" msgstr "Ajouter un nouvel évènement" -#: includes/events_post_type.php:64 +#: includes/events_post_type.php:73 msgid "Edit Event" msgstr "Modifier évènement" -#: includes/events_post_type.php:65 +#: includes/events_post_type.php:74 msgid "New Event" -msgstr "" +msgstr "Nouvel évènement" -#: includes/events_post_type.php:66 +#: includes/events_post_type.php:75 msgid "View Event" -msgstr "" +msgstr "Voir l'évènement" -#: includes/events_post_type.php:67 +#: includes/events_post_type.php:76 msgid "View Events" -msgstr "" +msgstr "Voir les évènements" -#: includes/events_post_type.php:68 +#: includes/events_post_type.php:77 msgid "Search Events" -msgstr "" +msgstr "Chercher des évènements" -#: includes/events_post_type.php:70 +#: includes/events_post_type.php:79 msgid "No events found in Trash" -msgstr "" +msgstr "Aucun évènement trouvé dans la corbeille" -#: includes/events_post_type.php:72 +#: includes/events_post_type.php:81 msgid "All Events" msgstr "Tous les évènements" -#: includes/events_post_type.php:73 +#: includes/events_post_type.php:82 msgid "Event Archives" -msgstr "" +msgstr "Archives d'évènements" -#: includes/events_post_type.php:74 +#: includes/events_post_type.php:83 msgid "Event Attributes" -msgstr "" +msgstr "Attributs de l'évènement" -#: includes/events_post_type.php:75 +#: includes/events_post_type.php:84 msgid "Insert into event" msgstr "" -#: includes/events_post_type.php:76 +#: includes/events_post_type.php:85 msgid "Uploaded to this event" -msgstr "" +msgstr "Téléchargé dans cet évènement" -#: includes/events_post_type.php:77 +#: includes/events_post_type.php:86 msgid "Event List" msgstr "Liste des événements" -#: includes/events_post_type.php:78 +#: includes/events_post_type.php:87 msgid "Filter events list" -msgstr "" +msgstr "Filtrer la liste des évènements" -#: includes/events_post_type.php:79 +#: includes/events_post_type.php:88 msgid "Events list navigation" msgstr "" -#: includes/events_post_type.php:80 +#: includes/events_post_type.php:89 msgid "Events list" -msgstr "" +msgstr "Liste des évènements" -#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +#: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90 msgid "Reset" -msgstr "" +msgstr "Réinitialiser" -#: includes/filterbar.php:278 +#: includes/filterbar.php:296 msgid "All" msgstr "Tous" -#: includes/filterbar.php:281 +#: includes/filterbar.php:298 msgid "All Dates" -msgstr "" +msgstr "Toutes les dates" -#: includes/options_helptexts.php:10 +#: includes/options_helptexts.php:11 msgid "CSV File to import" msgstr "Fichier CSV à importer" -#: includes/options_helptexts.php:12 +#: includes/options_helptexts.php:13 msgid "Please select the file which contains the event data in CSV format." msgstr "Veuillez sélectionner le fichier qui contient les évènements au format CSV." -#: includes/options_helptexts.php:15 +#: includes/options_helptexts.php:18 msgid "Used date format" msgstr "Utilise le format de date suivant" -#: includes/options_helptexts.php:17 +#: includes/options_helptexts.php:21 msgid "" "With this option the given date format for event start and end date in the " "CSV file can be specified." msgstr "" -#: includes/options_helptexts.php:18 +#: includes/options_helptexts.php:23 #, php-format msgid "" "You can use the php date format options given in %1$s, the most important " "ones are:" msgstr "" -#: includes/options_helptexts.php:20 +#: includes/options_helptexts.php:26 msgid "full year representation, with 4 digits" msgstr "" -#: includes/options_helptexts.php:21 +#: includes/options_helptexts.php:27 msgid "numeric representation of a month, with leading zeros" msgstr "" -#: includes/options_helptexts.php:22 +#: includes/options_helptexts.php:28 msgid "day of the month, 2 digits with leading zeros" -msgstr "" +msgstr "jour du mois, en 2 chiffres avec des zéros non significatifs" -#: includes/options_helptexts.php:24 +#: includes/options_helptexts.php:30 msgid "" "If the date format in the CSV file does not correspond to the given format, " "the import script tries to recognize the date format by itself." -msgstr "" +msgstr "Si le format de date dans le fichier CSV ne correspond pas au format spécifié, le script d'importation essaie de reconnaître le format de date lui-même." -#: includes/options_helptexts.php:25 +#: includes/options_helptexts.php:31 msgid "" "But this can cause problems or result in wrong dates, so it is recommended " "to specify the correct date format here." -msgstr "" +msgstr "Mais cela peut causer des problèmes ou afficher des dates erronées, il est donc recommandé de spécifier le format correct ici." -#: includes/options_helptexts.php:26 +#: includes/options_helptexts.php:32 msgid "Examples" -msgstr "" +msgstr "Exemples" -#: includes/options_helptexts.php:33 +#: includes/options_helptexts.php:41 msgid "Text for no events" msgstr "Texte si pas d'événements." -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:43 msgid "" "This option defines the displayed text when no events are available for the " "selected view." msgstr "Cette option définie le texte affiché lorsque aucun évènement n'est disponible dans la période sélectionné." -#: includes/options_helptexts.php:38 +#: includes/options_helptexts.php:48 msgid "Multiday filter range" msgstr "Filtre sur plusieurs jours" -#: includes/options_helptexts.php:39 +#: includes/options_helptexts.php:49 msgid "Use the complete event range in the date filter" msgstr "Utiliser la période complète dans le filtre par date." -#: includes/options_helptexts.php:40 +#: includes/options_helptexts.php:51 msgid "" "This option defines if the complete range of a multiday event shall be " "considered in the date filter." msgstr "Cette option définie si la période complète doit être pris en compte dans les filtres par dates." -#: includes/options_helptexts.php:41 +#: includes/options_helptexts.php:52 msgid "" "If disabled, only the start day of an event is considered in the filter." msgstr "Si désactivé, seulement le jour de départ est pris en compte dans le filtre." -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:53 msgid "" "For an example multiday event which started yesterday and ends tomorrow this" " means, that it is displayed in umcoming dates when this option is enabled, " "but it is hidden when the option is disabled." msgstr "Par exemple, un événement sur plusieurs jours commence hier et finit demain, cela signifie que qu'il sera affiché dans les prochaines dates si l'option est active, mais il sera caché si l'option est désactivé." -#: includes/options_helptexts.php:45 +#: includes/options_helptexts.php:58 msgid "Date display" msgstr "Affichage de la date" -#: includes/options_helptexts.php:46 +#: includes/options_helptexts.php:59 msgid "Show the date only once per day" msgstr "Afficher la date seulement une fois par jour." -#: includes/options_helptexts.php:47 +#: includes/options_helptexts.php:61 msgid "" "With this option enabled the date is only displayed once per day if more " "than one event is available on the same day." msgstr "Avec cette option activé, la date n'est affiché seulement une fois par jour si plusieurs événements sont disponible le même jour." -#: includes/options_helptexts.php:48 +#: includes/options_helptexts.php:62 msgid "" "If enabled, the events are ordered in a different way (end date before start" " time) to allow using the same date for as much events as possible." msgstr "Si activé, les évènements sont ordonné d'une différente manière (la date de fin avant la date de début) pour mettre d'utiliser la même date sur le plus d'évènements possible." -#: includes/options_helptexts.php:51 +#: includes/options_helptexts.php:67 msgid "HTML tags" msgstr "Tags HTML" -#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:75 #, php-format msgid "Allow HTML tags in the event field \"%1$s\"" msgstr "Autoriser les tags HTML dans le champs \"%1$s\"" -#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 +#: includes/options_helptexts.php:69 includes/options_helptexts.php:76 #, php-format msgid "" "This option specifies if HTML tags are allowed in the event field \"%1$s\"." msgstr "Cette option indique que les tags html sont autorisé dans le champs \"%1$s\"" -#: includes/options_helptexts.php:61 +#: includes/options_helptexts.php:81 msgid "Preferred language file" msgstr "Langue choisie pour le fichier" -#: includes/options_helptexts.php:62 +#: includes/options_helptexts.php:82 msgid "Load translations from general language directory first" -msgstr "" +msgstr "Charger en premier les traductions issues du répertoire général" -#: includes/options_helptexts.php:63 +#: includes/options_helptexts.php:84 #, php-format msgid "" "The default is to load the %1$s translation file from the plugin language " "directory first (%2$s)." msgstr "" -#: includes/options_helptexts.php:64 +#: includes/options_helptexts.php:85 #, php-format msgid "" "If you want to load your own language file from the general language " @@ -1125,295 +1131,312 @@ msgid "" "language directory, you have to enable this option." msgstr "" -#: includes/options_helptexts.php:68 +#: includes/options_helptexts.php:91 msgid "Events permalink slug" msgstr "" -#: includes/options_helptexts.php:69 +#: includes/options_helptexts.php:92 msgid "" "With this option the slug for the events permalink URLs can be defined." -msgstr "" +msgstr "Avec cette option, l'identifiant pour le permalien des évènements peut être défini." -#: includes/options_helptexts.php:72 +#: includes/options_helptexts.php:97 msgid "Text for \"Show content\"" -msgstr "" +msgstr "Texte pour \"Afficher le contenu\"" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:98 msgid "" "With this option the displayed text for the link to show the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:76 +#: includes/options_helptexts.php:103 msgid "Text for \"Hide content\"" -msgstr "" +msgstr "Texte pour \"Masquer le contenu\"" -#: includes/options_helptexts.php:77 +#: includes/options_helptexts.php:104 msgid "" "With this option the displayed text for the link to hide the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:109 msgid "Disable CSS file" msgstr "Désactiver le fichier CSS" -#: includes/options_helptexts.php:81 +#: includes/options_helptexts.php:110 #, php-format msgid "Disable the %1$s file." msgstr "Désactiver le fichier %1$s." -#: includes/options_helptexts.php:82 +#: includes/options_helptexts.php:112 #, php-format msgid "With this option you can disable the inclusion of the %1$s file." msgstr "Avec cette option vous pouvez désactiver l'inclusion du fichier CSS %1$s." -#: includes/options_helptexts.php:83 +#: includes/options_helptexts.php:113 msgid "" "This normally only make sense if you have css conflicts with your theme and " "want to set all required css styles somewhere else (e.g. in the theme css)." msgstr "Cela n'a de sens que si vous avez un conflit de CSS avec votre theme et voulez définir tous les styles CSS à un autre endroit (I.E. dans le CSS de votre thème)." -#: includes/options_helptexts.php:87 +#: includes/options_helptexts.php:119 msgid "Date format in edit form" msgstr "Format de la date dans le formulaire d'édition." -#: includes/options_helptexts.php:88 +#: includes/options_helptexts.php:121 msgid "" "This option sets the displayed date format for the event date fields in the " "event new / edit form." msgstr "Cette option définie le format de la date affiché dans le champ date pour le formulaire d'ajout/édition d'évènements." -#: includes/options_helptexts.php:89 +#: includes/options_helptexts.php:122 msgid "The default is an empty string to use the Wordpress standard setting." msgstr "" -#: includes/options_helptexts.php:90 +#: includes/options_helptexts.php:123 #, php-format msgid "" "All available options to specify the date format can be found %1$shere%2$s." msgstr "Toutes les options disponibles pour spécifier le format de la date peut être trouvé %1$sici%2$s" -#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 +#: includes/options_helptexts.php:129 msgid "Enable RSS feed" msgstr "Activer flux RSS" -#: includes/options_helptexts.php:95 -msgid "Enable support for an event RSS feed" -msgstr "Activer le support pour un flux RSS des évènements" +#: includes/options_helptexts.php:130 +msgid "Enable support for the event RSS feed" +msgstr "" -#: includes/options_helptexts.php:96 -msgid "This option activates a RSS feed for the events." -msgstr "Cette option active un flux RSS pour les événements" +#: includes/options_helptexts.php:132 +msgid "" +"This option activates the RSS feed for the events and adds a feed link in " +"the html head." +msgstr "" -#: includes/options_helptexts.php:97 +#: includes/options_helptexts.php:133 msgid "" "You have to enable this option if you want to use one of the RSS feed " "features." msgstr "" -#: includes/options_helptexts.php:100 -msgid "Feed name" -msgstr "Nom du flux" +#: includes/options_helptexts.php:138 +msgid "Enable iCal feed" +msgstr "" + +#: includes/options_helptexts.php:139 +msgid "Enable support for the event iCal feed" +msgstr "" + +#: includes/options_helptexts.php:141 +msgid "This option activates the iCal feed for events." +msgstr "" -#: includes/options_helptexts.php:101 +#: includes/options_helptexts.php:142 +msgid "" +"You have to enable this option if you want to use one of the iCal features." +msgstr "" + +#: includes/options_helptexts.php:147 +msgid "Position of the RSS feed link" +msgstr "Position du flux RSS" + +#: includes/options_helptexts.php:149 +msgid "at the top (above the navigation bar)" +msgstr "En haut (au dessus du menu)" + +#: includes/options_helptexts.php:150 +msgid "between navigation bar and events" +msgstr "Entre le menu et les événements" + +#: includes/options_helptexts.php:151 +msgid "at the bottom" +msgstr "En bas" + +#: includes/options_helptexts.php:153 +msgid "" +"This option specifies the position of the RSS feed link in the event list." +msgstr "Cette option indique la position du lien du flux RSS dans la liste des évènements." + +#: includes/options_helptexts.php:158 +msgid "Align of the RSS feed link" +msgstr "Alignement du lien RSS" + +#: includes/options_helptexts.php:160 +msgid "left" +msgstr "gauche" + +#: includes/options_helptexts.php:161 +msgid "center" +msgstr "centré" + +#: includes/options_helptexts.php:162 +msgid "right" +msgstr "droite" + +#: includes/options_helptexts.php:164 +msgid "" +"This option specifies the align of the RSS feed link in the event list." +msgstr "Cette option définit l'alignement du lien du flux RSS dans la liste des évènements." + +#: includes/options_helptexts.php:169 +msgid "RSS feed name" +msgstr "" + +#: includes/options_helptexts.php:171 #, php-format -msgid "This option sets the feed name. The default value is %1$s." +msgid "This option sets the RSS feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:102 +#: includes/options_helptexts.php:172 #, php-format msgid "" "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " "enabled)." msgstr "" -#: includes/options_helptexts.php:105 -msgid "Feed Description" -msgstr "Description du Flux" +#: includes/options_helptexts.php:177 +msgid "RSS feed Description" +msgstr "" -#: includes/options_helptexts.php:106 +#: includes/options_helptexts.php:179 #, php-format -msgid "This options set the feed description. The default value is %1$s." +msgid "This options set the RSS feed description. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:107 +#: includes/options_helptexts.php:180 msgid "" "This description will be used in the title for the feed link in the html " "head and for the description in the feed itself." msgstr "" -#: includes/options_helptexts.php:110 -msgid "Listed events" -msgstr "Evènements listés" +#: includes/options_helptexts.php:185 +msgid "RSS feed events" +msgstr "" -#: includes/options_helptexts.php:111 -msgid "Only show upcoming events in feed" -msgstr "Voir seulement les prochains évènements dans le flux." +#: includes/options_helptexts.php:186 +msgid "Only show upcoming events in the RSS feed" +msgstr "" -#: includes/options_helptexts.php:112 +#: includes/options_helptexts.php:188 msgid "" -"If this option is enabled only the upcoming events are listed in the feed." +"If this option is enabled only the upcoming events are listed in the RSS " +"feed." msgstr "" -#: includes/options_helptexts.php:113 -msgid "If disabled all events (upcoming and past) will be listed." +#: includes/options_helptexts.php:189 includes/options_helptexts.php:215 +msgid "If disabled, all events (upcoming and past) will be listed." msgstr "" -#: includes/options_helptexts.php:116 -msgid "Add RSS feed link in head" -msgstr "Ajouter le lien du flux RSS dans l'entête de la page" - -#: includes/options_helptexts.php:117 -msgid "Add RSS feed link in the html head" -msgstr "Ajouter le lien vers le flux dans l'entête de la page HTML" - -#: includes/options_helptexts.php:118 -msgid "This option adds a RSS feed in the html head for the events." +#: includes/options_helptexts.php:194 +msgid "RSS link text" msgstr "" -#: includes/options_helptexts.php:119 -msgid "There are 2 alternatives to include the RSS feed" +#: includes/options_helptexts.php:196 +msgid "This option sets the caption of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:120 -msgid "" -"The first way is this option to include a link in the html head. This link " -"will be recognized by browers or feed readers." +#: includes/options_helptexts.php:197 +msgid "Use an empty text to only show the rss image." msgstr "" -#: includes/options_helptexts.php:121 +#: includes/options_helptexts.php:198 #, php-format msgid "" -"The second way is to include a visible feed link directly in the event list." -" This can be done by setting the shortcode attribute %1$s to %2$s." +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" RSS feed link." msgstr "" -#: includes/options_helptexts.php:122 -#, php-format -msgid "This option is only valid if the setting %1$s is enabled." +#: includes/options_helptexts.php:203 +msgid "iCal feed name" msgstr "" -#: includes/options_helptexts.php:125 -msgid "Position of the RSS feed link" -msgstr "Position du flux RSS" - -#: includes/options_helptexts.php:126 -msgid "at the top (above the navigation bar)" -msgstr "En haut (au dessus du menu)" - -#: includes/options_helptexts.php:126 -msgid "between navigation bar and events" -msgstr "Entre le menu et les événements" - -#: includes/options_helptexts.php:126 -msgid "at the bottom" -msgstr "En bas" - -#: includes/options_helptexts.php:127 -msgid "" -"This option specifies the position of the RSS feed link in the event list." +#: includes/options_helptexts.php:205 +#, php-format +msgid "This option sets the iCal feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:128 includes/options_helptexts.php:134 -#: includes/options_helptexts.php:140 includes/options_helptexts.php:146 +#: includes/options_helptexts.php:206 #, php-format msgid "" -"You have to set the shortcode attribute %1$s to %2$s if you want to show the" -" feed link." +"This name will be used in the iCal feed url (e.g. %1$s, or %2$s with " +"permalinks enabled)." msgstr "" -#: includes/options_helptexts.php:131 -msgid "Align of the RSS feed link" -msgstr "Alignement du lien RSS" - -#: includes/options_helptexts.php:132 -msgid "left" -msgstr "gauche" - -#: includes/options_helptexts.php:132 -msgid "center" -msgstr "centré" - -#: includes/options_helptexts.php:132 -msgid "right" -msgstr "droite" - -#: includes/options_helptexts.php:133 -msgid "" -"This option specifies the align of the RSS feed link in the event list." +#: includes/options_helptexts.php:211 +msgid "iCal feed events" msgstr "" -#: includes/options_helptexts.php:137 -msgid "Feed link text" -msgstr "Text du lien du flux" +#: includes/options_helptexts.php:212 +msgid "Only show upcoming events in the iCal feed" +msgstr "" -#: includes/options_helptexts.php:138 +#: includes/options_helptexts.php:214 msgid "" -"This option specifies the caption of the RSS feed link in the event list." +"If this option is enabled only the upcoming events are listed in the iCal " +"file." msgstr "" -#: includes/options_helptexts.php:139 -msgid "" -"Insert an empty text to hide any text if you only want to show the rss " -"image." +#: includes/options_helptexts.php:220 +msgid "iCal link text" msgstr "" -#: includes/options_helptexts.php:143 -msgid "Feed link image" -msgstr "Image du flux RSS" +#: includes/options_helptexts.php:222 +msgid "This option sets the iCal link text in the event list." +msgstr "" -#: includes/options_helptexts.php:144 -msgid "Show rss image in feed link" -msgstr "Afficher l'image dans le lien vers le flux RSS" +#: includes/options_helptexts.php:223 +msgid "Use an empty text to only show the iCal image." +msgstr "" -#: includes/options_helptexts.php:145 +#: includes/options_helptexts.php:224 +#, php-format msgid "" -"This option specifies if the an image should be dispayed in the feed link in" -" front of the text." +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" iCal feed link." msgstr "" -#: includes/options_helptexts.php:151 +#: includes/options_helptexts.php:231 msgid "Event Category handling" msgstr "" -#: includes/options_helptexts.php:152 +#: includes/options_helptexts.php:232 msgid "Use Post Categories" -msgstr "" +msgstr "Utiliser les catégories d'articles" -#: includes/options_helptexts.php:153 +#: includes/options_helptexts.php:234 msgid "" "Do not maintain seperate categories for the events, and use the existing " "post categories instead." msgstr "" -#: includes/options_helptexts.php:154 +#: includes/options_helptexts.php:235 msgid "Attention" msgstr "Attention" -#: includes/options_helptexts.php:155 +#: includes/options_helptexts.php:236 msgid "" "This option cannot be changed directly, but you can go to the Event Category" " switching page from here." msgstr "" -#: includes/options.php:40 +#: includes/options.php:73 msgid "events" -msgstr "" +msgstr "évènements" -#: includes/options.php:41 +#: includes/options.php:77 msgid "Show content" -msgstr "" +msgstr "Afficher le contenu" -#: includes/options.php:42 +#: includes/options.php:81 msgid "Hide content" -msgstr "" +msgstr "Masquer le contenu" -#: includes/sc_event-list_helptexts.php:7 +#: includes/sc_event-list_helptexts.php:8 msgid "event-id" msgstr "Id de l'événement" -#: includes/sc_event-list_helptexts.php:8 +#: includes/sc_event-list_helptexts.php:9 #, php-format msgid "" "By default the event-list is displayed initially. But if an event-id (e.g. " @@ -1421,107 +1444,107 @@ msgid "" "this event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:10 -#: includes/sc_event-list_helptexts.php:22 +#: includes/sc_event-list_helptexts.php:13 +#: includes/sc_event-list_helptexts.php:31 msgid "year" msgstr "année" -#: includes/sc_event-list_helptexts.php:11 +#: includes/sc_event-list_helptexts.php:14 msgid "" "This attribute defines which events are initially shown. The default is to " "show the upcoming events only." msgstr "" -#: includes/sc_event-list_helptexts.php:12 +#: includes/sc_event-list_helptexts.php:15 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:14 +#: includes/sc_event-list_helptexts.php:19 msgid "category slug" msgstr "" -#: includes/sc_event-list_helptexts.php:15 +#: includes/sc_event-list_helptexts.php:20 msgid "" "This attribute defines the category of which events are initially shown. The" " default is to show events of all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:16 +#: includes/sc_event-list_helptexts.php:21 msgid "" "Provide a category slug to change this behavior. It is still possible to " "change the displayed categories via the filterbar or url parameters." msgstr "" -#: includes/sc_event-list_helptexts.php:19 +#: includes/sc_event-list_helptexts.php:26 msgid "This attribute defines the initial order of the events." msgstr "" -#: includes/sc_event-list_helptexts.php:20 +#: includes/sc_event-list_helptexts.php:27 msgid "" "With %1$S (default value) the events are sorted from old to new, with %2$s " "in the opposite direction (from new to old)." -msgstr "" +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)." -#: includes/sc_event-list_helptexts.php:23 +#: includes/sc_event-list_helptexts.php:32 #, php-format msgid "" "This attribute defines the dates and date ranges of which events are " "displayed. The default is %1$s to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:24 +#: includes/sc_event-list_helptexts.php:33 #, php-format msgid "" "Filtered events according to %1$s value are not available in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:25 +#: includes/sc_event-list_helptexts.php:34 #, php-format msgid "" "You can find all available values with a description and examples in the " "sections %1$s and %2$s below." msgstr "" -#: includes/sc_event-list_helptexts.php:26 +#: includes/sc_event-list_helptexts.php:35 #, php-format msgid "See %1$s description if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:28 +#: includes/sc_event-list_helptexts.php:39 msgid "category slugs" msgstr "" -#: includes/sc_event-list_helptexts.php:29 +#: includes/sc_event-list_helptexts.php:40 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:30 +#: includes/sc_event-list_helptexts.php:41 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:31 +#: includes/sc_event-list_helptexts.php:42 #, php-format msgid "" "The filter is specified via the given category slugs. See %1$s description " "if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:33 -#: includes/sc_event-list_helptexts.php:74 -#: includes/sc_event-list_helptexts.php:89 -#: includes/sc_event-list_helptexts.php:104 +#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:111 +#: includes/sc_event-list_helptexts.php:138 +#: includes/sc_event-list_helptexts.php:177 msgid "number" msgstr "nombre" -#: includes/sc_event-list_helptexts.php:34 +#: includes/sc_event-list_helptexts.php:47 #, php-format msgid "" "This attribute defines how many events should be displayed if upcoming " @@ -1529,175 +1552,175 @@ msgid "" "displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:48 msgid "" "Please not that in the actual version there is no pagination of the events " "available, so the event list can be very long." msgstr "" -#: includes/sc_event-list_helptexts.php:38 +#: includes/sc_event-list_helptexts.php:53 msgid "" "This attribute defines if the filterbar should be displayed. The filterbar " "allows the users to specify filters for the listed events." msgstr "" -#: includes/sc_event-list_helptexts.php:39 +#: includes/sc_event-list_helptexts.php:54 #, php-format msgid "Choose %1$s to always hide and %2$s to always show the filterbar." msgstr "" -#: includes/sc_event-list_helptexts.php:40 +#: includes/sc_event-list_helptexts.php:55 #, php-format msgid "" "With %1$s the filterbar is only visible in the event list and with %2$s only" " in the single event view." msgstr "" -#: includes/sc_event-list_helptexts.php:43 +#: includes/sc_event-list_helptexts.php:60 #, php-format msgid "" "This attribute specifies the available items in the filterbar. This options " "are only valid if the filterbar is displayed (see %1$s attribute)." msgstr "" -#: includes/sc_event-list_helptexts.php:44 +#: includes/sc_event-list_helptexts.php:61 msgid "" "Find below an overview of the available filterbar items and their options:" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "filterbar item" msgstr "" -#: includes/sc_event-list_helptexts.php:46 -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:96 msgid "description" -msgstr "" +msgstr "description" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "item options" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option values" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "default value" -msgstr "" +msgstr "valeur par défaut" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option description" msgstr "" -#: includes/sc_event-list_helptexts.php:47 +#: includes/sc_event-list_helptexts.php:67 msgid "" "Show a list of all available years. Additional there are some special " "entries available (see item options)." msgstr "" -#: includes/sc_event-list_helptexts.php:48 -#: includes/sc_event-list_helptexts.php:53 +#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:82 msgid "Add an entry to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:49 -#: includes/sc_event-list_helptexts.php:54 +#: includes/sc_event-list_helptexts.php:73 +#: includes/sc_event-list_helptexts.php:84 msgid "Add an entry to show all upcoming events." msgstr "" -#: includes/sc_event-list_helptexts.php:50 -#: includes/sc_event-list_helptexts.php:55 +#: includes/sc_event-list_helptexts.php:74 +#: includes/sc_event-list_helptexts.php:85 msgid "Add an entry to show events in the past." msgstr "" -#: includes/sc_event-list_helptexts.php:51 +#: includes/sc_event-list_helptexts.php:75 msgid "Set descending or ascending order of year entries." msgstr "" -#: includes/sc_event-list_helptexts.php:52 +#: includes/sc_event-list_helptexts.php:78 msgid "Show a list of all available months." msgstr "" -#: includes/sc_event-list_helptexts.php:56 +#: includes/sc_event-list_helptexts.php:86 msgid "Set descending or ascending order of month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "php date-formats" -msgstr "" +msgstr "Formats de date PHP" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "Set the displayed date format of the month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "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." -msgstr "" +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." -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "Specifies the displayed values and their order. The items must be seperated " "by %1$s." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Show a list of all available categories." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Add an entry to show events from all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "A link to reset the eventlist filter to standard." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "any text" -msgstr "" +msgstr "texte quelconque" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "Set the caption of the link." msgstr "" -#: includes/sc_event-list_helptexts.php:61 +#: includes/sc_event-list_helptexts.php:93 msgid "Find below an overview of the available filterbar display options:" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "display option" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "available for" msgstr "" -#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:97 #, php-format msgid "Shows a horizonal list seperated by %1$s with a link to each item." msgstr "" -#: includes/sc_event-list_helptexts.php:65 +#: includes/sc_event-list_helptexts.php:98 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:66 +#: includes/sc_event-list_helptexts.php:99 msgid "Shows a simple link which can be clicked." msgstr "" -#: includes/sc_event-list_helptexts.php:67 +#: includes/sc_event-list_helptexts.php:102 msgid "Find below some declaration examples with descriptions:" msgstr "" -#: includes/sc_event-list_helptexts.php:69 +#: includes/sc_event-list_helptexts.php:104 #, php-format msgid "" "In this example you can see that the filterbar item and the used display " @@ -1705,22 +1728,22 @@ msgid "" "items seperated by a comma %2$s. These items will be displayed left-aligned." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "option_name" msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "value" msgstr "" -#: includes/sc_event-list_helptexts.php:72 +#: includes/sc_event-list_helptexts.php:107 #, php-format msgid "" "The 2 semicolon %1$s devides the bar in 3 section. The first section will be" @@ -1729,75 +1752,84 @@ msgid "" "left-aligned and the reset link will be on the right side." msgstr "" -#: includes/sc_event-list_helptexts.php:75 -#: includes/sc_event-list_helptexts.php:90 +#: includes/sc_event-list_helptexts.php:112 +#: includes/sc_event-list_helptexts.php:139 msgid "" "This attribute specifies if the title should be truncated to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:76 -#: includes/sc_event-list_helptexts.php:91 +#: includes/sc_event-list_helptexts.php:113 +#: includes/sc_event-list_helptexts.php:140 #, php-format msgid "" "With the standard value %1$s the full text is displayed, with %2$s the text " "is automatically truncated via css." msgstr "" -#: includes/sc_event-list_helptexts.php:77 -#: includes/sc_event-list_helptexts.php:92 -#: includes/sc_event-list_helptexts.php:107 +#: includes/sc_event-list_helptexts.php:114 +#: includes/sc_event-list_helptexts.php:141 +#: includes/sc_event-list_helptexts.php:180 msgid "This attribute has no influence if only a single event is shown." msgstr "Cet attribut n'a pas d'utilité si un seul événement est affiché." -#: includes/sc_event-list_helptexts.php:80 +#: includes/sc_event-list_helptexts.php:120 msgid "" "This attribute specifies if the starttime is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n" "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event" 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." -#: includes/sc_event-list_helptexts.php:85 +#: includes/sc_event-list_helptexts.php:130 msgid "" "This attribute specifies if the location is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n" "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event" 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." -#: includes/sc_event-list_helptexts.php:95 +#: includes/sc_event-list_helptexts.php:147 msgid "" "This attribute specifies if the categories are displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n" "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event" 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." -#: includes/sc_event-list_helptexts.php:100 +#: includes/sc_event-list_helptexts.php:157 msgid "" "This attribute specifies if the content is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n" "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:105 +#: includes/sc_event-list_helptexts.php:167 +msgid "" +"This attribute specifies if the excerpt is displayed in the event list.<br />\n" +"\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n" +"\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" +"\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" +"\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)." +msgstr "" + +#: includes/sc_event-list_helptexts.php:178 msgid "" "This attribute specifies if the content should be truncate to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:106 +#: includes/sc_event-list_helptexts.php:179 #, php-format msgid "With the standard value %1$s the full text is displayed." msgstr "Avec la valeur par défaut %1$s , le texte dans son intégralité est affiché." -#: includes/sc_event-list_helptexts.php:110 +#: includes/sc_event-list_helptexts.php:186 msgid "" -"This attribute specifies if the content should be collapsed initially.<br />\n" +"This attribute specifies if the content or excerpt should be collapsed initially.<br />\n" "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n" "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n" "\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." msgstr "" -#: includes/sc_event-list_helptexts.php:116 +#: includes/sc_event-list_helptexts.php:197 msgid "" "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n" "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n" @@ -1805,7 +1837,7 @@ msgid "" "\t With \"events_with_content_only\" the link is only added in the event list for events with event content." msgstr "" -#: includes/sc_event-list_helptexts.php:122 +#: includes/sc_event-list_helptexts.php:208 msgid "" "This attribute specifies if a rss feed link should be added.<br />\n" "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n" @@ -1814,32 +1846,52 @@ msgid "" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event" 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." -#: includes/sc_event-list_helptexts.php:128 +#: includes/sc_event-list_helptexts.php:220 +msgid "" +"This attribute specifies if a ical feed link should be added.<br />\n" +"\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n" +"\t On that page you can also find some settings to modify the output.<br />\n" +"\t Choose \"false\" to never add and \"true\" to always add the link.<br />" +msgstr "" + +#: includes/sc_event-list_helptexts.php:231 msgid "" "This attribute specifies the page or post url for event links.<br />\n" "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n" "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget." 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." -#: includes/sc_event-list_helptexts.php:135 +#: includes/sc_event-list_helptexts.php:243 msgid "" "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n" "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget." 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." -#: includes/sc_event-list.php:135 +#: includes/sc_event-list.php:154 +msgid "Sorry, the requested event is not available!" +msgstr "" + +#: includes/sc_event-list.php:163 msgid "Event Information:" msgstr "Information sur l'évènement" -#: includes/widget_helptexts.php:10 +#: includes/sc_event-list.php:405 +msgid "Link to RSS feed" +msgstr "" + +#: includes/sc_event-list.php:414 +msgid "Link to iCal feed" +msgstr "" + +#: includes/widget_helptexts.php:11 msgid "This option defines the displayed title for the widget." msgstr "Cette option définie le titre affiché pour le widget" -#: includes/widget_helptexts.php:15 +#: includes/widget_helptexts.php:18 msgid "Category Filter" msgstr "Filtre par catégories" -#: includes/widget_helptexts.php:17 +#: includes/widget_helptexts.php:20 msgid "" "This option defines the categories of which events are shown. The standard " "is all or an empty string to show all events. Specify a category slug or a " @@ -1848,137 +1900,145 @@ msgid "" "all possibilities." msgstr "Cette option définie la catégorie d'évènement qui doit être affiché. Par défaut est \"all\" ou une chaîne vide pour afficher tous les évènements.\nSpécifiez un slug de catégorie ou une liste de slug de catégories pour afficher seulement les évènements de ces catégories.\nVoir la description des attributs du shortcode cat_filter pour avoir les informations détaillées de toutes les possibilités." -#: includes/widget_helptexts.php:22 +#: includes/widget_helptexts.php:27 msgid "Number of listed events" msgstr "Nombre d'événement listés." -#: includes/widget_helptexts.php:24 +#: includes/widget_helptexts.php:29 msgid "The number of upcoming events to display" msgstr "Le nombre des prochains d'évènements à afficher." -#: includes/widget_helptexts.php:29 +#: includes/widget_helptexts.php:36 msgid "Truncate event title to" msgstr "Tronquer le titre à" -#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52 -#: includes/widget_helptexts.php:67 +#: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65 +#: includes/widget_helptexts.php:93 msgid "characters" msgstr "caractères" -#: includes/widget_helptexts.php:31 +#: includes/widget_helptexts.php:38 msgid "" "This option defines the number of displayed characters for the event title." msgstr "Cette option définit le nombre de caractères à afficher pour le titre d'événement." -#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54 +#: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67 #, php-format msgid "" "Set this value to %1$s to view the full text, or set it to %2$s to " "automatically truncate the text via css." 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" -#: includes/widget_helptexts.php:37 +#: includes/widget_helptexts.php:46 msgid "Show event starttime" msgstr "Afficher l'horaire de début de l'évènement" -#: includes/widget_helptexts.php:39 +#: includes/widget_helptexts.php:48 msgid "This option defines if the event start time will be displayed." msgstr "Cette option définie si l’horaire de début doit être affiché." -#: includes/widget_helptexts.php:44 +#: includes/widget_helptexts.php:55 msgid "Show event location" msgstr "Afficher la localisation de l'évènement" -#: includes/widget_helptexts.php:46 +#: includes/widget_helptexts.php:57 msgid "This option defines if the event location will be displayed." msgstr "Cette option définie si la localisation de l'évènement doit être affiché." -#: includes/widget_helptexts.php:51 +#: includes/widget_helptexts.php:64 msgid "Truncate location to" msgstr "Tronquer la localisation à" -#: includes/widget_helptexts.php:53 +#: includes/widget_helptexts.php:66 msgid "" "If the event location is diplayed this option defines the number of " "displayed characters." msgstr "" -#: includes/widget_helptexts.php:59 -msgid "Show event content" +#: includes/widget_helptexts.php:74 +msgid "Show event excerpt" +msgstr "" + +#: includes/widget_helptexts.php:76 +msgid "This option defines if the event excerpt will be displayed." msgstr "" -#: includes/widget_helptexts.php:61 +#: includes/widget_helptexts.php:83 +msgid "Show event content" +msgstr "Afficher le contenu de l'évènement" + +#: includes/widget_helptexts.php:85 msgid "This option defines if the event content will be displayed." msgstr "" -#: includes/widget_helptexts.php:66 +#: includes/widget_helptexts.php:92 msgid "Truncate content to" msgstr "" -#: includes/widget_helptexts.php:68 +#: includes/widget_helptexts.php:94 msgid "" "If the event content are diplayed this option defines the number of diplayed" " characters." msgstr "" -#: includes/widget_helptexts.php:69 +#: includes/widget_helptexts.php:95 #, php-format msgid "Set this value to %1$s to view the full text." msgstr "Mettre cette valeur à %1$s pour voir le texte dans son intégralité." -#: includes/widget_helptexts.php:74 +#: includes/widget_helptexts.php:102 msgid "URL to the linked Event List page" msgstr "URL vers la page d'évènement" -#: includes/widget_helptexts.php:76 +#: includes/widget_helptexts.php:104 msgid "" "This option defines the url to the linked Event List page. This option is " "required if you want to use one of the options below." 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." -#: includes/widget_helptexts.php:81 +#: includes/widget_helptexts.php:111 msgid "Shortcode ID on linked page" msgstr "Identifiant du shortcode sur la page lié" -#: includes/widget_helptexts.php:83 +#: includes/widget_helptexts.php:113 msgid "" "This option defines the shortcode-id for the Event List on the linked page. " "Normally the standard value 1 is correct, you only have to change it if you " "use multiple event-list shortcodes on the linked page." 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é." -#: includes/widget_helptexts.php:90 +#: includes/widget_helptexts.php:122 msgid "" "With this option you can add a link to the single event page for every " "displayed event. You have to specify the url to the page and the shortcode " "id option if you want to use it." 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." -#: includes/widget_helptexts.php:97 +#: includes/widget_helptexts.php:131 msgid "" "With this option you can add a link to the event-list page below the " "diplayed events. You have to specify the url to page option if you want to " "use it." 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." -#: includes/widget_helptexts.php:102 +#: includes/widget_helptexts.php:138 msgid "Caption for the link" msgstr "Texte du lien." -#: includes/widget_helptexts.php:104 +#: includes/widget_helptexts.php:140 msgid "" "This option defines the text for the link to the Event List page if the " "approriate option is selected." msgstr "Cette option définie le texte du lien vers la liste des évènements si l'option est activé." -#: includes/widget.php:20 +#: includes/widget.php:21 msgid "With this widget a list of upcoming events can be displayed." msgstr "Avec ce widget une liste des prochains évènements peut être affichées." -#: includes/widget.php:25 +#: includes/widget.php:26 msgid "Upcoming events" msgstr "Prochains évènements" -#: includes/widget.php:38 +#: includes/widget.php:40 msgid "show events page" msgstr "Voir tous les évènements" diff --git a/wp-content/plugins/event-list/languages/event-list-id_ID.mo b/wp-content/plugins/event-list/languages/event-list-id_ID.mo index 5b1a9ded5fc3c96a3034efdc5389078b080e87d6..b95e3221aaf848732919eb68844b0014914f94a1 100644 Binary files a/wp-content/plugins/event-list/languages/event-list-id_ID.mo and b/wp-content/plugins/event-list/languages/event-list-id_ID.mo differ diff --git a/wp-content/plugins/event-list/languages/event-list-id_ID.po b/wp-content/plugins/event-list/languages/event-list-id_ID.po index 0a59af386fabef3b5678521a0eb4d2c6310d6916..6e60276c3691135912d6f42b68b8a4252f6858b1 100644 --- a/wp-content/plugins/event-list/languages/event-list-id_ID.po +++ b/wp-content/plugins/event-list/languages/event-list-id_ID.po @@ -1,5 +1,5 @@ # Translation file for the 'Event List' WordPress plugin -# Copyright (C) 2018 by mibuthu +# Copyright (C) 2021 by mibuthu # This file is distributed under the same license as the corresponding wordpress plugin. # # Translators: @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: wp-event-list\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n" -"POT-Creation-Date: 2018-05-27 12:20+0200\n" -"PO-Revision-Date: 2018-05-27 10:20+0000\n" +"POT-Creation-Date: 2021-04-24 11:28+0200\n" +"PO-Revision-Date: 2021-04-24 09:26+0000\n" "Last-Translator: mibuthu\n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/mibuthu/wp-event-list/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -18,116 +18,116 @@ msgstr "" "Language: id_ID\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Errors during upgrade of plugin %1$s" msgstr "" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Upgrade of plugin %1$s successful" msgstr "" -#: admin/admin.php:106 admin/includes/admin-settings.php:65 +#: admin/admin.php:116 admin/includes/admin-settings.php:73 msgid "Event List Settings" msgstr "Pengaturan Daftar Acara" -#: admin/admin.php:106 +#: admin/admin.php:116 msgid "Settings" msgstr "Pengaturan" -#: admin/admin.php:110 admin/includes/admin-about.php:37 +#: admin/admin.php:120 admin/includes/admin-about.php:43 msgid "About Event List" msgstr "Tentang Daftar Acara" -#: admin/admin.php:110 +#: admin/admin.php:120 msgid "About" msgstr "Tentang" -#: admin/admin.php:132 +#: admin/admin.php:144 #, php-format msgid "%s Event" msgid_plural "%s Events" msgstr[0] "" -#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 +#: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92 msgid "General" msgstr "Umum" -#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 -#: admin/includes/admin-about.php:105 +#: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88 +#: admin/includes/admin-about.php:117 msgid "Shortcode Attributes" msgstr "Atribut Kode Singkat" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:82 msgid "Help and Instructions" msgstr "Bantuan dan Petunjuk" -#: admin/includes/admin-about.php:73 +#: admin/includes/admin-about.php:83 #, php-format msgid "You can manage the events %1$shere%2$s" msgstr "Anda dapat mengelola acara %1$sdi sini%2$s" -#: admin/includes/admin-about.php:74 +#: admin/includes/admin-about.php:84 msgid "To show the events on your site you have 2 possibilities" msgstr "Anda memiliki 2 pilihan dalam menampilkan acara di situs Anda" -#: admin/includes/admin-about.php:75 +#: admin/includes/admin-about.php:85 #, php-format msgid "you can place the <strong>shortcode</strong> %1$s on any page or post" msgstr "Anda dapat menempatkan <strong>kode singkat</strong> %1$s di halaman atau post manapun" -#: admin/includes/admin-about.php:76 +#: admin/includes/admin-about.php:86 #, php-format msgid "you can add the <strong>widget</strong> %1$s in your sidebars" msgstr "Anda dapat menambahkan <strong>widget</strong> %1$s di bilah samping Anda" -#: admin/includes/admin-about.php:77 +#: admin/includes/admin-about.php:87 msgid "" "The displayed events and their style can be modified with the available " "widget settings and the available attributes for the shortcode." msgstr "Acara yang ditampilkan dan gayanya dapat dimodifikasi dengan pengaturan widget dan atribut kode singkat." -#: admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:88 #, php-format msgid "" "A list of all available shortcode attributes with their descriptions is " "available in the %1$s tab." msgstr "Daftar semua atribut kode singkat yang tersedia beserta deskripsinya dapat dilihat di tab %1$s. " -#: admin/includes/admin-about.php:79 +#: admin/includes/admin-about.php:89 msgid "The available widget options are described in their tooltip text." msgstr "Penjelasan pilihan widget ditampilkan di teks tooltip." -#: admin/includes/admin-about.php:80 +#: admin/includes/admin-about.php:90 #, php-format msgid "" "If you enable one of the links options (%1$s or %2$s) in the widget you have" " to insert an URL to the linked event-list page." msgstr "Jika Anda mengaktifkan pilihan tautan (%1$s atau %2$s) dalam widget, Anda harus menyisipkan URL ke halaman tautan daftar acara" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120 msgid "Add links to the single events" msgstr "Tambah tautan ke satu acara" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129 msgid "Add a link to the Event List page" msgstr "Tambah tautan ke laman Daftar Acara" -#: admin/includes/admin-about.php:81 +#: admin/includes/admin-about.php:91 msgid "" "This is required because the widget does not know in which page or post the " "shortcode was included." msgstr "Hal ini diperlukan karena widget tidak tahu di halaman atau post mana kode singkat dimasukkan." -#: admin/includes/admin-about.php:82 +#: admin/includes/admin-about.php:92 msgid "" "Additionally you have to insert the correct Shortcode id on the linked page." " This id describes which shortcode should be used on the given page or post " "if you have more than one." msgstr "" -#: admin/includes/admin-about.php:83 +#: admin/includes/admin-about.php:93 #, php-format msgid "" "The default value %1$s is normally o.k. (for pages with 1 shortcode only), " @@ -135,985 +135,990 @@ msgid "" "link on your linked page or post." msgstr "" -#: admin/includes/admin-about.php:84 +#: admin/includes/admin-about.php:94 #, php-format msgid "The id is available at the end of the URL parameters (e.g. %1$s)." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 #, php-format msgid "" "Be sure to also check the %1$s to get the plugin behaving just the way you " "want." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 msgid "Settings page" msgstr "" -#: admin/includes/admin-about.php:92 +#: admin/includes/admin-about.php:103 msgid "About the plugin author" msgstr "" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:105 #, php-format msgid "" "This plugin is developed by %1$s, you can find more information about the " "plugin on the %2$s." msgstr "" -#: admin/includes/admin-about.php:94 -msgid "wordpress plugin site" +#: admin/includes/admin-about.php:105 +msgid "WordPress plugin site" msgstr "" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:106 #, php-format msgid "If you like the plugin please rate it on the %1$s." msgstr "" -#: admin/includes/admin-about.php:95 -msgid "wordpress plugin review site" +#: admin/includes/admin-about.php:106 +msgid "WordPress plugin review site" msgstr "" -#: admin/includes/admin-about.php:96 +#: admin/includes/admin-about.php:107 msgid "" "If you want to support the plugin I would be happy to get a small donation" msgstr "" -#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 -#: admin/includes/admin-about.php:99 +#: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109 +#: admin/includes/admin-about.php:110 #, php-format msgid "Donate with %1$s" msgstr "" -#: admin/includes/admin-about.php:107 +#: admin/includes/admin-about.php:119 msgid "" "You have the possibility to modify the output if you add some of the " "following attributes to the shortcode." msgstr "" -#: admin/includes/admin-about.php:108 +#: admin/includes/admin-about.php:120 #, php-format msgid "" "You can combine and add as much attributes as you want. E.g. the shortcode " "including the attributes %1$s and %2$s would looks like this:" msgstr "" -#: admin/includes/admin-about.php:110 +#: admin/includes/admin-about.php:122 msgid "" "Below you can find a list of all supported attributes with their " "descriptions and available options:" msgstr "" -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:137 msgid "Attribute name" msgstr "" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:138 msgid "Value options" msgstr "" -#: admin/includes/admin-about.php:126 +#: admin/includes/admin-about.php:139 msgid "Default value" msgstr "" -#: admin/includes/admin-about.php:127 +#: admin/includes/admin-about.php:140 msgid "Description" msgstr "" -#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 -#: includes/sc_event-list_helptexts.php:31 +#: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:42 msgid "Filter Syntax" msgstr "" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:160 msgid "" "For date and cat filters you can specify complex filters with the following " "syntax:" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 #, php-format msgid "" "You can use %1$s and %2$s connections to define complex filters. " "Additionally you can set brackets %3$s for nested queries." msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "AND" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "OR" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "or" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "and" msgstr "" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:162 msgid "Examples for cat filters:" msgstr "" -#: admin/includes/admin-about.php:149 +#: admin/includes/admin-about.php:163 #, php-format msgid "Show all events with category %1$s." msgstr "" -#: admin/includes/admin-about.php:150 +#: admin/includes/admin-about.php:164 #, php-format msgid "Show all events with category %1$s or %2$s." msgstr "" -#: admin/includes/admin-about.php:151 +#: admin/includes/admin-about.php:165 #, php-format msgid "" "Show all events with category %1$s and all events where category %2$s as " "well as %3$s is selected." msgstr "" -#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34 msgid "Available Date Formats" msgstr "" -#: admin/includes/admin-about.php:157 +#: admin/includes/admin-about.php:172 msgid "For date filters you can use the following date formats:" msgstr "" -#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34 msgid "Available Date Range Formats" msgstr "" -#: admin/includes/admin-about.php:166 +#: admin/includes/admin-about.php:182 msgid "For date filters you can use the following daterange formats:" msgstr "" -#: admin/includes/admin-about.php:178 +#: admin/includes/admin-about.php:195 msgid "Value" msgstr "" -#: admin/includes/admin-about.php:182 +#: admin/includes/admin-about.php:199 msgid "Example" msgstr "" -#: admin/includes/admin-categories.php:38 +#: admin/includes/admin-categories.php:54 msgid "Synchronize with post categories" msgstr "" -#: admin/includes/admin-categories.php:46 +#: admin/includes/admin-categories.php:63 #, php-format msgid "%1$s categories modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:47 +#: admin/includes/admin-categories.php:64 #, php-format msgid "%1$s categories added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:48 +#: admin/includes/admin-categories.php:65 #, php-format msgid "%1$s categories deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:50 +#: admin/includes/admin-categories.php:67 #, php-format msgid "%1$s categories not modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:51 +#: admin/includes/admin-categories.php:68 #, php-format msgid "%1$s categories not added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:52 +#: admin/includes/admin-categories.php:69 #, php-format msgid "%1$s categories not deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:55 +#: admin/includes/admin-categories.php:72 msgid "An Error occured during the category sync" msgstr "" -#: admin/includes/admin-categories.php:59 +#: admin/includes/admin-categories.php:75 msgid "Category sync finished" msgstr "" -#: admin/includes/admin-category-sync.php:45 +#: admin/includes/admin-category-sync.php:54 msgid "Error: You are not allowed to view this page!" msgstr "" -#: admin/includes/admin-category-sync.php:62 +#: admin/includes/admin-category-sync.php:70 msgid "Affected Categories when switching to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:63 +#: admin/includes/admin-category-sync.php:71 msgid "Switch option to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:64 +#: admin/includes/admin-category-sync.php:72 msgid "" "If you proceed, all post categories will be copied and all events will be " "re-assigned to this new categories." msgstr "" -#: admin/includes/admin-category-sync.php:65 +#: admin/includes/admin-category-sync.php:73 msgid "" "Afterwards the event categories are independent of the post categories." msgstr "" -#: admin/includes/admin-category-sync.php:68 +#: admin/includes/admin-category-sync.php:75 msgid "Affected Categories when switching to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:69 +#: admin/includes/admin-category-sync.php:76 msgid "Switch option to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:70 +#: admin/includes/admin-category-sync.php:77 msgid "" "Take a detailed look at the affected categories above before you proceed! " "All seperate event categories will be deleted, this cannot be undone!" msgstr "" -#: admin/includes/admin-category-sync.php:73 +#: admin/includes/admin-category-sync.php:79 msgid "Event Categories: Synchronise with Post Categories" msgstr "" -#: admin/includes/admin-category-sync.php:74 +#: admin/includes/admin-category-sync.php:80 msgid "Start synchronisation" msgstr "" -#: admin/includes/admin-category-sync.php:75 +#: admin/includes/admin-category-sync.php:81 msgid "" "If this option is enabled the above listed categories will be deleted and " "removed from the existing events!" msgstr "" -#: admin/includes/admin-category-sync.php:90 +#: admin/includes/admin-category-sync.php:96 msgid "Categories to modify" msgstr "" -#: admin/includes/admin-category-sync.php:91 +#: admin/includes/admin-category-sync.php:97 msgid "Categories to add" msgstr "" -#: admin/includes/admin-category-sync.php:92 +#: admin/includes/admin-category-sync.php:98 msgid "Categories to delete (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:93 +#: admin/includes/admin-category-sync.php:99 msgid "Delete not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:97 +#: admin/includes/admin-category-sync.php:102 msgid "Categories with differences" msgstr "" -#: admin/includes/admin-category-sync.php:98 +#: admin/includes/admin-category-sync.php:103 msgid "Categories to add (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:99 +#: admin/includes/admin-category-sync.php:104 msgid "Add not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:117 +#: admin/includes/admin-category-sync.php:123 msgid "none" msgstr "" -#: admin/includes/admin-import.php:49 +#: admin/includes/admin-import.php:58 msgid "Import Events" msgstr "" -#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116 +#: admin/includes/admin-import.php:220 msgid "Step" msgstr "" -#: admin/includes/admin-import.php:69 +#: admin/includes/admin-import.php:79 msgid "Set import file and options" msgstr "" -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:82 #, php-format msgid "Proceed with Step %1$s" msgstr "" -#: admin/includes/admin-import.php:75 +#: admin/includes/admin-import.php:85 msgid "Example file" msgstr "" -#: admin/includes/admin-import.php:76 +#: admin/includes/admin-import.php:86 #, php-format msgid "" "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)" msgstr "" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "Note" msgstr "" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "" "Do not change the column header and separator line (first two lines), " "otherwise the import will fail!" msgstr "" -#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 +#: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103 msgid "Sorry, there has been an error." msgstr "" -#: admin/includes/admin-import.php:85 +#: admin/includes/admin-import.php:96 msgid "The file does not exist, please try again." msgstr "" -#: admin/includes/admin-import.php:93 +#: admin/includes/admin-import.php:104 msgid "The uploaded file does not have the required csv extension." msgstr "" -#: admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:116 msgid "Events review and additonal category selection" msgstr "" -#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133 msgid "Error" msgstr "" -#: admin/includes/admin-import.php:111 +#: admin/includes/admin-import.php:122 msgid "This CSV file cannot be imported" msgstr "" -#: admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:133 msgid "None of the events in this CSV file can be imported" msgstr "" -#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179 msgid "Warning" msgstr "" -#: admin/includes/admin-import.php:126 +#: admin/includes/admin-import.php:138 #, php-format msgid "There is %1$s event which cannot be imported" msgid_plural "There are %1$s events which cannot be imported" msgstr[0] "" -#: admin/includes/admin-import.php:134 +#: admin/includes/admin-import.php:150 #, php-format msgid "CSV line %1$s" msgstr "" -#: admin/includes/admin-import.php:144 +#: admin/includes/admin-import.php:160 msgid "You can still import all other events listed below." msgstr "" -#: admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:179 msgid "" "The following category slugs are not available and will be removed from the " "imported events" msgstr "" -#: admin/includes/admin-import.php:169 +#: admin/includes/admin-import.php:185 msgid "" "If you want to keep these categories, please create these Categories first " "and do the import afterwards." msgstr "" -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:220 msgid "Import result" msgstr "" -#: admin/includes/admin-import.php:201 +#: admin/includes/admin-import.php:223 #, php-format msgid "Import of %1$s events successful!" msgstr "" -#: admin/includes/admin-import.php:202 +#: admin/includes/admin-import.php:224 msgid "Go back to All Events" msgstr "" -#: admin/includes/admin-import.php:206 +#: admin/includes/admin-import.php:227 msgid "Errors during Import" msgstr "" -#: admin/includes/admin-import.php:215 +#: admin/includes/admin-import.php:235 msgid "Event from CSV-line" msgstr "" -#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 -#: includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77 +#: includes/widget_helptexts.php:9 msgid "Title" msgstr "" -#: admin/includes/admin-import.php:227 +#: admin/includes/admin-import.php:248 msgid "Start Date" msgstr "" -#: admin/includes/admin-import.php:228 +#: admin/includes/admin-import.php:249 msgid "End Date" msgstr "" -#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 -#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 +#: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:69 msgid "Time" msgstr "" -#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62 -#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57 -#: includes/options_helptexts.php:58 +#: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78 +#: admin/includes/admin-new.php:107 includes/options_helptexts.php:75 +#: includes/options_helptexts.php:76 msgid "Location" msgstr "" -#: admin/includes/admin-import.php:231 +#: admin/includes/admin-import.php:252 msgid "Content" msgstr "" -#: admin/includes/admin-import.php:232 +#: admin/includes/admin-import.php:253 msgid "Category slugs" msgstr "" -#: admin/includes/admin-import.php:274 +#: admin/includes/admin-import.php:297 msgid "Header line is missing or not correct!" msgstr "" -#: admin/includes/admin-import.php:275 +#: admin/includes/admin-import.php:298 #, php-format msgid "" "Have a look at the %1$sexample file%2$s to see the correct header line " "format." msgstr "" -#: admin/includes/admin-import.php:281 +#: admin/includes/admin-import.php:305 #, php-format msgid "Wrong number of items in line (%1$s items found, 6-7 required)" msgstr "" -#: admin/includes/admin-import.php:309 +#: admin/includes/admin-import.php:334 msgid "Empty event title found" msgstr "" -#: admin/includes/admin-import.php:315 +#: admin/includes/admin-import.php:340 msgid "Wrong date format for startdate" msgstr "" -#: admin/includes/admin-import.php:324 +#: admin/includes/admin-import.php:348 msgid "Wrong date format for enddate" msgstr "" -#: admin/includes/admin-import.php:365 +#: admin/includes/admin-import.php:401 msgid "Import events" msgstr "" -#: admin/includes/admin-import.php:366 +#: admin/includes/admin-import.php:402 msgid "Add additional categories" msgstr "" -#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +#: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257 msgid "Import" msgstr "" -#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +#: admin/includes/admin-import.php:428 includes/events_post_type.php:78 msgid "No events found" msgstr "" -#: admin/includes/admin-import.php:432 +#: admin/includes/admin-import.php:473 msgid "Saving of event failed!" msgstr "" -#: admin/includes/admin-main.php:60 +#: admin/includes/admin-main.php:76 msgid "Event Date" msgstr "" -#: admin/includes/admin-main.php:64 +#: admin/includes/admin-main.php:80 msgid "Author" msgstr "" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 #, php-format msgid "Add a copy of %1$s" msgstr "" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 msgid "Copy" msgstr "" -#: admin/includes/admin-new.php:51 +#: admin/includes/admin-new.php:58 msgid "Event data" msgstr "" -#: admin/includes/admin-new.php:80 +#: admin/includes/admin-new.php:90 msgid "Add Copy" msgstr "" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "Date" msgstr "" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "required" msgstr "" -#: admin/includes/admin-new.php:87 +#: admin/includes/admin-new.php:101 msgid "Multi-Day Event" msgstr "" -#: admin/includes/admin-new.php:106 +#: admin/includes/admin-new.php:121 msgid "Event Title" msgstr "" -#: admin/includes/admin-new.php:121 +#: admin/includes/admin-new.php:137 msgid "Event Content" msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203 msgid "Event updated." msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205 msgid "View event" msgstr "" -#: admin/includes/admin-new.php:184 +#: admin/includes/admin-new.php:204 #, php-format msgid "Event restored to revision from %1$s" msgstr "" -#: admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:205 msgid "Event published." msgstr "" -#: admin/includes/admin-new.php:187 +#: admin/includes/admin-new.php:207 msgid "Event submitted." msgstr "" -#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209 +#: admin/includes/admin-new.php:210 msgid "Preview event" msgstr "" -#: admin/includes/admin-new.php:188 +#: admin/includes/admin-new.php:208 #, php-format msgid "Event scheduled for: %1$s>" msgstr "" -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:210 msgid "Event draft updated." msgstr "" -#: admin/includes/admin-settings.php:71 +#: admin/includes/admin-settings.php:79 msgid "Go to Event Category switching page" msgstr "" -#: admin/includes/admin-settings.php:83 +#: admin/includes/admin-settings.php:93 msgid "Frontend Settings" msgstr "" -#: admin/includes/admin-settings.php:84 +#: admin/includes/admin-settings.php:94 msgid "Admin Page Settings" msgstr "" -#: admin/includes/admin-settings.php:85 +#: admin/includes/admin-settings.php:95 msgid "Feed Settings" msgstr "" -#: admin/includes/admin-settings.php:86 +#: admin/includes/admin-settings.php:96 msgid "Category Taxonomy" msgstr "" -#: includes/daterange_helptexts.php:7 +#: includes/daterange_helptexts.php:8 msgid "Year" msgstr "" -#: includes/daterange_helptexts.php:8 +#: includes/daterange_helptexts.php:9 msgid "A year can be specified in 4 digit format." msgstr "" -#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14 -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:47 #, php-format msgid "" "For a start date filter the first day of %1$s is used, in an end date the " "last day." msgstr "" -#: includes/daterange_helptexts.php:9 +#: includes/daterange_helptexts.php:10 msgid "the resulting year" msgstr "" -#: includes/daterange_helptexts.php:12 +#: includes/daterange_helptexts.php:15 msgid "Month" msgstr "" -#: includes/daterange_helptexts.php:13 +#: includes/daterange_helptexts.php:16 msgid "" "A month can be specified with 4 digits for the year and 2 digits for the " "month, seperated by a hyphen (-)." msgstr "" -#: includes/daterange_helptexts.php:14 +#: includes/daterange_helptexts.php:17 msgid "the resulting month" msgstr "" -#: includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:22 msgid "Day" msgstr "" -#: includes/daterange_helptexts.php:18 +#: includes/daterange_helptexts.php:23 msgid "" "A day can be specified in the format 4 digits for the year, 2 digits for the" " month and 2 digets for the day, seperated by hyphens (-)." msgstr "" -#: includes/daterange_helptexts.php:21 +#: includes/daterange_helptexts.php:28 msgid "Relative Year" msgstr "" -#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28 -#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55 #, php-format msgid "%1$s from now can be specified in the following notation: %2$s" msgstr "" -#: includes/daterange_helptexts.php:22 +#: includes/daterange_helptexts.php:29 msgid "A relative year" msgstr "" -#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29 -#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38 +#: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56 #, php-format msgid "" "This means you can specify a positive or negative (%1$s) %2$s from now with " "%3$s or %4$s attached (see also the example below)." msgstr "" -#: includes/daterange_helptexts.php:23 +#: includes/daterange_helptexts.php:30 msgid "number of years" msgstr "" -#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30 -#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44 +#: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39 +#: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57 #, php-format msgid "Additionally the following values are available: %1$s" msgstr "" -#: includes/daterange_helptexts.php:27 +#: includes/daterange_helptexts.php:36 msgid "Relative Month" msgstr "" -#: includes/daterange_helptexts.php:28 +#: includes/daterange_helptexts.php:37 msgid "A relative month" msgstr "" -#: includes/daterange_helptexts.php:29 +#: includes/daterange_helptexts.php:38 msgid "number of months" msgstr "" -#: includes/daterange_helptexts.php:33 +#: includes/daterange_helptexts.php:44 msgid "Relative Week" msgstr "" -#: includes/daterange_helptexts.php:34 +#: includes/daterange_helptexts.php:45 msgid "A relative week" msgstr "" -#: includes/daterange_helptexts.php:35 +#: includes/daterange_helptexts.php:46 msgid "number of weeks" msgstr "" -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:47 msgid "the resulting week" msgstr "" -#: includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:48 #, php-format msgid "" "The first day of the week is depending on the option %1$s which can be found" " and changed in %2$s." msgstr "" -#: includes/daterange_helptexts.php:41 +#: includes/daterange_helptexts.php:54 msgid "Relative Day" msgstr "" -#: includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:55 msgid "A relative day" msgstr "" -#: includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:56 msgid "number of days" msgstr "" -#: includes/daterange_helptexts.php:49 +#: includes/daterange_helptexts.php:64 msgid "Date range" msgstr "" -#: includes/daterange_helptexts.php:50 +#: includes/daterange_helptexts.php:66 msgid "" "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n" "\t For the start and end date any available date format can be used." msgstr "" -#: includes/daterange_helptexts.php:55 +#: includes/daterange_helptexts.php:75 msgid "This value defines a range without any limits." msgstr "" -#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61 -#: includes/daterange_helptexts.php:66 +#: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83 +#: includes/daterange_helptexts.php:90 #, php-format msgid "The corresponding date_range format is: %1$s" msgstr "" -#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 +#: includes/daterange_helptexts.php:81 includes/filterbar.php:310 msgid "Upcoming" msgstr "" -#: includes/daterange_helptexts.php:60 +#: includes/daterange_helptexts.php:82 msgid "This value defines a range from the actual day to the future." msgstr "" -#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 +#: includes/daterange_helptexts.php:88 includes/filterbar.php:318 msgid "Past" msgstr "" -#: includes/daterange_helptexts.php:65 +#: includes/daterange_helptexts.php:89 msgid "This value defines a range from the past to the previous day." msgstr "" -#: includes/event.php:107 +#: includes/event.php:124 msgid "No valid start date provided" msgstr "" -#: includes/events_post_type.php:60 +#: includes/event.php:299 includes/event.php:301 +#: includes/sc_event-list.php:298 +msgid "read more" +msgstr "" + +#: includes/events_post_type.php:69 msgid "Events" msgstr "Acara" -#: includes/events_post_type.php:61 +#: includes/events_post_type.php:70 msgid "Event" msgstr "" -#: includes/events_post_type.php:62 +#: includes/events_post_type.php:71 msgid "Add New" msgstr "Tambah Baru" -#: includes/events_post_type.php:63 +#: includes/events_post_type.php:72 msgid "Add New Event" msgstr "Tambah Acara Baru" -#: includes/events_post_type.php:64 +#: includes/events_post_type.php:73 msgid "Edit Event" msgstr "" -#: includes/events_post_type.php:65 +#: includes/events_post_type.php:74 msgid "New Event" msgstr "" -#: includes/events_post_type.php:66 +#: includes/events_post_type.php:75 msgid "View Event" msgstr "" -#: includes/events_post_type.php:67 +#: includes/events_post_type.php:76 msgid "View Events" msgstr "" -#: includes/events_post_type.php:68 +#: includes/events_post_type.php:77 msgid "Search Events" msgstr "" -#: includes/events_post_type.php:70 +#: includes/events_post_type.php:79 msgid "No events found in Trash" msgstr "" -#: includes/events_post_type.php:72 +#: includes/events_post_type.php:81 msgid "All Events" msgstr "Semua Acara" -#: includes/events_post_type.php:73 +#: includes/events_post_type.php:82 msgid "Event Archives" msgstr "" -#: includes/events_post_type.php:74 +#: includes/events_post_type.php:83 msgid "Event Attributes" msgstr "" -#: includes/events_post_type.php:75 +#: includes/events_post_type.php:84 msgid "Insert into event" msgstr "" -#: includes/events_post_type.php:76 +#: includes/events_post_type.php:85 msgid "Uploaded to this event" msgstr "" -#: includes/events_post_type.php:77 +#: includes/events_post_type.php:86 msgid "Event List" msgstr "Daftar Acara" -#: includes/events_post_type.php:78 +#: includes/events_post_type.php:87 msgid "Filter events list" msgstr "" -#: includes/events_post_type.php:79 +#: includes/events_post_type.php:88 msgid "Events list navigation" msgstr "" -#: includes/events_post_type.php:80 +#: includes/events_post_type.php:89 msgid "Events list" msgstr "" -#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +#: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90 msgid "Reset" msgstr "" -#: includes/filterbar.php:278 +#: includes/filterbar.php:296 msgid "All" msgstr "" -#: includes/filterbar.php:281 +#: includes/filterbar.php:298 msgid "All Dates" msgstr "" -#: includes/options_helptexts.php:10 +#: includes/options_helptexts.php:11 msgid "CSV File to import" msgstr "" -#: includes/options_helptexts.php:12 +#: includes/options_helptexts.php:13 msgid "Please select the file which contains the event data in CSV format." msgstr "" -#: includes/options_helptexts.php:15 +#: includes/options_helptexts.php:18 msgid "Used date format" msgstr "" -#: includes/options_helptexts.php:17 +#: includes/options_helptexts.php:21 msgid "" "With this option the given date format for event start and end date in the " "CSV file can be specified." msgstr "" -#: includes/options_helptexts.php:18 +#: includes/options_helptexts.php:23 #, php-format msgid "" "You can use the php date format options given in %1$s, the most important " "ones are:" msgstr "" -#: includes/options_helptexts.php:20 +#: includes/options_helptexts.php:26 msgid "full year representation, with 4 digits" msgstr "" -#: includes/options_helptexts.php:21 +#: includes/options_helptexts.php:27 msgid "numeric representation of a month, with leading zeros" msgstr "" -#: includes/options_helptexts.php:22 +#: includes/options_helptexts.php:28 msgid "day of the month, 2 digits with leading zeros" msgstr "" -#: includes/options_helptexts.php:24 +#: includes/options_helptexts.php:30 msgid "" "If the date format in the CSV file does not correspond to the given format, " "the import script tries to recognize the date format by itself." msgstr "" -#: includes/options_helptexts.php:25 +#: includes/options_helptexts.php:31 msgid "" "But this can cause problems or result in wrong dates, so it is recommended " "to specify the correct date format here." msgstr "" -#: includes/options_helptexts.php:26 +#: includes/options_helptexts.php:32 msgid "Examples" msgstr "" -#: includes/options_helptexts.php:33 +#: includes/options_helptexts.php:41 msgid "Text for no events" msgstr "" -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:43 msgid "" "This option defines the displayed text when no events are available for the " "selected view." msgstr "" -#: includes/options_helptexts.php:38 +#: includes/options_helptexts.php:48 msgid "Multiday filter range" msgstr "" -#: includes/options_helptexts.php:39 +#: includes/options_helptexts.php:49 msgid "Use the complete event range in the date filter" msgstr "" -#: includes/options_helptexts.php:40 +#: includes/options_helptexts.php:51 msgid "" "This option defines if the complete range of a multiday event shall be " "considered in the date filter." msgstr "" -#: includes/options_helptexts.php:41 +#: includes/options_helptexts.php:52 msgid "" "If disabled, only the start day of an event is considered in the filter." msgstr "" -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:53 msgid "" "For an example multiday event which started yesterday and ends tomorrow this" " means, that it is displayed in umcoming dates when this option is enabled, " "but it is hidden when the option is disabled." msgstr "" -#: includes/options_helptexts.php:45 +#: includes/options_helptexts.php:58 msgid "Date display" msgstr "" -#: includes/options_helptexts.php:46 +#: includes/options_helptexts.php:59 msgid "Show the date only once per day" msgstr "" -#: includes/options_helptexts.php:47 +#: includes/options_helptexts.php:61 msgid "" "With this option enabled the date is only displayed once per day if more " "than one event is available on the same day." msgstr "" -#: includes/options_helptexts.php:48 +#: includes/options_helptexts.php:62 msgid "" "If enabled, the events are ordered in a different way (end date before start" " time) to allow using the same date for as much events as possible." msgstr "" -#: includes/options_helptexts.php:51 +#: includes/options_helptexts.php:67 msgid "HTML tags" msgstr "" -#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:75 #, php-format msgid "Allow HTML tags in the event field \"%1$s\"" msgstr "" -#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 +#: includes/options_helptexts.php:69 includes/options_helptexts.php:76 #, php-format msgid "" "This option specifies if HTML tags are allowed in the event field \"%1$s\"." msgstr "" -#: includes/options_helptexts.php:61 +#: includes/options_helptexts.php:81 msgid "Preferred language file" msgstr "" -#: includes/options_helptexts.php:62 +#: includes/options_helptexts.php:82 msgid "Load translations from general language directory first" msgstr "" -#: includes/options_helptexts.php:63 +#: includes/options_helptexts.php:84 #, php-format msgid "" "The default is to load the %1$s translation file from the plugin language " "directory first (%2$s)." msgstr "" -#: includes/options_helptexts.php:64 +#: includes/options_helptexts.php:85 #, php-format msgid "" "If you want to load your own language file from the general language " @@ -1121,295 +1126,312 @@ msgid "" "language directory, you have to enable this option." msgstr "" -#: includes/options_helptexts.php:68 +#: includes/options_helptexts.php:91 msgid "Events permalink slug" msgstr "" -#: includes/options_helptexts.php:69 +#: includes/options_helptexts.php:92 msgid "" "With this option the slug for the events permalink URLs can be defined." msgstr "" -#: includes/options_helptexts.php:72 +#: includes/options_helptexts.php:97 msgid "Text for \"Show content\"" msgstr "" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:98 msgid "" "With this option the displayed text for the link to show the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:76 +#: includes/options_helptexts.php:103 msgid "Text for \"Hide content\"" msgstr "" -#: includes/options_helptexts.php:77 +#: includes/options_helptexts.php:104 msgid "" "With this option the displayed text for the link to hide the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:109 msgid "Disable CSS file" msgstr "" -#: includes/options_helptexts.php:81 +#: includes/options_helptexts.php:110 #, php-format msgid "Disable the %1$s file." msgstr "" -#: includes/options_helptexts.php:82 +#: includes/options_helptexts.php:112 #, php-format msgid "With this option you can disable the inclusion of the %1$s file." msgstr "" -#: includes/options_helptexts.php:83 +#: includes/options_helptexts.php:113 msgid "" "This normally only make sense if you have css conflicts with your theme and " "want to set all required css styles somewhere else (e.g. in the theme css)." msgstr "" -#: includes/options_helptexts.php:87 +#: includes/options_helptexts.php:119 msgid "Date format in edit form" msgstr "" -#: includes/options_helptexts.php:88 +#: includes/options_helptexts.php:121 msgid "" "This option sets the displayed date format for the event date fields in the " "event new / edit form." msgstr "" -#: includes/options_helptexts.php:89 +#: includes/options_helptexts.php:122 msgid "The default is an empty string to use the Wordpress standard setting." msgstr "" -#: includes/options_helptexts.php:90 +#: includes/options_helptexts.php:123 #, php-format msgid "" "All available options to specify the date format can be found %1$shere%2$s." msgstr "" -#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 +#: includes/options_helptexts.php:129 msgid "Enable RSS feed" msgstr "" -#: includes/options_helptexts.php:95 -msgid "Enable support for an event RSS feed" +#: includes/options_helptexts.php:130 +msgid "Enable support for the event RSS feed" msgstr "" -#: includes/options_helptexts.php:96 -msgid "This option activates a RSS feed for the events." +#: includes/options_helptexts.php:132 +msgid "" +"This option activates the RSS feed for the events and adds a feed link in " +"the html head." msgstr "" -#: includes/options_helptexts.php:97 +#: includes/options_helptexts.php:133 msgid "" "You have to enable this option if you want to use one of the RSS feed " "features." msgstr "" -#: includes/options_helptexts.php:100 -msgid "Feed name" +#: includes/options_helptexts.php:138 +msgid "Enable iCal feed" msgstr "" -#: includes/options_helptexts.php:101 -#, php-format -msgid "This option sets the feed name. The default value is %1$s." +#: includes/options_helptexts.php:139 +msgid "Enable support for the event iCal feed" msgstr "" -#: includes/options_helptexts.php:102 -#, php-format -msgid "" -"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " -"enabled)." +#: includes/options_helptexts.php:141 +msgid "This option activates the iCal feed for events." msgstr "" -#: includes/options_helptexts.php:105 -msgid "Feed Description" +#: includes/options_helptexts.php:142 +msgid "" +"You have to enable this option if you want to use one of the iCal features." msgstr "" -#: includes/options_helptexts.php:106 -#, php-format -msgid "This options set the feed description. The default value is %1$s." +#: includes/options_helptexts.php:147 +msgid "Position of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:107 -msgid "" -"This description will be used in the title for the feed link in the html " -"head and for the description in the feed itself." +#: includes/options_helptexts.php:149 +msgid "at the top (above the navigation bar)" msgstr "" -#: includes/options_helptexts.php:110 -msgid "Listed events" +#: includes/options_helptexts.php:150 +msgid "between navigation bar and events" msgstr "" -#: includes/options_helptexts.php:111 -msgid "Only show upcoming events in feed" +#: includes/options_helptexts.php:151 +msgid "at the bottom" msgstr "" -#: includes/options_helptexts.php:112 +#: includes/options_helptexts.php:153 msgid "" -"If this option is enabled only the upcoming events are listed in the feed." +"This option specifies the position of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:113 -msgid "If disabled all events (upcoming and past) will be listed." +#: includes/options_helptexts.php:158 +msgid "Align of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:116 -msgid "Add RSS feed link in head" +#: includes/options_helptexts.php:160 +msgid "left" msgstr "" -#: includes/options_helptexts.php:117 -msgid "Add RSS feed link in the html head" +#: includes/options_helptexts.php:161 +msgid "center" msgstr "" -#: includes/options_helptexts.php:118 -msgid "This option adds a RSS feed in the html head for the events." +#: includes/options_helptexts.php:162 +msgid "right" msgstr "" -#: includes/options_helptexts.php:119 -msgid "There are 2 alternatives to include the RSS feed" +#: includes/options_helptexts.php:164 +msgid "" +"This option specifies the align of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:120 -msgid "" -"The first way is this option to include a link in the html head. This link " -"will be recognized by browers or feed readers." +#: includes/options_helptexts.php:169 +msgid "RSS feed name" msgstr "" -#: includes/options_helptexts.php:121 +#: includes/options_helptexts.php:171 #, php-format -msgid "" -"The second way is to include a visible feed link directly in the event list." -" This can be done by setting the shortcode attribute %1$s to %2$s." +msgid "This option sets the RSS feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:122 +#: includes/options_helptexts.php:172 #, php-format -msgid "This option is only valid if the setting %1$s is enabled." +msgid "" +"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " +"enabled)." msgstr "" -#: includes/options_helptexts.php:125 -msgid "Position of the RSS feed link" +#: includes/options_helptexts.php:177 +msgid "RSS feed Description" msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the top (above the navigation bar)" +#: includes/options_helptexts.php:179 +#, php-format +msgid "This options set the RSS feed description. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:126 -msgid "between navigation bar and events" +#: includes/options_helptexts.php:180 +msgid "" +"This description will be used in the title for the feed link in the html " +"head and for the description in the feed itself." msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the bottom" +#: includes/options_helptexts.php:185 +msgid "RSS feed events" msgstr "" -#: includes/options_helptexts.php:127 -msgid "" -"This option specifies the position of the RSS feed link in the event list." +#: includes/options_helptexts.php:186 +msgid "Only show upcoming events in the RSS feed" msgstr "" -#: includes/options_helptexts.php:128 includes/options_helptexts.php:134 -#: includes/options_helptexts.php:140 includes/options_helptexts.php:146 -#, php-format +#: includes/options_helptexts.php:188 msgid "" -"You have to set the shortcode attribute %1$s to %2$s if you want to show the" -" feed link." +"If this option is enabled only the upcoming events are listed in the RSS " +"feed." msgstr "" -#: includes/options_helptexts.php:131 -msgid "Align of the RSS feed link" +#: includes/options_helptexts.php:189 includes/options_helptexts.php:215 +msgid "If disabled, all events (upcoming and past) will be listed." msgstr "" -#: includes/options_helptexts.php:132 -msgid "left" +#: includes/options_helptexts.php:194 +msgid "RSS link text" msgstr "" -#: includes/options_helptexts.php:132 -msgid "center" +#: includes/options_helptexts.php:196 +msgid "This option sets the caption of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:132 -msgid "right" +#: includes/options_helptexts.php:197 +msgid "Use an empty text to only show the rss image." msgstr "" -#: includes/options_helptexts.php:133 +#: includes/options_helptexts.php:198 +#, php-format msgid "" -"This option specifies the align of the RSS feed link in the event list." +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" RSS feed link." msgstr "" -#: includes/options_helptexts.php:137 -msgid "Feed link text" +#: includes/options_helptexts.php:203 +msgid "iCal feed name" msgstr "" -#: includes/options_helptexts.php:138 +#: includes/options_helptexts.php:205 +#, php-format +msgid "This option sets the iCal feed name. The default value is %1$s." +msgstr "" + +#: includes/options_helptexts.php:206 +#, php-format msgid "" -"This option specifies the caption of the RSS feed link in the event list." +"This name will be used in the iCal feed url (e.g. %1$s, or %2$s with " +"permalinks enabled)." msgstr "" -#: includes/options_helptexts.php:139 +#: includes/options_helptexts.php:211 +msgid "iCal feed events" +msgstr "" + +#: includes/options_helptexts.php:212 +msgid "Only show upcoming events in the iCal feed" +msgstr "" + +#: includes/options_helptexts.php:214 msgid "" -"Insert an empty text to hide any text if you only want to show the rss " -"image." +"If this option is enabled only the upcoming events are listed in the iCal " +"file." +msgstr "" + +#: includes/options_helptexts.php:220 +msgid "iCal link text" msgstr "" -#: includes/options_helptexts.php:143 -msgid "Feed link image" +#: includes/options_helptexts.php:222 +msgid "This option sets the iCal link text in the event list." msgstr "" -#: includes/options_helptexts.php:144 -msgid "Show rss image in feed link" +#: includes/options_helptexts.php:223 +msgid "Use an empty text to only show the iCal image." msgstr "" -#: includes/options_helptexts.php:145 +#: includes/options_helptexts.php:224 +#, php-format msgid "" -"This option specifies if the an image should be dispayed in the feed link in" -" front of the text." +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" iCal feed link." msgstr "" -#: includes/options_helptexts.php:151 +#: includes/options_helptexts.php:231 msgid "Event Category handling" msgstr "" -#: includes/options_helptexts.php:152 +#: includes/options_helptexts.php:232 msgid "Use Post Categories" msgstr "" -#: includes/options_helptexts.php:153 +#: includes/options_helptexts.php:234 msgid "" "Do not maintain seperate categories for the events, and use the existing " "post categories instead." msgstr "" -#: includes/options_helptexts.php:154 +#: includes/options_helptexts.php:235 msgid "Attention" msgstr "" -#: includes/options_helptexts.php:155 +#: includes/options_helptexts.php:236 msgid "" "This option cannot be changed directly, but you can go to the Event Category" " switching page from here." msgstr "" -#: includes/options.php:40 +#: includes/options.php:73 msgid "events" msgstr "" -#: includes/options.php:41 +#: includes/options.php:77 msgid "Show content" msgstr "" -#: includes/options.php:42 +#: includes/options.php:81 msgid "Hide content" msgstr "" -#: includes/sc_event-list_helptexts.php:7 +#: includes/sc_event-list_helptexts.php:8 msgid "event-id" msgstr "" -#: includes/sc_event-list_helptexts.php:8 +#: includes/sc_event-list_helptexts.php:9 #, php-format msgid "" "By default the event-list is displayed initially. But if an event-id (e.g. " @@ -1417,107 +1439,107 @@ msgid "" "this event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:10 -#: includes/sc_event-list_helptexts.php:22 +#: includes/sc_event-list_helptexts.php:13 +#: includes/sc_event-list_helptexts.php:31 msgid "year" msgstr "" -#: includes/sc_event-list_helptexts.php:11 +#: includes/sc_event-list_helptexts.php:14 msgid "" "This attribute defines which events are initially shown. The default is to " "show the upcoming events only." msgstr "" -#: includes/sc_event-list_helptexts.php:12 +#: includes/sc_event-list_helptexts.php:15 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:14 +#: includes/sc_event-list_helptexts.php:19 msgid "category slug" msgstr "" -#: includes/sc_event-list_helptexts.php:15 +#: includes/sc_event-list_helptexts.php:20 msgid "" "This attribute defines the category of which events are initially shown. The" " default is to show events of all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:16 +#: includes/sc_event-list_helptexts.php:21 msgid "" "Provide a category slug to change this behavior. It is still possible to " "change the displayed categories via the filterbar or url parameters." msgstr "" -#: includes/sc_event-list_helptexts.php:19 +#: includes/sc_event-list_helptexts.php:26 msgid "This attribute defines the initial order of the events." msgstr "" -#: includes/sc_event-list_helptexts.php:20 +#: includes/sc_event-list_helptexts.php:27 msgid "" "With %1$S (default value) the events are sorted from old to new, with %2$s " "in the opposite direction (from new to old)." msgstr "" -#: includes/sc_event-list_helptexts.php:23 +#: includes/sc_event-list_helptexts.php:32 #, php-format msgid "" "This attribute defines the dates and date ranges of which events are " "displayed. The default is %1$s to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:24 +#: includes/sc_event-list_helptexts.php:33 #, php-format msgid "" "Filtered events according to %1$s value are not available in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:25 +#: includes/sc_event-list_helptexts.php:34 #, php-format msgid "" "You can find all available values with a description and examples in the " "sections %1$s and %2$s below." msgstr "" -#: includes/sc_event-list_helptexts.php:26 +#: includes/sc_event-list_helptexts.php:35 #, php-format msgid "See %1$s description if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:28 +#: includes/sc_event-list_helptexts.php:39 msgid "category slugs" msgstr "" -#: includes/sc_event-list_helptexts.php:29 +#: includes/sc_event-list_helptexts.php:40 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:30 +#: includes/sc_event-list_helptexts.php:41 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:31 +#: includes/sc_event-list_helptexts.php:42 #, php-format msgid "" "The filter is specified via the given category slugs. See %1$s description " "if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:33 -#: includes/sc_event-list_helptexts.php:74 -#: includes/sc_event-list_helptexts.php:89 -#: includes/sc_event-list_helptexts.php:104 +#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:111 +#: includes/sc_event-list_helptexts.php:138 +#: includes/sc_event-list_helptexts.php:177 msgid "number" msgstr "" -#: includes/sc_event-list_helptexts.php:34 +#: includes/sc_event-list_helptexts.php:47 #, php-format msgid "" "This attribute defines how many events should be displayed if upcoming " @@ -1525,109 +1547,109 @@ msgid "" "displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:48 msgid "" "Please not that in the actual version there is no pagination of the events " "available, so the event list can be very long." msgstr "" -#: includes/sc_event-list_helptexts.php:38 +#: includes/sc_event-list_helptexts.php:53 msgid "" "This attribute defines if the filterbar should be displayed. The filterbar " "allows the users to specify filters for the listed events." msgstr "" -#: includes/sc_event-list_helptexts.php:39 +#: includes/sc_event-list_helptexts.php:54 #, php-format msgid "Choose %1$s to always hide and %2$s to always show the filterbar." msgstr "" -#: includes/sc_event-list_helptexts.php:40 +#: includes/sc_event-list_helptexts.php:55 #, php-format msgid "" "With %1$s the filterbar is only visible in the event list and with %2$s only" " in the single event view." msgstr "" -#: includes/sc_event-list_helptexts.php:43 +#: includes/sc_event-list_helptexts.php:60 #, php-format msgid "" "This attribute specifies the available items in the filterbar. This options " "are only valid if the filterbar is displayed (see %1$s attribute)." msgstr "" -#: includes/sc_event-list_helptexts.php:44 +#: includes/sc_event-list_helptexts.php:61 msgid "" "Find below an overview of the available filterbar items and their options:" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "filterbar item" msgstr "" -#: includes/sc_event-list_helptexts.php:46 -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:96 msgid "description" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "item options" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option values" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "default value" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option description" msgstr "" -#: includes/sc_event-list_helptexts.php:47 +#: includes/sc_event-list_helptexts.php:67 msgid "" "Show a list of all available years. Additional there are some special " "entries available (see item options)." msgstr "" -#: includes/sc_event-list_helptexts.php:48 -#: includes/sc_event-list_helptexts.php:53 +#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:82 msgid "Add an entry to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:49 -#: includes/sc_event-list_helptexts.php:54 +#: includes/sc_event-list_helptexts.php:73 +#: includes/sc_event-list_helptexts.php:84 msgid "Add an entry to show all upcoming events." msgstr "" -#: includes/sc_event-list_helptexts.php:50 -#: includes/sc_event-list_helptexts.php:55 +#: includes/sc_event-list_helptexts.php:74 +#: includes/sc_event-list_helptexts.php:85 msgid "Add an entry to show events in the past." msgstr "" -#: includes/sc_event-list_helptexts.php:51 +#: includes/sc_event-list_helptexts.php:75 msgid "Set descending or ascending order of year entries." msgstr "" -#: includes/sc_event-list_helptexts.php:52 +#: includes/sc_event-list_helptexts.php:78 msgid "Show a list of all available months." msgstr "" -#: includes/sc_event-list_helptexts.php:56 +#: includes/sc_event-list_helptexts.php:86 msgid "Set descending or ascending order of month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "php date-formats" msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "Set the displayed date format of the month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "With this item you can display the special entries %1$s, %2$s and %3$s. You " @@ -1635,65 +1657,65 @@ msgid "" "order." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "Specifies the displayed values and their order. The items must be seperated " "by %1$s." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Show a list of all available categories." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Add an entry to show events from all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "A link to reset the eventlist filter to standard." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "any text" msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "Set the caption of the link." msgstr "" -#: includes/sc_event-list_helptexts.php:61 +#: includes/sc_event-list_helptexts.php:93 msgid "Find below an overview of the available filterbar display options:" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "display option" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "available for" msgstr "" -#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:97 #, php-format msgid "Shows a horizonal list seperated by %1$s with a link to each item." msgstr "" -#: includes/sc_event-list_helptexts.php:65 +#: includes/sc_event-list_helptexts.php:98 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:66 +#: includes/sc_event-list_helptexts.php:99 msgid "Shows a simple link which can be clicked." msgstr "" -#: includes/sc_event-list_helptexts.php:67 +#: includes/sc_event-list_helptexts.php:102 msgid "Find below some declaration examples with descriptions:" msgstr "" -#: includes/sc_event-list_helptexts.php:69 +#: includes/sc_event-list_helptexts.php:104 #, php-format msgid "" "In this example you can see that the filterbar item and the used display " @@ -1701,22 +1723,22 @@ msgid "" "items seperated by a comma %2$s. These items will be displayed left-aligned." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "option_name" msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "value" msgstr "" -#: includes/sc_event-list_helptexts.php:72 +#: includes/sc_event-list_helptexts.php:107 #, php-format msgid "" "The 2 semicolon %1$s devides the bar in 3 section. The first section will be" @@ -1725,75 +1747,84 @@ msgid "" "left-aligned and the reset link will be on the right side." msgstr "" -#: includes/sc_event-list_helptexts.php:75 -#: includes/sc_event-list_helptexts.php:90 +#: includes/sc_event-list_helptexts.php:112 +#: includes/sc_event-list_helptexts.php:139 msgid "" "This attribute specifies if the title should be truncated to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:76 -#: includes/sc_event-list_helptexts.php:91 +#: includes/sc_event-list_helptexts.php:113 +#: includes/sc_event-list_helptexts.php:140 #, php-format msgid "" "With the standard value %1$s the full text is displayed, with %2$s the text " "is automatically truncated via css." msgstr "" -#: includes/sc_event-list_helptexts.php:77 -#: includes/sc_event-list_helptexts.php:92 -#: includes/sc_event-list_helptexts.php:107 +#: includes/sc_event-list_helptexts.php:114 +#: includes/sc_event-list_helptexts.php:141 +#: includes/sc_event-list_helptexts.php:180 msgid "This attribute has no influence if only a single event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:80 +#: includes/sc_event-list_helptexts.php:120 msgid "" "This attribute specifies if the starttime is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n" "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:85 +#: includes/sc_event-list_helptexts.php:130 msgid "" "This attribute specifies if the location is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n" "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:95 +#: includes/sc_event-list_helptexts.php:147 msgid "" "This attribute specifies if the categories are displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n" "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:100 +#: includes/sc_event-list_helptexts.php:157 msgid "" "This attribute specifies if the content is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n" "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:105 +#: includes/sc_event-list_helptexts.php:167 +msgid "" +"This attribute specifies if the excerpt is displayed in the event list.<br />\n" +"\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n" +"\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" +"\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" +"\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)." +msgstr "" + +#: includes/sc_event-list_helptexts.php:178 msgid "" "This attribute specifies if the content should be truncate to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:106 +#: includes/sc_event-list_helptexts.php:179 #, php-format msgid "With the standard value %1$s the full text is displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:110 +#: includes/sc_event-list_helptexts.php:186 msgid "" -"This attribute specifies if the content should be collapsed initially.<br />\n" +"This attribute specifies if the content or excerpt should be collapsed initially.<br />\n" "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n" "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n" "\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." msgstr "" -#: includes/sc_event-list_helptexts.php:116 +#: includes/sc_event-list_helptexts.php:197 msgid "" "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n" "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n" @@ -1801,7 +1832,7 @@ msgid "" "\t With \"events_with_content_only\" the link is only added in the event list for events with event content." msgstr "" -#: includes/sc_event-list_helptexts.php:122 +#: includes/sc_event-list_helptexts.php:208 msgid "" "This attribute specifies if a rss feed link should be added.<br />\n" "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n" @@ -1810,32 +1841,52 @@ msgid "" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:128 +#: includes/sc_event-list_helptexts.php:220 +msgid "" +"This attribute specifies if a ical feed link should be added.<br />\n" +"\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n" +"\t On that page you can also find some settings to modify the output.<br />\n" +"\t Choose \"false\" to never add and \"true\" to always add the link.<br />" +msgstr "" + +#: includes/sc_event-list_helptexts.php:231 msgid "" "This attribute specifies the page or post url for event links.<br />\n" "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n" "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget." msgstr "" -#: includes/sc_event-list_helptexts.php:135 +#: includes/sc_event-list_helptexts.php:243 msgid "" "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n" "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget." msgstr "" -#: includes/sc_event-list.php:135 +#: includes/sc_event-list.php:154 +msgid "Sorry, the requested event is not available!" +msgstr "" + +#: includes/sc_event-list.php:163 msgid "Event Information:" msgstr "" -#: includes/widget_helptexts.php:10 +#: includes/sc_event-list.php:405 +msgid "Link to RSS feed" +msgstr "" + +#: includes/sc_event-list.php:414 +msgid "Link to iCal feed" +msgstr "" + +#: includes/widget_helptexts.php:11 msgid "This option defines the displayed title for the widget." msgstr "" -#: includes/widget_helptexts.php:15 +#: includes/widget_helptexts.php:18 msgid "Category Filter" msgstr "" -#: includes/widget_helptexts.php:17 +#: includes/widget_helptexts.php:20 msgid "" "This option defines the categories of which events are shown. The standard " "is all or an empty string to show all events. Specify a category slug or a " @@ -1844,137 +1895,145 @@ msgid "" "all possibilities." msgstr "" -#: includes/widget_helptexts.php:22 +#: includes/widget_helptexts.php:27 msgid "Number of listed events" msgstr "" -#: includes/widget_helptexts.php:24 +#: includes/widget_helptexts.php:29 msgid "The number of upcoming events to display" msgstr "" -#: includes/widget_helptexts.php:29 +#: includes/widget_helptexts.php:36 msgid "Truncate event title to" msgstr "" -#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52 -#: includes/widget_helptexts.php:67 +#: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65 +#: includes/widget_helptexts.php:93 msgid "characters" msgstr "" -#: includes/widget_helptexts.php:31 +#: includes/widget_helptexts.php:38 msgid "" "This option defines the number of displayed characters for the event title." msgstr "" -#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54 +#: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67 #, php-format msgid "" "Set this value to %1$s to view the full text, or set it to %2$s to " "automatically truncate the text via css." msgstr "" -#: includes/widget_helptexts.php:37 +#: includes/widget_helptexts.php:46 msgid "Show event starttime" msgstr "" -#: includes/widget_helptexts.php:39 +#: includes/widget_helptexts.php:48 msgid "This option defines if the event start time will be displayed." msgstr "" -#: includes/widget_helptexts.php:44 +#: includes/widget_helptexts.php:55 msgid "Show event location" msgstr "" -#: includes/widget_helptexts.php:46 +#: includes/widget_helptexts.php:57 msgid "This option defines if the event location will be displayed." msgstr "" -#: includes/widget_helptexts.php:51 +#: includes/widget_helptexts.php:64 msgid "Truncate location to" msgstr "" -#: includes/widget_helptexts.php:53 +#: includes/widget_helptexts.php:66 msgid "" "If the event location is diplayed this option defines the number of " "displayed characters." msgstr "" -#: includes/widget_helptexts.php:59 +#: includes/widget_helptexts.php:74 +msgid "Show event excerpt" +msgstr "" + +#: includes/widget_helptexts.php:76 +msgid "This option defines if the event excerpt will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:83 msgid "Show event content" msgstr "" -#: includes/widget_helptexts.php:61 +#: includes/widget_helptexts.php:85 msgid "This option defines if the event content will be displayed." msgstr "" -#: includes/widget_helptexts.php:66 +#: includes/widget_helptexts.php:92 msgid "Truncate content to" msgstr "" -#: includes/widget_helptexts.php:68 +#: includes/widget_helptexts.php:94 msgid "" "If the event content are diplayed this option defines the number of diplayed" " characters." msgstr "" -#: includes/widget_helptexts.php:69 +#: includes/widget_helptexts.php:95 #, php-format msgid "Set this value to %1$s to view the full text." msgstr "" -#: includes/widget_helptexts.php:74 +#: includes/widget_helptexts.php:102 msgid "URL to the linked Event List page" msgstr "" -#: includes/widget_helptexts.php:76 +#: includes/widget_helptexts.php:104 msgid "" "This option defines the url to the linked Event List page. This option is " "required if you want to use one of the options below." msgstr "" -#: includes/widget_helptexts.php:81 +#: includes/widget_helptexts.php:111 msgid "Shortcode ID on linked page" msgstr "" -#: includes/widget_helptexts.php:83 +#: includes/widget_helptexts.php:113 msgid "" "This option defines the shortcode-id for the Event List on the linked page. " "Normally the standard value 1 is correct, you only have to change it if you " "use multiple event-list shortcodes on the linked page." msgstr "" -#: includes/widget_helptexts.php:90 +#: includes/widget_helptexts.php:122 msgid "" "With this option you can add a link to the single event page for every " "displayed event. You have to specify the url to the page and the shortcode " "id option if you want to use it." msgstr "" -#: includes/widget_helptexts.php:97 +#: includes/widget_helptexts.php:131 msgid "" "With this option you can add a link to the event-list page below the " "diplayed events. You have to specify the url to page option if you want to " "use it." msgstr "" -#: includes/widget_helptexts.php:102 +#: includes/widget_helptexts.php:138 msgid "Caption for the link" msgstr "" -#: includes/widget_helptexts.php:104 +#: includes/widget_helptexts.php:140 msgid "" "This option defines the text for the link to the Event List page if the " "approriate option is selected." msgstr "" -#: includes/widget.php:20 +#: includes/widget.php:21 msgid "With this widget a list of upcoming events can be displayed." msgstr "" -#: includes/widget.php:25 +#: includes/widget.php:26 msgid "Upcoming events" msgstr "" -#: includes/widget.php:38 +#: includes/widget.php:40 msgid "show events page" msgstr "" diff --git a/wp-content/plugins/event-list/languages/event-list-it_IT.mo b/wp-content/plugins/event-list/languages/event-list-it_IT.mo index 0ecdf8d0dfdd86e173b9629f09feaba439cefec3..77f3da707b4c6c2c094577a6c76128fb5cd4605a 100644 Binary files a/wp-content/plugins/event-list/languages/event-list-it_IT.mo and b/wp-content/plugins/event-list/languages/event-list-it_IT.mo differ diff --git a/wp-content/plugins/event-list/languages/event-list-it_IT.po b/wp-content/plugins/event-list/languages/event-list-it_IT.po index bac6146f44d2e196cc0d1e5ba105e734328f0417..6dccac25f915b06e19a49ebd1f26da56d0d68ec1 100644 --- a/wp-content/plugins/event-list/languages/event-list-it_IT.po +++ b/wp-content/plugins/event-list/languages/event-list-it_IT.po @@ -1,5 +1,5 @@ # Translation file for the 'Event List' WordPress plugin -# Copyright (C) 2018 by mibuthu +# Copyright (C) 2021 by mibuthu # This file is distributed under the same license as the corresponding wordpress plugin. # # Translators: @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: wp-event-list\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n" -"POT-Creation-Date: 2018-05-27 12:20+0200\n" -"PO-Revision-Date: 2018-05-27 10:20+0000\n" +"POT-Creation-Date: 2021-04-24 11:28+0200\n" +"PO-Revision-Date: 2021-04-24 09:26+0000\n" "Last-Translator: mibuthu\n" "Language-Team: Italian (Italy) (http://www.transifex.com/mibuthu/wp-event-list/language/it_IT/)\n" "MIME-Version: 1.0\n" @@ -18,117 +18,117 @@ msgstr "" "Language: it_IT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Errors during upgrade of plugin %1$s" msgstr "" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Upgrade of plugin %1$s successful" msgstr "" -#: admin/admin.php:106 admin/includes/admin-settings.php:65 +#: admin/admin.php:116 admin/includes/admin-settings.php:73 msgid "Event List Settings" msgstr "Impostazioni Eventi Lista" -#: admin/admin.php:106 +#: admin/admin.php:116 msgid "Settings" msgstr "Impostazioni" -#: admin/admin.php:110 admin/includes/admin-about.php:37 +#: admin/admin.php:120 admin/includes/admin-about.php:43 msgid "About Event List" msgstr "Informazioni su Lista Eventi" -#: admin/admin.php:110 +#: admin/admin.php:120 msgid "About" msgstr "Informazioni su" -#: admin/admin.php:132 +#: admin/admin.php:144 #, php-format msgid "%s Event" msgid_plural "%s Events" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 +#: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92 msgid "General" msgstr "Generico" -#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 -#: admin/includes/admin-about.php:105 +#: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88 +#: admin/includes/admin-about.php:117 msgid "Shortcode Attributes" msgstr "Attributi dello Shortcode" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:82 msgid "Help and Instructions" msgstr "Aiuto e Istruzioni" -#: admin/includes/admin-about.php:73 +#: admin/includes/admin-about.php:83 #, php-format msgid "You can manage the events %1$shere%2$s" msgstr "" -#: admin/includes/admin-about.php:74 +#: admin/includes/admin-about.php:84 msgid "To show the events on your site you have 2 possibilities" msgstr "Per mostrare gli eventi sul tuo sito hai 2 possibilità" -#: admin/includes/admin-about.php:75 +#: admin/includes/admin-about.php:85 #, php-format msgid "you can place the <strong>shortcode</strong> %1$s on any page or post" msgstr "Puoi inserire lo <strong>shortcode</strong> %1$s su ogni pagina e articolo" -#: admin/includes/admin-about.php:76 +#: admin/includes/admin-about.php:86 #, php-format msgid "you can add the <strong>widget</strong> %1$s in your sidebars" msgstr "puoi aggiungere il <strong>widget</strong> %1$s nelle tue sidebar" -#: admin/includes/admin-about.php:77 +#: admin/includes/admin-about.php:87 msgid "" "The displayed events and their style can be modified with the available " "widget settings and the available attributes for the shortcode." msgstr "Gli eventi mostrati e i loro stili possono essere modificati con le impostazioni disponibili del widget e gli attributi disponibili dello shortcode" -#: admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:88 #, php-format msgid "" "A list of all available shortcode attributes with their descriptions is " "available in the %1$s tab." msgstr "" -#: admin/includes/admin-about.php:79 +#: admin/includes/admin-about.php:89 msgid "The available widget options are described in their tooltip text." msgstr "Le opzioni del widget disponibili sono descritta nel loro tooltip text" -#: admin/includes/admin-about.php:80 +#: admin/includes/admin-about.php:90 #, php-format msgid "" "If you enable one of the links options (%1$s or %2$s) in the widget you have" " to insert an URL to the linked event-list page." msgstr "" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120 msgid "Add links to the single events" msgstr "Aggiungi link ai singoli eventi" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129 msgid "Add a link to the Event List page" msgstr "Aggiungi un link alla pagina Elenco eventi" -#: admin/includes/admin-about.php:81 +#: admin/includes/admin-about.php:91 msgid "" "This is required because the widget does not know in which page or post the " "shortcode was included." msgstr "" -#: admin/includes/admin-about.php:82 +#: admin/includes/admin-about.php:92 msgid "" "Additionally you have to insert the correct Shortcode id on the linked page." " This id describes which shortcode should be used on the given page or post " "if you have more than one." msgstr "" -#: admin/includes/admin-about.php:83 +#: admin/includes/admin-about.php:93 #, php-format msgid "" "The default value %1$s is normally o.k. (for pages with 1 shortcode only), " @@ -136,986 +136,991 @@ msgid "" "link on your linked page or post." msgstr "" -#: admin/includes/admin-about.php:84 +#: admin/includes/admin-about.php:94 #, php-format msgid "The id is available at the end of the URL parameters (e.g. %1$s)." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 #, php-format msgid "" "Be sure to also check the %1$s to get the plugin behaving just the way you " "want." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 msgid "Settings page" msgstr "" -#: admin/includes/admin-about.php:92 +#: admin/includes/admin-about.php:103 msgid "About the plugin author" msgstr "" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:105 #, php-format msgid "" "This plugin is developed by %1$s, you can find more information about the " "plugin on the %2$s." msgstr "" -#: admin/includes/admin-about.php:94 -msgid "wordpress plugin site" +#: admin/includes/admin-about.php:105 +msgid "WordPress plugin site" msgstr "" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:106 #, php-format msgid "If you like the plugin please rate it on the %1$s." msgstr "" -#: admin/includes/admin-about.php:95 -msgid "wordpress plugin review site" +#: admin/includes/admin-about.php:106 +msgid "WordPress plugin review site" msgstr "" -#: admin/includes/admin-about.php:96 +#: admin/includes/admin-about.php:107 msgid "" "If you want to support the plugin I would be happy to get a small donation" msgstr "" -#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 -#: admin/includes/admin-about.php:99 +#: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109 +#: admin/includes/admin-about.php:110 #, php-format msgid "Donate with %1$s" msgstr "" -#: admin/includes/admin-about.php:107 +#: admin/includes/admin-about.php:119 msgid "" "You have the possibility to modify the output if you add some of the " "following attributes to the shortcode." msgstr "Hai la possibilità di modificare l'output se aggiungi alcuni dei seguenti attributi allo Shortcode." -#: admin/includes/admin-about.php:108 +#: admin/includes/admin-about.php:120 #, php-format msgid "" "You can combine and add as much attributes as you want. E.g. the shortcode " "including the attributes %1$s and %2$s would looks like this:" msgstr "È possibile combinare e aggiungere attributi come si desidera . Es Lo Shortcode, inclusi gli attributi %1$s e %2$s sarebbe simile a questo:" -#: admin/includes/admin-about.php:110 +#: admin/includes/admin-about.php:122 msgid "" "Below you can find a list of all supported attributes with their " "descriptions and available options:" msgstr "Qui di seguito potete trovare una lista di tutti gli attributi supportati con relative descrizioni e le opzioni disponibili:" -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:137 msgid "Attribute name" msgstr "Nome attributo" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:138 msgid "Value options" msgstr "Valore opzioni" -#: admin/includes/admin-about.php:126 +#: admin/includes/admin-about.php:139 msgid "Default value" msgstr "Valore di default" -#: admin/includes/admin-about.php:127 +#: admin/includes/admin-about.php:140 msgid "Description" msgstr "Descrizione" -#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 -#: includes/sc_event-list_helptexts.php:31 +#: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:42 msgid "Filter Syntax" msgstr "Sintassi del filtro" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:160 msgid "" "For date and cat filters you can specify complex filters with the following " "syntax:" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 #, php-format msgid "" "You can use %1$s and %2$s connections to define complex filters. " "Additionally you can set brackets %3$s for nested queries." msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "AND" msgstr "E" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "OR" msgstr "O" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "or" msgstr "o" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "and" msgstr "e" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:162 msgid "Examples for cat filters:" msgstr "Esempio per il filtro di categorie:" -#: admin/includes/admin-about.php:149 +#: admin/includes/admin-about.php:163 #, php-format msgid "Show all events with category %1$s." msgstr "Mostra tutti gli eventi aventi categoria %1$s." -#: admin/includes/admin-about.php:150 +#: admin/includes/admin-about.php:164 #, php-format msgid "Show all events with category %1$s or %2$s." msgstr "Mostra tutti gli eventi aventi categoria %1$s o %2$s." -#: admin/includes/admin-about.php:151 +#: admin/includes/admin-about.php:165 #, php-format msgid "" "Show all events with category %1$s and all events where category %2$s as " "well as %3$s is selected." msgstr "Mostra tutti gli eventi aventi categoria %1$s e tutti gli eventi in cui è selezionata sia categoria %2$s che %3$s." -#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34 msgid "Available Date Formats" msgstr "Formati data disponibili" -#: admin/includes/admin-about.php:157 +#: admin/includes/admin-about.php:172 msgid "For date filters you can use the following date formats:" msgstr "Per il filtro sulle date puoi utilizzare il seguente formato date:" -#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34 msgid "Available Date Range Formats" msgstr "Formati intervallo date disponibili" -#: admin/includes/admin-about.php:166 +#: admin/includes/admin-about.php:182 msgid "For date filters you can use the following daterange formats:" msgstr "Per il filtro sulle date puoi utilizzare il seguente formato di intervallo date:" -#: admin/includes/admin-about.php:178 +#: admin/includes/admin-about.php:195 msgid "Value" msgstr "Valore" -#: admin/includes/admin-about.php:182 +#: admin/includes/admin-about.php:199 msgid "Example" msgstr "Esempio" -#: admin/includes/admin-categories.php:38 +#: admin/includes/admin-categories.php:54 msgid "Synchronize with post categories" msgstr "" -#: admin/includes/admin-categories.php:46 +#: admin/includes/admin-categories.php:63 #, php-format msgid "%1$s categories modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:47 +#: admin/includes/admin-categories.php:64 #, php-format msgid "%1$s categories added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:48 +#: admin/includes/admin-categories.php:65 #, php-format msgid "%1$s categories deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:50 +#: admin/includes/admin-categories.php:67 #, php-format msgid "%1$s categories not modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:51 +#: admin/includes/admin-categories.php:68 #, php-format msgid "%1$s categories not added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:52 +#: admin/includes/admin-categories.php:69 #, php-format msgid "%1$s categories not deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:55 +#: admin/includes/admin-categories.php:72 msgid "An Error occured during the category sync" msgstr "" -#: admin/includes/admin-categories.php:59 +#: admin/includes/admin-categories.php:75 msgid "Category sync finished" msgstr "" -#: admin/includes/admin-category-sync.php:45 +#: admin/includes/admin-category-sync.php:54 msgid "Error: You are not allowed to view this page!" msgstr "" -#: admin/includes/admin-category-sync.php:62 +#: admin/includes/admin-category-sync.php:70 msgid "Affected Categories when switching to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:63 +#: admin/includes/admin-category-sync.php:71 msgid "Switch option to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:64 +#: admin/includes/admin-category-sync.php:72 msgid "" "If you proceed, all post categories will be copied and all events will be " "re-assigned to this new categories." msgstr "" -#: admin/includes/admin-category-sync.php:65 +#: admin/includes/admin-category-sync.php:73 msgid "" "Afterwards the event categories are independent of the post categories." msgstr "" -#: admin/includes/admin-category-sync.php:68 +#: admin/includes/admin-category-sync.php:75 msgid "Affected Categories when switching to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:69 +#: admin/includes/admin-category-sync.php:76 msgid "Switch option to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:70 +#: admin/includes/admin-category-sync.php:77 msgid "" "Take a detailed look at the affected categories above before you proceed! " "All seperate event categories will be deleted, this cannot be undone!" msgstr "" -#: admin/includes/admin-category-sync.php:73 +#: admin/includes/admin-category-sync.php:79 msgid "Event Categories: Synchronise with Post Categories" msgstr "" -#: admin/includes/admin-category-sync.php:74 +#: admin/includes/admin-category-sync.php:80 msgid "Start synchronisation" msgstr "" -#: admin/includes/admin-category-sync.php:75 +#: admin/includes/admin-category-sync.php:81 msgid "" "If this option is enabled the above listed categories will be deleted and " "removed from the existing events!" msgstr "" -#: admin/includes/admin-category-sync.php:90 +#: admin/includes/admin-category-sync.php:96 msgid "Categories to modify" msgstr "" -#: admin/includes/admin-category-sync.php:91 +#: admin/includes/admin-category-sync.php:97 msgid "Categories to add" msgstr "" -#: admin/includes/admin-category-sync.php:92 +#: admin/includes/admin-category-sync.php:98 msgid "Categories to delete (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:93 +#: admin/includes/admin-category-sync.php:99 msgid "Delete not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:97 +#: admin/includes/admin-category-sync.php:102 msgid "Categories with differences" msgstr "" -#: admin/includes/admin-category-sync.php:98 +#: admin/includes/admin-category-sync.php:103 msgid "Categories to add (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:99 +#: admin/includes/admin-category-sync.php:104 msgid "Add not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:117 +#: admin/includes/admin-category-sync.php:123 msgid "none" msgstr "" -#: admin/includes/admin-import.php:49 +#: admin/includes/admin-import.php:58 msgid "Import Events" msgstr "Importazione Eventi" -#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116 +#: admin/includes/admin-import.php:220 msgid "Step" msgstr "Passo" -#: admin/includes/admin-import.php:69 +#: admin/includes/admin-import.php:79 msgid "Set import file and options" msgstr "Insieme dei file e delle opzioni di importazione" -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:82 #, php-format msgid "Proceed with Step %1$s" msgstr "" -#: admin/includes/admin-import.php:75 +#: admin/includes/admin-import.php:85 msgid "Example file" msgstr "File di esempio" -#: admin/includes/admin-import.php:76 +#: admin/includes/admin-import.php:86 #, php-format msgid "" "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)" msgstr "È possibile scaricare un file di esempio %1$s qui %2$s (il delimitatore del CSV è una virgola!)" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "Note" msgstr "Nota" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "" "Do not change the column header and separator line (first two lines), " "otherwise the import will fail!" msgstr "Non modificare l' intestazione e il separatore di riga (le prime due righe), altrimenti l'importazione fallirà!" -#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 +#: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103 msgid "Sorry, there has been an error." msgstr "Siamo spiacenti, si è verificato un errore." -#: admin/includes/admin-import.php:85 +#: admin/includes/admin-import.php:96 msgid "The file does not exist, please try again." msgstr "Il file non esiste, riprova." -#: admin/includes/admin-import.php:93 +#: admin/includes/admin-import.php:104 msgid "The uploaded file does not have the required csv extension." msgstr "" -#: admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:116 msgid "Events review and additonal category selection" msgstr "" -#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133 msgid "Error" msgstr "" -#: admin/includes/admin-import.php:111 +#: admin/includes/admin-import.php:122 msgid "This CSV file cannot be imported" msgstr "" -#: admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:133 msgid "None of the events in this CSV file can be imported" msgstr "" -#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179 msgid "Warning" msgstr "" -#: admin/includes/admin-import.php:126 +#: admin/includes/admin-import.php:138 #, php-format msgid "There is %1$s event which cannot be imported" msgid_plural "There are %1$s events which cannot be imported" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-import.php:134 +#: admin/includes/admin-import.php:150 #, php-format msgid "CSV line %1$s" msgstr "" -#: admin/includes/admin-import.php:144 +#: admin/includes/admin-import.php:160 msgid "You can still import all other events listed below." msgstr "" -#: admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:179 msgid "" "The following category slugs are not available and will be removed from the " "imported events" msgstr "" -#: admin/includes/admin-import.php:169 +#: admin/includes/admin-import.php:185 msgid "" "If you want to keep these categories, please create these Categories first " "and do the import afterwards." msgstr "" -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:220 msgid "Import result" msgstr "" -#: admin/includes/admin-import.php:201 +#: admin/includes/admin-import.php:223 #, php-format msgid "Import of %1$s events successful!" msgstr "" -#: admin/includes/admin-import.php:202 +#: admin/includes/admin-import.php:224 msgid "Go back to All Events" msgstr "Torna a Tutti gli Eventi" -#: admin/includes/admin-import.php:206 +#: admin/includes/admin-import.php:227 msgid "Errors during Import" msgstr "" -#: admin/includes/admin-import.php:215 +#: admin/includes/admin-import.php:235 msgid "Event from CSV-line" msgstr "" -#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 -#: includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77 +#: includes/widget_helptexts.php:9 msgid "Title" msgstr "Titolo" -#: admin/includes/admin-import.php:227 +#: admin/includes/admin-import.php:248 msgid "Start Date" msgstr "Data di inizio" -#: admin/includes/admin-import.php:228 +#: admin/includes/admin-import.php:249 msgid "End Date" msgstr "Data di fine" -#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 -#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 +#: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:69 msgid "Time" msgstr "Ora" -#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62 -#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57 -#: includes/options_helptexts.php:58 +#: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78 +#: admin/includes/admin-new.php:107 includes/options_helptexts.php:75 +#: includes/options_helptexts.php:76 msgid "Location" msgstr "Ubicazione" -#: admin/includes/admin-import.php:231 +#: admin/includes/admin-import.php:252 msgid "Content" msgstr "" -#: admin/includes/admin-import.php:232 +#: admin/includes/admin-import.php:253 msgid "Category slugs" msgstr "" -#: admin/includes/admin-import.php:274 +#: admin/includes/admin-import.php:297 msgid "Header line is missing or not correct!" msgstr "" -#: admin/includes/admin-import.php:275 +#: admin/includes/admin-import.php:298 #, php-format msgid "" "Have a look at the %1$sexample file%2$s to see the correct header line " "format." msgstr "" -#: admin/includes/admin-import.php:281 +#: admin/includes/admin-import.php:305 #, php-format msgid "Wrong number of items in line (%1$s items found, 6-7 required)" msgstr "" -#: admin/includes/admin-import.php:309 +#: admin/includes/admin-import.php:334 msgid "Empty event title found" msgstr "" -#: admin/includes/admin-import.php:315 +#: admin/includes/admin-import.php:340 msgid "Wrong date format for startdate" msgstr "" -#: admin/includes/admin-import.php:324 +#: admin/includes/admin-import.php:348 msgid "Wrong date format for enddate" msgstr "" -#: admin/includes/admin-import.php:365 +#: admin/includes/admin-import.php:401 msgid "Import events" msgstr "" -#: admin/includes/admin-import.php:366 +#: admin/includes/admin-import.php:402 msgid "Add additional categories" msgstr "" -#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +#: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257 msgid "Import" msgstr "Importazione" -#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +#: admin/includes/admin-import.php:428 includes/events_post_type.php:78 msgid "No events found" msgstr "" -#: admin/includes/admin-import.php:432 +#: admin/includes/admin-import.php:473 msgid "Saving of event failed!" msgstr "" -#: admin/includes/admin-main.php:60 +#: admin/includes/admin-main.php:76 msgid "Event Date" msgstr "" -#: admin/includes/admin-main.php:64 +#: admin/includes/admin-main.php:80 msgid "Author" msgstr "Autore" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 #, php-format msgid "Add a copy of %1$s" msgstr "" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 msgid "Copy" msgstr "" -#: admin/includes/admin-new.php:51 +#: admin/includes/admin-new.php:58 msgid "Event data" msgstr "" -#: admin/includes/admin-new.php:80 +#: admin/includes/admin-new.php:90 msgid "Add Copy" msgstr "" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "Date" msgstr "Data" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "required" msgstr "richiesto" -#: admin/includes/admin-new.php:87 +#: admin/includes/admin-new.php:101 msgid "Multi-Day Event" msgstr "Evento multi giornaliero" -#: admin/includes/admin-new.php:106 +#: admin/includes/admin-new.php:121 msgid "Event Title" msgstr "" -#: admin/includes/admin-new.php:121 +#: admin/includes/admin-new.php:137 msgid "Event Content" msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203 msgid "Event updated." msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205 msgid "View event" msgstr "" -#: admin/includes/admin-new.php:184 +#: admin/includes/admin-new.php:204 #, php-format msgid "Event restored to revision from %1$s" msgstr "" -#: admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:205 msgid "Event published." msgstr "" -#: admin/includes/admin-new.php:187 +#: admin/includes/admin-new.php:207 msgid "Event submitted." msgstr "" -#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209 +#: admin/includes/admin-new.php:210 msgid "Preview event" msgstr "" -#: admin/includes/admin-new.php:188 +#: admin/includes/admin-new.php:208 #, php-format msgid "Event scheduled for: %1$s>" msgstr "" -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:210 msgid "Event draft updated." msgstr "" -#: admin/includes/admin-settings.php:71 +#: admin/includes/admin-settings.php:79 msgid "Go to Event Category switching page" msgstr "" -#: admin/includes/admin-settings.php:83 +#: admin/includes/admin-settings.php:93 msgid "Frontend Settings" msgstr "Impostazioni interfaccia grafica" -#: admin/includes/admin-settings.php:84 +#: admin/includes/admin-settings.php:94 msgid "Admin Page Settings" msgstr "Impostazioni di amministrazione" -#: admin/includes/admin-settings.php:85 +#: admin/includes/admin-settings.php:95 msgid "Feed Settings" msgstr "Impostazioni Feed" -#: admin/includes/admin-settings.php:86 +#: admin/includes/admin-settings.php:96 msgid "Category Taxonomy" msgstr "" -#: includes/daterange_helptexts.php:7 +#: includes/daterange_helptexts.php:8 msgid "Year" msgstr "Anno" -#: includes/daterange_helptexts.php:8 +#: includes/daterange_helptexts.php:9 msgid "A year can be specified in 4 digit format." msgstr "Un anno può essere specificato in un formato a 4 cifre." -#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14 -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:47 #, php-format msgid "" "For a start date filter the first day of %1$s is used, in an end date the " "last day." msgstr "Per un filtro sulla data di inizio viene utilizzato %1$s come primo giorno, nella data finale viene usato l'ultimo giorno." -#: includes/daterange_helptexts.php:9 +#: includes/daterange_helptexts.php:10 msgid "the resulting year" msgstr "L' anno risultante" -#: includes/daterange_helptexts.php:12 +#: includes/daterange_helptexts.php:15 msgid "Month" msgstr "Mese" -#: includes/daterange_helptexts.php:13 +#: includes/daterange_helptexts.php:16 msgid "" "A month can be specified with 4 digits for the year and 2 digits for the " "month, seperated by a hyphen (-)." msgstr "" -#: includes/daterange_helptexts.php:14 +#: includes/daterange_helptexts.php:17 msgid "the resulting month" msgstr "Il mese risultante" -#: includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:22 msgid "Day" msgstr "Giorno" -#: includes/daterange_helptexts.php:18 +#: includes/daterange_helptexts.php:23 msgid "" "A day can be specified in the format 4 digits for the year, 2 digits for the" " month and 2 digets for the day, seperated by hyphens (-)." 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 (-)." -#: includes/daterange_helptexts.php:21 +#: includes/daterange_helptexts.php:28 msgid "Relative Year" msgstr "Anno relativo" -#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28 -#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55 #, php-format msgid "%1$s from now can be specified in the following notation: %2$s" msgstr "da questo momento %1$s può essere specificato nella seguente notazione: %2$s" -#: includes/daterange_helptexts.php:22 +#: includes/daterange_helptexts.php:29 msgid "A relative year" msgstr "Un anno relativo" -#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29 -#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38 +#: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56 #, php-format msgid "" "This means you can specify a positive or negative (%1$s) %2$s from now with " "%3$s or %4$s attached (see also the example below)." msgstr "" -#: includes/daterange_helptexts.php:23 +#: includes/daterange_helptexts.php:30 msgid "number of years" msgstr "Numero di anni" -#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30 -#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44 +#: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39 +#: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57 #, php-format msgid "Additionally the following values are available: %1$s" msgstr "Inoltre sono disponibili i seguenti valori: %1$s" -#: includes/daterange_helptexts.php:27 +#: includes/daterange_helptexts.php:36 msgid "Relative Month" msgstr "Mese relativo" -#: includes/daterange_helptexts.php:28 +#: includes/daterange_helptexts.php:37 msgid "A relative month" msgstr "Un mese relativo" -#: includes/daterange_helptexts.php:29 +#: includes/daterange_helptexts.php:38 msgid "number of months" msgstr "Numero di mesi" -#: includes/daterange_helptexts.php:33 +#: includes/daterange_helptexts.php:44 msgid "Relative Week" msgstr "Settimana relativa" -#: includes/daterange_helptexts.php:34 +#: includes/daterange_helptexts.php:45 msgid "A relative week" msgstr "Una settimana relativa" -#: includes/daterange_helptexts.php:35 +#: includes/daterange_helptexts.php:46 msgid "number of weeks" msgstr "numero di settimane" -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:47 msgid "the resulting week" msgstr "La settimana risultante" -#: includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:48 #, php-format msgid "" "The first day of the week is depending on the option %1$s which can be found" " and changed in %2$s." msgstr "Il primo giorno della settimana dipende dall'opzione %1$s che può essere trovata e cambiata in %2$s." -#: includes/daterange_helptexts.php:41 +#: includes/daterange_helptexts.php:54 msgid "Relative Day" msgstr "Giorno relativo" -#: includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:55 msgid "A relative day" msgstr "Un giorno relativo" -#: includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:56 msgid "number of days" msgstr "Numero di giorni" -#: includes/daterange_helptexts.php:49 +#: includes/daterange_helptexts.php:64 msgid "Date range" msgstr "Intervallo date" -#: includes/daterange_helptexts.php:50 +#: includes/daterange_helptexts.php:66 msgid "" "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n" "\t For the start and end date any available date format can be used." msgstr "" -#: includes/daterange_helptexts.php:55 +#: includes/daterange_helptexts.php:75 msgid "This value defines a range without any limits." msgstr "" -#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61 -#: includes/daterange_helptexts.php:66 +#: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83 +#: includes/daterange_helptexts.php:90 #, php-format msgid "The corresponding date_range format is: %1$s" msgstr "Il corrispondente formato intervallo date è: %1$s" -#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 +#: includes/daterange_helptexts.php:81 includes/filterbar.php:310 msgid "Upcoming" msgstr "Prossimi" -#: includes/daterange_helptexts.php:60 +#: includes/daterange_helptexts.php:82 msgid "This value defines a range from the actual day to the future." msgstr "" -#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 +#: includes/daterange_helptexts.php:88 includes/filterbar.php:318 msgid "Past" msgstr "Passati" -#: includes/daterange_helptexts.php:65 +#: includes/daterange_helptexts.php:89 msgid "This value defines a range from the past to the previous day." msgstr "" -#: includes/event.php:107 +#: includes/event.php:124 msgid "No valid start date provided" msgstr "" -#: includes/events_post_type.php:60 +#: includes/event.php:299 includes/event.php:301 +#: includes/sc_event-list.php:298 +msgid "read more" +msgstr "" + +#: includes/events_post_type.php:69 msgid "Events" msgstr "Eventi" -#: includes/events_post_type.php:61 +#: includes/events_post_type.php:70 msgid "Event" msgstr "" -#: includes/events_post_type.php:62 +#: includes/events_post_type.php:71 msgid "Add New" msgstr "Aggiungi nuovo" -#: includes/events_post_type.php:63 +#: includes/events_post_type.php:72 msgid "Add New Event" msgstr "Aggiungi un nuovo evento" -#: includes/events_post_type.php:64 +#: includes/events_post_type.php:73 msgid "Edit Event" msgstr "Modifica Evento" -#: includes/events_post_type.php:65 +#: includes/events_post_type.php:74 msgid "New Event" msgstr "" -#: includes/events_post_type.php:66 +#: includes/events_post_type.php:75 msgid "View Event" msgstr "" -#: includes/events_post_type.php:67 +#: includes/events_post_type.php:76 msgid "View Events" msgstr "" -#: includes/events_post_type.php:68 +#: includes/events_post_type.php:77 msgid "Search Events" msgstr "" -#: includes/events_post_type.php:70 +#: includes/events_post_type.php:79 msgid "No events found in Trash" msgstr "" -#: includes/events_post_type.php:72 +#: includes/events_post_type.php:81 msgid "All Events" msgstr "Tutti gli eventi" -#: includes/events_post_type.php:73 +#: includes/events_post_type.php:82 msgid "Event Archives" msgstr "" -#: includes/events_post_type.php:74 +#: includes/events_post_type.php:83 msgid "Event Attributes" msgstr "" -#: includes/events_post_type.php:75 +#: includes/events_post_type.php:84 msgid "Insert into event" msgstr "" -#: includes/events_post_type.php:76 +#: includes/events_post_type.php:85 msgid "Uploaded to this event" msgstr "" -#: includes/events_post_type.php:77 +#: includes/events_post_type.php:86 msgid "Event List" msgstr "Lista Eventi" -#: includes/events_post_type.php:78 +#: includes/events_post_type.php:87 msgid "Filter events list" msgstr "" -#: includes/events_post_type.php:79 +#: includes/events_post_type.php:88 msgid "Events list navigation" msgstr "" -#: includes/events_post_type.php:80 +#: includes/events_post_type.php:89 msgid "Events list" msgstr "" -#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +#: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90 msgid "Reset" msgstr "" -#: includes/filterbar.php:278 +#: includes/filterbar.php:296 msgid "All" msgstr "Tutti" -#: includes/filterbar.php:281 +#: includes/filterbar.php:298 msgid "All Dates" msgstr "" -#: includes/options_helptexts.php:10 +#: includes/options_helptexts.php:11 msgid "CSV File to import" msgstr "File CSV da importare" -#: includes/options_helptexts.php:12 +#: includes/options_helptexts.php:13 msgid "Please select the file which contains the event data in CSV format." msgstr "Seleziona il file che contiene i dati degli eventi in formato CSV." -#: includes/options_helptexts.php:15 +#: includes/options_helptexts.php:18 msgid "Used date format" msgstr "Formato data utilizzato" -#: includes/options_helptexts.php:17 +#: includes/options_helptexts.php:21 msgid "" "With this option the given date format for event start and end date in the " "CSV file can be specified." msgstr "" -#: includes/options_helptexts.php:18 +#: includes/options_helptexts.php:23 #, php-format msgid "" "You can use the php date format options given in %1$s, the most important " "ones are:" msgstr "" -#: includes/options_helptexts.php:20 +#: includes/options_helptexts.php:26 msgid "full year representation, with 4 digits" msgstr "" -#: includes/options_helptexts.php:21 +#: includes/options_helptexts.php:27 msgid "numeric representation of a month, with leading zeros" msgstr "" -#: includes/options_helptexts.php:22 +#: includes/options_helptexts.php:28 msgid "day of the month, 2 digits with leading zeros" msgstr "" -#: includes/options_helptexts.php:24 +#: includes/options_helptexts.php:30 msgid "" "If the date format in the CSV file does not correspond to the given format, " "the import script tries to recognize the date format by itself." msgstr "" -#: includes/options_helptexts.php:25 +#: includes/options_helptexts.php:31 msgid "" "But this can cause problems or result in wrong dates, so it is recommended " "to specify the correct date format here." msgstr "" -#: includes/options_helptexts.php:26 +#: includes/options_helptexts.php:32 msgid "Examples" msgstr "" -#: includes/options_helptexts.php:33 +#: includes/options_helptexts.php:41 msgid "Text for no events" msgstr "Testo per assenza di eventi" -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:43 msgid "" "This option defines the displayed text when no events are available for the " "selected view." msgstr "" -#: includes/options_helptexts.php:38 +#: includes/options_helptexts.php:48 msgid "Multiday filter range" msgstr "Filtro intervallo multi giornaliero" -#: includes/options_helptexts.php:39 +#: includes/options_helptexts.php:49 msgid "Use the complete event range in the date filter" msgstr "" -#: includes/options_helptexts.php:40 +#: includes/options_helptexts.php:51 msgid "" "This option defines if the complete range of a multiday event shall be " "considered in the date filter." msgstr "" -#: includes/options_helptexts.php:41 +#: includes/options_helptexts.php:52 msgid "" "If disabled, only the start day of an event is considered in the filter." msgstr "" -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:53 msgid "" "For an example multiday event which started yesterday and ends tomorrow this" " means, that it is displayed in umcoming dates when this option is enabled, " "but it is hidden when the option is disabled." msgstr "" -#: includes/options_helptexts.php:45 +#: includes/options_helptexts.php:58 msgid "Date display" msgstr "Visualizza data" -#: includes/options_helptexts.php:46 +#: includes/options_helptexts.php:59 msgid "Show the date only once per day" msgstr "" -#: includes/options_helptexts.php:47 +#: includes/options_helptexts.php:61 msgid "" "With this option enabled the date is only displayed once per day if more " "than one event is available on the same day." msgstr "" -#: includes/options_helptexts.php:48 +#: includes/options_helptexts.php:62 msgid "" "If enabled, the events are ordered in a different way (end date before start" " time) to allow using the same date for as much events as possible." msgstr "" -#: includes/options_helptexts.php:51 +#: includes/options_helptexts.php:67 msgid "HTML tags" msgstr "HTML tags" -#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:75 #, php-format msgid "Allow HTML tags in the event field \"%1$s\"" msgstr "" -#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 +#: includes/options_helptexts.php:69 includes/options_helptexts.php:76 #, php-format msgid "" "This option specifies if HTML tags are allowed in the event field \"%1$s\"." msgstr "" -#: includes/options_helptexts.php:61 +#: includes/options_helptexts.php:81 msgid "Preferred language file" msgstr "" -#: includes/options_helptexts.php:62 +#: includes/options_helptexts.php:82 msgid "Load translations from general language directory first" msgstr "" -#: includes/options_helptexts.php:63 +#: includes/options_helptexts.php:84 #, php-format msgid "" "The default is to load the %1$s translation file from the plugin language " "directory first (%2$s)." msgstr "" -#: includes/options_helptexts.php:64 +#: includes/options_helptexts.php:85 #, php-format msgid "" "If you want to load your own language file from the general language " @@ -1123,295 +1128,312 @@ msgid "" "language directory, you have to enable this option." msgstr "" -#: includes/options_helptexts.php:68 +#: includes/options_helptexts.php:91 msgid "Events permalink slug" msgstr "" -#: includes/options_helptexts.php:69 +#: includes/options_helptexts.php:92 msgid "" "With this option the slug for the events permalink URLs can be defined." msgstr "" -#: includes/options_helptexts.php:72 +#: includes/options_helptexts.php:97 msgid "Text for \"Show content\"" msgstr "" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:98 msgid "" "With this option the displayed text for the link to show the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:76 +#: includes/options_helptexts.php:103 msgid "Text for \"Hide content\"" msgstr "" -#: includes/options_helptexts.php:77 +#: includes/options_helptexts.php:104 msgid "" "With this option the displayed text for the link to hide the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:109 msgid "Disable CSS file" msgstr "Disabilita file CSS" -#: includes/options_helptexts.php:81 +#: includes/options_helptexts.php:110 #, php-format msgid "Disable the %1$s file." msgstr "" -#: includes/options_helptexts.php:82 +#: includes/options_helptexts.php:112 #, php-format msgid "With this option you can disable the inclusion of the %1$s file." msgstr "" -#: includes/options_helptexts.php:83 +#: includes/options_helptexts.php:113 msgid "" "This normally only make sense if you have css conflicts with your theme and " "want to set all required css styles somewhere else (e.g. in the theme css)." msgstr "" -#: includes/options_helptexts.php:87 +#: includes/options_helptexts.php:119 msgid "Date format in edit form" msgstr "" -#: includes/options_helptexts.php:88 +#: includes/options_helptexts.php:121 msgid "" "This option sets the displayed date format for the event date fields in the " "event new / edit form." msgstr "" -#: includes/options_helptexts.php:89 +#: includes/options_helptexts.php:122 msgid "The default is an empty string to use the Wordpress standard setting." msgstr "" -#: includes/options_helptexts.php:90 +#: includes/options_helptexts.php:123 #, php-format msgid "" "All available options to specify the date format can be found %1$shere%2$s." msgstr "" -#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 +#: includes/options_helptexts.php:129 msgid "Enable RSS feed" msgstr "Abilita feed RSS" -#: includes/options_helptexts.php:95 -msgid "Enable support for an event RSS feed" +#: includes/options_helptexts.php:130 +msgid "Enable support for the event RSS feed" msgstr "" -#: includes/options_helptexts.php:96 -msgid "This option activates a RSS feed for the events." +#: includes/options_helptexts.php:132 +msgid "" +"This option activates the RSS feed for the events and adds a feed link in " +"the html head." msgstr "" -#: includes/options_helptexts.php:97 +#: includes/options_helptexts.php:133 msgid "" "You have to enable this option if you want to use one of the RSS feed " "features." msgstr "" -#: includes/options_helptexts.php:100 -msgid "Feed name" -msgstr "Nome del Feed" +#: includes/options_helptexts.php:138 +msgid "Enable iCal feed" +msgstr "" -#: includes/options_helptexts.php:101 -#, php-format -msgid "This option sets the feed name. The default value is %1$s." +#: includes/options_helptexts.php:139 +msgid "Enable support for the event iCal feed" msgstr "" -#: includes/options_helptexts.php:102 -#, php-format -msgid "" -"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " -"enabled)." +#: includes/options_helptexts.php:141 +msgid "This option activates the iCal feed for events." msgstr "" -#: includes/options_helptexts.php:105 -msgid "Feed Description" -msgstr "Descrizione del Feed" +#: includes/options_helptexts.php:142 +msgid "" +"You have to enable this option if you want to use one of the iCal features." +msgstr "" -#: includes/options_helptexts.php:106 -#, php-format -msgid "This options set the feed description. The default value is %1$s." +#: includes/options_helptexts.php:147 +msgid "Position of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:107 -msgid "" -"This description will be used in the title for the feed link in the html " -"head and for the description in the feed itself." +#: includes/options_helptexts.php:149 +msgid "at the top (above the navigation bar)" msgstr "" -#: includes/options_helptexts.php:110 -msgid "Listed events" -msgstr "Eventi elencati" +#: includes/options_helptexts.php:150 +msgid "between navigation bar and events" +msgstr "" -#: includes/options_helptexts.php:111 -msgid "Only show upcoming events in feed" -msgstr "Mostra solo i prossimi eventi nel Feed" +#: includes/options_helptexts.php:151 +msgid "at the bottom" +msgstr "" -#: includes/options_helptexts.php:112 +#: includes/options_helptexts.php:153 msgid "" -"If this option is enabled only the upcoming events are listed in the feed." +"This option specifies the position of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:113 -msgid "If disabled all events (upcoming and past) will be listed." +#: includes/options_helptexts.php:158 +msgid "Align of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:116 -msgid "Add RSS feed link in head" +#: includes/options_helptexts.php:160 +msgid "left" msgstr "" -#: includes/options_helptexts.php:117 -msgid "Add RSS feed link in the html head" +#: includes/options_helptexts.php:161 +msgid "center" msgstr "" -#: includes/options_helptexts.php:118 -msgid "This option adds a RSS feed in the html head for the events." +#: includes/options_helptexts.php:162 +msgid "right" msgstr "" -#: includes/options_helptexts.php:119 -msgid "There are 2 alternatives to include the RSS feed" +#: includes/options_helptexts.php:164 +msgid "" +"This option specifies the align of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:120 -msgid "" -"The first way is this option to include a link in the html head. This link " -"will be recognized by browers or feed readers." +#: includes/options_helptexts.php:169 +msgid "RSS feed name" msgstr "" -#: includes/options_helptexts.php:121 +#: includes/options_helptexts.php:171 #, php-format -msgid "" -"The second way is to include a visible feed link directly in the event list." -" This can be done by setting the shortcode attribute %1$s to %2$s." +msgid "This option sets the RSS feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:122 +#: includes/options_helptexts.php:172 #, php-format -msgid "This option is only valid if the setting %1$s is enabled." +msgid "" +"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " +"enabled)." msgstr "" -#: includes/options_helptexts.php:125 -msgid "Position of the RSS feed link" +#: includes/options_helptexts.php:177 +msgid "RSS feed Description" msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the top (above the navigation bar)" +#: includes/options_helptexts.php:179 +#, php-format +msgid "This options set the RSS feed description. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:126 -msgid "between navigation bar and events" +#: includes/options_helptexts.php:180 +msgid "" +"This description will be used in the title for the feed link in the html " +"head and for the description in the feed itself." msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the bottom" +#: includes/options_helptexts.php:185 +msgid "RSS feed events" msgstr "" -#: includes/options_helptexts.php:127 -msgid "" -"This option specifies the position of the RSS feed link in the event list." +#: includes/options_helptexts.php:186 +msgid "Only show upcoming events in the RSS feed" msgstr "" -#: includes/options_helptexts.php:128 includes/options_helptexts.php:134 -#: includes/options_helptexts.php:140 includes/options_helptexts.php:146 -#, php-format +#: includes/options_helptexts.php:188 msgid "" -"You have to set the shortcode attribute %1$s to %2$s if you want to show the" -" feed link." +"If this option is enabled only the upcoming events are listed in the RSS " +"feed." msgstr "" -#: includes/options_helptexts.php:131 -msgid "Align of the RSS feed link" +#: includes/options_helptexts.php:189 includes/options_helptexts.php:215 +msgid "If disabled, all events (upcoming and past) will be listed." msgstr "" -#: includes/options_helptexts.php:132 -msgid "left" +#: includes/options_helptexts.php:194 +msgid "RSS link text" msgstr "" -#: includes/options_helptexts.php:132 -msgid "center" +#: includes/options_helptexts.php:196 +msgid "This option sets the caption of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:132 -msgid "right" +#: includes/options_helptexts.php:197 +msgid "Use an empty text to only show the rss image." msgstr "" -#: includes/options_helptexts.php:133 +#: includes/options_helptexts.php:198 +#, php-format msgid "" -"This option specifies the align of the RSS feed link in the event list." +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" RSS feed link." msgstr "" -#: includes/options_helptexts.php:137 -msgid "Feed link text" +#: includes/options_helptexts.php:203 +msgid "iCal feed name" msgstr "" -#: includes/options_helptexts.php:138 +#: includes/options_helptexts.php:205 +#, php-format +msgid "This option sets the iCal feed name. The default value is %1$s." +msgstr "" + +#: includes/options_helptexts.php:206 +#, php-format msgid "" -"This option specifies the caption of the RSS feed link in the event list." +"This name will be used in the iCal feed url (e.g. %1$s, or %2$s with " +"permalinks enabled)." msgstr "" -#: includes/options_helptexts.php:139 +#: includes/options_helptexts.php:211 +msgid "iCal feed events" +msgstr "" + +#: includes/options_helptexts.php:212 +msgid "Only show upcoming events in the iCal feed" +msgstr "" + +#: includes/options_helptexts.php:214 msgid "" -"Insert an empty text to hide any text if you only want to show the rss " -"image." +"If this option is enabled only the upcoming events are listed in the iCal " +"file." +msgstr "" + +#: includes/options_helptexts.php:220 +msgid "iCal link text" msgstr "" -#: includes/options_helptexts.php:143 -msgid "Feed link image" +#: includes/options_helptexts.php:222 +msgid "This option sets the iCal link text in the event list." msgstr "" -#: includes/options_helptexts.php:144 -msgid "Show rss image in feed link" +#: includes/options_helptexts.php:223 +msgid "Use an empty text to only show the iCal image." msgstr "" -#: includes/options_helptexts.php:145 +#: includes/options_helptexts.php:224 +#, php-format msgid "" -"This option specifies if the an image should be dispayed in the feed link in" -" front of the text." +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" iCal feed link." msgstr "" -#: includes/options_helptexts.php:151 +#: includes/options_helptexts.php:231 msgid "Event Category handling" msgstr "" -#: includes/options_helptexts.php:152 +#: includes/options_helptexts.php:232 msgid "Use Post Categories" msgstr "" -#: includes/options_helptexts.php:153 +#: includes/options_helptexts.php:234 msgid "" "Do not maintain seperate categories for the events, and use the existing " "post categories instead." msgstr "" -#: includes/options_helptexts.php:154 +#: includes/options_helptexts.php:235 msgid "Attention" msgstr "Attenzione" -#: includes/options_helptexts.php:155 +#: includes/options_helptexts.php:236 msgid "" "This option cannot be changed directly, but you can go to the Event Category" " switching page from here." msgstr "" -#: includes/options.php:40 +#: includes/options.php:73 msgid "events" msgstr "" -#: includes/options.php:41 +#: includes/options.php:77 msgid "Show content" msgstr "" -#: includes/options.php:42 +#: includes/options.php:81 msgid "Hide content" msgstr "" -#: includes/sc_event-list_helptexts.php:7 +#: includes/sc_event-list_helptexts.php:8 msgid "event-id" msgstr "" -#: includes/sc_event-list_helptexts.php:8 +#: includes/sc_event-list_helptexts.php:9 #, php-format msgid "" "By default the event-list is displayed initially. But if an event-id (e.g. " @@ -1419,107 +1441,107 @@ msgid "" "this event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:10 -#: includes/sc_event-list_helptexts.php:22 +#: includes/sc_event-list_helptexts.php:13 +#: includes/sc_event-list_helptexts.php:31 msgid "year" msgstr "" -#: includes/sc_event-list_helptexts.php:11 +#: includes/sc_event-list_helptexts.php:14 msgid "" "This attribute defines which events are initially shown. The default is to " "show the upcoming events only." msgstr "" -#: includes/sc_event-list_helptexts.php:12 +#: includes/sc_event-list_helptexts.php:15 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:14 +#: includes/sc_event-list_helptexts.php:19 msgid "category slug" msgstr "" -#: includes/sc_event-list_helptexts.php:15 +#: includes/sc_event-list_helptexts.php:20 msgid "" "This attribute defines the category of which events are initially shown. The" " default is to show events of all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:16 +#: includes/sc_event-list_helptexts.php:21 msgid "" "Provide a category slug to change this behavior. It is still possible to " "change the displayed categories via the filterbar or url parameters." msgstr "" -#: includes/sc_event-list_helptexts.php:19 +#: includes/sc_event-list_helptexts.php:26 msgid "This attribute defines the initial order of the events." msgstr "" -#: includes/sc_event-list_helptexts.php:20 +#: includes/sc_event-list_helptexts.php:27 msgid "" "With %1$S (default value) the events are sorted from old to new, with %2$s " "in the opposite direction (from new to old)." msgstr "" -#: includes/sc_event-list_helptexts.php:23 +#: includes/sc_event-list_helptexts.php:32 #, php-format msgid "" "This attribute defines the dates and date ranges of which events are " "displayed. The default is %1$s to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:24 +#: includes/sc_event-list_helptexts.php:33 #, php-format msgid "" "Filtered events according to %1$s value are not available in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:25 +#: includes/sc_event-list_helptexts.php:34 #, php-format msgid "" "You can find all available values with a description and examples in the " "sections %1$s and %2$s below." msgstr "" -#: includes/sc_event-list_helptexts.php:26 +#: includes/sc_event-list_helptexts.php:35 #, php-format msgid "See %1$s description if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:28 +#: includes/sc_event-list_helptexts.php:39 msgid "category slugs" msgstr "" -#: includes/sc_event-list_helptexts.php:29 +#: includes/sc_event-list_helptexts.php:40 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:30 +#: includes/sc_event-list_helptexts.php:41 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:31 +#: includes/sc_event-list_helptexts.php:42 #, php-format msgid "" "The filter is specified via the given category slugs. See %1$s description " "if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:33 -#: includes/sc_event-list_helptexts.php:74 -#: includes/sc_event-list_helptexts.php:89 -#: includes/sc_event-list_helptexts.php:104 +#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:111 +#: includes/sc_event-list_helptexts.php:138 +#: includes/sc_event-list_helptexts.php:177 msgid "number" msgstr "" -#: includes/sc_event-list_helptexts.php:34 +#: includes/sc_event-list_helptexts.php:47 #, php-format msgid "" "This attribute defines how many events should be displayed if upcoming " @@ -1527,109 +1549,109 @@ msgid "" "displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:48 msgid "" "Please not that in the actual version there is no pagination of the events " "available, so the event list can be very long." msgstr "" -#: includes/sc_event-list_helptexts.php:38 +#: includes/sc_event-list_helptexts.php:53 msgid "" "This attribute defines if the filterbar should be displayed. The filterbar " "allows the users to specify filters for the listed events." msgstr "" -#: includes/sc_event-list_helptexts.php:39 +#: includes/sc_event-list_helptexts.php:54 #, php-format msgid "Choose %1$s to always hide and %2$s to always show the filterbar." msgstr "" -#: includes/sc_event-list_helptexts.php:40 +#: includes/sc_event-list_helptexts.php:55 #, php-format msgid "" "With %1$s the filterbar is only visible in the event list and with %2$s only" " in the single event view." msgstr "" -#: includes/sc_event-list_helptexts.php:43 +#: includes/sc_event-list_helptexts.php:60 #, php-format msgid "" "This attribute specifies the available items in the filterbar. This options " "are only valid if the filterbar is displayed (see %1$s attribute)." msgstr "" -#: includes/sc_event-list_helptexts.php:44 +#: includes/sc_event-list_helptexts.php:61 msgid "" "Find below an overview of the available filterbar items and their options:" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "filterbar item" msgstr "" -#: includes/sc_event-list_helptexts.php:46 -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:96 msgid "description" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "item options" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option values" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "default value" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option description" msgstr "" -#: includes/sc_event-list_helptexts.php:47 +#: includes/sc_event-list_helptexts.php:67 msgid "" "Show a list of all available years. Additional there are some special " "entries available (see item options)." msgstr "" -#: includes/sc_event-list_helptexts.php:48 -#: includes/sc_event-list_helptexts.php:53 +#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:82 msgid "Add an entry to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:49 -#: includes/sc_event-list_helptexts.php:54 +#: includes/sc_event-list_helptexts.php:73 +#: includes/sc_event-list_helptexts.php:84 msgid "Add an entry to show all upcoming events." msgstr "" -#: includes/sc_event-list_helptexts.php:50 -#: includes/sc_event-list_helptexts.php:55 +#: includes/sc_event-list_helptexts.php:74 +#: includes/sc_event-list_helptexts.php:85 msgid "Add an entry to show events in the past." msgstr "" -#: includes/sc_event-list_helptexts.php:51 +#: includes/sc_event-list_helptexts.php:75 msgid "Set descending or ascending order of year entries." msgstr "" -#: includes/sc_event-list_helptexts.php:52 +#: includes/sc_event-list_helptexts.php:78 msgid "Show a list of all available months." msgstr "" -#: includes/sc_event-list_helptexts.php:56 +#: includes/sc_event-list_helptexts.php:86 msgid "Set descending or ascending order of month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "php date-formats" msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "Set the displayed date format of the month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "With this item you can display the special entries %1$s, %2$s and %3$s. You " @@ -1637,65 +1659,65 @@ msgid "" "order." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "Specifies the displayed values and their order. The items must be seperated " "by %1$s." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Show a list of all available categories." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Add an entry to show events from all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "A link to reset the eventlist filter to standard." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "any text" msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "Set the caption of the link." msgstr "" -#: includes/sc_event-list_helptexts.php:61 +#: includes/sc_event-list_helptexts.php:93 msgid "Find below an overview of the available filterbar display options:" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "display option" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "available for" msgstr "" -#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:97 #, php-format msgid "Shows a horizonal list seperated by %1$s with a link to each item." msgstr "" -#: includes/sc_event-list_helptexts.php:65 +#: includes/sc_event-list_helptexts.php:98 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:66 +#: includes/sc_event-list_helptexts.php:99 msgid "Shows a simple link which can be clicked." msgstr "" -#: includes/sc_event-list_helptexts.php:67 +#: includes/sc_event-list_helptexts.php:102 msgid "Find below some declaration examples with descriptions:" msgstr "" -#: includes/sc_event-list_helptexts.php:69 +#: includes/sc_event-list_helptexts.php:104 #, php-format msgid "" "In this example you can see that the filterbar item and the used display " @@ -1703,22 +1725,22 @@ msgid "" "items seperated by a comma %2$s. These items will be displayed left-aligned." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "option_name" msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "value" msgstr "" -#: includes/sc_event-list_helptexts.php:72 +#: includes/sc_event-list_helptexts.php:107 #, php-format msgid "" "The 2 semicolon %1$s devides the bar in 3 section. The first section will be" @@ -1727,75 +1749,84 @@ msgid "" "left-aligned and the reset link will be on the right side." msgstr "" -#: includes/sc_event-list_helptexts.php:75 -#: includes/sc_event-list_helptexts.php:90 +#: includes/sc_event-list_helptexts.php:112 +#: includes/sc_event-list_helptexts.php:139 msgid "" "This attribute specifies if the title should be truncated to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:76 -#: includes/sc_event-list_helptexts.php:91 +#: includes/sc_event-list_helptexts.php:113 +#: includes/sc_event-list_helptexts.php:140 #, php-format msgid "" "With the standard value %1$s the full text is displayed, with %2$s the text " "is automatically truncated via css." msgstr "" -#: includes/sc_event-list_helptexts.php:77 -#: includes/sc_event-list_helptexts.php:92 -#: includes/sc_event-list_helptexts.php:107 +#: includes/sc_event-list_helptexts.php:114 +#: includes/sc_event-list_helptexts.php:141 +#: includes/sc_event-list_helptexts.php:180 msgid "This attribute has no influence if only a single event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:80 +#: includes/sc_event-list_helptexts.php:120 msgid "" "This attribute specifies if the starttime is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n" "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:85 +#: includes/sc_event-list_helptexts.php:130 msgid "" "This attribute specifies if the location is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n" "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:95 +#: includes/sc_event-list_helptexts.php:147 msgid "" "This attribute specifies if the categories are displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n" "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:100 +#: includes/sc_event-list_helptexts.php:157 msgid "" "This attribute specifies if the content is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n" "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:105 +#: includes/sc_event-list_helptexts.php:167 +msgid "" +"This attribute specifies if the excerpt is displayed in the event list.<br />\n" +"\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n" +"\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" +"\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" +"\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)." +msgstr "" + +#: includes/sc_event-list_helptexts.php:178 msgid "" "This attribute specifies if the content should be truncate to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:106 +#: includes/sc_event-list_helptexts.php:179 #, php-format msgid "With the standard value %1$s the full text is displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:110 +#: includes/sc_event-list_helptexts.php:186 msgid "" -"This attribute specifies if the content should be collapsed initially.<br />\n" +"This attribute specifies if the content or excerpt should be collapsed initially.<br />\n" "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n" "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n" "\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." msgstr "" -#: includes/sc_event-list_helptexts.php:116 +#: includes/sc_event-list_helptexts.php:197 msgid "" "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n" "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n" @@ -1803,7 +1834,7 @@ msgid "" "\t With \"events_with_content_only\" the link is only added in the event list for events with event content." msgstr "" -#: includes/sc_event-list_helptexts.php:122 +#: includes/sc_event-list_helptexts.php:208 msgid "" "This attribute specifies if a rss feed link should be added.<br />\n" "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n" @@ -1812,32 +1843,52 @@ msgid "" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:128 +#: includes/sc_event-list_helptexts.php:220 +msgid "" +"This attribute specifies if a ical feed link should be added.<br />\n" +"\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n" +"\t On that page you can also find some settings to modify the output.<br />\n" +"\t Choose \"false\" to never add and \"true\" to always add the link.<br />" +msgstr "" + +#: includes/sc_event-list_helptexts.php:231 msgid "" "This attribute specifies the page or post url for event links.<br />\n" "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n" "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget." msgstr "" -#: includes/sc_event-list_helptexts.php:135 +#: includes/sc_event-list_helptexts.php:243 msgid "" "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n" "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget." msgstr "" -#: includes/sc_event-list.php:135 +#: includes/sc_event-list.php:154 +msgid "Sorry, the requested event is not available!" +msgstr "" + +#: includes/sc_event-list.php:163 msgid "Event Information:" msgstr "Informazioni Evento" -#: includes/widget_helptexts.php:10 +#: includes/sc_event-list.php:405 +msgid "Link to RSS feed" +msgstr "" + +#: includes/sc_event-list.php:414 +msgid "Link to iCal feed" +msgstr "" + +#: includes/widget_helptexts.php:11 msgid "This option defines the displayed title for the widget." msgstr "" -#: includes/widget_helptexts.php:15 +#: includes/widget_helptexts.php:18 msgid "Category Filter" msgstr "Filtro per categoria" -#: includes/widget_helptexts.php:17 +#: includes/widget_helptexts.php:20 msgid "" "This option defines the categories of which events are shown. The standard " "is all or an empty string to show all events. Specify a category slug or a " @@ -1846,137 +1897,145 @@ msgid "" "all possibilities." msgstr "" -#: includes/widget_helptexts.php:22 +#: includes/widget_helptexts.php:27 msgid "Number of listed events" msgstr "Il numero degli eventi elencati" -#: includes/widget_helptexts.php:24 +#: includes/widget_helptexts.php:29 msgid "The number of upcoming events to display" msgstr "Il numero degli eventi prossimi da visualizzare" -#: includes/widget_helptexts.php:29 +#: includes/widget_helptexts.php:36 msgid "Truncate event title to" msgstr "Tronca il titolo dell'evento al" -#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52 -#: includes/widget_helptexts.php:67 +#: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65 +#: includes/widget_helptexts.php:93 msgid "characters" msgstr "caratteri" -#: includes/widget_helptexts.php:31 +#: includes/widget_helptexts.php:38 msgid "" "This option defines the number of displayed characters for the event title." msgstr "" -#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54 +#: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67 #, php-format msgid "" "Set this value to %1$s to view the full text, or set it to %2$s to " "automatically truncate the text via css." msgstr "" -#: includes/widget_helptexts.php:37 +#: includes/widget_helptexts.php:46 msgid "Show event starttime" msgstr "Mostra l'ora di inizio dell'evento" -#: includes/widget_helptexts.php:39 +#: includes/widget_helptexts.php:48 msgid "This option defines if the event start time will be displayed." msgstr "Questa opzione definisce se la data di inizio dell'evento sarà visualizzata." -#: includes/widget_helptexts.php:44 +#: includes/widget_helptexts.php:55 msgid "Show event location" msgstr "Mostra ubicazione evento" -#: includes/widget_helptexts.php:46 +#: includes/widget_helptexts.php:57 msgid "This option defines if the event location will be displayed." msgstr "Questa opzione definisce se l'ubicazione dell'evento sarà visualizzata." -#: includes/widget_helptexts.php:51 +#: includes/widget_helptexts.php:64 msgid "Truncate location to" msgstr "Tronca ubicazione al" -#: includes/widget_helptexts.php:53 +#: includes/widget_helptexts.php:66 msgid "" "If the event location is diplayed this option defines the number of " "displayed characters." msgstr "" -#: includes/widget_helptexts.php:59 +#: includes/widget_helptexts.php:74 +msgid "Show event excerpt" +msgstr "" + +#: includes/widget_helptexts.php:76 +msgid "This option defines if the event excerpt will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:83 msgid "Show event content" msgstr "" -#: includes/widget_helptexts.php:61 +#: includes/widget_helptexts.php:85 msgid "This option defines if the event content will be displayed." msgstr "" -#: includes/widget_helptexts.php:66 +#: includes/widget_helptexts.php:92 msgid "Truncate content to" msgstr "" -#: includes/widget_helptexts.php:68 +#: includes/widget_helptexts.php:94 msgid "" "If the event content are diplayed this option defines the number of diplayed" " characters." msgstr "" -#: includes/widget_helptexts.php:69 +#: includes/widget_helptexts.php:95 #, php-format msgid "Set this value to %1$s to view the full text." msgstr "" -#: includes/widget_helptexts.php:74 +#: includes/widget_helptexts.php:102 msgid "URL to the linked Event List page" msgstr "" -#: includes/widget_helptexts.php:76 +#: includes/widget_helptexts.php:104 msgid "" "This option defines the url to the linked Event List page. This option is " "required if you want to use one of the options below." msgstr "" -#: includes/widget_helptexts.php:81 +#: includes/widget_helptexts.php:111 msgid "Shortcode ID on linked page" msgstr "" -#: includes/widget_helptexts.php:83 +#: includes/widget_helptexts.php:113 msgid "" "This option defines the shortcode-id for the Event List on the linked page. " "Normally the standard value 1 is correct, you only have to change it if you " "use multiple event-list shortcodes on the linked page." msgstr "" -#: includes/widget_helptexts.php:90 +#: includes/widget_helptexts.php:122 msgid "" "With this option you can add a link to the single event page for every " "displayed event. You have to specify the url to the page and the shortcode " "id option if you want to use it." msgstr "" -#: includes/widget_helptexts.php:97 +#: includes/widget_helptexts.php:131 msgid "" "With this option you can add a link to the event-list page below the " "diplayed events. You have to specify the url to page option if you want to " "use it." msgstr "" -#: includes/widget_helptexts.php:102 +#: includes/widget_helptexts.php:138 msgid "Caption for the link" msgstr "Didascalia per il link" -#: includes/widget_helptexts.php:104 +#: includes/widget_helptexts.php:140 msgid "" "This option defines the text for the link to the Event List page if the " "approriate option is selected." msgstr "" -#: includes/widget.php:20 +#: includes/widget.php:21 msgid "With this widget a list of upcoming events can be displayed." msgstr "Con questo widget può essere mostrata una lista di eventi" -#: includes/widget.php:25 +#: includes/widget.php:26 msgid "Upcoming events" msgstr "Prossimi eventi" -#: includes/widget.php:38 +#: includes/widget.php:40 msgid "show events page" msgstr "mostra pagina eventi" diff --git a/wp-content/plugins/event-list/languages/event-list-nl_NL.mo b/wp-content/plugins/event-list/languages/event-list-nl_NL.mo index 9498656732f29698588fee90b97fae3aa0992e3b..1782fafeb015431598effe2a324250beabc925f8 100644 Binary files a/wp-content/plugins/event-list/languages/event-list-nl_NL.mo and b/wp-content/plugins/event-list/languages/event-list-nl_NL.mo differ diff --git a/wp-content/plugins/event-list/languages/event-list-nl_NL.po b/wp-content/plugins/event-list/languages/event-list-nl_NL.po index fc75d5bd346c6b7f754df486a18eddc447122bae..7ce2ee48f1a485b4c252c4a405fe57f642a50001 100644 --- a/wp-content/plugins/event-list/languages/event-list-nl_NL.po +++ b/wp-content/plugins/event-list/languages/event-list-nl_NL.po @@ -1,5 +1,5 @@ # Translation file for the 'Event List' WordPress plugin -# Copyright (C) 2018 by mibuthu +# Copyright (C) 2021 by mibuthu # This file is distributed under the same license as the corresponding wordpress plugin. # # Translators: @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: wp-event-list\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n" -"POT-Creation-Date: 2018-05-27 12:20+0200\n" -"PO-Revision-Date: 2018-05-27 10:20+0000\n" +"POT-Creation-Date: 2021-04-24 11:28+0200\n" +"PO-Revision-Date: 2021-04-24 09:26+0000\n" "Last-Translator: mibuthu\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/mibuthu/wp-event-list/language/nl_NL/)\n" "MIME-Version: 1.0\n" @@ -21,117 +21,117 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Errors during upgrade of plugin %1$s" msgstr "" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Upgrade of plugin %1$s successful" msgstr "" -#: admin/admin.php:106 admin/includes/admin-settings.php:65 +#: admin/admin.php:116 admin/includes/admin-settings.php:73 msgid "Event List Settings" msgstr "Gebeurtenislijst Instellingen" -#: admin/admin.php:106 +#: admin/admin.php:116 msgid "Settings" msgstr "Instellingen" -#: admin/admin.php:110 admin/includes/admin-about.php:37 +#: admin/admin.php:120 admin/includes/admin-about.php:43 msgid "About Event List" msgstr "Over Gebeurtenislijst" -#: admin/admin.php:110 +#: admin/admin.php:120 msgid "About" msgstr "Over" -#: admin/admin.php:132 +#: admin/admin.php:144 #, php-format msgid "%s Event" msgid_plural "%s Events" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 +#: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92 msgid "General" msgstr "Algemeen" -#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 -#: admin/includes/admin-about.php:105 +#: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88 +#: admin/includes/admin-about.php:117 msgid "Shortcode Attributes" msgstr "Shortcode Attributen" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:82 msgid "Help and Instructions" msgstr "Hulp en instructies" -#: admin/includes/admin-about.php:73 +#: admin/includes/admin-about.php:83 #, php-format msgid "You can manage the events %1$shere%2$s" msgstr "" -#: admin/includes/admin-about.php:74 +#: admin/includes/admin-about.php:84 msgid "To show the events on your site you have 2 possibilities" msgstr "Om de gebeurtenissen op je site te tonen heb je 2 mogelijkheden" -#: admin/includes/admin-about.php:75 +#: admin/includes/admin-about.php:85 #, php-format msgid "you can place the <strong>shortcode</strong> %1$s on any page or post" msgstr "je kunt de <strong>shortcode</strong> %1$s op elke pagina of bericht plaatsen" -#: admin/includes/admin-about.php:76 +#: admin/includes/admin-about.php:86 #, php-format msgid "you can add the <strong>widget</strong> %1$s in your sidebars" msgstr "je kunt de <strong>widget</strong> %1$s in je sidebar plaatsen" -#: admin/includes/admin-about.php:77 +#: admin/includes/admin-about.php:87 msgid "" "The displayed events and their style can be modified with the available " "widget settings and the available attributes for the shortcode." msgstr "De weergegeven gebeurtenissen en hun stijl kan aangepast worden in de beschikbare widget instellingen en de beschikbare attributen voor de shortcode." -#: admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:88 #, php-format msgid "" "A list of all available shortcode attributes with their descriptions is " "available in the %1$s tab." msgstr "" -#: admin/includes/admin-about.php:79 +#: admin/includes/admin-about.php:89 msgid "The available widget options are described in their tooltip text." msgstr "De beschikbare widget opties zijn omschreven in hun tooltip tekst." -#: admin/includes/admin-about.php:80 +#: admin/includes/admin-about.php:90 #, php-format msgid "" "If you enable one of the links options (%1$s or %2$s) in the widget you have" " to insert an URL to the linked event-list page." msgstr "" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120 msgid "Add links to the single events" msgstr "Voeg links toe aan de enkele gebeurtenis" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129 msgid "Add a link to the Event List page" msgstr "Voeg een link to aan de Gebeurtenislijst pagina" -#: admin/includes/admin-about.php:81 +#: admin/includes/admin-about.php:91 msgid "" "This is required because the widget does not know in which page or post the " "shortcode was included." msgstr "" -#: admin/includes/admin-about.php:82 +#: admin/includes/admin-about.php:92 msgid "" "Additionally you have to insert the correct Shortcode id on the linked page." " This id describes which shortcode should be used on the given page or post " "if you have more than one." msgstr "" -#: admin/includes/admin-about.php:83 +#: admin/includes/admin-about.php:93 #, php-format msgid "" "The default value %1$s is normally o.k. (for pages with 1 shortcode only), " @@ -139,986 +139,991 @@ msgid "" "link on your linked page or post." msgstr "" -#: admin/includes/admin-about.php:84 +#: admin/includes/admin-about.php:94 #, php-format msgid "The id is available at the end of the URL parameters (e.g. %1$s)." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 #, php-format msgid "" "Be sure to also check the %1$s to get the plugin behaving just the way you " "want." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 msgid "Settings page" msgstr "Pagina instellingen" -#: admin/includes/admin-about.php:92 +#: admin/includes/admin-about.php:103 msgid "About the plugin author" msgstr "Over de plugin ontwikkelaar" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:105 #, php-format msgid "" "This plugin is developed by %1$s, you can find more information about the " "plugin on the %2$s." msgstr "Deze plugin is ontwikkeld door %1$s, meer informatie over de plugin vind je hier %2$s." -#: admin/includes/admin-about.php:94 -msgid "wordpress plugin site" -msgstr "Wordpress plugin pagina" +#: admin/includes/admin-about.php:105 +msgid "WordPress plugin site" +msgstr "" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:106 #, php-format msgid "If you like the plugin please rate it on the %1$s." msgstr "" -#: admin/includes/admin-about.php:95 -msgid "wordpress plugin review site" +#: admin/includes/admin-about.php:106 +msgid "WordPress plugin review site" msgstr "" -#: admin/includes/admin-about.php:96 +#: admin/includes/admin-about.php:107 msgid "" "If you want to support the plugin I would be happy to get a small donation" msgstr "" -#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 -#: admin/includes/admin-about.php:99 +#: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109 +#: admin/includes/admin-about.php:110 #, php-format msgid "Donate with %1$s" msgstr "" -#: admin/includes/admin-about.php:107 +#: admin/includes/admin-about.php:119 msgid "" "You have the possibility to modify the output if you add some of the " "following attributes to the shortcode." msgstr "Je hebt de mogelijkheid het resultaat aan te passen als je wat van de volgende attributen toevoegt aan de shortcode." -#: admin/includes/admin-about.php:108 +#: admin/includes/admin-about.php:120 #, php-format msgid "" "You can combine and add as much attributes as you want. E.g. the shortcode " "including the attributes %1$s and %2$s would looks like this:" 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:" -#: admin/includes/admin-about.php:110 +#: admin/includes/admin-about.php:122 msgid "" "Below you can find a list of all supported attributes with their " "descriptions and available options:" msgstr "Hieronder vind je een lijst van alle ondersteunde attributen met hun beschrijving en beschikbare opties:" -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:137 msgid "Attribute name" msgstr "Attribuut naam" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:138 msgid "Value options" msgstr "Waarde opties" -#: admin/includes/admin-about.php:126 +#: admin/includes/admin-about.php:139 msgid "Default value" msgstr "Standaard waarde" -#: admin/includes/admin-about.php:127 +#: admin/includes/admin-about.php:140 msgid "Description" msgstr "Omschrijving" -#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 -#: includes/sc_event-list_helptexts.php:31 +#: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:42 msgid "Filter Syntax" msgstr "Filter Syntax" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:160 msgid "" "For date and cat filters you can specify complex filters with the following " "syntax:" msgstr "Voor datum en categorie filters kun je complexe filters definieren met de volgende syntax:" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 #, php-format msgid "" "You can use %1$s and %2$s connections to define complex filters. " "Additionally you can set brackets %3$s for nested queries." 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." -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "AND" msgstr "EN" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "OR" msgstr "OF" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "or" msgstr "of" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "and" msgstr "en" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:162 msgid "Examples for cat filters:" msgstr "Voorbeelden voor categorie filters:" -#: admin/includes/admin-about.php:149 +#: admin/includes/admin-about.php:163 #, php-format msgid "Show all events with category %1$s." msgstr "Laat alle gebeurtenissen zien met categorie %1$s." -#: admin/includes/admin-about.php:150 +#: admin/includes/admin-about.php:164 #, php-format msgid "Show all events with category %1$s or %2$s." msgstr "Laat alle gebeurtenissen zien met categorie %1$s of %2$s." -#: admin/includes/admin-about.php:151 +#: admin/includes/admin-about.php:165 #, php-format msgid "" "Show all events with category %1$s and all events where category %2$s as " "well as %3$s is selected." msgstr "Laat alle gebeurtenissen zien met categorie %1$s en alle gebeurtenissen waar zowel categorie %2$s als %3$s geselecteerd zijn." -#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34 msgid "Available Date Formats" msgstr "Beschikbare Datum Notaties" -#: admin/includes/admin-about.php:157 +#: admin/includes/admin-about.php:172 msgid "For date filters you can use the following date formats:" msgstr "Voor datum filters kun je de volgende datum notaties gebruiken:" -#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34 msgid "Available Date Range Formats" msgstr "Beschikbare Datum Bereik Notaties" -#: admin/includes/admin-about.php:166 +#: admin/includes/admin-about.php:182 msgid "For date filters you can use the following daterange formats:" msgstr "Voor datum filters kun je de volgende datumbereik notaties gebruiken: " -#: admin/includes/admin-about.php:178 +#: admin/includes/admin-about.php:195 msgid "Value" msgstr "Waarde" -#: admin/includes/admin-about.php:182 +#: admin/includes/admin-about.php:199 msgid "Example" msgstr "Voorbeeld" -#: admin/includes/admin-categories.php:38 +#: admin/includes/admin-categories.php:54 msgid "Synchronize with post categories" msgstr "" -#: admin/includes/admin-categories.php:46 +#: admin/includes/admin-categories.php:63 #, php-format msgid "%1$s categories modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:47 +#: admin/includes/admin-categories.php:64 #, php-format msgid "%1$s categories added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:48 +#: admin/includes/admin-categories.php:65 #, php-format msgid "%1$s categories deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:50 +#: admin/includes/admin-categories.php:67 #, php-format msgid "%1$s categories not modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:51 +#: admin/includes/admin-categories.php:68 #, php-format msgid "%1$s categories not added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:52 +#: admin/includes/admin-categories.php:69 #, php-format msgid "%1$s categories not deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:55 +#: admin/includes/admin-categories.php:72 msgid "An Error occured during the category sync" msgstr "" -#: admin/includes/admin-categories.php:59 +#: admin/includes/admin-categories.php:75 msgid "Category sync finished" msgstr "" -#: admin/includes/admin-category-sync.php:45 +#: admin/includes/admin-category-sync.php:54 msgid "Error: You are not allowed to view this page!" msgstr "" -#: admin/includes/admin-category-sync.php:62 +#: admin/includes/admin-category-sync.php:70 msgid "Affected Categories when switching to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:63 +#: admin/includes/admin-category-sync.php:71 msgid "Switch option to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:64 +#: admin/includes/admin-category-sync.php:72 msgid "" "If you proceed, all post categories will be copied and all events will be " "re-assigned to this new categories." msgstr "" -#: admin/includes/admin-category-sync.php:65 +#: admin/includes/admin-category-sync.php:73 msgid "" "Afterwards the event categories are independent of the post categories." msgstr "" -#: admin/includes/admin-category-sync.php:68 +#: admin/includes/admin-category-sync.php:75 msgid "Affected Categories when switching to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:69 +#: admin/includes/admin-category-sync.php:76 msgid "Switch option to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:70 +#: admin/includes/admin-category-sync.php:77 msgid "" "Take a detailed look at the affected categories above before you proceed! " "All seperate event categories will be deleted, this cannot be undone!" msgstr "" -#: admin/includes/admin-category-sync.php:73 +#: admin/includes/admin-category-sync.php:79 msgid "Event Categories: Synchronise with Post Categories" msgstr "" -#: admin/includes/admin-category-sync.php:74 +#: admin/includes/admin-category-sync.php:80 msgid "Start synchronisation" msgstr "" -#: admin/includes/admin-category-sync.php:75 +#: admin/includes/admin-category-sync.php:81 msgid "" "If this option is enabled the above listed categories will be deleted and " "removed from the existing events!" msgstr "" -#: admin/includes/admin-category-sync.php:90 +#: admin/includes/admin-category-sync.php:96 msgid "Categories to modify" msgstr "" -#: admin/includes/admin-category-sync.php:91 +#: admin/includes/admin-category-sync.php:97 msgid "Categories to add" msgstr "" -#: admin/includes/admin-category-sync.php:92 +#: admin/includes/admin-category-sync.php:98 msgid "Categories to delete (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:93 +#: admin/includes/admin-category-sync.php:99 msgid "Delete not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:97 +#: admin/includes/admin-category-sync.php:102 msgid "Categories with differences" msgstr "" -#: admin/includes/admin-category-sync.php:98 +#: admin/includes/admin-category-sync.php:103 msgid "Categories to add (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:99 +#: admin/includes/admin-category-sync.php:104 msgid "Add not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:117 +#: admin/includes/admin-category-sync.php:123 msgid "none" msgstr "" -#: admin/includes/admin-import.php:49 +#: admin/includes/admin-import.php:58 msgid "Import Events" msgstr "Importeer Gebeurtenissen" -#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116 +#: admin/includes/admin-import.php:220 msgid "Step" msgstr "Stap" -#: admin/includes/admin-import.php:69 +#: admin/includes/admin-import.php:79 msgid "Set import file and options" msgstr "Stel het import bestand en opties in" -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:82 #, php-format msgid "Proceed with Step %1$s" msgstr "Ga door naar stap %1$s" -#: admin/includes/admin-import.php:75 +#: admin/includes/admin-import.php:85 msgid "Example file" msgstr "Voorbeeld bestand" -#: admin/includes/admin-import.php:76 +#: admin/includes/admin-import.php:86 #, php-format msgid "" "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)" msgstr "Je kunt %1$shier%2$s een voorbeeld bestand downloaden (CSV scheider is een komma!)" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "Note" msgstr "Aantekening" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "" "Do not change the column header and separator line (first two lines), " "otherwise the import will fail!" msgstr "Verander niet de kolom rubriek en scheidingslijn (de eerste twee regels), anders zal de import falen." -#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 +#: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103 msgid "Sorry, there has been an error." msgstr "Sorry, er ging iets fout." -#: admin/includes/admin-import.php:85 +#: admin/includes/admin-import.php:96 msgid "The file does not exist, please try again." msgstr "Het bestand bestaat niet, probeer het nog eens." -#: admin/includes/admin-import.php:93 +#: admin/includes/admin-import.php:104 msgid "The uploaded file does not have the required csv extension." msgstr "" -#: admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:116 msgid "Events review and additonal category selection" msgstr "" -#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133 msgid "Error" msgstr "" -#: admin/includes/admin-import.php:111 +#: admin/includes/admin-import.php:122 msgid "This CSV file cannot be imported" msgstr "" -#: admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:133 msgid "None of the events in this CSV file can be imported" msgstr "" -#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179 msgid "Warning" msgstr "" -#: admin/includes/admin-import.php:126 +#: admin/includes/admin-import.php:138 #, php-format msgid "There is %1$s event which cannot be imported" msgid_plural "There are %1$s events which cannot be imported" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-import.php:134 +#: admin/includes/admin-import.php:150 #, php-format msgid "CSV line %1$s" msgstr "" -#: admin/includes/admin-import.php:144 +#: admin/includes/admin-import.php:160 msgid "You can still import all other events listed below." msgstr "" -#: admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:179 msgid "" "The following category slugs are not available and will be removed from the " "imported events" msgstr "" -#: admin/includes/admin-import.php:169 +#: admin/includes/admin-import.php:185 msgid "" "If you want to keep these categories, please create these Categories first " "and do the import afterwards." msgstr "" -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:220 msgid "Import result" msgstr "" -#: admin/includes/admin-import.php:201 +#: admin/includes/admin-import.php:223 #, php-format msgid "Import of %1$s events successful!" msgstr "" -#: admin/includes/admin-import.php:202 +#: admin/includes/admin-import.php:224 msgid "Go back to All Events" msgstr "Ga terug naar Alle Gebeurtenissen" -#: admin/includes/admin-import.php:206 +#: admin/includes/admin-import.php:227 msgid "Errors during Import" msgstr "" -#: admin/includes/admin-import.php:215 +#: admin/includes/admin-import.php:235 msgid "Event from CSV-line" msgstr "" -#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 -#: includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77 +#: includes/widget_helptexts.php:9 msgid "Title" msgstr "Titel" -#: admin/includes/admin-import.php:227 +#: admin/includes/admin-import.php:248 msgid "Start Date" msgstr "Start Datum" -#: admin/includes/admin-import.php:228 +#: admin/includes/admin-import.php:249 msgid "End Date" msgstr "Eind Datum" -#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 -#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 +#: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:69 msgid "Time" msgstr "Tijd" -#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62 -#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57 -#: includes/options_helptexts.php:58 +#: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78 +#: admin/includes/admin-new.php:107 includes/options_helptexts.php:75 +#: includes/options_helptexts.php:76 msgid "Location" msgstr "Locatie" -#: admin/includes/admin-import.php:231 +#: admin/includes/admin-import.php:252 msgid "Content" msgstr "" -#: admin/includes/admin-import.php:232 +#: admin/includes/admin-import.php:253 msgid "Category slugs" msgstr "" -#: admin/includes/admin-import.php:274 +#: admin/includes/admin-import.php:297 msgid "Header line is missing or not correct!" msgstr "" -#: admin/includes/admin-import.php:275 +#: admin/includes/admin-import.php:298 #, php-format msgid "" "Have a look at the %1$sexample file%2$s to see the correct header line " "format." msgstr "" -#: admin/includes/admin-import.php:281 +#: admin/includes/admin-import.php:305 #, php-format msgid "Wrong number of items in line (%1$s items found, 6-7 required)" msgstr "" -#: admin/includes/admin-import.php:309 +#: admin/includes/admin-import.php:334 msgid "Empty event title found" msgstr "" -#: admin/includes/admin-import.php:315 +#: admin/includes/admin-import.php:340 msgid "Wrong date format for startdate" msgstr "" -#: admin/includes/admin-import.php:324 +#: admin/includes/admin-import.php:348 msgid "Wrong date format for enddate" msgstr "" -#: admin/includes/admin-import.php:365 +#: admin/includes/admin-import.php:401 msgid "Import events" msgstr "Importeer gebeurtenis" -#: admin/includes/admin-import.php:366 +#: admin/includes/admin-import.php:402 msgid "Add additional categories" msgstr "Voeg extra categorieën toe" -#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +#: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257 msgid "Import" msgstr "Importeer" -#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +#: admin/includes/admin-import.php:428 includes/events_post_type.php:78 msgid "No events found" msgstr "" -#: admin/includes/admin-import.php:432 +#: admin/includes/admin-import.php:473 msgid "Saving of event failed!" msgstr "" -#: admin/includes/admin-main.php:60 +#: admin/includes/admin-main.php:76 msgid "Event Date" msgstr "" -#: admin/includes/admin-main.php:64 +#: admin/includes/admin-main.php:80 msgid "Author" msgstr "Auteur" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 #, php-format msgid "Add a copy of %1$s" msgstr "" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 msgid "Copy" msgstr "" -#: admin/includes/admin-new.php:51 +#: admin/includes/admin-new.php:58 msgid "Event data" msgstr "" -#: admin/includes/admin-new.php:80 +#: admin/includes/admin-new.php:90 msgid "Add Copy" msgstr "" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "Date" msgstr "Datum" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "required" msgstr "vereist" -#: admin/includes/admin-new.php:87 +#: admin/includes/admin-new.php:101 msgid "Multi-Day Event" msgstr "Meerdaagse gebeurtenis" -#: admin/includes/admin-new.php:106 +#: admin/includes/admin-new.php:121 msgid "Event Title" msgstr "" -#: admin/includes/admin-new.php:121 +#: admin/includes/admin-new.php:137 msgid "Event Content" msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203 msgid "Event updated." msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205 msgid "View event" msgstr "" -#: admin/includes/admin-new.php:184 +#: admin/includes/admin-new.php:204 #, php-format msgid "Event restored to revision from %1$s" msgstr "" -#: admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:205 msgid "Event published." msgstr "" -#: admin/includes/admin-new.php:187 +#: admin/includes/admin-new.php:207 msgid "Event submitted." msgstr "" -#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209 +#: admin/includes/admin-new.php:210 msgid "Preview event" msgstr "" -#: admin/includes/admin-new.php:188 +#: admin/includes/admin-new.php:208 #, php-format msgid "Event scheduled for: %1$s>" msgstr "" -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:210 msgid "Event draft updated." msgstr "" -#: admin/includes/admin-settings.php:71 +#: admin/includes/admin-settings.php:79 msgid "Go to Event Category switching page" msgstr "" -#: admin/includes/admin-settings.php:83 +#: admin/includes/admin-settings.php:93 msgid "Frontend Settings" msgstr "Frontend Instellingen" -#: admin/includes/admin-settings.php:84 +#: admin/includes/admin-settings.php:94 msgid "Admin Page Settings" msgstr "Admin Pagina Instellingen" -#: admin/includes/admin-settings.php:85 +#: admin/includes/admin-settings.php:95 msgid "Feed Settings" msgstr "Feed Instellingen" -#: admin/includes/admin-settings.php:86 +#: admin/includes/admin-settings.php:96 msgid "Category Taxonomy" msgstr "" -#: includes/daterange_helptexts.php:7 +#: includes/daterange_helptexts.php:8 msgid "Year" msgstr "Jaar" -#: includes/daterange_helptexts.php:8 +#: includes/daterange_helptexts.php:9 msgid "A year can be specified in 4 digit format." msgstr "Een jaar kan aangegeven worden in 4 cijferig formaat." -#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14 -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:47 #, php-format msgid "" "For a start date filter the first day of %1$s is used, in an end date the " "last day." msgstr "Voor een filter op startdatum wordt de eerste dag van %1$s gebruikt, bij een einddatum de laatste dag" -#: includes/daterange_helptexts.php:9 +#: includes/daterange_helptexts.php:10 msgid "the resulting year" msgstr "het betreffende jaar" -#: includes/daterange_helptexts.php:12 +#: includes/daterange_helptexts.php:15 msgid "Month" msgstr "Maand" -#: includes/daterange_helptexts.php:13 +#: includes/daterange_helptexts.php:16 msgid "" "A month can be specified with 4 digits for the year and 2 digits for the " "month, seperated by a hyphen (-)." msgstr "Een maand kan aangegeven worden met 4 cijfers voor het jaar en 2 cijfers voor de maand, gescheiden door een streepje (-)" -#: includes/daterange_helptexts.php:14 +#: includes/daterange_helptexts.php:17 msgid "the resulting month" msgstr "de betreffende maand" -#: includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:22 msgid "Day" msgstr "Dag" -#: includes/daterange_helptexts.php:18 +#: includes/daterange_helptexts.php:23 msgid "" "A day can be specified in the format 4 digits for the year, 2 digits for the" " month and 2 digets for the day, seperated by hyphens (-)." 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 (-)" -#: includes/daterange_helptexts.php:21 +#: includes/daterange_helptexts.php:28 msgid "Relative Year" msgstr "Relatief Jaar" -#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28 -#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55 #, php-format msgid "%1$s from now can be specified in the following notation: %2$s" msgstr "%1$s vanaf nu kan aangegeven worden in de volgende notatie: %2$s" -#: includes/daterange_helptexts.php:22 +#: includes/daterange_helptexts.php:29 msgid "A relative year" msgstr "Een relatief jaar" -#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29 -#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38 +#: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56 #, php-format msgid "" "This means you can specify a positive or negative (%1$s) %2$s from now with " "%3$s or %4$s attached (see also the example below)." 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)." -#: includes/daterange_helptexts.php:23 +#: includes/daterange_helptexts.php:30 msgid "number of years" msgstr "aantal jaar" -#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30 -#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44 +#: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39 +#: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57 #, php-format msgid "Additionally the following values are available: %1$s" msgstr "Daarnaast zijn de volgende waarden te gebruiken: %1$s" -#: includes/daterange_helptexts.php:27 +#: includes/daterange_helptexts.php:36 msgid "Relative Month" msgstr "Relatieve Maand" -#: includes/daterange_helptexts.php:28 +#: includes/daterange_helptexts.php:37 msgid "A relative month" msgstr "Een relatieve maand" -#: includes/daterange_helptexts.php:29 +#: includes/daterange_helptexts.php:38 msgid "number of months" msgstr "aantal maand" -#: includes/daterange_helptexts.php:33 +#: includes/daterange_helptexts.php:44 msgid "Relative Week" msgstr "Relatieve Week" -#: includes/daterange_helptexts.php:34 +#: includes/daterange_helptexts.php:45 msgid "A relative week" msgstr "Een relatieve week" -#: includes/daterange_helptexts.php:35 +#: includes/daterange_helptexts.php:46 msgid "number of weeks" msgstr "aantal weken" -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:47 msgid "the resulting week" msgstr "de betreffende week" -#: includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:48 #, php-format msgid "" "The first day of the week is depending on the option %1$s which can be found" " and changed in %2$s." 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." -#: includes/daterange_helptexts.php:41 +#: includes/daterange_helptexts.php:54 msgid "Relative Day" msgstr "Relatieve Dag" -#: includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:55 msgid "A relative day" msgstr "Een relatieve dag" -#: includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:56 msgid "number of days" msgstr "aantal dagen" -#: includes/daterange_helptexts.php:49 +#: includes/daterange_helptexts.php:64 msgid "Date range" msgstr "Datumbereik" -#: includes/daterange_helptexts.php:50 +#: includes/daterange_helptexts.php:66 msgid "" "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n" "\t For the start and end date any available date format can be used." 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." -#: includes/daterange_helptexts.php:55 +#: includes/daterange_helptexts.php:75 msgid "This value defines a range without any limits." msgstr "Deze waarde geeft een bereik zonder einde aan." -#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61 -#: includes/daterange_helptexts.php:66 +#: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83 +#: includes/daterange_helptexts.php:90 #, php-format msgid "The corresponding date_range format is: %1$s" msgstr "De bijbehorende date_range instelling is: %1$s" -#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 +#: includes/daterange_helptexts.php:81 includes/filterbar.php:310 msgid "Upcoming" msgstr "Komende" -#: includes/daterange_helptexts.php:60 +#: includes/daterange_helptexts.php:82 msgid "This value defines a range from the actual day to the future." msgstr "De waarde geeft een bereik aan van vandaag tot in de toekomst." -#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 +#: includes/daterange_helptexts.php:88 includes/filterbar.php:318 msgid "Past" msgstr "Eerdere" -#: includes/daterange_helptexts.php:65 +#: includes/daterange_helptexts.php:89 msgid "This value defines a range from the past to the previous day." msgstr "Deze waarde geeft een bereik aan van het verleden tot vandaag." -#: includes/event.php:107 +#: includes/event.php:124 msgid "No valid start date provided" msgstr "" -#: includes/events_post_type.php:60 +#: includes/event.php:299 includes/event.php:301 +#: includes/sc_event-list.php:298 +msgid "read more" +msgstr "" + +#: includes/events_post_type.php:69 msgid "Events" msgstr "Gebeurtenissen" -#: includes/events_post_type.php:61 +#: includes/events_post_type.php:70 msgid "Event" msgstr "" -#: includes/events_post_type.php:62 +#: includes/events_post_type.php:71 msgid "Add New" msgstr "Nieuwe toevoegen" -#: includes/events_post_type.php:63 +#: includes/events_post_type.php:72 msgid "Add New Event" msgstr "Maak een nieuwe gebeurtenis" -#: includes/events_post_type.php:64 +#: includes/events_post_type.php:73 msgid "Edit Event" msgstr "Gebeurtenis Aanpassen" -#: includes/events_post_type.php:65 +#: includes/events_post_type.php:74 msgid "New Event" msgstr "" -#: includes/events_post_type.php:66 +#: includes/events_post_type.php:75 msgid "View Event" msgstr "" -#: includes/events_post_type.php:67 +#: includes/events_post_type.php:76 msgid "View Events" msgstr "" -#: includes/events_post_type.php:68 +#: includes/events_post_type.php:77 msgid "Search Events" msgstr "" -#: includes/events_post_type.php:70 +#: includes/events_post_type.php:79 msgid "No events found in Trash" msgstr "" -#: includes/events_post_type.php:72 +#: includes/events_post_type.php:81 msgid "All Events" msgstr "Alle gebeurtenissen" -#: includes/events_post_type.php:73 +#: includes/events_post_type.php:82 msgid "Event Archives" msgstr "" -#: includes/events_post_type.php:74 +#: includes/events_post_type.php:83 msgid "Event Attributes" msgstr "" -#: includes/events_post_type.php:75 +#: includes/events_post_type.php:84 msgid "Insert into event" msgstr "" -#: includes/events_post_type.php:76 +#: includes/events_post_type.php:85 msgid "Uploaded to this event" msgstr "" -#: includes/events_post_type.php:77 +#: includes/events_post_type.php:86 msgid "Event List" msgstr "Gebeurtenislijst" -#: includes/events_post_type.php:78 +#: includes/events_post_type.php:87 msgid "Filter events list" msgstr "" -#: includes/events_post_type.php:79 +#: includes/events_post_type.php:88 msgid "Events list navigation" msgstr "" -#: includes/events_post_type.php:80 +#: includes/events_post_type.php:89 msgid "Events list" msgstr "" -#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +#: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90 msgid "Reset" msgstr "Herstel naar beginwaardes" -#: includes/filterbar.php:278 +#: includes/filterbar.php:296 msgid "All" msgstr "Alles" -#: includes/filterbar.php:281 +#: includes/filterbar.php:298 msgid "All Dates" msgstr "" -#: includes/options_helptexts.php:10 +#: includes/options_helptexts.php:11 msgid "CSV File to import" msgstr "CSV-bestand om te importeren" -#: includes/options_helptexts.php:12 +#: includes/options_helptexts.php:13 msgid "Please select the file which contains the event data in CSV format." msgstr "Selecteer het bestand dat de evenementen data bevat in CSV-format." -#: includes/options_helptexts.php:15 +#: includes/options_helptexts.php:18 msgid "Used date format" msgstr "Gebruikte datumweergave" -#: includes/options_helptexts.php:17 +#: includes/options_helptexts.php:21 msgid "" "With this option the given date format for event start and end date in the " "CSV file can be specified." msgstr "" -#: includes/options_helptexts.php:18 +#: includes/options_helptexts.php:23 #, php-format msgid "" "You can use the php date format options given in %1$s, the most important " "ones are:" msgstr "" -#: includes/options_helptexts.php:20 +#: includes/options_helptexts.php:26 msgid "full year representation, with 4 digits" msgstr "" -#: includes/options_helptexts.php:21 +#: includes/options_helptexts.php:27 msgid "numeric representation of a month, with leading zeros" msgstr "" -#: includes/options_helptexts.php:22 +#: includes/options_helptexts.php:28 msgid "day of the month, 2 digits with leading zeros" msgstr "" -#: includes/options_helptexts.php:24 +#: includes/options_helptexts.php:30 msgid "" "If the date format in the CSV file does not correspond to the given format, " "the import script tries to recognize the date format by itself." msgstr "" -#: includes/options_helptexts.php:25 +#: includes/options_helptexts.php:31 msgid "" "But this can cause problems or result in wrong dates, so it is recommended " "to specify the correct date format here." msgstr "" -#: includes/options_helptexts.php:26 +#: includes/options_helptexts.php:32 msgid "Examples" msgstr "" -#: includes/options_helptexts.php:33 +#: includes/options_helptexts.php:41 msgid "Text for no events" msgstr "Tekst indien geen evenementen" -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:43 msgid "" "This option defines the displayed text when no events are available for the " "selected view." msgstr "Deze optie bepaalt welke tekst wordt weergegeven als er geen evenementen zijn in de gekozen weergave." -#: includes/options_helptexts.php:38 +#: includes/options_helptexts.php:48 msgid "Multiday filter range" msgstr "Meerdaags filter bereik" -#: includes/options_helptexts.php:39 +#: includes/options_helptexts.php:49 msgid "Use the complete event range in the date filter" msgstr "Gebruik de volledige duur van een evenement in het datumfilter" -#: includes/options_helptexts.php:40 +#: includes/options_helptexts.php:51 msgid "" "This option defines if the complete range of a multiday event shall be " "considered in the date filter." msgstr "Deze optie bepaalt of de volledige duur van een meerdaags evenement meegenomen moet worden in een datumfilter." -#: includes/options_helptexts.php:41 +#: includes/options_helptexts.php:52 msgid "" "If disabled, only the start day of an event is considered in the filter." msgstr "Indien uitgeschakeld, zal alleen de startdatum van een evenement worden meegenomen in een filter." -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:53 msgid "" "For an example multiday event which started yesterday and ends tomorrow this" " means, that it is displayed in umcoming dates when this option is enabled, " "but it is hidden when the option is disabled." msgstr "Bijvoorbeeld, een meerdaags evenement dat gisteren begon en morgen eindigt wordt wél weergegeven bij komende evenement als deze optie is ingeschakeld en niet als deze is uitgeschakeld." -#: includes/options_helptexts.php:45 +#: includes/options_helptexts.php:58 msgid "Date display" msgstr "Datumweergave" -#: includes/options_helptexts.php:46 +#: includes/options_helptexts.php:59 msgid "Show the date only once per day" msgstr "Toon de datum slechts één keer per dag" -#: includes/options_helptexts.php:47 +#: includes/options_helptexts.php:61 msgid "" "With this option enabled the date is only displayed once per day if more " "than one event is available on the same day." msgstr "Met deze optie ingeschakeld, wordt de datum slechts één keer weergegeven als er meer dan één evenement op een dag is." -#: includes/options_helptexts.php:48 +#: includes/options_helptexts.php:62 msgid "" "If enabled, the events are ordered in a different way (end date before start" " time) to allow using the same date for as much events as possible." msgstr "Indien ingeschakeld, worden de evenementen anders geordend (einddatum vóór begindatum) om dezelfde datum voor zo veel mogelijk evenementen te kunnen gebruiken." -#: includes/options_helptexts.php:51 +#: includes/options_helptexts.php:67 msgid "HTML tags" msgstr "HTML-elementen" -#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:75 #, php-format msgid "Allow HTML tags in the event field \"%1$s\"" msgstr "HTML-elementen toestaan in het evenement veld \"%1$s\"" -#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 +#: includes/options_helptexts.php:69 includes/options_helptexts.php:76 #, php-format msgid "" "This option specifies if HTML tags are allowed in the event field \"%1$s\"." msgstr "Deze optie bepaalt of HTML-elementen zijn toegestaan in het evenement veld \"%1$s\"." -#: includes/options_helptexts.php:61 +#: includes/options_helptexts.php:81 msgid "Preferred language file" msgstr "Voorkeurs taal bestand" -#: includes/options_helptexts.php:62 +#: includes/options_helptexts.php:82 msgid "Load translations from general language directory first" msgstr "Laad de vertalingen eerst in de directory van de algemene taal" -#: includes/options_helptexts.php:63 +#: includes/options_helptexts.php:84 #, php-format msgid "" "The default is to load the %1$s translation file from the plugin language " "directory first (%2$s)." msgstr "" -#: includes/options_helptexts.php:64 +#: includes/options_helptexts.php:85 #, php-format msgid "" "If you want to load your own language file from the general language " @@ -1126,295 +1131,312 @@ msgid "" "language directory, you have to enable this option." msgstr "" -#: includes/options_helptexts.php:68 +#: includes/options_helptexts.php:91 msgid "Events permalink slug" msgstr "" -#: includes/options_helptexts.php:69 +#: includes/options_helptexts.php:92 msgid "" "With this option the slug for the events permalink URLs can be defined." msgstr "" -#: includes/options_helptexts.php:72 +#: includes/options_helptexts.php:97 msgid "Text for \"Show content\"" msgstr "" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:98 msgid "" "With this option the displayed text for the link to show the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:76 +#: includes/options_helptexts.php:103 msgid "Text for \"Hide content\"" msgstr "" -#: includes/options_helptexts.php:77 +#: includes/options_helptexts.php:104 msgid "" "With this option the displayed text for the link to hide the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:109 msgid "Disable CSS file" msgstr "CSS-bestand uitschakelen" -#: includes/options_helptexts.php:81 +#: includes/options_helptexts.php:110 #, php-format msgid "Disable the %1$s file." msgstr "Schakel het %1$s bestand uit." -#: includes/options_helptexts.php:82 +#: includes/options_helptexts.php:112 #, php-format msgid "With this option you can disable the inclusion of the %1$s file." msgstr "Met deze optie kan je het insluiten van het %1$s bestand uitschakelen." -#: includes/options_helptexts.php:83 +#: includes/options_helptexts.php:113 msgid "" "This normally only make sense if you have css conflicts with your theme and " "want to set all required css styles somewhere else (e.g. in the theme css)." msgstr "Dit is alleen nuttig als je CSS conflicten hebt met je thema en je alle vereiste CSS opmaak elders wil onderbrengen (bijv. in de CSS van je thema)." -#: includes/options_helptexts.php:87 +#: includes/options_helptexts.php:119 msgid "Date format in edit form" msgstr "Datumweergave in formulieren" -#: includes/options_helptexts.php:88 +#: includes/options_helptexts.php:121 msgid "" "This option sets the displayed date format for the event date fields in the " "event new / edit form." msgstr "Deze optie bepaalt de datumweergave voor de evenement datumvelden in de formulieren 'nieuw evenement' / 'evenement aanpassen'." -#: includes/options_helptexts.php:89 +#: includes/options_helptexts.php:122 msgid "The default is an empty string to use the Wordpress standard setting." msgstr "" -#: includes/options_helptexts.php:90 +#: includes/options_helptexts.php:123 #, php-format msgid "" "All available options to specify the date format can be found %1$shere%2$s." msgstr "Alle beschikbare opties om de datumweergave te specificeren kan je %1$shier%2$s vinden." -#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 +#: includes/options_helptexts.php:129 msgid "Enable RSS feed" msgstr "RSS feed inschakelen" -#: includes/options_helptexts.php:95 -msgid "Enable support for an event RSS feed" -msgstr "Ondersteuning voor een RSS feed inschakelen" +#: includes/options_helptexts.php:130 +msgid "Enable support for the event RSS feed" +msgstr "" -#: includes/options_helptexts.php:96 -msgid "This option activates a RSS feed for the events." +#: includes/options_helptexts.php:132 +msgid "" +"This option activates the RSS feed for the events and adds a feed link in " +"the html head." msgstr "" -#: includes/options_helptexts.php:97 +#: includes/options_helptexts.php:133 msgid "" "You have to enable this option if you want to use one of the RSS feed " "features." msgstr "" -#: includes/options_helptexts.php:100 -msgid "Feed name" -msgstr "Feed naam" +#: includes/options_helptexts.php:138 +msgid "Enable iCal feed" +msgstr "" + +#: includes/options_helptexts.php:139 +msgid "Enable support for the event iCal feed" +msgstr "" -#: includes/options_helptexts.php:101 -#, php-format -msgid "This option sets the feed name. The default value is %1$s." +#: includes/options_helptexts.php:141 +msgid "This option activates the iCal feed for events." msgstr "" -#: includes/options_helptexts.php:102 -#, php-format +#: includes/options_helptexts.php:142 msgid "" -"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " -"enabled)." +"You have to enable this option if you want to use one of the iCal features." msgstr "" -#: includes/options_helptexts.php:105 -msgid "Feed Description" -msgstr "Feed beschrijving" +#: includes/options_helptexts.php:147 +msgid "Position of the RSS feed link" +msgstr "Plek van de RSS feed link" -#: includes/options_helptexts.php:106 -#, php-format -msgid "This options set the feed description. The default value is %1$s." +#: includes/options_helptexts.php:149 +msgid "at the top (above the navigation bar)" msgstr "" -#: includes/options_helptexts.php:107 +#: includes/options_helptexts.php:150 +msgid "between navigation bar and events" +msgstr "" + +#: includes/options_helptexts.php:151 +msgid "at the bottom" +msgstr "aan de onderkant" + +#: includes/options_helptexts.php:153 msgid "" -"This description will be used in the title for the feed link in the html " -"head and for the description in the feed itself." +"This option specifies the position of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:110 -msgid "Listed events" -msgstr "Vermeldde evenementen" +#: includes/options_helptexts.php:158 +msgid "Align of the RSS feed link" +msgstr "Uitlijning van RSS feed link" -#: includes/options_helptexts.php:111 -msgid "Only show upcoming events in feed" -msgstr "Toon alleen komende evenementen in feed" +#: includes/options_helptexts.php:160 +msgid "left" +msgstr "links" -#: includes/options_helptexts.php:112 +#: includes/options_helptexts.php:161 +msgid "center" +msgstr "midden" + +#: includes/options_helptexts.php:162 +msgid "right" +msgstr "rechts" + +#: includes/options_helptexts.php:164 msgid "" -"If this option is enabled only the upcoming events are listed in the feed." +"This option specifies the align of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:113 -msgid "If disabled all events (upcoming and past) will be listed." +#: includes/options_helptexts.php:169 +msgid "RSS feed name" msgstr "" -#: includes/options_helptexts.php:116 -msgid "Add RSS feed link in head" -msgstr "Voeg RSS feed toe in kop" +#: includes/options_helptexts.php:171 +#, php-format +msgid "This option sets the RSS feed name. The default value is %1$s." +msgstr "" -#: includes/options_helptexts.php:117 -msgid "Add RSS feed link in the html head" -msgstr "Een link naar de RSS feed toevoegen aan de HTML 'head'." +#: includes/options_helptexts.php:172 +#, php-format +msgid "" +"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " +"enabled)." +msgstr "" -#: includes/options_helptexts.php:118 -msgid "This option adds a RSS feed in the html head for the events." +#: includes/options_helptexts.php:177 +msgid "RSS feed Description" msgstr "" -#: includes/options_helptexts.php:119 -msgid "There are 2 alternatives to include the RSS feed" +#: includes/options_helptexts.php:179 +#, php-format +msgid "This options set the RSS feed description. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:120 +#: includes/options_helptexts.php:180 msgid "" -"The first way is this option to include a link in the html head. This link " -"will be recognized by browers or feed readers." +"This description will be used in the title for the feed link in the html " +"head and for the description in the feed itself." msgstr "" -#: includes/options_helptexts.php:121 -#, php-format -msgid "" -"The second way is to include a visible feed link directly in the event list." -" This can be done by setting the shortcode attribute %1$s to %2$s." +#: includes/options_helptexts.php:185 +msgid "RSS feed events" msgstr "" -#: includes/options_helptexts.php:122 -#, php-format -msgid "This option is only valid if the setting %1$s is enabled." +#: includes/options_helptexts.php:186 +msgid "Only show upcoming events in the RSS feed" msgstr "" -#: includes/options_helptexts.php:125 -msgid "Position of the RSS feed link" -msgstr "Plek van de RSS feed link" +#: includes/options_helptexts.php:188 +msgid "" +"If this option is enabled only the upcoming events are listed in the RSS " +"feed." +msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the top (above the navigation bar)" +#: includes/options_helptexts.php:189 includes/options_helptexts.php:215 +msgid "If disabled, all events (upcoming and past) will be listed." msgstr "" -#: includes/options_helptexts.php:126 -msgid "between navigation bar and events" +#: includes/options_helptexts.php:194 +msgid "RSS link text" msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the bottom" -msgstr "aan de onderkant" +#: includes/options_helptexts.php:196 +msgid "This option sets the caption of the RSS feed link in the event list." +msgstr "" -#: includes/options_helptexts.php:127 -msgid "" -"This option specifies the position of the RSS feed link in the event list." +#: includes/options_helptexts.php:197 +msgid "Use an empty text to only show the rss image." msgstr "" -#: includes/options_helptexts.php:128 includes/options_helptexts.php:134 -#: includes/options_helptexts.php:140 includes/options_helptexts.php:146 +#: includes/options_helptexts.php:198 #, php-format msgid "" "You have to set the shortcode attribute %1$s to %2$s if you want to show the" -" feed link." +" RSS feed link." msgstr "" -#: includes/options_helptexts.php:131 -msgid "Align of the RSS feed link" -msgstr "Uitlijning van RSS feed link" - -#: includes/options_helptexts.php:132 -msgid "left" -msgstr "links" - -#: includes/options_helptexts.php:132 -msgid "center" -msgstr "midden" +#: includes/options_helptexts.php:203 +msgid "iCal feed name" +msgstr "" -#: includes/options_helptexts.php:132 -msgid "right" -msgstr "rechts" +#: includes/options_helptexts.php:205 +#, php-format +msgid "This option sets the iCal feed name. The default value is %1$s." +msgstr "" -#: includes/options_helptexts.php:133 +#: includes/options_helptexts.php:206 +#, php-format msgid "" -"This option specifies the align of the RSS feed link in the event list." +"This name will be used in the iCal feed url (e.g. %1$s, or %2$s with " +"permalinks enabled)." +msgstr "" + +#: includes/options_helptexts.php:211 +msgid "iCal feed events" msgstr "" -#: includes/options_helptexts.php:137 -msgid "Feed link text" -msgstr "Tekst feed link" +#: includes/options_helptexts.php:212 +msgid "Only show upcoming events in the iCal feed" +msgstr "" -#: includes/options_helptexts.php:138 +#: includes/options_helptexts.php:214 msgid "" -"This option specifies the caption of the RSS feed link in the event list." +"If this option is enabled only the upcoming events are listed in the iCal " +"file." msgstr "" -#: includes/options_helptexts.php:139 -msgid "" -"Insert an empty text to hide any text if you only want to show the rss " -"image." +#: includes/options_helptexts.php:220 +msgid "iCal link text" msgstr "" -#: includes/options_helptexts.php:143 -msgid "Feed link image" -msgstr "Afbeelding feed link" +#: includes/options_helptexts.php:222 +msgid "This option sets the iCal link text in the event list." +msgstr "" -#: includes/options_helptexts.php:144 -msgid "Show rss image in feed link" -msgstr "Toon RSS afbeelding in feed link" +#: includes/options_helptexts.php:223 +msgid "Use an empty text to only show the iCal image." +msgstr "" -#: includes/options_helptexts.php:145 +#: includes/options_helptexts.php:224 +#, php-format msgid "" -"This option specifies if the an image should be dispayed in the feed link in" -" front of the text." +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" iCal feed link." msgstr "" -#: includes/options_helptexts.php:151 +#: includes/options_helptexts.php:231 msgid "Event Category handling" msgstr "" -#: includes/options_helptexts.php:152 +#: includes/options_helptexts.php:232 msgid "Use Post Categories" msgstr "" -#: includes/options_helptexts.php:153 +#: includes/options_helptexts.php:234 msgid "" "Do not maintain seperate categories for the events, and use the existing " "post categories instead." msgstr "" -#: includes/options_helptexts.php:154 +#: includes/options_helptexts.php:235 msgid "Attention" msgstr "Let op" -#: includes/options_helptexts.php:155 +#: includes/options_helptexts.php:236 msgid "" "This option cannot be changed directly, but you can go to the Event Category" " switching page from here." msgstr "" -#: includes/options.php:40 +#: includes/options.php:73 msgid "events" msgstr "" -#: includes/options.php:41 +#: includes/options.php:77 msgid "Show content" msgstr "" -#: includes/options.php:42 +#: includes/options.php:81 msgid "Hide content" msgstr "" -#: includes/sc_event-list_helptexts.php:7 +#: includes/sc_event-list_helptexts.php:8 msgid "event-id" msgstr "gebeurtenis-id" -#: includes/sc_event-list_helptexts.php:8 +#: includes/sc_event-list_helptexts.php:9 #, php-format msgid "" "By default the event-list is displayed initially. But if an event-id (e.g. " @@ -1422,107 +1444,107 @@ msgid "" "this event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:10 -#: includes/sc_event-list_helptexts.php:22 +#: includes/sc_event-list_helptexts.php:13 +#: includes/sc_event-list_helptexts.php:31 msgid "year" msgstr "jaar" -#: includes/sc_event-list_helptexts.php:11 +#: includes/sc_event-list_helptexts.php:14 msgid "" "This attribute defines which events are initially shown. The default is to " "show the upcoming events only." msgstr "" -#: includes/sc_event-list_helptexts.php:12 +#: includes/sc_event-list_helptexts.php:15 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:14 +#: includes/sc_event-list_helptexts.php:19 msgid "category slug" msgstr "" -#: includes/sc_event-list_helptexts.php:15 +#: includes/sc_event-list_helptexts.php:20 msgid "" "This attribute defines the category of which events are initially shown. The" " default is to show events of all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:16 +#: includes/sc_event-list_helptexts.php:21 msgid "" "Provide a category slug to change this behavior. It is still possible to " "change the displayed categories via the filterbar or url parameters." msgstr "" -#: includes/sc_event-list_helptexts.php:19 +#: includes/sc_event-list_helptexts.php:26 msgid "This attribute defines the initial order of the events." msgstr "" -#: includes/sc_event-list_helptexts.php:20 +#: includes/sc_event-list_helptexts.php:27 msgid "" "With %1$S (default value) the events are sorted from old to new, with %2$s " "in the opposite direction (from new to old)." msgstr "" -#: includes/sc_event-list_helptexts.php:23 +#: includes/sc_event-list_helptexts.php:32 #, php-format msgid "" "This attribute defines the dates and date ranges of which events are " "displayed. The default is %1$s to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:24 +#: includes/sc_event-list_helptexts.php:33 #, php-format msgid "" "Filtered events according to %1$s value are not available in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:25 +#: includes/sc_event-list_helptexts.php:34 #, php-format msgid "" "You can find all available values with a description and examples in the " "sections %1$s and %2$s below." msgstr "" -#: includes/sc_event-list_helptexts.php:26 +#: includes/sc_event-list_helptexts.php:35 #, php-format msgid "See %1$s description if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:28 +#: includes/sc_event-list_helptexts.php:39 msgid "category slugs" msgstr "" -#: includes/sc_event-list_helptexts.php:29 +#: includes/sc_event-list_helptexts.php:40 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:30 +#: includes/sc_event-list_helptexts.php:41 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:31 +#: includes/sc_event-list_helptexts.php:42 #, php-format msgid "" "The filter is specified via the given category slugs. See %1$s description " "if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:33 -#: includes/sc_event-list_helptexts.php:74 -#: includes/sc_event-list_helptexts.php:89 -#: includes/sc_event-list_helptexts.php:104 +#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:111 +#: includes/sc_event-list_helptexts.php:138 +#: includes/sc_event-list_helptexts.php:177 msgid "number" msgstr "nummer" -#: includes/sc_event-list_helptexts.php:34 +#: includes/sc_event-list_helptexts.php:47 #, php-format msgid "" "This attribute defines how many events should be displayed if upcoming " @@ -1530,109 +1552,109 @@ msgid "" "displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:48 msgid "" "Please not that in the actual version there is no pagination of the events " "available, so the event list can be very long." msgstr "" -#: includes/sc_event-list_helptexts.php:38 +#: includes/sc_event-list_helptexts.php:53 msgid "" "This attribute defines if the filterbar should be displayed. The filterbar " "allows the users to specify filters for the listed events." msgstr "" -#: includes/sc_event-list_helptexts.php:39 +#: includes/sc_event-list_helptexts.php:54 #, php-format msgid "Choose %1$s to always hide and %2$s to always show the filterbar." msgstr "" -#: includes/sc_event-list_helptexts.php:40 +#: includes/sc_event-list_helptexts.php:55 #, php-format msgid "" "With %1$s the filterbar is only visible in the event list and with %2$s only" " in the single event view." msgstr "" -#: includes/sc_event-list_helptexts.php:43 +#: includes/sc_event-list_helptexts.php:60 #, php-format msgid "" "This attribute specifies the available items in the filterbar. This options " "are only valid if the filterbar is displayed (see %1$s attribute)." msgstr "" -#: includes/sc_event-list_helptexts.php:44 +#: includes/sc_event-list_helptexts.php:61 msgid "" "Find below an overview of the available filterbar items and their options:" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "filterbar item" msgstr "" -#: includes/sc_event-list_helptexts.php:46 -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:96 msgid "description" msgstr "omschrijving" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "item options" msgstr "item opties" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option values" msgstr "optie waarden" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "default value" msgstr "standaardwaarde" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option description" msgstr "optie omschrijving" -#: includes/sc_event-list_helptexts.php:47 +#: includes/sc_event-list_helptexts.php:67 msgid "" "Show a list of all available years. Additional there are some special " "entries available (see item options)." msgstr "" -#: includes/sc_event-list_helptexts.php:48 -#: includes/sc_event-list_helptexts.php:53 +#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:82 msgid "Add an entry to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:49 -#: includes/sc_event-list_helptexts.php:54 +#: includes/sc_event-list_helptexts.php:73 +#: includes/sc_event-list_helptexts.php:84 msgid "Add an entry to show all upcoming events." msgstr "" -#: includes/sc_event-list_helptexts.php:50 -#: includes/sc_event-list_helptexts.php:55 +#: includes/sc_event-list_helptexts.php:74 +#: includes/sc_event-list_helptexts.php:85 msgid "Add an entry to show events in the past." msgstr "" -#: includes/sc_event-list_helptexts.php:51 +#: includes/sc_event-list_helptexts.php:75 msgid "Set descending or ascending order of year entries." msgstr "" -#: includes/sc_event-list_helptexts.php:52 +#: includes/sc_event-list_helptexts.php:78 msgid "Show a list of all available months." msgstr "" -#: includes/sc_event-list_helptexts.php:56 +#: includes/sc_event-list_helptexts.php:86 msgid "Set descending or ascending order of month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "php date-formats" msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "Set the displayed date format of the month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "With this item you can display the special entries %1$s, %2$s and %3$s. You " @@ -1640,65 +1662,65 @@ msgid "" "order." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "Specifies the displayed values and their order. The items must be seperated " "by %1$s." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Show a list of all available categories." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Add an entry to show events from all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "A link to reset the eventlist filter to standard." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "any text" msgstr "elke tekst" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "Set the caption of the link." msgstr "Stel het bijschrift van de link in." -#: includes/sc_event-list_helptexts.php:61 +#: includes/sc_event-list_helptexts.php:93 msgid "Find below an overview of the available filterbar display options:" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "display option" msgstr "laat opties zien" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "available for" msgstr "beschikbaar voor" -#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:97 #, php-format msgid "Shows a horizonal list seperated by %1$s with a link to each item." msgstr "" -#: includes/sc_event-list_helptexts.php:65 +#: includes/sc_event-list_helptexts.php:98 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:66 +#: includes/sc_event-list_helptexts.php:99 msgid "Shows a simple link which can be clicked." msgstr "" -#: includes/sc_event-list_helptexts.php:67 +#: includes/sc_event-list_helptexts.php:102 msgid "Find below some declaration examples with descriptions:" msgstr "" -#: includes/sc_event-list_helptexts.php:69 +#: includes/sc_event-list_helptexts.php:104 #, php-format msgid "" "In this example you can see that the filterbar item and the used display " @@ -1706,22 +1728,22 @@ msgid "" "items seperated by a comma %2$s. These items will be displayed left-aligned." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "option_name" msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "value" msgstr "waarde" -#: includes/sc_event-list_helptexts.php:72 +#: includes/sc_event-list_helptexts.php:107 #, php-format msgid "" "The 2 semicolon %1$s devides the bar in 3 section. The first section will be" @@ -1730,75 +1752,84 @@ msgid "" "left-aligned and the reset link will be on the right side." msgstr "" -#: includes/sc_event-list_helptexts.php:75 -#: includes/sc_event-list_helptexts.php:90 +#: includes/sc_event-list_helptexts.php:112 +#: includes/sc_event-list_helptexts.php:139 msgid "" "This attribute specifies if the title should be truncated to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:76 -#: includes/sc_event-list_helptexts.php:91 +#: includes/sc_event-list_helptexts.php:113 +#: includes/sc_event-list_helptexts.php:140 #, php-format msgid "" "With the standard value %1$s the full text is displayed, with %2$s the text " "is automatically truncated via css." msgstr "" -#: includes/sc_event-list_helptexts.php:77 -#: includes/sc_event-list_helptexts.php:92 -#: includes/sc_event-list_helptexts.php:107 +#: includes/sc_event-list_helptexts.php:114 +#: includes/sc_event-list_helptexts.php:141 +#: includes/sc_event-list_helptexts.php:180 msgid "This attribute has no influence if only a single event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:80 +#: includes/sc_event-list_helptexts.php:120 msgid "" "This attribute specifies if the starttime is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n" "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event" 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." -#: includes/sc_event-list_helptexts.php:85 +#: includes/sc_event-list_helptexts.php:130 msgid "" "This attribute specifies if the location is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n" "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event" 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." -#: includes/sc_event-list_helptexts.php:95 +#: includes/sc_event-list_helptexts.php:147 msgid "" "This attribute specifies if the categories are displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n" "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event" 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." -#: includes/sc_event-list_helptexts.php:100 +#: includes/sc_event-list_helptexts.php:157 msgid "" "This attribute specifies if the content is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n" "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:105 +#: includes/sc_event-list_helptexts.php:167 +msgid "" +"This attribute specifies if the excerpt is displayed in the event list.<br />\n" +"\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n" +"\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" +"\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" +"\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)." +msgstr "" + +#: includes/sc_event-list_helptexts.php:178 msgid "" "This attribute specifies if the content should be truncate to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:106 +#: includes/sc_event-list_helptexts.php:179 #, php-format msgid "With the standard value %1$s the full text is displayed." msgstr "Met de standaardwaarde %1$s wordt de volledige tekst weergeven." -#: includes/sc_event-list_helptexts.php:110 +#: includes/sc_event-list_helptexts.php:186 msgid "" -"This attribute specifies if the content should be collapsed initially.<br />\n" +"This attribute specifies if the content or excerpt should be collapsed initially.<br />\n" "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n" "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n" "\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." msgstr "" -#: includes/sc_event-list_helptexts.php:116 +#: includes/sc_event-list_helptexts.php:197 msgid "" "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n" "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n" @@ -1806,7 +1837,7 @@ msgid "" "\t With \"events_with_content_only\" the link is only added in the event list for events with event content." msgstr "" -#: includes/sc_event-list_helptexts.php:122 +#: includes/sc_event-list_helptexts.php:208 msgid "" "This attribute specifies if a rss feed link should be added.<br />\n" "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n" @@ -1815,32 +1846,52 @@ msgid "" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event" 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." -#: includes/sc_event-list_helptexts.php:128 +#: includes/sc_event-list_helptexts.php:220 +msgid "" +"This attribute specifies if a ical feed link should be added.<br />\n" +"\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n" +"\t On that page you can also find some settings to modify the output.<br />\n" +"\t Choose \"false\" to never add and \"true\" to always add the link.<br />" +msgstr "" + +#: includes/sc_event-list_helptexts.php:231 msgid "" "This attribute specifies the page or post url for event links.<br />\n" "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n" "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget." 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." -#: includes/sc_event-list_helptexts.php:135 +#: includes/sc_event-list_helptexts.php:243 msgid "" "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n" "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget." msgstr "" -#: includes/sc_event-list.php:135 +#: includes/sc_event-list.php:154 +msgid "Sorry, the requested event is not available!" +msgstr "" + +#: includes/sc_event-list.php:163 msgid "Event Information:" msgstr "Evenement details:" -#: includes/widget_helptexts.php:10 +#: includes/sc_event-list.php:405 +msgid "Link to RSS feed" +msgstr "" + +#: includes/sc_event-list.php:414 +msgid "Link to iCal feed" +msgstr "" + +#: includes/widget_helptexts.php:11 msgid "This option defines the displayed title for the widget." msgstr "Deze optie bepaalt de getoonde titel voor de widget." -#: includes/widget_helptexts.php:15 +#: includes/widget_helptexts.php:18 msgid "Category Filter" msgstr "Categoriefilter" -#: includes/widget_helptexts.php:17 +#: includes/widget_helptexts.php:20 msgid "" "This option defines the categories of which events are shown. The standard " "is all or an empty string to show all events. Specify a category slug or a " @@ -1849,137 +1900,145 @@ msgid "" "all possibilities." msgstr "Deze optie bepaalt welke categorieën evenementen worden getoond. Standaard is 'all' of geen waarde om alle evenementen te tonen. Gebruikt een categorie-slug of een lijst van slugs om alleen evenementen uit bepaalde categorieën te tonen. Zie de beschrijving van het shortcode-attribuut 'cat_filter' voor meer informatie over de opties." -#: includes/widget_helptexts.php:22 +#: includes/widget_helptexts.php:27 msgid "Number of listed events" msgstr "Aantal getoonde events" -#: includes/widget_helptexts.php:24 +#: includes/widget_helptexts.php:29 msgid "The number of upcoming events to display" msgstr "Het aantal komende evenementen om te tonen" -#: includes/widget_helptexts.php:29 +#: includes/widget_helptexts.php:36 msgid "Truncate event title to" msgstr "Kort evenementtitel in tot" -#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52 -#: includes/widget_helptexts.php:67 +#: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65 +#: includes/widget_helptexts.php:93 msgid "characters" msgstr "tekens" -#: includes/widget_helptexts.php:31 +#: includes/widget_helptexts.php:38 msgid "" "This option defines the number of displayed characters for the event title." msgstr "" -#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54 +#: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67 #, php-format msgid "" "Set this value to %1$s to view the full text, or set it to %2$s to " "automatically truncate the text via css." msgstr "" -#: includes/widget_helptexts.php:37 +#: includes/widget_helptexts.php:46 msgid "Show event starttime" msgstr "Toon starttijd evenement" -#: includes/widget_helptexts.php:39 +#: includes/widget_helptexts.php:48 msgid "This option defines if the event start time will be displayed." msgstr "Deze optie bepaalt of de starttijd van het evenement wordt getoond" -#: includes/widget_helptexts.php:44 +#: includes/widget_helptexts.php:55 msgid "Show event location" msgstr "Toon evenementlocatie" -#: includes/widget_helptexts.php:46 +#: includes/widget_helptexts.php:57 msgid "This option defines if the event location will be displayed." msgstr "Deze optie bepaalt of de evenementlocatie wordt getoond." -#: includes/widget_helptexts.php:51 +#: includes/widget_helptexts.php:64 msgid "Truncate location to" msgstr "Kort de locatie in tot" -#: includes/widget_helptexts.php:53 +#: includes/widget_helptexts.php:66 msgid "" "If the event location is diplayed this option defines the number of " "displayed characters." msgstr "" -#: includes/widget_helptexts.php:59 +#: includes/widget_helptexts.php:74 +msgid "Show event excerpt" +msgstr "" + +#: includes/widget_helptexts.php:76 +msgid "This option defines if the event excerpt will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:83 msgid "Show event content" msgstr "" -#: includes/widget_helptexts.php:61 +#: includes/widget_helptexts.php:85 msgid "This option defines if the event content will be displayed." msgstr "" -#: includes/widget_helptexts.php:66 +#: includes/widget_helptexts.php:92 msgid "Truncate content to" msgstr "" -#: includes/widget_helptexts.php:68 +#: includes/widget_helptexts.php:94 msgid "" "If the event content are diplayed this option defines the number of diplayed" " characters." msgstr "" -#: includes/widget_helptexts.php:69 +#: includes/widget_helptexts.php:95 #, php-format msgid "Set this value to %1$s to view the full text." msgstr "" -#: includes/widget_helptexts.php:74 +#: includes/widget_helptexts.php:102 msgid "URL to the linked Event List page" msgstr "URL naar de gelinkte evenementenlijst-pagina" -#: includes/widget_helptexts.php:76 +#: includes/widget_helptexts.php:104 msgid "" "This option defines the url to the linked Event List page. This option is " "required if you want to use one of the options below." msgstr "Deze optie bepaalt de URL van de gelinkte evenementenlijst-pagina." -#: includes/widget_helptexts.php:81 +#: includes/widget_helptexts.php:111 msgid "Shortcode ID on linked page" msgstr "Shortcode ID op de gelinkte pagina" -#: includes/widget_helptexts.php:83 +#: includes/widget_helptexts.php:113 msgid "" "This option defines the shortcode-id for the Event List on the linked page. " "Normally the standard value 1 is correct, you only have to change it if you " "use multiple event-list shortcodes on the linked page." 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." -#: includes/widget_helptexts.php:90 +#: includes/widget_helptexts.php:122 msgid "" "With this option you can add a link to the single event page for every " "displayed event. You have to specify the url to the page and the shortcode " "id option if you want to use it." 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." -#: includes/widget_helptexts.php:97 +#: includes/widget_helptexts.php:131 msgid "" "With this option you can add a link to the event-list page below the " "diplayed events. You have to specify the url to page option if you want to " "use it." 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." -#: includes/widget_helptexts.php:102 +#: includes/widget_helptexts.php:138 msgid "Caption for the link" msgstr "Bijschrift bij de link" -#: includes/widget_helptexts.php:104 +#: includes/widget_helptexts.php:140 msgid "" "This option defines the text for the link to the Event List page if the " "approriate option is selected." msgstr "Deze optie bepaalt de tekst voor de link naar de evenementenlijst-pagina, als de bijbehorende optie is geselecteerd." -#: includes/widget.php:20 +#: includes/widget.php:21 msgid "With this widget a list of upcoming events can be displayed." msgstr "Met dit widget kan een lijst van komende evenementen worden getoond." -#: includes/widget.php:25 +#: includes/widget.php:26 msgid "Upcoming events" msgstr "Komende evenementen" -#: includes/widget.php:38 +#: includes/widget.php:40 msgid "show events page" msgstr "toon evenementenpagina" diff --git a/wp-content/plugins/event-list/languages/event-list-pl_PL.mo b/wp-content/plugins/event-list/languages/event-list-pl_PL.mo index 38a90bc9cfaf62f8ddb7454eba18e51a94f2819d..f19de4606f35dd334fccf20068fa2c4da829b378 100644 Binary files a/wp-content/plugins/event-list/languages/event-list-pl_PL.mo and b/wp-content/plugins/event-list/languages/event-list-pl_PL.mo differ diff --git a/wp-content/plugins/event-list/languages/event-list-pl_PL.po b/wp-content/plugins/event-list/languages/event-list-pl_PL.po index a60b584d1d4db7bfa2d55e5d8c0c220eae07ebc1..33c0eb38935cc7b9d871549dff137aec3a6d7555 100644 --- a/wp-content/plugins/event-list/languages/event-list-pl_PL.po +++ b/wp-content/plugins/event-list/languages/event-list-pl_PL.po @@ -1,15 +1,15 @@ # Translation file for the 'Event List' WordPress plugin -# Copyright (C) 2018 by mibuthu +# Copyright (C) 2021 by mibuthu # This file is distributed under the same license as the corresponding wordpress plugin. # # Translators: -# Maciej Bator <mbsrz1972@gmail.com>, 2017 +# Maciej Bator, 2017 msgid "" msgstr "" "Project-Id-Version: wp-event-list\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n" -"POT-Creation-Date: 2018-05-27 12:20+0200\n" -"PO-Revision-Date: 2018-05-27 10:20+0000\n" +"POT-Creation-Date: 2021-04-24 11:28+0200\n" +"PO-Revision-Date: 2021-04-24 09:26+0000\n" "Last-Translator: mibuthu\n" "Language-Team: Polish (Poland) (http://www.transifex.com/mibuthu/wp-event-list/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -18,33 +18,33 @@ msgstr "" "Language: pl_PL\n" "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" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Errors during upgrade of plugin %1$s" msgstr "" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Upgrade of plugin %1$s successful" msgstr "" -#: admin/admin.php:106 admin/includes/admin-settings.php:65 +#: admin/admin.php:116 admin/includes/admin-settings.php:73 msgid "Event List Settings" msgstr "Ustawienia Listy Wydarzeń" -#: admin/admin.php:106 +#: admin/admin.php:116 msgid "Settings" msgstr "Ustawienia" -#: admin/admin.php:110 admin/includes/admin-about.php:37 +#: admin/admin.php:120 admin/includes/admin-about.php:43 msgid "About Event List" msgstr "O Liście Wydarzeń" -#: admin/admin.php:110 +#: admin/admin.php:120 msgid "About" msgstr "O" -#: admin/admin.php:132 +#: admin/admin.php:144 #, php-format msgid "%s Event" msgid_plural "%s Events" @@ -53,84 +53,84 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 +#: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92 msgid "General" msgstr "Ogólne" -#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 -#: admin/includes/admin-about.php:105 +#: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88 +#: admin/includes/admin-about.php:117 msgid "Shortcode Attributes" msgstr "Atrybuty Skrótów" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:82 msgid "Help and Instructions" msgstr "Pomoc i instrukcje" -#: admin/includes/admin-about.php:73 +#: admin/includes/admin-about.php:83 #, php-format msgid "You can manage the events %1$shere%2$s" msgstr "%1$sTutaj%2$s możesz zarządzać wydarzeniami" -#: admin/includes/admin-about.php:74 +#: admin/includes/admin-about.php:84 msgid "To show the events on your site you have 2 possibilities" msgstr "Istnieją 2 sposoby na wyświetlanie wydarzeń na Twojej stronie" -#: admin/includes/admin-about.php:75 +#: admin/includes/admin-about.php:85 #, php-format msgid "you can place the <strong>shortcode</strong> %1$s on any page or post" msgstr "możesz umieścić następujący <strong>kod skrótowy</strong> %1$s na stronie lub w poście" -#: admin/includes/admin-about.php:76 +#: admin/includes/admin-about.php:86 #, php-format msgid "you can add the <strong>widget</strong> %1$s in your sidebars" msgstr "możesz dodać widżet <strong>widget</strong> %1$s na panel boczny" -#: admin/includes/admin-about.php:77 +#: admin/includes/admin-about.php:87 msgid "" "The displayed events and their style can be modified with the available " "widget settings and the available attributes for the shortcode." 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." -#: admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:88 #, php-format msgid "" "A list of all available shortcode attributes with their descriptions is " "available in the %1$s tab." msgstr "Lista dostępnych atrybutów jest dostępna w zakładce %1$s." -#: admin/includes/admin-about.php:79 +#: admin/includes/admin-about.php:89 msgid "The available widget options are described in their tooltip text." msgstr "Dostępne opcje widgetu zostały opisane w dymkach etykiet." -#: admin/includes/admin-about.php:80 +#: admin/includes/admin-about.php:90 #, php-format msgid "" "If you enable one of the links options (%1$s or %2$s) in the widget you have" " to insert an URL to the linked event-list page." msgstr "" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120 msgid "Add links to the single events" msgstr "Dodaj łącza do pojedynczych wydarzeń" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129 msgid "Add a link to the Event List page" msgstr "Dodaj łącze do strony Listy wydarzeń" -#: admin/includes/admin-about.php:81 +#: admin/includes/admin-about.php:91 msgid "" "This is required because the widget does not know in which page or post the " "shortcode was included." msgstr "" -#: admin/includes/admin-about.php:82 +#: admin/includes/admin-about.php:92 msgid "" "Additionally you have to insert the correct Shortcode id on the linked page." " This id describes which shortcode should be used on the given page or post " "if you have more than one." msgstr "" -#: admin/includes/admin-about.php:83 +#: admin/includes/admin-about.php:93 #, php-format msgid "" "The default value %1$s is normally o.k. (for pages with 1 shortcode only), " @@ -138,367 +138,367 @@ msgid "" "link on your linked page or post." msgstr "" -#: admin/includes/admin-about.php:84 +#: admin/includes/admin-about.php:94 #, php-format msgid "The id is available at the end of the URL parameters (e.g. %1$s)." msgstr "Id jest dostępne na końcu parametrów URL (np. %1$s)." -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 #, php-format msgid "" "Be sure to also check the %1$s to get the plugin behaving just the way you " "want." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 msgid "Settings page" msgstr "Ustawienia Listy Wydarzeń" -#: admin/includes/admin-about.php:92 +#: admin/includes/admin-about.php:103 msgid "About the plugin author" msgstr "O autorze wtyczki" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:105 #, php-format msgid "" "This plugin is developed by %1$s, you can find more information about the " "plugin on the %2$s." msgstr "Ta wtyczka jest rozwijana przez %1$s, więcej informacji na temat wtyczki można znaleźć na %2$s." -#: admin/includes/admin-about.php:94 -msgid "wordpress plugin site" -msgstr "strona wtyczek wordpress" +#: admin/includes/admin-about.php:105 +msgid "WordPress plugin site" +msgstr "" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:106 #, php-format msgid "If you like the plugin please rate it on the %1$s." msgstr "Jeśli podoba Ci się wtyczka możesz ocenić ją na %1$s." -#: admin/includes/admin-about.php:95 -msgid "wordpress plugin review site" -msgstr "strona ocen wtyczek wordpress" +#: admin/includes/admin-about.php:106 +msgid "WordPress plugin review site" +msgstr "" -#: admin/includes/admin-about.php:96 +#: admin/includes/admin-about.php:107 msgid "" "If you want to support the plugin I would be happy to get a small donation" msgstr "Jeśli chcesz wspomóc rozwój wtyczki byłbym wdzięczny za małą dotację" -#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 -#: admin/includes/admin-about.php:99 +#: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109 +#: admin/includes/admin-about.php:110 #, php-format msgid "Donate with %1$s" msgstr "" -#: admin/includes/admin-about.php:107 +#: admin/includes/admin-about.php:119 msgid "" "You have the possibility to modify the output if you add some of the " "following attributes to the shortcode." msgstr "Jest możliwość modyfikacji wyglądu za pomocą następujących atrybutów." -#: admin/includes/admin-about.php:108 +#: admin/includes/admin-about.php:120 #, php-format msgid "" "You can combine and add as much attributes as you want. E.g. the shortcode " "including the attributes %1$s and %2$s would looks like this:" msgstr "" -#: admin/includes/admin-about.php:110 +#: admin/includes/admin-about.php:122 msgid "" "Below you can find a list of all supported attributes with their " "descriptions and available options:" msgstr "Poniżej znajduje się lista wszystkich wspieranych atrybutów wraz z opisami i dostępnymi wartościami:" -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:137 msgid "Attribute name" msgstr "Nazwa atrybutu" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:138 msgid "Value options" msgstr "Opcje wartości" -#: admin/includes/admin-about.php:126 +#: admin/includes/admin-about.php:139 msgid "Default value" msgstr "Domyślna wartość" -#: admin/includes/admin-about.php:127 +#: admin/includes/admin-about.php:140 msgid "Description" msgstr "Opis" -#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 -#: includes/sc_event-list_helptexts.php:31 +#: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:42 msgid "Filter Syntax" msgstr "Składnia filtru" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:160 msgid "" "For date and cat filters you can specify complex filters with the following " "syntax:" msgstr "Zaawansowane filtry daty i kategorii mogą być ustawiane przy pomocy następującej składni:" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 #, php-format msgid "" "You can use %1$s and %2$s connections to define complex filters. " "Additionally you can set brackets %3$s for nested queries." msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "AND" msgstr "I" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "OR" msgstr "LUB" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "or" msgstr "i" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "and" msgstr "lub" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:162 msgid "Examples for cat filters:" msgstr "Przykłady filtrów kategorii:" -#: admin/includes/admin-about.php:149 +#: admin/includes/admin-about.php:163 #, php-format msgid "Show all events with category %1$s." msgstr "Wyświetla wszystkie wydarzenia z kategorii %1$s." -#: admin/includes/admin-about.php:150 +#: admin/includes/admin-about.php:164 #, php-format msgid "Show all events with category %1$s or %2$s." msgstr "Wyświetla wszystkie wydarzenia z kategorii %1$s i %2$s." -#: admin/includes/admin-about.php:151 +#: admin/includes/admin-about.php:165 #, php-format msgid "" "Show all events with category %1$s and all events where category %2$s as " "well as %3$s is selected." msgstr "" -#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34 msgid "Available Date Formats" msgstr "Dostępne formaty dat" -#: admin/includes/admin-about.php:157 +#: admin/includes/admin-about.php:172 msgid "For date filters you can use the following date formats:" msgstr "" -#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34 msgid "Available Date Range Formats" msgstr "Dostępne formaty zakresu dat" -#: admin/includes/admin-about.php:166 +#: admin/includes/admin-about.php:182 msgid "For date filters you can use the following daterange formats:" msgstr "" -#: admin/includes/admin-about.php:178 +#: admin/includes/admin-about.php:195 msgid "Value" msgstr "Wartość" -#: admin/includes/admin-about.php:182 +#: admin/includes/admin-about.php:199 msgid "Example" msgstr "Przykład" -#: admin/includes/admin-categories.php:38 +#: admin/includes/admin-categories.php:54 msgid "Synchronize with post categories" msgstr "" -#: admin/includes/admin-categories.php:46 +#: admin/includes/admin-categories.php:63 #, php-format msgid "%1$s categories modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:47 +#: admin/includes/admin-categories.php:64 #, php-format msgid "%1$s categories added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:48 +#: admin/includes/admin-categories.php:65 #, php-format msgid "%1$s categories deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:50 +#: admin/includes/admin-categories.php:67 #, php-format msgid "%1$s categories not modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:51 +#: admin/includes/admin-categories.php:68 #, php-format msgid "%1$s categories not added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:52 +#: admin/includes/admin-categories.php:69 #, php-format msgid "%1$s categories not deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:55 +#: admin/includes/admin-categories.php:72 msgid "An Error occured during the category sync" msgstr "" -#: admin/includes/admin-categories.php:59 +#: admin/includes/admin-categories.php:75 msgid "Category sync finished" msgstr "" -#: admin/includes/admin-category-sync.php:45 +#: admin/includes/admin-category-sync.php:54 msgid "Error: You are not allowed to view this page!" msgstr "" -#: admin/includes/admin-category-sync.php:62 +#: admin/includes/admin-category-sync.php:70 msgid "Affected Categories when switching to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:63 +#: admin/includes/admin-category-sync.php:71 msgid "Switch option to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:64 +#: admin/includes/admin-category-sync.php:72 msgid "" "If you proceed, all post categories will be copied and all events will be " "re-assigned to this new categories." msgstr "" -#: admin/includes/admin-category-sync.php:65 +#: admin/includes/admin-category-sync.php:73 msgid "" "Afterwards the event categories are independent of the post categories." msgstr "" -#: admin/includes/admin-category-sync.php:68 +#: admin/includes/admin-category-sync.php:75 msgid "Affected Categories when switching to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:69 +#: admin/includes/admin-category-sync.php:76 msgid "Switch option to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:70 +#: admin/includes/admin-category-sync.php:77 msgid "" "Take a detailed look at the affected categories above before you proceed! " "All seperate event categories will be deleted, this cannot be undone!" msgstr "" -#: admin/includes/admin-category-sync.php:73 +#: admin/includes/admin-category-sync.php:79 msgid "Event Categories: Synchronise with Post Categories" msgstr "" -#: admin/includes/admin-category-sync.php:74 +#: admin/includes/admin-category-sync.php:80 msgid "Start synchronisation" msgstr "" -#: admin/includes/admin-category-sync.php:75 +#: admin/includes/admin-category-sync.php:81 msgid "" "If this option is enabled the above listed categories will be deleted and " "removed from the existing events!" msgstr "" -#: admin/includes/admin-category-sync.php:90 +#: admin/includes/admin-category-sync.php:96 msgid "Categories to modify" msgstr "" -#: admin/includes/admin-category-sync.php:91 +#: admin/includes/admin-category-sync.php:97 msgid "Categories to add" msgstr "" -#: admin/includes/admin-category-sync.php:92 +#: admin/includes/admin-category-sync.php:98 msgid "Categories to delete (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:93 +#: admin/includes/admin-category-sync.php:99 msgid "Delete not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:97 +#: admin/includes/admin-category-sync.php:102 msgid "Categories with differences" msgstr "" -#: admin/includes/admin-category-sync.php:98 +#: admin/includes/admin-category-sync.php:103 msgid "Categories to add (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:99 +#: admin/includes/admin-category-sync.php:104 msgid "Add not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:117 +#: admin/includes/admin-category-sync.php:123 msgid "none" msgstr "" -#: admin/includes/admin-import.php:49 +#: admin/includes/admin-import.php:58 msgid "Import Events" msgstr "Importuj wydarzenia" -#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116 +#: admin/includes/admin-import.php:220 msgid "Step" msgstr "Krok" -#: admin/includes/admin-import.php:69 +#: admin/includes/admin-import.php:79 msgid "Set import file and options" msgstr "" -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:82 #, php-format msgid "Proceed with Step %1$s" msgstr "" -#: admin/includes/admin-import.php:75 +#: admin/includes/admin-import.php:85 msgid "Example file" msgstr "Przykładowy plik" -#: admin/includes/admin-import.php:76 +#: admin/includes/admin-import.php:86 #, php-format msgid "" "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)" msgstr "" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "Note" msgstr "Uwaga" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "" "Do not change the column header and separator line (first two lines), " "otherwise the import will fail!" msgstr "" -#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 +#: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103 msgid "Sorry, there has been an error." msgstr "" -#: admin/includes/admin-import.php:85 +#: admin/includes/admin-import.php:96 msgid "The file does not exist, please try again." msgstr "Plik nie został znaleziony, proszę spróbować ponownie." -#: admin/includes/admin-import.php:93 +#: admin/includes/admin-import.php:104 msgid "The uploaded file does not have the required csv extension." msgstr "" -#: admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:116 msgid "Events review and additonal category selection" msgstr "" -#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133 msgid "Error" msgstr "" -#: admin/includes/admin-import.php:111 +#: admin/includes/admin-import.php:122 msgid "This CSV file cannot be imported" msgstr "" -#: admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:133 msgid "None of the events in this CSV file can be imported" msgstr "" -#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179 msgid "Warning" msgstr "" -#: admin/includes/admin-import.php:126 +#: admin/includes/admin-import.php:138 #, php-format msgid "There is %1$s event which cannot be imported" msgid_plural "There are %1$s events which cannot be imported" @@ -507,619 +507,624 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: admin/includes/admin-import.php:134 +#: admin/includes/admin-import.php:150 #, php-format msgid "CSV line %1$s" msgstr "" -#: admin/includes/admin-import.php:144 +#: admin/includes/admin-import.php:160 msgid "You can still import all other events listed below." msgstr "" -#: admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:179 msgid "" "The following category slugs are not available and will be removed from the " "imported events" msgstr "" -#: admin/includes/admin-import.php:169 +#: admin/includes/admin-import.php:185 msgid "" "If you want to keep these categories, please create these Categories first " "and do the import afterwards." msgstr "" -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:220 msgid "Import result" msgstr "" -#: admin/includes/admin-import.php:201 +#: admin/includes/admin-import.php:223 #, php-format msgid "Import of %1$s events successful!" msgstr "" -#: admin/includes/admin-import.php:202 +#: admin/includes/admin-import.php:224 msgid "Go back to All Events" msgstr "Wróć do Wszystkie wydarzenia" -#: admin/includes/admin-import.php:206 +#: admin/includes/admin-import.php:227 msgid "Errors during Import" msgstr "" -#: admin/includes/admin-import.php:215 +#: admin/includes/admin-import.php:235 msgid "Event from CSV-line" msgstr "" -#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 -#: includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77 +#: includes/widget_helptexts.php:9 msgid "Title" msgstr "Tytuł" -#: admin/includes/admin-import.php:227 +#: admin/includes/admin-import.php:248 msgid "Start Date" msgstr "Termin rozpoczęcia" -#: admin/includes/admin-import.php:228 +#: admin/includes/admin-import.php:249 msgid "End Date" msgstr "Termin zakończenia" -#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 -#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 +#: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:69 msgid "Time" msgstr "Godzina" -#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62 -#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57 -#: includes/options_helptexts.php:58 +#: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78 +#: admin/includes/admin-new.php:107 includes/options_helptexts.php:75 +#: includes/options_helptexts.php:76 msgid "Location" msgstr "Miejsce" -#: admin/includes/admin-import.php:231 +#: admin/includes/admin-import.php:252 msgid "Content" msgstr "" -#: admin/includes/admin-import.php:232 +#: admin/includes/admin-import.php:253 msgid "Category slugs" msgstr "Upr. nazwy kategorii" -#: admin/includes/admin-import.php:274 +#: admin/includes/admin-import.php:297 msgid "Header line is missing or not correct!" msgstr "" -#: admin/includes/admin-import.php:275 +#: admin/includes/admin-import.php:298 #, php-format msgid "" "Have a look at the %1$sexample file%2$s to see the correct header line " "format." msgstr "" -#: admin/includes/admin-import.php:281 +#: admin/includes/admin-import.php:305 #, php-format msgid "Wrong number of items in line (%1$s items found, 6-7 required)" msgstr "" -#: admin/includes/admin-import.php:309 +#: admin/includes/admin-import.php:334 msgid "Empty event title found" msgstr "" -#: admin/includes/admin-import.php:315 +#: admin/includes/admin-import.php:340 msgid "Wrong date format for startdate" msgstr "" -#: admin/includes/admin-import.php:324 +#: admin/includes/admin-import.php:348 msgid "Wrong date format for enddate" msgstr "" -#: admin/includes/admin-import.php:365 +#: admin/includes/admin-import.php:401 msgid "Import events" msgstr "Importuj wydarzenia" -#: admin/includes/admin-import.php:366 +#: admin/includes/admin-import.php:402 msgid "Add additional categories" msgstr "Dodaj dodatkowe kategorie" -#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +#: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257 msgid "Import" msgstr "Import" -#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +#: admin/includes/admin-import.php:428 includes/events_post_type.php:78 msgid "No events found" msgstr "" -#: admin/includes/admin-import.php:432 +#: admin/includes/admin-import.php:473 msgid "Saving of event failed!" msgstr "" -#: admin/includes/admin-main.php:60 +#: admin/includes/admin-main.php:76 msgid "Event Date" msgstr "" -#: admin/includes/admin-main.php:64 +#: admin/includes/admin-main.php:80 msgid "Author" msgstr "Autor" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 #, php-format msgid "Add a copy of %1$s" msgstr "" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 msgid "Copy" msgstr "" -#: admin/includes/admin-new.php:51 +#: admin/includes/admin-new.php:58 msgid "Event data" msgstr "" -#: admin/includes/admin-new.php:80 +#: admin/includes/admin-new.php:90 msgid "Add Copy" msgstr "" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "Date" msgstr "Termin" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "required" msgstr "wymagane" -#: admin/includes/admin-new.php:87 +#: admin/includes/admin-new.php:101 msgid "Multi-Day Event" msgstr "Wydarzenie kilkudniowe" -#: admin/includes/admin-new.php:106 +#: admin/includes/admin-new.php:121 msgid "Event Title" msgstr "" -#: admin/includes/admin-new.php:121 +#: admin/includes/admin-new.php:137 msgid "Event Content" msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203 msgid "Event updated." msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205 msgid "View event" msgstr "" -#: admin/includes/admin-new.php:184 +#: admin/includes/admin-new.php:204 #, php-format msgid "Event restored to revision from %1$s" msgstr "" -#: admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:205 msgid "Event published." msgstr "" -#: admin/includes/admin-new.php:187 +#: admin/includes/admin-new.php:207 msgid "Event submitted." msgstr "" -#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209 +#: admin/includes/admin-new.php:210 msgid "Preview event" msgstr "" -#: admin/includes/admin-new.php:188 +#: admin/includes/admin-new.php:208 #, php-format msgid "Event scheduled for: %1$s>" msgstr "" -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:210 msgid "Event draft updated." msgstr "" -#: admin/includes/admin-settings.php:71 +#: admin/includes/admin-settings.php:79 msgid "Go to Event Category switching page" msgstr "" -#: admin/includes/admin-settings.php:83 +#: admin/includes/admin-settings.php:93 msgid "Frontend Settings" msgstr "Strona frontowa" -#: admin/includes/admin-settings.php:84 +#: admin/includes/admin-settings.php:94 msgid "Admin Page Settings" msgstr "Panel administratora" -#: admin/includes/admin-settings.php:85 +#: admin/includes/admin-settings.php:95 msgid "Feed Settings" msgstr "Ustawienia kanału" -#: admin/includes/admin-settings.php:86 +#: admin/includes/admin-settings.php:96 msgid "Category Taxonomy" msgstr "" -#: includes/daterange_helptexts.php:7 +#: includes/daterange_helptexts.php:8 msgid "Year" msgstr "Rok" -#: includes/daterange_helptexts.php:8 +#: includes/daterange_helptexts.php:9 msgid "A year can be specified in 4 digit format." msgstr "Rok może być określony formatem czterocyfrowym." -#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14 -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:47 #, php-format msgid "" "For a start date filter the first day of %1$s is used, in an end date the " "last day." msgstr "" -#: includes/daterange_helptexts.php:9 +#: includes/daterange_helptexts.php:10 msgid "the resulting year" msgstr "" -#: includes/daterange_helptexts.php:12 +#: includes/daterange_helptexts.php:15 msgid "Month" msgstr "Miesiąc" -#: includes/daterange_helptexts.php:13 +#: includes/daterange_helptexts.php:16 msgid "" "A month can be specified with 4 digits for the year and 2 digits for the " "month, seperated by a hyphen (-)." msgstr "" -#: includes/daterange_helptexts.php:14 +#: includes/daterange_helptexts.php:17 msgid "the resulting month" msgstr "" -#: includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:22 msgid "Day" msgstr "Dzień" -#: includes/daterange_helptexts.php:18 +#: includes/daterange_helptexts.php:23 msgid "" "A day can be specified in the format 4 digits for the year, 2 digits for the" " month and 2 digets for the day, seperated by hyphens (-)." msgstr "" -#: includes/daterange_helptexts.php:21 +#: includes/daterange_helptexts.php:28 msgid "Relative Year" msgstr "" -#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28 -#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55 #, php-format msgid "%1$s from now can be specified in the following notation: %2$s" msgstr "" -#: includes/daterange_helptexts.php:22 +#: includes/daterange_helptexts.php:29 msgid "A relative year" msgstr "" -#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29 -#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38 +#: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56 #, php-format msgid "" "This means you can specify a positive or negative (%1$s) %2$s from now with " "%3$s or %4$s attached (see also the example below)." msgstr "" -#: includes/daterange_helptexts.php:23 +#: includes/daterange_helptexts.php:30 msgid "number of years" msgstr "liczba lat" -#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30 -#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44 +#: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39 +#: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57 #, php-format msgid "Additionally the following values are available: %1$s" msgstr "" -#: includes/daterange_helptexts.php:27 +#: includes/daterange_helptexts.php:36 msgid "Relative Month" msgstr "" -#: includes/daterange_helptexts.php:28 +#: includes/daterange_helptexts.php:37 msgid "A relative month" msgstr "" -#: includes/daterange_helptexts.php:29 +#: includes/daterange_helptexts.php:38 msgid "number of months" msgstr "liczba miesięcy" -#: includes/daterange_helptexts.php:33 +#: includes/daterange_helptexts.php:44 msgid "Relative Week" msgstr "" -#: includes/daterange_helptexts.php:34 +#: includes/daterange_helptexts.php:45 msgid "A relative week" msgstr "" -#: includes/daterange_helptexts.php:35 +#: includes/daterange_helptexts.php:46 msgid "number of weeks" msgstr "liczba tygodni" -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:47 msgid "the resulting week" msgstr "" -#: includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:48 #, php-format msgid "" "The first day of the week is depending on the option %1$s which can be found" " and changed in %2$s." msgstr "" -#: includes/daterange_helptexts.php:41 +#: includes/daterange_helptexts.php:54 msgid "Relative Day" msgstr "" -#: includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:55 msgid "A relative day" msgstr "" -#: includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:56 msgid "number of days" msgstr "liczba dni" -#: includes/daterange_helptexts.php:49 +#: includes/daterange_helptexts.php:64 msgid "Date range" msgstr "Zakres dat" -#: includes/daterange_helptexts.php:50 +#: includes/daterange_helptexts.php:66 msgid "" "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n" "\t For the start and end date any available date format can be used." msgstr "" -#: includes/daterange_helptexts.php:55 +#: includes/daterange_helptexts.php:75 msgid "This value defines a range without any limits." msgstr "" -#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61 -#: includes/daterange_helptexts.php:66 +#: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83 +#: includes/daterange_helptexts.php:90 #, php-format msgid "The corresponding date_range format is: %1$s" msgstr "" -#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 +#: includes/daterange_helptexts.php:81 includes/filterbar.php:310 msgid "Upcoming" msgstr "Nadchodzące" -#: includes/daterange_helptexts.php:60 +#: includes/daterange_helptexts.php:82 msgid "This value defines a range from the actual day to the future." msgstr "" -#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 +#: includes/daterange_helptexts.php:88 includes/filterbar.php:318 msgid "Past" msgstr "Przeszłe" -#: includes/daterange_helptexts.php:65 +#: includes/daterange_helptexts.php:89 msgid "This value defines a range from the past to the previous day." msgstr "" -#: includes/event.php:107 +#: includes/event.php:124 msgid "No valid start date provided" msgstr "" -#: includes/events_post_type.php:60 +#: includes/event.php:299 includes/event.php:301 +#: includes/sc_event-list.php:298 +msgid "read more" +msgstr "" + +#: includes/events_post_type.php:69 msgid "Events" msgstr "Wydarzenia" -#: includes/events_post_type.php:61 +#: includes/events_post_type.php:70 msgid "Event" msgstr "" -#: includes/events_post_type.php:62 +#: includes/events_post_type.php:71 msgid "Add New" msgstr "Dodaj nowe" -#: includes/events_post_type.php:63 +#: includes/events_post_type.php:72 msgid "Add New Event" msgstr "Dodaj wydarzenie" -#: includes/events_post_type.php:64 +#: includes/events_post_type.php:73 msgid "Edit Event" msgstr "Edytuj wydarzenie" -#: includes/events_post_type.php:65 +#: includes/events_post_type.php:74 msgid "New Event" msgstr "" -#: includes/events_post_type.php:66 +#: includes/events_post_type.php:75 msgid "View Event" msgstr "" -#: includes/events_post_type.php:67 +#: includes/events_post_type.php:76 msgid "View Events" msgstr "" -#: includes/events_post_type.php:68 +#: includes/events_post_type.php:77 msgid "Search Events" msgstr "" -#: includes/events_post_type.php:70 +#: includes/events_post_type.php:79 msgid "No events found in Trash" msgstr "" -#: includes/events_post_type.php:72 +#: includes/events_post_type.php:81 msgid "All Events" msgstr "Wszystkie wydarzenia" -#: includes/events_post_type.php:73 +#: includes/events_post_type.php:82 msgid "Event Archives" msgstr "" -#: includes/events_post_type.php:74 +#: includes/events_post_type.php:83 msgid "Event Attributes" msgstr "" -#: includes/events_post_type.php:75 +#: includes/events_post_type.php:84 msgid "Insert into event" msgstr "" -#: includes/events_post_type.php:76 +#: includes/events_post_type.php:85 msgid "Uploaded to this event" msgstr "" -#: includes/events_post_type.php:77 +#: includes/events_post_type.php:86 msgid "Event List" msgstr "Lista wydarzeń" -#: includes/events_post_type.php:78 +#: includes/events_post_type.php:87 msgid "Filter events list" msgstr "" -#: includes/events_post_type.php:79 +#: includes/events_post_type.php:88 msgid "Events list navigation" msgstr "" -#: includes/events_post_type.php:80 +#: includes/events_post_type.php:89 msgid "Events list" msgstr "" -#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +#: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90 msgid "Reset" msgstr "" -#: includes/filterbar.php:278 +#: includes/filterbar.php:296 msgid "All" msgstr "Wszystkie" -#: includes/filterbar.php:281 +#: includes/filterbar.php:298 msgid "All Dates" msgstr "" -#: includes/options_helptexts.php:10 +#: includes/options_helptexts.php:11 msgid "CSV File to import" msgstr "Plik CSV do zaimportowania" -#: includes/options_helptexts.php:12 +#: includes/options_helptexts.php:13 msgid "Please select the file which contains the event data in CSV format." msgstr "Wybierz plik, który zawiera dane wydarzeń w formacie CSV." -#: includes/options_helptexts.php:15 +#: includes/options_helptexts.php:18 msgid "Used date format" msgstr "Użyty format daty" -#: includes/options_helptexts.php:17 +#: includes/options_helptexts.php:21 msgid "" "With this option the given date format for event start and end date in the " "CSV file can be specified." msgstr "" -#: includes/options_helptexts.php:18 +#: includes/options_helptexts.php:23 #, php-format msgid "" "You can use the php date format options given in %1$s, the most important " "ones are:" msgstr "" -#: includes/options_helptexts.php:20 +#: includes/options_helptexts.php:26 msgid "full year representation, with 4 digits" msgstr "" -#: includes/options_helptexts.php:21 +#: includes/options_helptexts.php:27 msgid "numeric representation of a month, with leading zeros" msgstr "" -#: includes/options_helptexts.php:22 +#: includes/options_helptexts.php:28 msgid "day of the month, 2 digits with leading zeros" msgstr "" -#: includes/options_helptexts.php:24 +#: includes/options_helptexts.php:30 msgid "" "If the date format in the CSV file does not correspond to the given format, " "the import script tries to recognize the date format by itself." msgstr "" -#: includes/options_helptexts.php:25 +#: includes/options_helptexts.php:31 msgid "" "But this can cause problems or result in wrong dates, so it is recommended " "to specify the correct date format here." msgstr "" -#: includes/options_helptexts.php:26 +#: includes/options_helptexts.php:32 msgid "Examples" msgstr "" -#: includes/options_helptexts.php:33 +#: includes/options_helptexts.php:41 msgid "Text for no events" msgstr "Tekst jeśli brak wydarzeń" -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:43 msgid "" "This option defines the displayed text when no events are available for the " "selected view." msgstr "Ta opcja określa tekst, jaki ma być wyświetlany, gdy nie ma żadnych wydarzeń w danym widoku." -#: includes/options_helptexts.php:38 +#: includes/options_helptexts.php:48 msgid "Multiday filter range" msgstr "Zakresy filtrów terminów wielodniowych" -#: includes/options_helptexts.php:39 +#: includes/options_helptexts.php:49 msgid "Use the complete event range in the date filter" msgstr "Użyj całego czasu trwania wydarzenia w filtrach terminów" -#: includes/options_helptexts.php:40 +#: includes/options_helptexts.php:51 msgid "" "This option defines if the complete range of a multiday event shall be " "considered in the date filter." msgstr "Ta opcja określa, czy w filtrze daty zostanie uwzględniony pełny zakres czasu trwania wydarzenia wielodniowego." -#: includes/options_helptexts.php:41 +#: includes/options_helptexts.php:52 msgid "" "If disabled, only the start day of an event is considered in the filter." msgstr "Wyłącz, jeśli w filtrze ma być uwzględniany tylko dzień rozpoczęcia wydarzenia." -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:53 msgid "" "For an example multiday event which started yesterday and ends tomorrow this" " means, that it is displayed in umcoming dates when this option is enabled, " "but it is hidden when the option is disabled." msgstr "W przypadku przykładowego wydarzenia trwającego kilka dni, który rozpoczął się wczoraj i kończy się jutro oznacza to, że wydarzenie jest wyświetlany w liście nadchodzących wydarzeń, gdy ta opcja jest włączona, a jest ukryte, gdy opcja jest wyłączona." -#: includes/options_helptexts.php:45 +#: includes/options_helptexts.php:58 msgid "Date display" msgstr "Wyświetlanie terminu" -#: includes/options_helptexts.php:46 +#: includes/options_helptexts.php:59 msgid "Show the date only once per day" msgstr "Wyświetlaj jedną datę na dzień" -#: includes/options_helptexts.php:47 +#: includes/options_helptexts.php:61 msgid "" "With this option enabled the date is only displayed once per day if more " "than one event is available on the same day." msgstr "Po włączeniu tej opcji ikonka daty jest wyświetlana tylko raz, jeśli więcej niż jedno wydarzenie jest dostępne w tym samym dniu." -#: includes/options_helptexts.php:48 +#: includes/options_helptexts.php:62 msgid "" "If enabled, the events are ordered in a different way (end date before start" " time) to allow using the same date for as much events as possible." msgstr "Jeśli opcja jest włączona, wydarzenia są układane w inny sposób (data zakończenia przed godziną rozpoczęcia), aby umożliwić użycie tej samej daty dla wszystkich wydarzeń." -#: includes/options_helptexts.php:51 +#: includes/options_helptexts.php:67 msgid "HTML tags" msgstr "Znaczniki HTML" -#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:75 #, php-format msgid "Allow HTML tags in the event field \"%1$s\"" msgstr "Zezwalaj na znaczniki HTML w polu wydarzenia \"%1$s\"" -#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 +#: includes/options_helptexts.php:69 includes/options_helptexts.php:76 #, php-format msgid "" "This option specifies if HTML tags are allowed in the event field \"%1$s\"." msgstr "Ta opcja określa czy jest dozwolone wprowadzanie znaczników HTML w polu \"%1$s\"." -#: includes/options_helptexts.php:61 +#: includes/options_helptexts.php:81 msgid "Preferred language file" msgstr "Preferowany plik językowy" -#: includes/options_helptexts.php:62 +#: includes/options_helptexts.php:82 msgid "Load translations from general language directory first" msgstr "Ładuj tłumaczenia najpierw z domyślnego folderu językowego" -#: includes/options_helptexts.php:63 +#: includes/options_helptexts.php:84 #, php-format msgid "" "The default is to load the %1$s translation file from the plugin language " "directory first (%2$s)." msgstr "Domyślnie wersje językowe są ładowane z pliku tłumaczenia%1$s znajdującego się w folderze języków wtyczki (%2$s)." -#: includes/options_helptexts.php:64 +#: includes/options_helptexts.php:85 #, php-format msgid "" "If you want to load your own language file from the general language " @@ -1127,295 +1132,312 @@ msgid "" "language directory, you have to enable this option." msgstr "Jeśli chcesz załadować własny plik językowy znajdujący się w folderze ogólnym języka %1$s dla języka, który już zawarty jest w folderze języków wtyczki, musisz włączyć tę opcję." -#: includes/options_helptexts.php:68 +#: includes/options_helptexts.php:91 msgid "Events permalink slug" msgstr "" -#: includes/options_helptexts.php:69 +#: includes/options_helptexts.php:92 msgid "" "With this option the slug for the events permalink URLs can be defined." msgstr "" -#: includes/options_helptexts.php:72 +#: includes/options_helptexts.php:97 msgid "Text for \"Show content\"" msgstr "" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:98 msgid "" "With this option the displayed text for the link to show the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:76 +#: includes/options_helptexts.php:103 msgid "Text for \"Hide content\"" msgstr "" -#: includes/options_helptexts.php:77 +#: includes/options_helptexts.php:104 msgid "" "With this option the displayed text for the link to hide the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:109 msgid "Disable CSS file" msgstr "Wyłącz plik CSS" -#: includes/options_helptexts.php:81 +#: includes/options_helptexts.php:110 #, php-format msgid "Disable the %1$s file." msgstr "Wyłącz plik %1$s." -#: includes/options_helptexts.php:82 +#: includes/options_helptexts.php:112 #, php-format msgid "With this option you can disable the inclusion of the %1$s file." msgstr "Ta opcja pozwala na usunięcie łącza do pliku %1$s z nagłówka strony HTML." -#: includes/options_helptexts.php:83 +#: includes/options_helptexts.php:113 msgid "" "This normally only make sense if you have css conflicts with your theme and " "want to set all required css styles somewhere else (e.g. in the theme css)." msgstr "Zwykle ma to sens jeśli występują konflikty z motywami i chcesz ustawić wszystkie wymagane style CSS w innym miejscu (np. w motywie CSS)." -#: includes/options_helptexts.php:87 +#: includes/options_helptexts.php:119 msgid "Date format in edit form" msgstr "Format daty w formularzu edycji" -#: includes/options_helptexts.php:88 +#: includes/options_helptexts.php:121 msgid "" "This option sets the displayed date format for the event date fields in the " "event new / edit form." msgstr "" -#: includes/options_helptexts.php:89 +#: includes/options_helptexts.php:122 msgid "The default is an empty string to use the Wordpress standard setting." msgstr "" -#: includes/options_helptexts.php:90 +#: includes/options_helptexts.php:123 #, php-format msgid "" "All available options to specify the date format can be found %1$shere%2$s." msgstr "" -#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 +#: includes/options_helptexts.php:129 msgid "Enable RSS feed" msgstr "Włącz kanał RSS" -#: includes/options_helptexts.php:95 -msgid "Enable support for an event RSS feed" +#: includes/options_helptexts.php:130 +msgid "Enable support for the event RSS feed" msgstr "" -#: includes/options_helptexts.php:96 -msgid "This option activates a RSS feed for the events." +#: includes/options_helptexts.php:132 +msgid "" +"This option activates the RSS feed for the events and adds a feed link in " +"the html head." msgstr "" -#: includes/options_helptexts.php:97 +#: includes/options_helptexts.php:133 msgid "" "You have to enable this option if you want to use one of the RSS feed " "features." msgstr "" -#: includes/options_helptexts.php:100 -msgid "Feed name" -msgstr "Nazwa kanału" - -#: includes/options_helptexts.php:101 -#, php-format -msgid "This option sets the feed name. The default value is %1$s." +#: includes/options_helptexts.php:138 +msgid "Enable iCal feed" msgstr "" -#: includes/options_helptexts.php:102 -#, php-format -msgid "" -"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " -"enabled)." +#: includes/options_helptexts.php:139 +msgid "Enable support for the event iCal feed" msgstr "" -#: includes/options_helptexts.php:105 -msgid "Feed Description" -msgstr "Opis kanału" - -#: includes/options_helptexts.php:106 -#, php-format -msgid "This options set the feed description. The default value is %1$s." +#: includes/options_helptexts.php:141 +msgid "This option activates the iCal feed for events." msgstr "" -#: includes/options_helptexts.php:107 +#: includes/options_helptexts.php:142 msgid "" -"This description will be used in the title for the feed link in the html " -"head and for the description in the feed itself." +"You have to enable this option if you want to use one of the iCal features." msgstr "" -#: includes/options_helptexts.php:110 -msgid "Listed events" +#: includes/options_helptexts.php:147 +msgid "Position of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:111 -msgid "Only show upcoming events in feed" -msgstr "" +#: includes/options_helptexts.php:149 +msgid "at the top (above the navigation bar)" +msgstr "na górze (ponad panelem nawigacyjnym)" -#: includes/options_helptexts.php:112 +#: includes/options_helptexts.php:150 +msgid "between navigation bar and events" +msgstr "pomiędzy panelem nawigacyjnym a wydarzeniami" + +#: includes/options_helptexts.php:151 +msgid "at the bottom" +msgstr "na dole" + +#: includes/options_helptexts.php:153 msgid "" -"If this option is enabled only the upcoming events are listed in the feed." +"This option specifies the position of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:113 -msgid "If disabled all events (upcoming and past) will be listed." +#: includes/options_helptexts.php:158 +msgid "Align of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:116 -msgid "Add RSS feed link in head" -msgstr "Dodaj łącze kanału RSS w nagłówku" +#: includes/options_helptexts.php:160 +msgid "left" +msgstr "do lewej" -#: includes/options_helptexts.php:117 -msgid "Add RSS feed link in the html head" -msgstr "Dodaje łącze kanału RSS w nagłówku HTML" +#: includes/options_helptexts.php:161 +msgid "center" +msgstr "do środka" -#: includes/options_helptexts.php:118 -msgid "This option adds a RSS feed in the html head for the events." +#: includes/options_helptexts.php:162 +msgid "right" +msgstr "do prawej" + +#: includes/options_helptexts.php:164 +msgid "" +"This option specifies the align of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:119 -msgid "There are 2 alternatives to include the RSS feed" +#: includes/options_helptexts.php:169 +msgid "RSS feed name" msgstr "" -#: includes/options_helptexts.php:120 -msgid "" -"The first way is this option to include a link in the html head. This link " -"will be recognized by browers or feed readers." +#: includes/options_helptexts.php:171 +#, php-format +msgid "This option sets the RSS feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:121 +#: includes/options_helptexts.php:172 #, php-format msgid "" -"The second way is to include a visible feed link directly in the event list." -" This can be done by setting the shortcode attribute %1$s to %2$s." +"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " +"enabled)." msgstr "" -#: includes/options_helptexts.php:122 -#, php-format -msgid "This option is only valid if the setting %1$s is enabled." +#: includes/options_helptexts.php:177 +msgid "RSS feed Description" msgstr "" -#: includes/options_helptexts.php:125 -msgid "Position of the RSS feed link" +#: includes/options_helptexts.php:179 +#, php-format +msgid "This options set the RSS feed description. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the top (above the navigation bar)" -msgstr "na górze (ponad panelem nawigacyjnym)" +#: includes/options_helptexts.php:180 +msgid "" +"This description will be used in the title for the feed link in the html " +"head and for the description in the feed itself." +msgstr "" -#: includes/options_helptexts.php:126 -msgid "between navigation bar and events" -msgstr "pomiędzy panelem nawigacyjnym a wydarzeniami" +#: includes/options_helptexts.php:185 +msgid "RSS feed events" +msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the bottom" -msgstr "na dole" +#: includes/options_helptexts.php:186 +msgid "Only show upcoming events in the RSS feed" +msgstr "" -#: includes/options_helptexts.php:127 +#: includes/options_helptexts.php:188 msgid "" -"This option specifies the position of the RSS feed link in the event list." +"If this option is enabled only the upcoming events are listed in the RSS " +"feed." +msgstr "" + +#: includes/options_helptexts.php:189 includes/options_helptexts.php:215 +msgid "If disabled, all events (upcoming and past) will be listed." +msgstr "" + +#: includes/options_helptexts.php:194 +msgid "RSS link text" msgstr "" -#: includes/options_helptexts.php:128 includes/options_helptexts.php:134 -#: includes/options_helptexts.php:140 includes/options_helptexts.php:146 +#: includes/options_helptexts.php:196 +msgid "This option sets the caption of the RSS feed link in the event list." +msgstr "" + +#: includes/options_helptexts.php:197 +msgid "Use an empty text to only show the rss image." +msgstr "" + +#: includes/options_helptexts.php:198 #, php-format msgid "" "You have to set the shortcode attribute %1$s to %2$s if you want to show the" -" feed link." +" RSS feed link." msgstr "" -#: includes/options_helptexts.php:131 -msgid "Align of the RSS feed link" +#: includes/options_helptexts.php:203 +msgid "iCal feed name" msgstr "" -#: includes/options_helptexts.php:132 -msgid "left" -msgstr "do lewej" - -#: includes/options_helptexts.php:132 -msgid "center" -msgstr "do środka" - -#: includes/options_helptexts.php:132 -msgid "right" -msgstr "do prawej" +#: includes/options_helptexts.php:205 +#, php-format +msgid "This option sets the iCal feed name. The default value is %1$s." +msgstr "" -#: includes/options_helptexts.php:133 +#: includes/options_helptexts.php:206 +#, php-format msgid "" -"This option specifies the align of the RSS feed link in the event list." +"This name will be used in the iCal feed url (e.g. %1$s, or %2$s with " +"permalinks enabled)." msgstr "" -#: includes/options_helptexts.php:137 -msgid "Feed link text" +#: includes/options_helptexts.php:211 +msgid "iCal feed events" msgstr "" -#: includes/options_helptexts.php:138 -msgid "" -"This option specifies the caption of the RSS feed link in the event list." +#: includes/options_helptexts.php:212 +msgid "Only show upcoming events in the iCal feed" msgstr "" -#: includes/options_helptexts.php:139 +#: includes/options_helptexts.php:214 msgid "" -"Insert an empty text to hide any text if you only want to show the rss " -"image." +"If this option is enabled only the upcoming events are listed in the iCal " +"file." msgstr "" -#: includes/options_helptexts.php:143 -msgid "Feed link image" -msgstr "Obraz łącza kanału" +#: includes/options_helptexts.php:220 +msgid "iCal link text" +msgstr "" -#: includes/options_helptexts.php:144 -msgid "Show rss image in feed link" -msgstr "Wyświetlaj braz łącza kanału RSS" +#: includes/options_helptexts.php:222 +msgid "This option sets the iCal link text in the event list." +msgstr "" -#: includes/options_helptexts.php:145 +#: includes/options_helptexts.php:223 +msgid "Use an empty text to only show the iCal image." +msgstr "" + +#: includes/options_helptexts.php:224 +#, php-format msgid "" -"This option specifies if the an image should be dispayed in the feed link in" -" front of the text." -msgstr "Ta opcja określa, czy obraz powinien być wyświetlany w łączu kanału RSS przed tekstem." +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" iCal feed link." +msgstr "" -#: includes/options_helptexts.php:151 +#: includes/options_helptexts.php:231 msgid "Event Category handling" msgstr "" -#: includes/options_helptexts.php:152 +#: includes/options_helptexts.php:232 msgid "Use Post Categories" msgstr "" -#: includes/options_helptexts.php:153 +#: includes/options_helptexts.php:234 msgid "" "Do not maintain seperate categories for the events, and use the existing " "post categories instead." msgstr "" -#: includes/options_helptexts.php:154 +#: includes/options_helptexts.php:235 msgid "Attention" msgstr "Uwaga" -#: includes/options_helptexts.php:155 +#: includes/options_helptexts.php:236 msgid "" "This option cannot be changed directly, but you can go to the Event Category" " switching page from here." msgstr "" -#: includes/options.php:40 +#: includes/options.php:73 msgid "events" msgstr "" -#: includes/options.php:41 +#: includes/options.php:77 msgid "Show content" msgstr "" -#: includes/options.php:42 +#: includes/options.php:81 msgid "Hide content" msgstr "" -#: includes/sc_event-list_helptexts.php:7 +#: includes/sc_event-list_helptexts.php:8 msgid "event-id" msgstr "event-id" -#: includes/sc_event-list_helptexts.php:8 +#: includes/sc_event-list_helptexts.php:9 #, php-format msgid "" "By default the event-list is displayed initially. But if an event-id (e.g. " @@ -1423,107 +1445,107 @@ msgid "" "this event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:10 -#: includes/sc_event-list_helptexts.php:22 +#: includes/sc_event-list_helptexts.php:13 +#: includes/sc_event-list_helptexts.php:31 msgid "year" msgstr "rok" -#: includes/sc_event-list_helptexts.php:11 +#: includes/sc_event-list_helptexts.php:14 msgid "" "This attribute defines which events are initially shown. The default is to " "show the upcoming events only." msgstr "" -#: includes/sc_event-list_helptexts.php:12 +#: includes/sc_event-list_helptexts.php:15 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:14 +#: includes/sc_event-list_helptexts.php:19 msgid "category slug" msgstr "uproszczona nazwa kategorii" -#: includes/sc_event-list_helptexts.php:15 +#: includes/sc_event-list_helptexts.php:20 msgid "" "This attribute defines the category of which events are initially shown. The" " default is to show events of all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:16 +#: includes/sc_event-list_helptexts.php:21 msgid "" "Provide a category slug to change this behavior. It is still possible to " "change the displayed categories via the filterbar or url parameters." msgstr "" -#: includes/sc_event-list_helptexts.php:19 +#: includes/sc_event-list_helptexts.php:26 msgid "This attribute defines the initial order of the events." msgstr "" -#: includes/sc_event-list_helptexts.php:20 +#: includes/sc_event-list_helptexts.php:27 msgid "" "With %1$S (default value) the events are sorted from old to new, with %2$s " "in the opposite direction (from new to old)." msgstr "" -#: includes/sc_event-list_helptexts.php:23 +#: includes/sc_event-list_helptexts.php:32 #, php-format msgid "" "This attribute defines the dates and date ranges of which events are " "displayed. The default is %1$s to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:24 +#: includes/sc_event-list_helptexts.php:33 #, php-format msgid "" "Filtered events according to %1$s value are not available in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:25 +#: includes/sc_event-list_helptexts.php:34 #, php-format msgid "" "You can find all available values with a description and examples in the " "sections %1$s and %2$s below." msgstr "" -#: includes/sc_event-list_helptexts.php:26 +#: includes/sc_event-list_helptexts.php:35 #, php-format msgid "See %1$s description if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:28 +#: includes/sc_event-list_helptexts.php:39 msgid "category slugs" msgstr "uproszczone nazwy kategorii" -#: includes/sc_event-list_helptexts.php:29 +#: includes/sc_event-list_helptexts.php:40 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:30 +#: includes/sc_event-list_helptexts.php:41 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:31 +#: includes/sc_event-list_helptexts.php:42 #, php-format msgid "" "The filter is specified via the given category slugs. See %1$s description " "if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:33 -#: includes/sc_event-list_helptexts.php:74 -#: includes/sc_event-list_helptexts.php:89 -#: includes/sc_event-list_helptexts.php:104 +#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:111 +#: includes/sc_event-list_helptexts.php:138 +#: includes/sc_event-list_helptexts.php:177 msgid "number" msgstr "liczba" -#: includes/sc_event-list_helptexts.php:34 +#: includes/sc_event-list_helptexts.php:47 #, php-format msgid "" "This attribute defines how many events should be displayed if upcoming " @@ -1531,109 +1553,109 @@ msgid "" "displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:48 msgid "" "Please not that in the actual version there is no pagination of the events " "available, so the event list can be very long." msgstr "" -#: includes/sc_event-list_helptexts.php:38 +#: includes/sc_event-list_helptexts.php:53 msgid "" "This attribute defines if the filterbar should be displayed. The filterbar " "allows the users to specify filters for the listed events." msgstr "" -#: includes/sc_event-list_helptexts.php:39 +#: includes/sc_event-list_helptexts.php:54 #, php-format msgid "Choose %1$s to always hide and %2$s to always show the filterbar." msgstr "" -#: includes/sc_event-list_helptexts.php:40 +#: includes/sc_event-list_helptexts.php:55 #, php-format msgid "" "With %1$s the filterbar is only visible in the event list and with %2$s only" " in the single event view." msgstr "" -#: includes/sc_event-list_helptexts.php:43 +#: includes/sc_event-list_helptexts.php:60 #, php-format msgid "" "This attribute specifies the available items in the filterbar. This options " "are only valid if the filterbar is displayed (see %1$s attribute)." msgstr "" -#: includes/sc_event-list_helptexts.php:44 +#: includes/sc_event-list_helptexts.php:61 msgid "" "Find below an overview of the available filterbar items and their options:" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "filterbar item" msgstr "" -#: includes/sc_event-list_helptexts.php:46 -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:96 msgid "description" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "item options" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option values" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "default value" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option description" msgstr "" -#: includes/sc_event-list_helptexts.php:47 +#: includes/sc_event-list_helptexts.php:67 msgid "" "Show a list of all available years. Additional there are some special " "entries available (see item options)." msgstr "" -#: includes/sc_event-list_helptexts.php:48 -#: includes/sc_event-list_helptexts.php:53 +#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:82 msgid "Add an entry to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:49 -#: includes/sc_event-list_helptexts.php:54 +#: includes/sc_event-list_helptexts.php:73 +#: includes/sc_event-list_helptexts.php:84 msgid "Add an entry to show all upcoming events." msgstr "" -#: includes/sc_event-list_helptexts.php:50 -#: includes/sc_event-list_helptexts.php:55 +#: includes/sc_event-list_helptexts.php:74 +#: includes/sc_event-list_helptexts.php:85 msgid "Add an entry to show events in the past." msgstr "" -#: includes/sc_event-list_helptexts.php:51 +#: includes/sc_event-list_helptexts.php:75 msgid "Set descending or ascending order of year entries." msgstr "" -#: includes/sc_event-list_helptexts.php:52 +#: includes/sc_event-list_helptexts.php:78 msgid "Show a list of all available months." msgstr "" -#: includes/sc_event-list_helptexts.php:56 +#: includes/sc_event-list_helptexts.php:86 msgid "Set descending or ascending order of month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "php date-formats" msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "Set the displayed date format of the month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "With this item you can display the special entries %1$s, %2$s and %3$s. You " @@ -1641,65 +1663,65 @@ msgid "" "order." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "Specifies the displayed values and their order. The items must be seperated " "by %1$s." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Show a list of all available categories." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Add an entry to show events from all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "A link to reset the eventlist filter to standard." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "any text" msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "Set the caption of the link." msgstr "" -#: includes/sc_event-list_helptexts.php:61 +#: includes/sc_event-list_helptexts.php:93 msgid "Find below an overview of the available filterbar display options:" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "display option" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "available for" msgstr "" -#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:97 #, php-format msgid "Shows a horizonal list seperated by %1$s with a link to each item." msgstr "" -#: includes/sc_event-list_helptexts.php:65 +#: includes/sc_event-list_helptexts.php:98 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:66 +#: includes/sc_event-list_helptexts.php:99 msgid "Shows a simple link which can be clicked." msgstr "" -#: includes/sc_event-list_helptexts.php:67 +#: includes/sc_event-list_helptexts.php:102 msgid "Find below some declaration examples with descriptions:" msgstr "" -#: includes/sc_event-list_helptexts.php:69 +#: includes/sc_event-list_helptexts.php:104 #, php-format msgid "" "In this example you can see that the filterbar item and the used display " @@ -1707,22 +1729,22 @@ msgid "" "items seperated by a comma %2$s. These items will be displayed left-aligned." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "option_name" msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "value" msgstr "" -#: includes/sc_event-list_helptexts.php:72 +#: includes/sc_event-list_helptexts.php:107 #, php-format msgid "" "The 2 semicolon %1$s devides the bar in 3 section. The first section will be" @@ -1731,75 +1753,84 @@ msgid "" "left-aligned and the reset link will be on the right side." msgstr "" -#: includes/sc_event-list_helptexts.php:75 -#: includes/sc_event-list_helptexts.php:90 +#: includes/sc_event-list_helptexts.php:112 +#: includes/sc_event-list_helptexts.php:139 msgid "" "This attribute specifies if the title should be truncated to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:76 -#: includes/sc_event-list_helptexts.php:91 +#: includes/sc_event-list_helptexts.php:113 +#: includes/sc_event-list_helptexts.php:140 #, php-format msgid "" "With the standard value %1$s the full text is displayed, with %2$s the text " "is automatically truncated via css." msgstr "" -#: includes/sc_event-list_helptexts.php:77 -#: includes/sc_event-list_helptexts.php:92 -#: includes/sc_event-list_helptexts.php:107 +#: includes/sc_event-list_helptexts.php:114 +#: includes/sc_event-list_helptexts.php:141 +#: includes/sc_event-list_helptexts.php:180 msgid "This attribute has no influence if only a single event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:80 +#: includes/sc_event-list_helptexts.php:120 msgid "" "This attribute specifies if the starttime is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n" "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:85 +#: includes/sc_event-list_helptexts.php:130 msgid "" "This attribute specifies if the location is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n" "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:95 +#: includes/sc_event-list_helptexts.php:147 msgid "" "This attribute specifies if the categories are displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n" "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:100 +#: includes/sc_event-list_helptexts.php:157 msgid "" "This attribute specifies if the content is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n" "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:105 +#: includes/sc_event-list_helptexts.php:167 +msgid "" +"This attribute specifies if the excerpt is displayed in the event list.<br />\n" +"\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n" +"\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" +"\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" +"\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)." +msgstr "" + +#: includes/sc_event-list_helptexts.php:178 msgid "" "This attribute specifies if the content should be truncate to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:106 +#: includes/sc_event-list_helptexts.php:179 #, php-format msgid "With the standard value %1$s the full text is displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:110 +#: includes/sc_event-list_helptexts.php:186 msgid "" -"This attribute specifies if the content should be collapsed initially.<br />\n" +"This attribute specifies if the content or excerpt should be collapsed initially.<br />\n" "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n" "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n" "\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." msgstr "" -#: includes/sc_event-list_helptexts.php:116 +#: includes/sc_event-list_helptexts.php:197 msgid "" "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n" "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n" @@ -1807,7 +1838,7 @@ msgid "" "\t With \"events_with_content_only\" the link is only added in the event list for events with event content." msgstr "" -#: includes/sc_event-list_helptexts.php:122 +#: includes/sc_event-list_helptexts.php:208 msgid "" "This attribute specifies if a rss feed link should be added.<br />\n" "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n" @@ -1816,32 +1847,52 @@ msgid "" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:128 +#: includes/sc_event-list_helptexts.php:220 +msgid "" +"This attribute specifies if a ical feed link should be added.<br />\n" +"\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n" +"\t On that page you can also find some settings to modify the output.<br />\n" +"\t Choose \"false\" to never add and \"true\" to always add the link.<br />" +msgstr "" + +#: includes/sc_event-list_helptexts.php:231 msgid "" "This attribute specifies the page or post url for event links.<br />\n" "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n" "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget." msgstr "" -#: includes/sc_event-list_helptexts.php:135 +#: includes/sc_event-list_helptexts.php:243 msgid "" "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n" "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget." msgstr "" -#: includes/sc_event-list.php:135 +#: includes/sc_event-list.php:154 +msgid "Sorry, the requested event is not available!" +msgstr "" + +#: includes/sc_event-list.php:163 msgid "Event Information:" msgstr "Informacje o wydarzeniu:" -#: includes/widget_helptexts.php:10 +#: includes/sc_event-list.php:405 +msgid "Link to RSS feed" +msgstr "" + +#: includes/sc_event-list.php:414 +msgid "Link to iCal feed" +msgstr "" + +#: includes/widget_helptexts.php:11 msgid "This option defines the displayed title for the widget." msgstr "Ta opcja definiuje wyświetlany tytuł widgetu." -#: includes/widget_helptexts.php:15 +#: includes/widget_helptexts.php:18 msgid "Category Filter" msgstr "Filtr kategorii" -#: includes/widget_helptexts.php:17 +#: includes/widget_helptexts.php:20 msgid "" "This option defines the categories of which events are shown. The standard " "is all or an empty string to show all events. Specify a category slug or a " @@ -1850,137 +1901,145 @@ msgid "" "all possibilities." msgstr "" -#: includes/widget_helptexts.php:22 +#: includes/widget_helptexts.php:27 msgid "Number of listed events" msgstr "" -#: includes/widget_helptexts.php:24 +#: includes/widget_helptexts.php:29 msgid "The number of upcoming events to display" msgstr "Liczba wyświetlanych wydarzeń" -#: includes/widget_helptexts.php:29 +#: includes/widget_helptexts.php:36 msgid "Truncate event title to" msgstr "Obetnij tytuł wydarzenia do" -#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52 -#: includes/widget_helptexts.php:67 +#: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65 +#: includes/widget_helptexts.php:93 msgid "characters" msgstr "znaków" -#: includes/widget_helptexts.php:31 +#: includes/widget_helptexts.php:38 msgid "" "This option defines the number of displayed characters for the event title." msgstr "" -#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54 +#: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67 #, php-format msgid "" "Set this value to %1$s to view the full text, or set it to %2$s to " "automatically truncate the text via css." msgstr "" -#: includes/widget_helptexts.php:37 +#: includes/widget_helptexts.php:46 msgid "Show event starttime" msgstr "Wyświetl czas rozpoczęcia wydarzenia" -#: includes/widget_helptexts.php:39 +#: includes/widget_helptexts.php:48 msgid "This option defines if the event start time will be displayed." msgstr "" -#: includes/widget_helptexts.php:44 +#: includes/widget_helptexts.php:55 msgid "Show event location" msgstr "Wyświetlaj miejsce wydarzenia" -#: includes/widget_helptexts.php:46 +#: includes/widget_helptexts.php:57 msgid "This option defines if the event location will be displayed." msgstr "" -#: includes/widget_helptexts.php:51 +#: includes/widget_helptexts.php:64 msgid "Truncate location to" msgstr "Obetnij miejsce do" -#: includes/widget_helptexts.php:53 +#: includes/widget_helptexts.php:66 msgid "" "If the event location is diplayed this option defines the number of " "displayed characters." msgstr "" -#: includes/widget_helptexts.php:59 +#: includes/widget_helptexts.php:74 +msgid "Show event excerpt" +msgstr "" + +#: includes/widget_helptexts.php:76 +msgid "This option defines if the event excerpt will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:83 msgid "Show event content" msgstr "" -#: includes/widget_helptexts.php:61 +#: includes/widget_helptexts.php:85 msgid "This option defines if the event content will be displayed." msgstr "" -#: includes/widget_helptexts.php:66 +#: includes/widget_helptexts.php:92 msgid "Truncate content to" msgstr "" -#: includes/widget_helptexts.php:68 +#: includes/widget_helptexts.php:94 msgid "" "If the event content are diplayed this option defines the number of diplayed" " characters." msgstr "" -#: includes/widget_helptexts.php:69 +#: includes/widget_helptexts.php:95 #, php-format msgid "Set this value to %1$s to view the full text." msgstr "" -#: includes/widget_helptexts.php:74 +#: includes/widget_helptexts.php:102 msgid "URL to the linked Event List page" msgstr "Łącze do strony Lista wydarzeń" -#: includes/widget_helptexts.php:76 +#: includes/widget_helptexts.php:104 msgid "" "This option defines the url to the linked Event List page. This option is " "required if you want to use one of the options below." msgstr "Ta opcja definiuje adres url do strony Listy wydarzeń. Ta opcja jest wymagana, jeśli chcesz użyć jednej z poniższych opcji." -#: includes/widget_helptexts.php:81 +#: includes/widget_helptexts.php:111 msgid "Shortcode ID on linked page" msgstr "" -#: includes/widget_helptexts.php:83 +#: includes/widget_helptexts.php:113 msgid "" "This option defines the shortcode-id for the Event List on the linked page. " "Normally the standard value 1 is correct, you only have to change it if you " "use multiple event-list shortcodes on the linked page." msgstr "" -#: includes/widget_helptexts.php:90 +#: includes/widget_helptexts.php:122 msgid "" "With this option you can add a link to the single event page for every " "displayed event. You have to specify the url to the page and the shortcode " "id option if you want to use it." msgstr "" -#: includes/widget_helptexts.php:97 +#: includes/widget_helptexts.php:131 msgid "" "With this option you can add a link to the event-list page below the " "diplayed events. You have to specify the url to page option if you want to " "use it." msgstr "" -#: includes/widget_helptexts.php:102 +#: includes/widget_helptexts.php:138 msgid "Caption for the link" msgstr "" -#: includes/widget_helptexts.php:104 +#: includes/widget_helptexts.php:140 msgid "" "This option defines the text for the link to the Event List page if the " "approriate option is selected." msgstr "" -#: includes/widget.php:20 +#: includes/widget.php:21 msgid "With this widget a list of upcoming events can be displayed." msgstr "" -#: includes/widget.php:25 +#: includes/widget.php:26 msgid "Upcoming events" msgstr "Nadchodzące wydarzenia" -#: includes/widget.php:38 +#: includes/widget.php:40 msgid "show events page" msgstr "" diff --git a/wp-content/plugins/event-list/languages/event-list-pt_BR.mo b/wp-content/plugins/event-list/languages/event-list-pt_BR.mo index 9e8f189a6de6bdb7c1a2d605cc868c7d526292b4..00e6016d123d73bd645ca3531b6cc2e571dddad4 100644 Binary files a/wp-content/plugins/event-list/languages/event-list-pt_BR.mo and b/wp-content/plugins/event-list/languages/event-list-pt_BR.mo differ diff --git a/wp-content/plugins/event-list/languages/event-list-pt_BR.po b/wp-content/plugins/event-list/languages/event-list-pt_BR.po index 3e7a782b4acb09ea76f2c3424c218759057ceda1..17933a2405ff65d7658a9e1260ec37267e59fea7 100644 --- a/wp-content/plugins/event-list/languages/event-list-pt_BR.po +++ b/wp-content/plugins/event-list/languages/event-list-pt_BR.po @@ -1,5 +1,5 @@ # Translation file for the 'Event List' WordPress plugin -# Copyright (C) 2018 by mibuthu +# Copyright (C) 2021 by mibuthu # This file is distributed under the same license as the corresponding wordpress plugin. # # Translators: @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: wp-event-list\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n" -"POT-Creation-Date: 2018-05-27 12:20+0200\n" -"PO-Revision-Date: 2018-05-27 10:20+0000\n" +"POT-Creation-Date: 2021-04-24 11:28+0200\n" +"PO-Revision-Date: 2021-04-24 09:26+0000\n" "Last-Translator: mibuthu\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/mibuthu/wp-event-list/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -20,117 +20,117 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Errors during upgrade of plugin %1$s" msgstr "" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Upgrade of plugin %1$s successful" msgstr "" -#: admin/admin.php:106 admin/includes/admin-settings.php:65 +#: admin/admin.php:116 admin/includes/admin-settings.php:73 msgid "Event List Settings" msgstr "Configurações da Lista de Eventos" -#: admin/admin.php:106 +#: admin/admin.php:116 msgid "Settings" msgstr "Configurações" -#: admin/admin.php:110 admin/includes/admin-about.php:37 +#: admin/admin.php:120 admin/includes/admin-about.php:43 msgid "About Event List" msgstr "Sobre o Lista de Eventos" -#: admin/admin.php:110 +#: admin/admin.php:120 msgid "About" msgstr "Sobre" -#: admin/admin.php:132 +#: admin/admin.php:144 #, php-format msgid "%s Event" msgid_plural "%s Events" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 +#: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92 msgid "General" msgstr "Geral" -#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 -#: admin/includes/admin-about.php:105 +#: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88 +#: admin/includes/admin-about.php:117 msgid "Shortcode Attributes" msgstr "Atributos de Shortcode" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:82 msgid "Help and Instructions" msgstr "Ajuda e Instruções" -#: admin/includes/admin-about.php:73 +#: admin/includes/admin-about.php:83 #, php-format msgid "You can manage the events %1$shere%2$s" msgstr "Você pode gerenciar os eventos %1$saqui%2$s" -#: admin/includes/admin-about.php:74 +#: admin/includes/admin-about.php:84 msgid "To show the events on your site you have 2 possibilities" msgstr "Existem 2 possibilidades para mostrar seus eventos em seu site" -#: admin/includes/admin-about.php:75 +#: admin/includes/admin-about.php:85 #, php-format msgid "you can place the <strong>shortcode</strong> %1$s on any page or post" msgstr "você pode colocar o <strong>shortcode</strong> %1$s em qualquer página ou post" -#: admin/includes/admin-about.php:76 +#: admin/includes/admin-about.php:86 #, php-format msgid "you can add the <strong>widget</strong> %1$s in your sidebars" msgstr "você pode adicionar o <strong>widget</strong> %1$s em suas sidebars" -#: admin/includes/admin-about.php:77 +#: admin/includes/admin-about.php:87 msgid "" "The displayed events and their style can be modified with the available " "widget settings and the available attributes for the shortcode." 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." -#: admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:88 #, php-format msgid "" "A list of all available shortcode attributes with their descriptions is " "available in the %1$s tab." msgstr "A lista de todos os atributos de Shortcode disponíveis com suas descrições está na %1$saba." -#: admin/includes/admin-about.php:79 +#: admin/includes/admin-about.php:89 msgid "The available widget options are described in their tooltip text." msgstr "As opções de widgets disponíveis são descritas em suas dicas." -#: admin/includes/admin-about.php:80 +#: admin/includes/admin-about.php:90 #, php-format msgid "" "If you enable one of the links options (%1$s or %2$s) in the widget you have" " to insert an URL to the linked event-list page." 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." -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120 msgid "Add links to the single events" msgstr "Adicionar links para os eventos individuais" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129 msgid "Add a link to the Event List page" msgstr "Adicionar um link para a Página de Lista de Eventos" -#: admin/includes/admin-about.php:81 +#: admin/includes/admin-about.php:91 msgid "" "This is required because the widget does not know in which page or post the " "shortcode was included." msgstr "Isto é necessário porque o widget não sabe em qual página ou post o shortcode foi incluído." -#: admin/includes/admin-about.php:82 +#: admin/includes/admin-about.php:92 msgid "" "Additionally you have to insert the correct Shortcode id on the linked page." " This id describes which shortcode should be used on the given page or post " "if you have more than one." 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." -#: admin/includes/admin-about.php:83 +#: admin/includes/admin-about.php:93 #, php-format msgid "" "The default value %1$s is normally o.k. (for pages with 1 shortcode only), " @@ -138,986 +138,991 @@ msgid "" "link on your linked page or post." 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." -#: admin/includes/admin-about.php:84 +#: admin/includes/admin-about.php:94 #, php-format msgid "The id is available at the end of the URL parameters (e.g. %1$s)." msgstr "O ID está disponível no final dos parâmetros da URL (ex. %1$s)." -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 #, php-format msgid "" "Be sure to also check the %1$s to get the plugin behaving just the way you " "want." msgstr "Tenha certeza de também checar o %1$s para garantir que o plugin se comporte como você deseja." -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 msgid "Settings page" msgstr "Configurações" -#: admin/includes/admin-about.php:92 +#: admin/includes/admin-about.php:103 msgid "About the plugin author" msgstr "Sobre o autor do plugin" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:105 #, php-format msgid "" "This plugin is developed by %1$s, you can find more information about the " "plugin on the %2$s." msgstr "Este plugin foi desenvolvido por %1$s, mais informações sobre o plugin poderão ser encontradas em %2$s." -#: admin/includes/admin-about.php:94 -msgid "wordpress plugin site" -msgstr "Página de plugins do wordpress" +#: admin/includes/admin-about.php:105 +msgid "WordPress plugin site" +msgstr "" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:106 #, php-format msgid "If you like the plugin please rate it on the %1$s." msgstr "Se você gostou deste plugin, favor dar uma nota no %1$s." -#: admin/includes/admin-about.php:95 -msgid "wordpress plugin review site" -msgstr "Site para review de plugin" +#: admin/includes/admin-about.php:106 +msgid "WordPress plugin review site" +msgstr "" -#: admin/includes/admin-about.php:96 +#: admin/includes/admin-about.php:107 msgid "" "If you want to support the plugin I would be happy to get a small donation" msgstr "Caso haja interesse em dar suporte ao desenvolvimento deste plugin, uma pequena doação será excelente!" -#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 -#: admin/includes/admin-about.php:99 +#: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109 +#: admin/includes/admin-about.php:110 #, php-format msgid "Donate with %1$s" msgstr "" -#: admin/includes/admin-about.php:107 +#: admin/includes/admin-about.php:119 msgid "" "You have the possibility to modify the output if you add some of the " "following attributes to the shortcode." msgstr "Você tem a possibilidade de modificar o resultado adicionando alguns dos atributos a seguir ao Shortcode." -#: admin/includes/admin-about.php:108 +#: admin/includes/admin-about.php:120 #, php-format msgid "" "You can combine and add as much attributes as you want. E.g. the shortcode " "including the attributes %1$s and %2$s would looks like this:" msgstr "Você pode combinar e adicionar quantos atributos desejar. Ex.: O shortcode que inclui oa atributos %1$s e %2$s ficará assim:" -#: admin/includes/admin-about.php:110 +#: admin/includes/admin-about.php:122 msgid "" "Below you can find a list of all supported attributes with their " "descriptions and available options:" msgstr "Abaixo encontra-se uma lista de todos os atributos suportados com suas descrições e opções disponíveis:" -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:137 msgid "Attribute name" msgstr "Nome do atributo" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:138 msgid "Value options" msgstr "Opções de valor" -#: admin/includes/admin-about.php:126 +#: admin/includes/admin-about.php:139 msgid "Default value" msgstr "Valor padrão" -#: admin/includes/admin-about.php:127 +#: admin/includes/admin-about.php:140 msgid "Description" msgstr "Descrição" -#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 -#: includes/sc_event-list_helptexts.php:31 +#: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:42 msgid "Filter Syntax" msgstr "Sintaxe do Filtro" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:160 msgid "" "For date and cat filters you can specify complex filters with the following " "syntax:" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 #, php-format msgid "" "You can use %1$s and %2$s connections to define complex filters. " "Additionally you can set brackets %3$s for nested queries." msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "AND" msgstr "E" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "OR" msgstr "OU" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "or" msgstr "ou" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "and" msgstr "e" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:162 msgid "Examples for cat filters:" msgstr "" -#: admin/includes/admin-about.php:149 +#: admin/includes/admin-about.php:163 #, php-format msgid "Show all events with category %1$s." msgstr "" -#: admin/includes/admin-about.php:150 +#: admin/includes/admin-about.php:164 #, php-format msgid "Show all events with category %1$s or %2$s." msgstr "" -#: admin/includes/admin-about.php:151 +#: admin/includes/admin-about.php:165 #, php-format msgid "" "Show all events with category %1$s and all events where category %2$s as " "well as %3$s is selected." msgstr "" -#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34 msgid "Available Date Formats" msgstr "" -#: admin/includes/admin-about.php:157 +#: admin/includes/admin-about.php:172 msgid "For date filters you can use the following date formats:" msgstr "" -#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34 msgid "Available Date Range Formats" msgstr "" -#: admin/includes/admin-about.php:166 +#: admin/includes/admin-about.php:182 msgid "For date filters you can use the following daterange formats:" msgstr "" -#: admin/includes/admin-about.php:178 +#: admin/includes/admin-about.php:195 msgid "Value" msgstr "Valor" -#: admin/includes/admin-about.php:182 +#: admin/includes/admin-about.php:199 msgid "Example" msgstr "Exemplo" -#: admin/includes/admin-categories.php:38 +#: admin/includes/admin-categories.php:54 msgid "Synchronize with post categories" msgstr "" -#: admin/includes/admin-categories.php:46 +#: admin/includes/admin-categories.php:63 #, php-format msgid "%1$s categories modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:47 +#: admin/includes/admin-categories.php:64 #, php-format msgid "%1$s categories added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:48 +#: admin/includes/admin-categories.php:65 #, php-format msgid "%1$s categories deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:50 +#: admin/includes/admin-categories.php:67 #, php-format msgid "%1$s categories not modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:51 +#: admin/includes/admin-categories.php:68 #, php-format msgid "%1$s categories not added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:52 +#: admin/includes/admin-categories.php:69 #, php-format msgid "%1$s categories not deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:55 +#: admin/includes/admin-categories.php:72 msgid "An Error occured during the category sync" msgstr "" -#: admin/includes/admin-categories.php:59 +#: admin/includes/admin-categories.php:75 msgid "Category sync finished" msgstr "" -#: admin/includes/admin-category-sync.php:45 +#: admin/includes/admin-category-sync.php:54 msgid "Error: You are not allowed to view this page!" msgstr "" -#: admin/includes/admin-category-sync.php:62 +#: admin/includes/admin-category-sync.php:70 msgid "Affected Categories when switching to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:63 +#: admin/includes/admin-category-sync.php:71 msgid "Switch option to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:64 +#: admin/includes/admin-category-sync.php:72 msgid "" "If you proceed, all post categories will be copied and all events will be " "re-assigned to this new categories." msgstr "" -#: admin/includes/admin-category-sync.php:65 +#: admin/includes/admin-category-sync.php:73 msgid "" "Afterwards the event categories are independent of the post categories." msgstr "" -#: admin/includes/admin-category-sync.php:68 +#: admin/includes/admin-category-sync.php:75 msgid "Affected Categories when switching to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:69 +#: admin/includes/admin-category-sync.php:76 msgid "Switch option to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:70 +#: admin/includes/admin-category-sync.php:77 msgid "" "Take a detailed look at the affected categories above before you proceed! " "All seperate event categories will be deleted, this cannot be undone!" msgstr "" -#: admin/includes/admin-category-sync.php:73 +#: admin/includes/admin-category-sync.php:79 msgid "Event Categories: Synchronise with Post Categories" msgstr "" -#: admin/includes/admin-category-sync.php:74 +#: admin/includes/admin-category-sync.php:80 msgid "Start synchronisation" msgstr "" -#: admin/includes/admin-category-sync.php:75 +#: admin/includes/admin-category-sync.php:81 msgid "" "If this option is enabled the above listed categories will be deleted and " "removed from the existing events!" msgstr "" -#: admin/includes/admin-category-sync.php:90 +#: admin/includes/admin-category-sync.php:96 msgid "Categories to modify" msgstr "" -#: admin/includes/admin-category-sync.php:91 +#: admin/includes/admin-category-sync.php:97 msgid "Categories to add" msgstr "" -#: admin/includes/admin-category-sync.php:92 +#: admin/includes/admin-category-sync.php:98 msgid "Categories to delete (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:93 +#: admin/includes/admin-category-sync.php:99 msgid "Delete not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:97 +#: admin/includes/admin-category-sync.php:102 msgid "Categories with differences" msgstr "" -#: admin/includes/admin-category-sync.php:98 +#: admin/includes/admin-category-sync.php:103 msgid "Categories to add (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:99 +#: admin/includes/admin-category-sync.php:104 msgid "Add not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:117 +#: admin/includes/admin-category-sync.php:123 msgid "none" msgstr "" -#: admin/includes/admin-import.php:49 +#: admin/includes/admin-import.php:58 msgid "Import Events" msgstr "Importar Eventos" -#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116 +#: admin/includes/admin-import.php:220 msgid "Step" msgstr "Passo" -#: admin/includes/admin-import.php:69 +#: admin/includes/admin-import.php:79 msgid "Set import file and options" msgstr "Informar arquivo de importação e opções" -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:82 #, php-format msgid "Proceed with Step %1$s" msgstr "" -#: admin/includes/admin-import.php:75 +#: admin/includes/admin-import.php:85 msgid "Example file" msgstr "Arquivo de exemplo" -#: admin/includes/admin-import.php:76 +#: admin/includes/admin-import.php:86 #, php-format msgid "" "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)" msgstr "" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "Note" msgstr "Nota" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "" "Do not change the column header and separator line (first two lines), " "otherwise the import will fail!" msgstr "" -#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 +#: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103 msgid "Sorry, there has been an error." msgstr "" -#: admin/includes/admin-import.php:85 +#: admin/includes/admin-import.php:96 msgid "The file does not exist, please try again." msgstr "" -#: admin/includes/admin-import.php:93 +#: admin/includes/admin-import.php:104 msgid "The uploaded file does not have the required csv extension." msgstr "" -#: admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:116 msgid "Events review and additonal category selection" msgstr "" -#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133 msgid "Error" msgstr "" -#: admin/includes/admin-import.php:111 +#: admin/includes/admin-import.php:122 msgid "This CSV file cannot be imported" msgstr "" -#: admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:133 msgid "None of the events in this CSV file can be imported" msgstr "" -#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179 msgid "Warning" msgstr "" -#: admin/includes/admin-import.php:126 +#: admin/includes/admin-import.php:138 #, php-format msgid "There is %1$s event which cannot be imported" msgid_plural "There are %1$s events which cannot be imported" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-import.php:134 +#: admin/includes/admin-import.php:150 #, php-format msgid "CSV line %1$s" msgstr "" -#: admin/includes/admin-import.php:144 +#: admin/includes/admin-import.php:160 msgid "You can still import all other events listed below." msgstr "" -#: admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:179 msgid "" "The following category slugs are not available and will be removed from the " "imported events" msgstr "" -#: admin/includes/admin-import.php:169 +#: admin/includes/admin-import.php:185 msgid "" "If you want to keep these categories, please create these Categories first " "and do the import afterwards." msgstr "" -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:220 msgid "Import result" msgstr "" -#: admin/includes/admin-import.php:201 +#: admin/includes/admin-import.php:223 #, php-format msgid "Import of %1$s events successful!" msgstr "" -#: admin/includes/admin-import.php:202 +#: admin/includes/admin-import.php:224 msgid "Go back to All Events" msgstr "Voltar para Todos os Eventos" -#: admin/includes/admin-import.php:206 +#: admin/includes/admin-import.php:227 msgid "Errors during Import" msgstr "" -#: admin/includes/admin-import.php:215 +#: admin/includes/admin-import.php:235 msgid "Event from CSV-line" msgstr "" -#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 -#: includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77 +#: includes/widget_helptexts.php:9 msgid "Title" msgstr "Título" -#: admin/includes/admin-import.php:227 +#: admin/includes/admin-import.php:248 msgid "Start Date" msgstr "Início" -#: admin/includes/admin-import.php:228 +#: admin/includes/admin-import.php:249 msgid "End Date" msgstr "Término" -#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 -#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 +#: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:69 msgid "Time" msgstr "Hora" -#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62 -#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57 -#: includes/options_helptexts.php:58 +#: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78 +#: admin/includes/admin-new.php:107 includes/options_helptexts.php:75 +#: includes/options_helptexts.php:76 msgid "Location" msgstr "Localização" -#: admin/includes/admin-import.php:231 +#: admin/includes/admin-import.php:252 msgid "Content" msgstr "" -#: admin/includes/admin-import.php:232 +#: admin/includes/admin-import.php:253 msgid "Category slugs" msgstr "" -#: admin/includes/admin-import.php:274 +#: admin/includes/admin-import.php:297 msgid "Header line is missing or not correct!" msgstr "" -#: admin/includes/admin-import.php:275 +#: admin/includes/admin-import.php:298 #, php-format msgid "" "Have a look at the %1$sexample file%2$s to see the correct header line " "format." msgstr "" -#: admin/includes/admin-import.php:281 +#: admin/includes/admin-import.php:305 #, php-format msgid "Wrong number of items in line (%1$s items found, 6-7 required)" msgstr "" -#: admin/includes/admin-import.php:309 +#: admin/includes/admin-import.php:334 msgid "Empty event title found" msgstr "" -#: admin/includes/admin-import.php:315 +#: admin/includes/admin-import.php:340 msgid "Wrong date format for startdate" msgstr "" -#: admin/includes/admin-import.php:324 +#: admin/includes/admin-import.php:348 msgid "Wrong date format for enddate" msgstr "" -#: admin/includes/admin-import.php:365 +#: admin/includes/admin-import.php:401 msgid "Import events" msgstr "" -#: admin/includes/admin-import.php:366 +#: admin/includes/admin-import.php:402 msgid "Add additional categories" msgstr "" -#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +#: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257 msgid "Import" msgstr "Importar" -#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +#: admin/includes/admin-import.php:428 includes/events_post_type.php:78 msgid "No events found" msgstr "" -#: admin/includes/admin-import.php:432 +#: admin/includes/admin-import.php:473 msgid "Saving of event failed!" msgstr "" -#: admin/includes/admin-main.php:60 +#: admin/includes/admin-main.php:76 msgid "Event Date" msgstr "" -#: admin/includes/admin-main.php:64 +#: admin/includes/admin-main.php:80 msgid "Author" msgstr "Autor" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 #, php-format msgid "Add a copy of %1$s" msgstr "" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 msgid "Copy" msgstr "" -#: admin/includes/admin-new.php:51 +#: admin/includes/admin-new.php:58 msgid "Event data" msgstr "" -#: admin/includes/admin-new.php:80 +#: admin/includes/admin-new.php:90 msgid "Add Copy" msgstr "" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "Date" msgstr "Data" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "required" msgstr "obrigatório" -#: admin/includes/admin-new.php:87 +#: admin/includes/admin-new.php:101 msgid "Multi-Day Event" msgstr "Evento de vários dias" -#: admin/includes/admin-new.php:106 +#: admin/includes/admin-new.php:121 msgid "Event Title" msgstr "" -#: admin/includes/admin-new.php:121 +#: admin/includes/admin-new.php:137 msgid "Event Content" msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203 msgid "Event updated." msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205 msgid "View event" msgstr "" -#: admin/includes/admin-new.php:184 +#: admin/includes/admin-new.php:204 #, php-format msgid "Event restored to revision from %1$s" msgstr "" -#: admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:205 msgid "Event published." msgstr "" -#: admin/includes/admin-new.php:187 +#: admin/includes/admin-new.php:207 msgid "Event submitted." msgstr "" -#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209 +#: admin/includes/admin-new.php:210 msgid "Preview event" msgstr "" -#: admin/includes/admin-new.php:188 +#: admin/includes/admin-new.php:208 #, php-format msgid "Event scheduled for: %1$s>" msgstr "" -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:210 msgid "Event draft updated." msgstr "" -#: admin/includes/admin-settings.php:71 +#: admin/includes/admin-settings.php:79 msgid "Go to Event Category switching page" msgstr "" -#: admin/includes/admin-settings.php:83 +#: admin/includes/admin-settings.php:93 msgid "Frontend Settings" msgstr "Configurações de Frontend" -#: admin/includes/admin-settings.php:84 +#: admin/includes/admin-settings.php:94 msgid "Admin Page Settings" msgstr "Configurações do Administrador" -#: admin/includes/admin-settings.php:85 +#: admin/includes/admin-settings.php:95 msgid "Feed Settings" msgstr "Configurações de Feed" -#: admin/includes/admin-settings.php:86 +#: admin/includes/admin-settings.php:96 msgid "Category Taxonomy" msgstr "" -#: includes/daterange_helptexts.php:7 +#: includes/daterange_helptexts.php:8 msgid "Year" msgstr "Ano" -#: includes/daterange_helptexts.php:8 +#: includes/daterange_helptexts.php:9 msgid "A year can be specified in 4 digit format." msgstr "Um ano pode ser especificado em formato de 4 dígitos." -#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14 -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:47 #, php-format msgid "" "For a start date filter the first day of %1$s is used, in an end date the " "last day." msgstr "" -#: includes/daterange_helptexts.php:9 +#: includes/daterange_helptexts.php:10 msgid "the resulting year" msgstr "o ano resultado" -#: includes/daterange_helptexts.php:12 +#: includes/daterange_helptexts.php:15 msgid "Month" msgstr "Mês" -#: includes/daterange_helptexts.php:13 +#: includes/daterange_helptexts.php:16 msgid "" "A month can be specified with 4 digits for the year and 2 digits for the " "month, seperated by a hyphen (-)." msgstr "" -#: includes/daterange_helptexts.php:14 +#: includes/daterange_helptexts.php:17 msgid "the resulting month" msgstr "o mês resultado" -#: includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:22 msgid "Day" msgstr "Dia" -#: includes/daterange_helptexts.php:18 +#: includes/daterange_helptexts.php:23 msgid "" "A day can be specified in the format 4 digits for the year, 2 digits for the" " month and 2 digets for the day, seperated by hyphens (-)." msgstr "" -#: includes/daterange_helptexts.php:21 +#: includes/daterange_helptexts.php:28 msgid "Relative Year" msgstr "Ano Relativo" -#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28 -#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55 #, php-format msgid "%1$s from now can be specified in the following notation: %2$s" msgstr "" -#: includes/daterange_helptexts.php:22 +#: includes/daterange_helptexts.php:29 msgid "A relative year" msgstr "Um ano relativo" -#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29 -#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38 +#: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56 #, php-format msgid "" "This means you can specify a positive or negative (%1$s) %2$s from now with " "%3$s or %4$s attached (see also the example below)." msgstr "" -#: includes/daterange_helptexts.php:23 +#: includes/daterange_helptexts.php:30 msgid "number of years" msgstr "número de anos" -#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30 -#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44 +#: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39 +#: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57 #, php-format msgid "Additionally the following values are available: %1$s" msgstr "Adicionalmente os seguintes valores estão disponíveis: %1$s" -#: includes/daterange_helptexts.php:27 +#: includes/daterange_helptexts.php:36 msgid "Relative Month" msgstr "Mês Relativo" -#: includes/daterange_helptexts.php:28 +#: includes/daterange_helptexts.php:37 msgid "A relative month" msgstr "Um mês relativo" -#: includes/daterange_helptexts.php:29 +#: includes/daterange_helptexts.php:38 msgid "number of months" msgstr "número de meses" -#: includes/daterange_helptexts.php:33 +#: includes/daterange_helptexts.php:44 msgid "Relative Week" msgstr "Semana Relativa" -#: includes/daterange_helptexts.php:34 +#: includes/daterange_helptexts.php:45 msgid "A relative week" msgstr "Uma semana relativa" -#: includes/daterange_helptexts.php:35 +#: includes/daterange_helptexts.php:46 msgid "number of weeks" msgstr "número de semanas" -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:47 msgid "the resulting week" msgstr "a semana resultante" -#: includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:48 #, php-format msgid "" "The first day of the week is depending on the option %1$s which can be found" " and changed in %2$s." msgstr "" -#: includes/daterange_helptexts.php:41 +#: includes/daterange_helptexts.php:54 msgid "Relative Day" msgstr "Dia Relativo" -#: includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:55 msgid "A relative day" msgstr "Um dia relativo" -#: includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:56 msgid "number of days" msgstr "número de dias" -#: includes/daterange_helptexts.php:49 +#: includes/daterange_helptexts.php:64 msgid "Date range" msgstr "Intervalo de data" -#: includes/daterange_helptexts.php:50 +#: includes/daterange_helptexts.php:66 msgid "" "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n" "\t For the start and end date any available date format can be used." msgstr "" -#: includes/daterange_helptexts.php:55 +#: includes/daterange_helptexts.php:75 msgid "This value defines a range without any limits." msgstr "Este valor defina um intervalo sem qualquer limite." -#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61 -#: includes/daterange_helptexts.php:66 +#: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83 +#: includes/daterange_helptexts.php:90 #, php-format msgid "The corresponding date_range format is: %1$s" msgstr "" -#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 +#: includes/daterange_helptexts.php:81 includes/filterbar.php:310 msgid "Upcoming" msgstr "Próximos" -#: includes/daterange_helptexts.php:60 +#: includes/daterange_helptexts.php:82 msgid "This value defines a range from the actual day to the future." msgstr "" -#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 +#: includes/daterange_helptexts.php:88 includes/filterbar.php:318 msgid "Past" msgstr "Passado" -#: includes/daterange_helptexts.php:65 +#: includes/daterange_helptexts.php:89 msgid "This value defines a range from the past to the previous day." msgstr "" -#: includes/event.php:107 +#: includes/event.php:124 msgid "No valid start date provided" msgstr "" -#: includes/events_post_type.php:60 +#: includes/event.php:299 includes/event.php:301 +#: includes/sc_event-list.php:298 +msgid "read more" +msgstr "" + +#: includes/events_post_type.php:69 msgid "Events" msgstr "Eventos" -#: includes/events_post_type.php:61 +#: includes/events_post_type.php:70 msgid "Event" msgstr "" -#: includes/events_post_type.php:62 +#: includes/events_post_type.php:71 msgid "Add New" msgstr "Adicionar Novo" -#: includes/events_post_type.php:63 +#: includes/events_post_type.php:72 msgid "Add New Event" msgstr "Adicionar Novo Evento" -#: includes/events_post_type.php:64 +#: includes/events_post_type.php:73 msgid "Edit Event" msgstr "Editar Evento" -#: includes/events_post_type.php:65 +#: includes/events_post_type.php:74 msgid "New Event" msgstr "" -#: includes/events_post_type.php:66 +#: includes/events_post_type.php:75 msgid "View Event" msgstr "" -#: includes/events_post_type.php:67 +#: includes/events_post_type.php:76 msgid "View Events" msgstr "" -#: includes/events_post_type.php:68 +#: includes/events_post_type.php:77 msgid "Search Events" msgstr "" -#: includes/events_post_type.php:70 +#: includes/events_post_type.php:79 msgid "No events found in Trash" msgstr "" -#: includes/events_post_type.php:72 +#: includes/events_post_type.php:81 msgid "All Events" msgstr "Todos os Eventos" -#: includes/events_post_type.php:73 +#: includes/events_post_type.php:82 msgid "Event Archives" msgstr "" -#: includes/events_post_type.php:74 +#: includes/events_post_type.php:83 msgid "Event Attributes" msgstr "" -#: includes/events_post_type.php:75 +#: includes/events_post_type.php:84 msgid "Insert into event" msgstr "" -#: includes/events_post_type.php:76 +#: includes/events_post_type.php:85 msgid "Uploaded to this event" msgstr "" -#: includes/events_post_type.php:77 +#: includes/events_post_type.php:86 msgid "Event List" msgstr "Lista de Eventos" -#: includes/events_post_type.php:78 +#: includes/events_post_type.php:87 msgid "Filter events list" msgstr "" -#: includes/events_post_type.php:79 +#: includes/events_post_type.php:88 msgid "Events list navigation" msgstr "" -#: includes/events_post_type.php:80 +#: includes/events_post_type.php:89 msgid "Events list" msgstr "" -#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +#: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90 msgid "Reset" msgstr "" -#: includes/filterbar.php:278 +#: includes/filterbar.php:296 msgid "All" msgstr "Tudo" -#: includes/filterbar.php:281 +#: includes/filterbar.php:298 msgid "All Dates" msgstr "" -#: includes/options_helptexts.php:10 +#: includes/options_helptexts.php:11 msgid "CSV File to import" msgstr "Arquivo CSV a importar" -#: includes/options_helptexts.php:12 +#: includes/options_helptexts.php:13 msgid "Please select the file which contains the event data in CSV format." msgstr "" -#: includes/options_helptexts.php:15 +#: includes/options_helptexts.php:18 msgid "Used date format" msgstr "Formato de data usado" -#: includes/options_helptexts.php:17 +#: includes/options_helptexts.php:21 msgid "" "With this option the given date format for event start and end date in the " "CSV file can be specified." msgstr "" -#: includes/options_helptexts.php:18 +#: includes/options_helptexts.php:23 #, php-format msgid "" "You can use the php date format options given in %1$s, the most important " "ones are:" msgstr "" -#: includes/options_helptexts.php:20 +#: includes/options_helptexts.php:26 msgid "full year representation, with 4 digits" msgstr "" -#: includes/options_helptexts.php:21 +#: includes/options_helptexts.php:27 msgid "numeric representation of a month, with leading zeros" msgstr "" -#: includes/options_helptexts.php:22 +#: includes/options_helptexts.php:28 msgid "day of the month, 2 digits with leading zeros" msgstr "" -#: includes/options_helptexts.php:24 +#: includes/options_helptexts.php:30 msgid "" "If the date format in the CSV file does not correspond to the given format, " "the import script tries to recognize the date format by itself." msgstr "" -#: includes/options_helptexts.php:25 +#: includes/options_helptexts.php:31 msgid "" "But this can cause problems or result in wrong dates, so it is recommended " "to specify the correct date format here." msgstr "" -#: includes/options_helptexts.php:26 +#: includes/options_helptexts.php:32 msgid "Examples" msgstr "" -#: includes/options_helptexts.php:33 +#: includes/options_helptexts.php:41 msgid "Text for no events" msgstr "Texto para \"nenhum evento\"" -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:43 msgid "" "This option defines the displayed text when no events are available for the " "selected view." msgstr "" -#: includes/options_helptexts.php:38 +#: includes/options_helptexts.php:48 msgid "Multiday filter range" msgstr "" -#: includes/options_helptexts.php:39 +#: includes/options_helptexts.php:49 msgid "Use the complete event range in the date filter" msgstr "" -#: includes/options_helptexts.php:40 +#: includes/options_helptexts.php:51 msgid "" "This option defines if the complete range of a multiday event shall be " "considered in the date filter." msgstr "" -#: includes/options_helptexts.php:41 +#: includes/options_helptexts.php:52 msgid "" "If disabled, only the start day of an event is considered in the filter." msgstr "" -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:53 msgid "" "For an example multiday event which started yesterday and ends tomorrow this" " means, that it is displayed in umcoming dates when this option is enabled, " "but it is hidden when the option is disabled." msgstr "" -#: includes/options_helptexts.php:45 +#: includes/options_helptexts.php:58 msgid "Date display" msgstr "Exibição de data" -#: includes/options_helptexts.php:46 +#: includes/options_helptexts.php:59 msgid "Show the date only once per day" msgstr "" -#: includes/options_helptexts.php:47 +#: includes/options_helptexts.php:61 msgid "" "With this option enabled the date is only displayed once per day if more " "than one event is available on the same day." msgstr "" -#: includes/options_helptexts.php:48 +#: includes/options_helptexts.php:62 msgid "" "If enabled, the events are ordered in a different way (end date before start" " time) to allow using the same date for as much events as possible." msgstr "" -#: includes/options_helptexts.php:51 +#: includes/options_helptexts.php:67 msgid "HTML tags" msgstr "Tags HTML" -#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:75 #, php-format msgid "Allow HTML tags in the event field \"%1$s\"" msgstr "" -#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 +#: includes/options_helptexts.php:69 includes/options_helptexts.php:76 #, php-format msgid "" "This option specifies if HTML tags are allowed in the event field \"%1$s\"." msgstr "" -#: includes/options_helptexts.php:61 +#: includes/options_helptexts.php:81 msgid "Preferred language file" msgstr "" -#: includes/options_helptexts.php:62 +#: includes/options_helptexts.php:82 msgid "Load translations from general language directory first" msgstr "" -#: includes/options_helptexts.php:63 +#: includes/options_helptexts.php:84 #, php-format msgid "" "The default is to load the %1$s translation file from the plugin language " "directory first (%2$s)." msgstr "" -#: includes/options_helptexts.php:64 +#: includes/options_helptexts.php:85 #, php-format msgid "" "If you want to load your own language file from the general language " @@ -1125,295 +1130,312 @@ msgid "" "language directory, you have to enable this option." msgstr "" -#: includes/options_helptexts.php:68 +#: includes/options_helptexts.php:91 msgid "Events permalink slug" msgstr "" -#: includes/options_helptexts.php:69 +#: includes/options_helptexts.php:92 msgid "" "With this option the slug for the events permalink URLs can be defined." msgstr "" -#: includes/options_helptexts.php:72 +#: includes/options_helptexts.php:97 msgid "Text for \"Show content\"" msgstr "" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:98 msgid "" "With this option the displayed text for the link to show the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:76 +#: includes/options_helptexts.php:103 msgid "Text for \"Hide content\"" msgstr "" -#: includes/options_helptexts.php:77 +#: includes/options_helptexts.php:104 msgid "" "With this option the displayed text for the link to hide the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:109 msgid "Disable CSS file" msgstr "Desativar arquivo CSS" -#: includes/options_helptexts.php:81 +#: includes/options_helptexts.php:110 #, php-format msgid "Disable the %1$s file." msgstr "" -#: includes/options_helptexts.php:82 +#: includes/options_helptexts.php:112 #, php-format msgid "With this option you can disable the inclusion of the %1$s file." msgstr "" -#: includes/options_helptexts.php:83 +#: includes/options_helptexts.php:113 msgid "" "This normally only make sense if you have css conflicts with your theme and " "want to set all required css styles somewhere else (e.g. in the theme css)." msgstr "" -#: includes/options_helptexts.php:87 +#: includes/options_helptexts.php:119 msgid "Date format in edit form" msgstr "" -#: includes/options_helptexts.php:88 +#: includes/options_helptexts.php:121 msgid "" "This option sets the displayed date format for the event date fields in the " "event new / edit form." msgstr "" -#: includes/options_helptexts.php:89 +#: includes/options_helptexts.php:122 msgid "The default is an empty string to use the Wordpress standard setting." msgstr "" -#: includes/options_helptexts.php:90 +#: includes/options_helptexts.php:123 #, php-format msgid "" "All available options to specify the date format can be found %1$shere%2$s." msgstr "" -#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 +#: includes/options_helptexts.php:129 msgid "Enable RSS feed" msgstr "Habilitar Feed RSS" -#: includes/options_helptexts.php:95 -msgid "Enable support for an event RSS feed" +#: includes/options_helptexts.php:130 +msgid "Enable support for the event RSS feed" msgstr "" -#: includes/options_helptexts.php:96 -msgid "This option activates a RSS feed for the events." +#: includes/options_helptexts.php:132 +msgid "" +"This option activates the RSS feed for the events and adds a feed link in " +"the html head." msgstr "" -#: includes/options_helptexts.php:97 +#: includes/options_helptexts.php:133 msgid "" "You have to enable this option if you want to use one of the RSS feed " "features." msgstr "" -#: includes/options_helptexts.php:100 -msgid "Feed name" -msgstr "Nome do feed" +#: includes/options_helptexts.php:138 +msgid "Enable iCal feed" +msgstr "" -#: includes/options_helptexts.php:101 -#, php-format -msgid "This option sets the feed name. The default value is %1$s." +#: includes/options_helptexts.php:139 +msgid "Enable support for the event iCal feed" msgstr "" -#: includes/options_helptexts.php:102 -#, php-format -msgid "" -"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " -"enabled)." +#: includes/options_helptexts.php:141 +msgid "This option activates the iCal feed for events." msgstr "" -#: includes/options_helptexts.php:105 -msgid "Feed Description" -msgstr "Descrição do feed" +#: includes/options_helptexts.php:142 +msgid "" +"You have to enable this option if you want to use one of the iCal features." +msgstr "" -#: includes/options_helptexts.php:106 -#, php-format -msgid "This options set the feed description. The default value is %1$s." +#: includes/options_helptexts.php:147 +msgid "Position of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:107 -msgid "" -"This description will be used in the title for the feed link in the html " -"head and for the description in the feed itself." +#: includes/options_helptexts.php:149 +msgid "at the top (above the navigation bar)" msgstr "" -#: includes/options_helptexts.php:110 -msgid "Listed events" -msgstr "Eventos listados" +#: includes/options_helptexts.php:150 +msgid "between navigation bar and events" +msgstr "" -#: includes/options_helptexts.php:111 -msgid "Only show upcoming events in feed" +#: includes/options_helptexts.php:151 +msgid "at the bottom" msgstr "" -#: includes/options_helptexts.php:112 +#: includes/options_helptexts.php:153 msgid "" -"If this option is enabled only the upcoming events are listed in the feed." +"This option specifies the position of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:113 -msgid "If disabled all events (upcoming and past) will be listed." +#: includes/options_helptexts.php:158 +msgid "Align of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:116 -msgid "Add RSS feed link in head" +#: includes/options_helptexts.php:160 +msgid "left" msgstr "" -#: includes/options_helptexts.php:117 -msgid "Add RSS feed link in the html head" +#: includes/options_helptexts.php:161 +msgid "center" msgstr "" -#: includes/options_helptexts.php:118 -msgid "This option adds a RSS feed in the html head for the events." +#: includes/options_helptexts.php:162 +msgid "right" msgstr "" -#: includes/options_helptexts.php:119 -msgid "There are 2 alternatives to include the RSS feed" +#: includes/options_helptexts.php:164 +msgid "" +"This option specifies the align of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:120 -msgid "" -"The first way is this option to include a link in the html head. This link " -"will be recognized by browers or feed readers." +#: includes/options_helptexts.php:169 +msgid "RSS feed name" msgstr "" -#: includes/options_helptexts.php:121 +#: includes/options_helptexts.php:171 #, php-format -msgid "" -"The second way is to include a visible feed link directly in the event list." -" This can be done by setting the shortcode attribute %1$s to %2$s." +msgid "This option sets the RSS feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:122 +#: includes/options_helptexts.php:172 #, php-format -msgid "This option is only valid if the setting %1$s is enabled." +msgid "" +"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " +"enabled)." msgstr "" -#: includes/options_helptexts.php:125 -msgid "Position of the RSS feed link" +#: includes/options_helptexts.php:177 +msgid "RSS feed Description" msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the top (above the navigation bar)" +#: includes/options_helptexts.php:179 +#, php-format +msgid "This options set the RSS feed description. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:126 -msgid "between navigation bar and events" +#: includes/options_helptexts.php:180 +msgid "" +"This description will be used in the title for the feed link in the html " +"head and for the description in the feed itself." msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the bottom" +#: includes/options_helptexts.php:185 +msgid "RSS feed events" msgstr "" -#: includes/options_helptexts.php:127 -msgid "" -"This option specifies the position of the RSS feed link in the event list." +#: includes/options_helptexts.php:186 +msgid "Only show upcoming events in the RSS feed" msgstr "" -#: includes/options_helptexts.php:128 includes/options_helptexts.php:134 -#: includes/options_helptexts.php:140 includes/options_helptexts.php:146 -#, php-format +#: includes/options_helptexts.php:188 msgid "" -"You have to set the shortcode attribute %1$s to %2$s if you want to show the" -" feed link." +"If this option is enabled only the upcoming events are listed in the RSS " +"feed." msgstr "" -#: includes/options_helptexts.php:131 -msgid "Align of the RSS feed link" +#: includes/options_helptexts.php:189 includes/options_helptexts.php:215 +msgid "If disabled, all events (upcoming and past) will be listed." msgstr "" -#: includes/options_helptexts.php:132 -msgid "left" +#: includes/options_helptexts.php:194 +msgid "RSS link text" msgstr "" -#: includes/options_helptexts.php:132 -msgid "center" +#: includes/options_helptexts.php:196 +msgid "This option sets the caption of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:132 -msgid "right" +#: includes/options_helptexts.php:197 +msgid "Use an empty text to only show the rss image." msgstr "" -#: includes/options_helptexts.php:133 +#: includes/options_helptexts.php:198 +#, php-format msgid "" -"This option specifies the align of the RSS feed link in the event list." +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" RSS feed link." msgstr "" -#: includes/options_helptexts.php:137 -msgid "Feed link text" -msgstr "Texto do link do Feed" +#: includes/options_helptexts.php:203 +msgid "iCal feed name" +msgstr "" -#: includes/options_helptexts.php:138 +#: includes/options_helptexts.php:205 +#, php-format +msgid "This option sets the iCal feed name. The default value is %1$s." +msgstr "" + +#: includes/options_helptexts.php:206 +#, php-format msgid "" -"This option specifies the caption of the RSS feed link in the event list." +"This name will be used in the iCal feed url (e.g. %1$s, or %2$s with " +"permalinks enabled)." msgstr "" -#: includes/options_helptexts.php:139 +#: includes/options_helptexts.php:211 +msgid "iCal feed events" +msgstr "" + +#: includes/options_helptexts.php:212 +msgid "Only show upcoming events in the iCal feed" +msgstr "" + +#: includes/options_helptexts.php:214 msgid "" -"Insert an empty text to hide any text if you only want to show the rss " -"image." +"If this option is enabled only the upcoming events are listed in the iCal " +"file." +msgstr "" + +#: includes/options_helptexts.php:220 +msgid "iCal link text" msgstr "" -#: includes/options_helptexts.php:143 -msgid "Feed link image" -msgstr "Imagem do link do Feed" +#: includes/options_helptexts.php:222 +msgid "This option sets the iCal link text in the event list." +msgstr "" -#: includes/options_helptexts.php:144 -msgid "Show rss image in feed link" -msgstr "Exibir imagem rss no link do feed" +#: includes/options_helptexts.php:223 +msgid "Use an empty text to only show the iCal image." +msgstr "" -#: includes/options_helptexts.php:145 +#: includes/options_helptexts.php:224 +#, php-format msgid "" -"This option specifies if the an image should be dispayed in the feed link in" -" front of the text." +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" iCal feed link." msgstr "" -#: includes/options_helptexts.php:151 +#: includes/options_helptexts.php:231 msgid "Event Category handling" msgstr "" -#: includes/options_helptexts.php:152 +#: includes/options_helptexts.php:232 msgid "Use Post Categories" msgstr "" -#: includes/options_helptexts.php:153 +#: includes/options_helptexts.php:234 msgid "" "Do not maintain seperate categories for the events, and use the existing " "post categories instead." msgstr "" -#: includes/options_helptexts.php:154 +#: includes/options_helptexts.php:235 msgid "Attention" msgstr "Atenção" -#: includes/options_helptexts.php:155 +#: includes/options_helptexts.php:236 msgid "" "This option cannot be changed directly, but you can go to the Event Category" " switching page from here." msgstr "" -#: includes/options.php:40 +#: includes/options.php:73 msgid "events" msgstr "" -#: includes/options.php:41 +#: includes/options.php:77 msgid "Show content" msgstr "" -#: includes/options.php:42 +#: includes/options.php:81 msgid "Hide content" msgstr "" -#: includes/sc_event-list_helptexts.php:7 +#: includes/sc_event-list_helptexts.php:8 msgid "event-id" msgstr "" -#: includes/sc_event-list_helptexts.php:8 +#: includes/sc_event-list_helptexts.php:9 #, php-format msgid "" "By default the event-list is displayed initially. But if an event-id (e.g. " @@ -1421,107 +1443,107 @@ msgid "" "this event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:10 -#: includes/sc_event-list_helptexts.php:22 +#: includes/sc_event-list_helptexts.php:13 +#: includes/sc_event-list_helptexts.php:31 msgid "year" msgstr "" -#: includes/sc_event-list_helptexts.php:11 +#: includes/sc_event-list_helptexts.php:14 msgid "" "This attribute defines which events are initially shown. The default is to " "show the upcoming events only." msgstr "" -#: includes/sc_event-list_helptexts.php:12 +#: includes/sc_event-list_helptexts.php:15 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:14 +#: includes/sc_event-list_helptexts.php:19 msgid "category slug" msgstr "" -#: includes/sc_event-list_helptexts.php:15 +#: includes/sc_event-list_helptexts.php:20 msgid "" "This attribute defines the category of which events are initially shown. The" " default is to show events of all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:16 +#: includes/sc_event-list_helptexts.php:21 msgid "" "Provide a category slug to change this behavior. It is still possible to " "change the displayed categories via the filterbar or url parameters." msgstr "" -#: includes/sc_event-list_helptexts.php:19 +#: includes/sc_event-list_helptexts.php:26 msgid "This attribute defines the initial order of the events." msgstr "" -#: includes/sc_event-list_helptexts.php:20 +#: includes/sc_event-list_helptexts.php:27 msgid "" "With %1$S (default value) the events are sorted from old to new, with %2$s " "in the opposite direction (from new to old)." msgstr "" -#: includes/sc_event-list_helptexts.php:23 +#: includes/sc_event-list_helptexts.php:32 #, php-format msgid "" "This attribute defines the dates and date ranges of which events are " "displayed. The default is %1$s to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:24 +#: includes/sc_event-list_helptexts.php:33 #, php-format msgid "" "Filtered events according to %1$s value are not available in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:25 +#: includes/sc_event-list_helptexts.php:34 #, php-format msgid "" "You can find all available values with a description and examples in the " "sections %1$s and %2$s below." msgstr "" -#: includes/sc_event-list_helptexts.php:26 +#: includes/sc_event-list_helptexts.php:35 #, php-format msgid "See %1$s description if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:28 +#: includes/sc_event-list_helptexts.php:39 msgid "category slugs" msgstr "" -#: includes/sc_event-list_helptexts.php:29 +#: includes/sc_event-list_helptexts.php:40 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:30 +#: includes/sc_event-list_helptexts.php:41 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:31 +#: includes/sc_event-list_helptexts.php:42 #, php-format msgid "" "The filter is specified via the given category slugs. See %1$s description " "if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:33 -#: includes/sc_event-list_helptexts.php:74 -#: includes/sc_event-list_helptexts.php:89 -#: includes/sc_event-list_helptexts.php:104 +#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:111 +#: includes/sc_event-list_helptexts.php:138 +#: includes/sc_event-list_helptexts.php:177 msgid "number" msgstr "" -#: includes/sc_event-list_helptexts.php:34 +#: includes/sc_event-list_helptexts.php:47 #, php-format msgid "" "This attribute defines how many events should be displayed if upcoming " @@ -1529,109 +1551,109 @@ msgid "" "displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:48 msgid "" "Please not that in the actual version there is no pagination of the events " "available, so the event list can be very long." msgstr "" -#: includes/sc_event-list_helptexts.php:38 +#: includes/sc_event-list_helptexts.php:53 msgid "" "This attribute defines if the filterbar should be displayed. The filterbar " "allows the users to specify filters for the listed events." msgstr "" -#: includes/sc_event-list_helptexts.php:39 +#: includes/sc_event-list_helptexts.php:54 #, php-format msgid "Choose %1$s to always hide and %2$s to always show the filterbar." msgstr "" -#: includes/sc_event-list_helptexts.php:40 +#: includes/sc_event-list_helptexts.php:55 #, php-format msgid "" "With %1$s the filterbar is only visible in the event list and with %2$s only" " in the single event view." msgstr "" -#: includes/sc_event-list_helptexts.php:43 +#: includes/sc_event-list_helptexts.php:60 #, php-format msgid "" "This attribute specifies the available items in the filterbar. This options " "are only valid if the filterbar is displayed (see %1$s attribute)." msgstr "" -#: includes/sc_event-list_helptexts.php:44 +#: includes/sc_event-list_helptexts.php:61 msgid "" "Find below an overview of the available filterbar items and their options:" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "filterbar item" msgstr "" -#: includes/sc_event-list_helptexts.php:46 -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:96 msgid "description" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "item options" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option values" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "default value" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option description" msgstr "" -#: includes/sc_event-list_helptexts.php:47 +#: includes/sc_event-list_helptexts.php:67 msgid "" "Show a list of all available years. Additional there are some special " "entries available (see item options)." msgstr "" -#: includes/sc_event-list_helptexts.php:48 -#: includes/sc_event-list_helptexts.php:53 +#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:82 msgid "Add an entry to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:49 -#: includes/sc_event-list_helptexts.php:54 +#: includes/sc_event-list_helptexts.php:73 +#: includes/sc_event-list_helptexts.php:84 msgid "Add an entry to show all upcoming events." msgstr "" -#: includes/sc_event-list_helptexts.php:50 -#: includes/sc_event-list_helptexts.php:55 +#: includes/sc_event-list_helptexts.php:74 +#: includes/sc_event-list_helptexts.php:85 msgid "Add an entry to show events in the past." msgstr "" -#: includes/sc_event-list_helptexts.php:51 +#: includes/sc_event-list_helptexts.php:75 msgid "Set descending or ascending order of year entries." msgstr "" -#: includes/sc_event-list_helptexts.php:52 +#: includes/sc_event-list_helptexts.php:78 msgid "Show a list of all available months." msgstr "" -#: includes/sc_event-list_helptexts.php:56 +#: includes/sc_event-list_helptexts.php:86 msgid "Set descending or ascending order of month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "php date-formats" msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "Set the displayed date format of the month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "With this item you can display the special entries %1$s, %2$s and %3$s. You " @@ -1639,65 +1661,65 @@ msgid "" "order." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "Specifies the displayed values and their order. The items must be seperated " "by %1$s." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Show a list of all available categories." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Add an entry to show events from all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "A link to reset the eventlist filter to standard." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "any text" msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "Set the caption of the link." msgstr "" -#: includes/sc_event-list_helptexts.php:61 +#: includes/sc_event-list_helptexts.php:93 msgid "Find below an overview of the available filterbar display options:" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "display option" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "available for" msgstr "" -#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:97 #, php-format msgid "Shows a horizonal list seperated by %1$s with a link to each item." msgstr "" -#: includes/sc_event-list_helptexts.php:65 +#: includes/sc_event-list_helptexts.php:98 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:66 +#: includes/sc_event-list_helptexts.php:99 msgid "Shows a simple link which can be clicked." msgstr "" -#: includes/sc_event-list_helptexts.php:67 +#: includes/sc_event-list_helptexts.php:102 msgid "Find below some declaration examples with descriptions:" msgstr "" -#: includes/sc_event-list_helptexts.php:69 +#: includes/sc_event-list_helptexts.php:104 #, php-format msgid "" "In this example you can see that the filterbar item and the used display " @@ -1705,22 +1727,22 @@ msgid "" "items seperated by a comma %2$s. These items will be displayed left-aligned." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "option_name" msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "value" msgstr "" -#: includes/sc_event-list_helptexts.php:72 +#: includes/sc_event-list_helptexts.php:107 #, php-format msgid "" "The 2 semicolon %1$s devides the bar in 3 section. The first section will be" @@ -1729,75 +1751,84 @@ msgid "" "left-aligned and the reset link will be on the right side." msgstr "" -#: includes/sc_event-list_helptexts.php:75 -#: includes/sc_event-list_helptexts.php:90 +#: includes/sc_event-list_helptexts.php:112 +#: includes/sc_event-list_helptexts.php:139 msgid "" "This attribute specifies if the title should be truncated to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:76 -#: includes/sc_event-list_helptexts.php:91 +#: includes/sc_event-list_helptexts.php:113 +#: includes/sc_event-list_helptexts.php:140 #, php-format msgid "" "With the standard value %1$s the full text is displayed, with %2$s the text " "is automatically truncated via css." msgstr "" -#: includes/sc_event-list_helptexts.php:77 -#: includes/sc_event-list_helptexts.php:92 -#: includes/sc_event-list_helptexts.php:107 +#: includes/sc_event-list_helptexts.php:114 +#: includes/sc_event-list_helptexts.php:141 +#: includes/sc_event-list_helptexts.php:180 msgid "This attribute has no influence if only a single event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:80 +#: includes/sc_event-list_helptexts.php:120 msgid "" "This attribute specifies if the starttime is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n" "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:85 +#: includes/sc_event-list_helptexts.php:130 msgid "" "This attribute specifies if the location is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n" "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:95 +#: includes/sc_event-list_helptexts.php:147 msgid "" "This attribute specifies if the categories are displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n" "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:100 +#: includes/sc_event-list_helptexts.php:157 msgid "" "This attribute specifies if the content is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n" "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:105 +#: includes/sc_event-list_helptexts.php:167 +msgid "" +"This attribute specifies if the excerpt is displayed in the event list.<br />\n" +"\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n" +"\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" +"\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" +"\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)." +msgstr "" + +#: includes/sc_event-list_helptexts.php:178 msgid "" "This attribute specifies if the content should be truncate to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:106 +#: includes/sc_event-list_helptexts.php:179 #, php-format msgid "With the standard value %1$s the full text is displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:110 +#: includes/sc_event-list_helptexts.php:186 msgid "" -"This attribute specifies if the content should be collapsed initially.<br />\n" +"This attribute specifies if the content or excerpt should be collapsed initially.<br />\n" "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n" "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n" "\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." msgstr "" -#: includes/sc_event-list_helptexts.php:116 +#: includes/sc_event-list_helptexts.php:197 msgid "" "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n" "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n" @@ -1805,7 +1836,7 @@ msgid "" "\t With \"events_with_content_only\" the link is only added in the event list for events with event content." msgstr "" -#: includes/sc_event-list_helptexts.php:122 +#: includes/sc_event-list_helptexts.php:208 msgid "" "This attribute specifies if a rss feed link should be added.<br />\n" "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n" @@ -1814,32 +1845,52 @@ msgid "" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:128 +#: includes/sc_event-list_helptexts.php:220 +msgid "" +"This attribute specifies if a ical feed link should be added.<br />\n" +"\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n" +"\t On that page you can also find some settings to modify the output.<br />\n" +"\t Choose \"false\" to never add and \"true\" to always add the link.<br />" +msgstr "" + +#: includes/sc_event-list_helptexts.php:231 msgid "" "This attribute specifies the page or post url for event links.<br />\n" "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n" "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget." msgstr "" -#: includes/sc_event-list_helptexts.php:135 +#: includes/sc_event-list_helptexts.php:243 msgid "" "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n" "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget." msgstr "" -#: includes/sc_event-list.php:135 +#: includes/sc_event-list.php:154 +msgid "Sorry, the requested event is not available!" +msgstr "" + +#: includes/sc_event-list.php:163 msgid "Event Information:" msgstr "Informação do Evento:" -#: includes/widget_helptexts.php:10 +#: includes/sc_event-list.php:405 +msgid "Link to RSS feed" +msgstr "" + +#: includes/sc_event-list.php:414 +msgid "Link to iCal feed" +msgstr "" + +#: includes/widget_helptexts.php:11 msgid "This option defines the displayed title for the widget." msgstr "" -#: includes/widget_helptexts.php:15 +#: includes/widget_helptexts.php:18 msgid "Category Filter" msgstr "Filtro de Categoria" -#: includes/widget_helptexts.php:17 +#: includes/widget_helptexts.php:20 msgid "" "This option defines the categories of which events are shown. The standard " "is all or an empty string to show all events. Specify a category slug or a " @@ -1848,137 +1899,145 @@ msgid "" "all possibilities." msgstr "" -#: includes/widget_helptexts.php:22 +#: includes/widget_helptexts.php:27 msgid "Number of listed events" msgstr "Número de eventos listados" -#: includes/widget_helptexts.php:24 +#: includes/widget_helptexts.php:29 msgid "The number of upcoming events to display" msgstr "Número de próximos eventos a exibir" -#: includes/widget_helptexts.php:29 +#: includes/widget_helptexts.php:36 msgid "Truncate event title to" msgstr "Truncar título do evento em" -#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52 -#: includes/widget_helptexts.php:67 +#: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65 +#: includes/widget_helptexts.php:93 msgid "characters" msgstr "caracteres" -#: includes/widget_helptexts.php:31 +#: includes/widget_helptexts.php:38 msgid "" "This option defines the number of displayed characters for the event title." msgstr "" -#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54 +#: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67 #, php-format msgid "" "Set this value to %1$s to view the full text, or set it to %2$s to " "automatically truncate the text via css." msgstr "" -#: includes/widget_helptexts.php:37 +#: includes/widget_helptexts.php:46 msgid "Show event starttime" msgstr "Exibir data de início do evento" -#: includes/widget_helptexts.php:39 +#: includes/widget_helptexts.php:48 msgid "This option defines if the event start time will be displayed." msgstr "" -#: includes/widget_helptexts.php:44 +#: includes/widget_helptexts.php:55 msgid "Show event location" msgstr "Exibir localização do evento" -#: includes/widget_helptexts.php:46 +#: includes/widget_helptexts.php:57 msgid "This option defines if the event location will be displayed." msgstr "" -#: includes/widget_helptexts.php:51 +#: includes/widget_helptexts.php:64 msgid "Truncate location to" msgstr "Truncar localização em" -#: includes/widget_helptexts.php:53 +#: includes/widget_helptexts.php:66 msgid "" "If the event location is diplayed this option defines the number of " "displayed characters." msgstr "" -#: includes/widget_helptexts.php:59 +#: includes/widget_helptexts.php:74 +msgid "Show event excerpt" +msgstr "" + +#: includes/widget_helptexts.php:76 +msgid "This option defines if the event excerpt will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:83 msgid "Show event content" msgstr "" -#: includes/widget_helptexts.php:61 +#: includes/widget_helptexts.php:85 msgid "This option defines if the event content will be displayed." msgstr "" -#: includes/widget_helptexts.php:66 +#: includes/widget_helptexts.php:92 msgid "Truncate content to" msgstr "" -#: includes/widget_helptexts.php:68 +#: includes/widget_helptexts.php:94 msgid "" "If the event content are diplayed this option defines the number of diplayed" " characters." msgstr "" -#: includes/widget_helptexts.php:69 +#: includes/widget_helptexts.php:95 #, php-format msgid "Set this value to %1$s to view the full text." msgstr "" -#: includes/widget_helptexts.php:74 +#: includes/widget_helptexts.php:102 msgid "URL to the linked Event List page" msgstr "URL para página associada ao Event List" -#: includes/widget_helptexts.php:76 +#: includes/widget_helptexts.php:104 msgid "" "This option defines the url to the linked Event List page. This option is " "required if you want to use one of the options below." msgstr "" -#: includes/widget_helptexts.php:81 +#: includes/widget_helptexts.php:111 msgid "Shortcode ID on linked page" msgstr "ID do Shortcode na página associada" -#: includes/widget_helptexts.php:83 +#: includes/widget_helptexts.php:113 msgid "" "This option defines the shortcode-id for the Event List on the linked page. " "Normally the standard value 1 is correct, you only have to change it if you " "use multiple event-list shortcodes on the linked page." msgstr "" -#: includes/widget_helptexts.php:90 +#: includes/widget_helptexts.php:122 msgid "" "With this option you can add a link to the single event page for every " "displayed event. You have to specify the url to the page and the shortcode " "id option if you want to use it." msgstr "" -#: includes/widget_helptexts.php:97 +#: includes/widget_helptexts.php:131 msgid "" "With this option you can add a link to the event-list page below the " "diplayed events. You have to specify the url to page option if you want to " "use it." msgstr "" -#: includes/widget_helptexts.php:102 +#: includes/widget_helptexts.php:138 msgid "Caption for the link" msgstr "Legenda para o link" -#: includes/widget_helptexts.php:104 +#: includes/widget_helptexts.php:140 msgid "" "This option defines the text for the link to the Event List page if the " "approriate option is selected." msgstr "" -#: includes/widget.php:20 +#: includes/widget.php:21 msgid "With this widget a list of upcoming events can be displayed." msgstr "" -#: includes/widget.php:25 +#: includes/widget.php:26 msgid "Upcoming events" msgstr "Próximos eventos" -#: includes/widget.php:38 +#: includes/widget.php:40 msgid "show events page" msgstr "exibir página de eventos" diff --git a/wp-content/plugins/event-list/languages/event-list-sk_SK.mo b/wp-content/plugins/event-list/languages/event-list-sk_SK.mo index d6d3e4da3b8ba61d140b4bd6e1aa9402fbf3f001..0e9520a260883d30893a8040ba39fd4dc54e4a17 100644 Binary files a/wp-content/plugins/event-list/languages/event-list-sk_SK.mo and b/wp-content/plugins/event-list/languages/event-list-sk_SK.mo differ diff --git a/wp-content/plugins/event-list/languages/event-list-sk_SK.po b/wp-content/plugins/event-list/languages/event-list-sk_SK.po index 09cdda2fa9eaae51ca08465c1bbb6d0f8ad138bd..0ca0bbf573dc61e0624e1605e480dc3baf55e714 100644 --- a/wp-content/plugins/event-list/languages/event-list-sk_SK.po +++ b/wp-content/plugins/event-list/languages/event-list-sk_SK.po @@ -1,17 +1,18 @@ # Translation file for the 'Event List' WordPress plugin -# Copyright (C) 2018 by mibuthu +# Copyright (C) 2021 by mibuthu # This file is distributed under the same license as the corresponding wordpress plugin. # # Translators: # Dominik Molčanyi <frinkjeee@gmail.com>, 2017 # Lubo Caca <lulucaca2.86@gmail.com>, 2018 # Pavol Kubosko <palisanderb1@gmail.com>, 2017 +# Viliam Dzupin <viliam.dzupin@gmail.com>, 2018 msgid "" msgstr "" "Project-Id-Version: wp-event-list\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n" -"POT-Creation-Date: 2018-05-27 12:20+0200\n" -"PO-Revision-Date: 2018-05-27 10:20+0000\n" +"POT-Creation-Date: 2021-04-24 11:28+0200\n" +"PO-Revision-Date: 2021-04-24 09:26+0000\n" "Last-Translator: mibuthu\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/mibuthu/wp-event-list/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -20,33 +21,33 @@ msgstr "" "Language: sk_SK\n" "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" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Errors during upgrade of plugin %1$s" -msgstr "" +msgstr "Chyba pri upgrade pluginu %1$s." -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Upgrade of plugin %1$s successful" -msgstr "" +msgstr "Upgrade pluginu %1$s bolo úspešné" -#: admin/admin.php:106 admin/includes/admin-settings.php:65 +#: admin/admin.php:116 admin/includes/admin-settings.php:73 msgid "Event List Settings" msgstr "Nastavenia zoznamu udalostí" -#: admin/admin.php:106 +#: admin/admin.php:116 msgid "Settings" msgstr "Nastavenia" -#: admin/admin.php:110 admin/includes/admin-about.php:37 +#: admin/admin.php:120 admin/includes/admin-about.php:43 msgid "About Event List" msgstr "O plugine Zoznam udalostí" -#: admin/admin.php:110 +#: admin/admin.php:120 msgid "About" msgstr "O plugine" -#: admin/admin.php:132 +#: admin/admin.php:144 #, php-format msgid "%s Event" msgid_plural "%s Events" @@ -55,84 +56,84 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 +#: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92 msgid "General" msgstr "Všeobecné" -#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 -#: admin/includes/admin-about.php:105 +#: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88 +#: admin/includes/admin-about.php:117 msgid "Shortcode Attributes" msgstr "Atribúty skráteného kódu" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:82 msgid "Help and Instructions" msgstr "Pomocník a inštrukcie" -#: admin/includes/admin-about.php:73 +#: admin/includes/admin-about.php:83 #, php-format msgid "You can manage the events %1$shere%2$s" msgstr "Môžete spravovať udalosti 1%1$shere2%2$s" -#: admin/includes/admin-about.php:74 +#: admin/includes/admin-about.php:84 msgid "To show the events on your site you have 2 possibilities" msgstr "Na zobrazenie udalosti, na Vašej stránke, máte 2 možnosti" -#: admin/includes/admin-about.php:75 +#: admin/includes/admin-about.php:85 #, php-format msgid "you can place the <strong>shortcode</strong> %1$s on any page or post" msgstr "Môžete použiť <strong>skratku </strong>%1$s na stránke alebo článku" -#: admin/includes/admin-about.php:76 +#: admin/includes/admin-about.php:86 #, php-format msgid "you can add the <strong>widget</strong> %1$s in your sidebars" msgstr "Môžete pridať <strong>aplikáciu</strong>%1$s do Vašej bočnej lišty" -#: admin/includes/admin-about.php:77 +#: admin/includes/admin-about.php:87 msgid "" "The displayed events and their style can be modified with the available " "widget settings and the available attributes for the shortcode." -msgstr "" +msgstr "Zobrazenie udalostí a ich štýl može byť zmenené pomocou Nastevení widgetu a atribútov skráteného kodu = shortcode." -#: admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:88 #, php-format msgid "" "A list of all available shortcode attributes with their descriptions is " "available in the %1$s tab." -msgstr "" +msgstr "Zoznam dostupných atribútov pre shortcode a ich popis je dostupný v záložke 1 %1$s." -#: admin/includes/admin-about.php:79 +#: admin/includes/admin-about.php:89 msgid "The available widget options are described in their tooltip text." -msgstr "" +msgstr "Možnosti widgetu sú popísané v ich tooltipe." -#: admin/includes/admin-about.php:80 +#: admin/includes/admin-about.php:90 #, php-format msgid "" "If you enable one of the links options (%1$s or %2$s) in the widget you have" " to insert an URL to the linked event-list page." -msgstr "" +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." -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120 msgid "Add links to the single events" msgstr "Pridaj odkaz na na akciu" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129 msgid "Add a link to the Event List page" msgstr "Pridaj odkaz na stránku akcií" -#: admin/includes/admin-about.php:81 +#: admin/includes/admin-about.php:91 msgid "" "This is required because the widget does not know in which page or post the " "shortcode was included." -msgstr "" +msgstr "Pole je povinné keďže widget nevie na ktorej stránke, prípadne príspevku je shorcode vložený." -#: admin/includes/admin-about.php:82 +#: admin/includes/admin-about.php:92 msgid "" "Additionally you have to insert the correct Shortcode id on the linked page." " This id describes which shortcode should be used on the given page or post " "if you have more than one." msgstr "" -#: admin/includes/admin-about.php:83 +#: admin/includes/admin-about.php:93 #, php-format msgid "" "The default value %1$s is normally o.k. (for pages with 1 shortcode only), " @@ -140,367 +141,367 @@ msgid "" "link on your linked page or post." msgstr "" -#: admin/includes/admin-about.php:84 +#: admin/includes/admin-about.php:94 #, php-format msgid "The id is available at the end of the URL parameters (e.g. %1$s)." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 #, php-format msgid "" "Be sure to also check the %1$s to get the plugin behaving just the way you " "want." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 msgid "Settings page" msgstr "Stránka nastavení" -#: admin/includes/admin-about.php:92 +#: admin/includes/admin-about.php:103 msgid "About the plugin author" msgstr "" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:105 #, php-format msgid "" "This plugin is developed by %1$s, you can find more information about the " "plugin on the %2$s." msgstr "" -#: admin/includes/admin-about.php:94 -msgid "wordpress plugin site" +#: admin/includes/admin-about.php:105 +msgid "WordPress plugin site" msgstr "" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:106 #, php-format msgid "If you like the plugin please rate it on the %1$s." msgstr "" -#: admin/includes/admin-about.php:95 -msgid "wordpress plugin review site" +#: admin/includes/admin-about.php:106 +msgid "WordPress plugin review site" msgstr "" -#: admin/includes/admin-about.php:96 +#: admin/includes/admin-about.php:107 msgid "" "If you want to support the plugin I would be happy to get a small donation" msgstr "" -#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 -#: admin/includes/admin-about.php:99 +#: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109 +#: admin/includes/admin-about.php:110 #, php-format msgid "Donate with %1$s" msgstr "" -#: admin/includes/admin-about.php:107 +#: admin/includes/admin-about.php:119 msgid "" "You have the possibility to modify the output if you add some of the " "following attributes to the shortcode." msgstr "" -#: admin/includes/admin-about.php:108 +#: admin/includes/admin-about.php:120 #, php-format msgid "" "You can combine and add as much attributes as you want. E.g. the shortcode " "including the attributes %1$s and %2$s would looks like this:" msgstr "" -#: admin/includes/admin-about.php:110 +#: admin/includes/admin-about.php:122 msgid "" "Below you can find a list of all supported attributes with their " "descriptions and available options:" msgstr "" -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:137 msgid "Attribute name" msgstr "Názov atribútu" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:138 msgid "Value options" msgstr "Moznosti hodnoty" -#: admin/includes/admin-about.php:126 +#: admin/includes/admin-about.php:139 msgid "Default value" msgstr "Predvolená hodnota" -#: admin/includes/admin-about.php:127 +#: admin/includes/admin-about.php:140 msgid "Description" msgstr "Popis" -#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 -#: includes/sc_event-list_helptexts.php:31 +#: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:42 msgid "Filter Syntax" msgstr "Syntax filtra" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:160 msgid "" "For date and cat filters you can specify complex filters with the following " "syntax:" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 #, php-format msgid "" "You can use %1$s and %2$s connections to define complex filters. " "Additionally you can set brackets %3$s for nested queries." msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "AND" msgstr "A" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "OR" msgstr "ALEBO" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "or" msgstr "alebo" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "and" msgstr "a" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:162 msgid "Examples for cat filters:" msgstr "" -#: admin/includes/admin-about.php:149 +#: admin/includes/admin-about.php:163 #, php-format msgid "Show all events with category %1$s." msgstr "" -#: admin/includes/admin-about.php:150 +#: admin/includes/admin-about.php:164 #, php-format msgid "Show all events with category %1$s or %2$s." msgstr "" -#: admin/includes/admin-about.php:151 +#: admin/includes/admin-about.php:165 #, php-format msgid "" "Show all events with category %1$s and all events where category %2$s as " "well as %3$s is selected." msgstr "" -#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34 msgid "Available Date Formats" msgstr "Dostupné formáty dátumu" -#: admin/includes/admin-about.php:157 +#: admin/includes/admin-about.php:172 msgid "For date filters you can use the following date formats:" msgstr "" -#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34 msgid "Available Date Range Formats" msgstr "Formáty rozmedzia dátumov " -#: admin/includes/admin-about.php:166 +#: admin/includes/admin-about.php:182 msgid "For date filters you can use the following daterange formats:" msgstr "Pre filtrovanie rozmedzia dátumov môžete použiť formáty:" -#: admin/includes/admin-about.php:178 +#: admin/includes/admin-about.php:195 msgid "Value" msgstr "Hodnota" -#: admin/includes/admin-about.php:182 +#: admin/includes/admin-about.php:199 msgid "Example" msgstr "Príklad" -#: admin/includes/admin-categories.php:38 +#: admin/includes/admin-categories.php:54 msgid "Synchronize with post categories" msgstr "Synchronizovať s kategóriami príspevkov" -#: admin/includes/admin-categories.php:46 +#: admin/includes/admin-categories.php:63 #, php-format msgid "%1$s categories modified (%2$s)" msgstr "%1$s modifik. kategórie (%2$s)" -#: admin/includes/admin-categories.php:47 +#: admin/includes/admin-categories.php:64 #, php-format msgid "%1$s categories added (%2$s)" msgstr "%1$s pridané kategórie (%2$s)" -#: admin/includes/admin-categories.php:48 +#: admin/includes/admin-categories.php:65 #, php-format msgid "%1$s categories deleted (%2$s)" msgstr "%1$s zmazané kategórie (%2$s)" -#: admin/includes/admin-categories.php:50 +#: admin/includes/admin-categories.php:67 #, php-format msgid "%1$s categories not modified (%2$s)" msgstr "%1$s nezmenené kategórie (%2$s)" -#: admin/includes/admin-categories.php:51 +#: admin/includes/admin-categories.php:68 #, php-format msgid "%1$s categories not added (%2$s)" msgstr "%1$s nepridané kategórie (%2$s)" -#: admin/includes/admin-categories.php:52 +#: admin/includes/admin-categories.php:69 #, php-format msgid "%1$s categories not deleted (%2$s)" msgstr "%1$s nezmazané kategórie (%2$s)" -#: admin/includes/admin-categories.php:55 +#: admin/includes/admin-categories.php:72 msgid "An Error occured during the category sync" msgstr "" -#: admin/includes/admin-categories.php:59 +#: admin/includes/admin-categories.php:75 msgid "Category sync finished" msgstr "" -#: admin/includes/admin-category-sync.php:45 +#: admin/includes/admin-category-sync.php:54 msgid "Error: You are not allowed to view this page!" msgstr "Chyba: Nemáte oprávnenie zobraziť túto stránku!" -#: admin/includes/admin-category-sync.php:62 +#: admin/includes/admin-category-sync.php:70 msgid "Affected Categories when switching to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:63 +#: admin/includes/admin-category-sync.php:71 msgid "Switch option to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:64 +#: admin/includes/admin-category-sync.php:72 msgid "" "If you proceed, all post categories will be copied and all events will be " "re-assigned to this new categories." msgstr "" -#: admin/includes/admin-category-sync.php:65 +#: admin/includes/admin-category-sync.php:73 msgid "" "Afterwards the event categories are independent of the post categories." msgstr "" -#: admin/includes/admin-category-sync.php:68 +#: admin/includes/admin-category-sync.php:75 msgid "Affected Categories when switching to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:69 +#: admin/includes/admin-category-sync.php:76 msgid "Switch option to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:70 +#: admin/includes/admin-category-sync.php:77 msgid "" "Take a detailed look at the affected categories above before you proceed! " "All seperate event categories will be deleted, this cannot be undone!" msgstr "" -#: admin/includes/admin-category-sync.php:73 +#: admin/includes/admin-category-sync.php:79 msgid "Event Categories: Synchronise with Post Categories" msgstr "" -#: admin/includes/admin-category-sync.php:74 +#: admin/includes/admin-category-sync.php:80 msgid "Start synchronisation" msgstr "Začať synchronizovať" -#: admin/includes/admin-category-sync.php:75 +#: admin/includes/admin-category-sync.php:81 msgid "" "If this option is enabled the above listed categories will be deleted and " "removed from the existing events!" msgstr "" -#: admin/includes/admin-category-sync.php:90 +#: admin/includes/admin-category-sync.php:96 msgid "Categories to modify" msgstr "Kategórie na modifikáciu" -#: admin/includes/admin-category-sync.php:91 +#: admin/includes/admin-category-sync.php:97 msgid "Categories to add" msgstr "Kategórie na pridanie" -#: admin/includes/admin-category-sync.php:92 +#: admin/includes/admin-category-sync.php:98 msgid "Categories to delete (optional)" msgstr "Kategórie ma zmazanie (voliteľné)" -#: admin/includes/admin-category-sync.php:93 +#: admin/includes/admin-category-sync.php:99 msgid "Delete not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:97 +#: admin/includes/admin-category-sync.php:102 msgid "Categories with differences" msgstr "Kategórie s rozdielmi" -#: admin/includes/admin-category-sync.php:98 +#: admin/includes/admin-category-sync.php:103 msgid "Categories to add (optional)" msgstr "Kategórie na pridanie (voliteľné)" -#: admin/includes/admin-category-sync.php:99 +#: admin/includes/admin-category-sync.php:104 msgid "Add not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:117 +#: admin/includes/admin-category-sync.php:123 msgid "none" msgstr "nič" -#: admin/includes/admin-import.php:49 +#: admin/includes/admin-import.php:58 msgid "Import Events" msgstr "Importovať udalosti" -#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116 +#: admin/includes/admin-import.php:220 msgid "Step" msgstr "Krok" -#: admin/includes/admin-import.php:69 +#: admin/includes/admin-import.php:79 msgid "Set import file and options" msgstr "" -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:82 #, php-format msgid "Proceed with Step %1$s" msgstr "Pokračuj krokom %1$s" -#: admin/includes/admin-import.php:75 +#: admin/includes/admin-import.php:85 msgid "Example file" msgstr "Príklad" -#: admin/includes/admin-import.php:76 +#: admin/includes/admin-import.php:86 #, php-format msgid "" "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)" msgstr "" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "Note" msgstr "Poznámka" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "" "Do not change the column header and separator line (first two lines), " "otherwise the import will fail!" msgstr "" -#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 +#: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103 msgid "Sorry, there has been an error." msgstr "Je nám ľúto, došlo k chybe." -#: admin/includes/admin-import.php:85 +#: admin/includes/admin-import.php:96 msgid "The file does not exist, please try again." msgstr "" -#: admin/includes/admin-import.php:93 +#: admin/includes/admin-import.php:104 msgid "The uploaded file does not have the required csv extension." msgstr "" -#: admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:116 msgid "Events review and additonal category selection" msgstr "" -#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133 msgid "Error" msgstr "" -#: admin/includes/admin-import.php:111 +#: admin/includes/admin-import.php:122 msgid "This CSV file cannot be imported" msgstr "" -#: admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:133 msgid "None of the events in this CSV file can be imported" msgstr "" -#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179 msgid "Warning" msgstr "" -#: admin/includes/admin-import.php:126 +#: admin/includes/admin-import.php:138 #, php-format msgid "There is %1$s event which cannot be imported" msgid_plural "There are %1$s events which cannot be imported" @@ -509,619 +510,624 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: admin/includes/admin-import.php:134 +#: admin/includes/admin-import.php:150 #, php-format msgid "CSV line %1$s" msgstr "" -#: admin/includes/admin-import.php:144 +#: admin/includes/admin-import.php:160 msgid "You can still import all other events listed below." msgstr "" -#: admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:179 msgid "" "The following category slugs are not available and will be removed from the " "imported events" msgstr "" -#: admin/includes/admin-import.php:169 +#: admin/includes/admin-import.php:185 msgid "" "If you want to keep these categories, please create these Categories first " "and do the import afterwards." msgstr "" -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:220 msgid "Import result" msgstr "" -#: admin/includes/admin-import.php:201 +#: admin/includes/admin-import.php:223 #, php-format msgid "Import of %1$s events successful!" msgstr "" -#: admin/includes/admin-import.php:202 +#: admin/includes/admin-import.php:224 msgid "Go back to All Events" msgstr "Ísť späť na Všetky udalosti" -#: admin/includes/admin-import.php:206 +#: admin/includes/admin-import.php:227 msgid "Errors during Import" msgstr "" -#: admin/includes/admin-import.php:215 +#: admin/includes/admin-import.php:235 msgid "Event from CSV-line" msgstr "" -#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 -#: includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77 +#: includes/widget_helptexts.php:9 msgid "Title" msgstr "Nadpis" -#: admin/includes/admin-import.php:227 +#: admin/includes/admin-import.php:248 msgid "Start Date" msgstr "Počiatočný deň" -#: admin/includes/admin-import.php:228 +#: admin/includes/admin-import.php:249 msgid "End Date" msgstr "Posledný deň" -#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 -#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 +#: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:69 msgid "Time" msgstr "Čas" -#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62 -#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57 -#: includes/options_helptexts.php:58 +#: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78 +#: admin/includes/admin-new.php:107 includes/options_helptexts.php:75 +#: includes/options_helptexts.php:76 msgid "Location" msgstr "Miesto" -#: admin/includes/admin-import.php:231 +#: admin/includes/admin-import.php:252 msgid "Content" msgstr "Obsah" -#: admin/includes/admin-import.php:232 +#: admin/includes/admin-import.php:253 msgid "Category slugs" msgstr "Slugs kategória" -#: admin/includes/admin-import.php:274 +#: admin/includes/admin-import.php:297 msgid "Header line is missing or not correct!" msgstr "" -#: admin/includes/admin-import.php:275 +#: admin/includes/admin-import.php:298 #, php-format msgid "" "Have a look at the %1$sexample file%2$s to see the correct header line " "format." msgstr "" -#: admin/includes/admin-import.php:281 +#: admin/includes/admin-import.php:305 #, php-format msgid "Wrong number of items in line (%1$s items found, 6-7 required)" msgstr "" -#: admin/includes/admin-import.php:309 +#: admin/includes/admin-import.php:334 msgid "Empty event title found" msgstr "" -#: admin/includes/admin-import.php:315 +#: admin/includes/admin-import.php:340 msgid "Wrong date format for startdate" msgstr "" -#: admin/includes/admin-import.php:324 +#: admin/includes/admin-import.php:348 msgid "Wrong date format for enddate" msgstr "" -#: admin/includes/admin-import.php:365 +#: admin/includes/admin-import.php:401 msgid "Import events" msgstr "Importovať udalosti" -#: admin/includes/admin-import.php:366 +#: admin/includes/admin-import.php:402 msgid "Add additional categories" msgstr "Pridať ďalšie categórie" -#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +#: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257 msgid "Import" msgstr "Import" -#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +#: admin/includes/admin-import.php:428 includes/events_post_type.php:78 msgid "No events found" msgstr "Nenašli sa žiadne udalosti." -#: admin/includes/admin-import.php:432 +#: admin/includes/admin-import.php:473 msgid "Saving of event failed!" msgstr "" -#: admin/includes/admin-main.php:60 +#: admin/includes/admin-main.php:76 msgid "Event Date" msgstr "Deň udalosti" -#: admin/includes/admin-main.php:64 +#: admin/includes/admin-main.php:80 msgid "Author" msgstr "Autor" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 #, php-format msgid "Add a copy of %1$s" msgstr "Pridať kópiu %1$s" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 msgid "Copy" msgstr "Kópia" -#: admin/includes/admin-new.php:51 +#: admin/includes/admin-new.php:58 msgid "Event data" msgstr "Informácie o udalosti" -#: admin/includes/admin-new.php:80 +#: admin/includes/admin-new.php:90 msgid "Add Copy" msgstr "Pridaj kópiu" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "Date" msgstr "Dátum" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "required" msgstr "Požadované" -#: admin/includes/admin-new.php:87 +#: admin/includes/admin-new.php:101 msgid "Multi-Day Event" msgstr "Viacdenná udalosť" -#: admin/includes/admin-new.php:106 +#: admin/includes/admin-new.php:121 msgid "Event Title" msgstr "Názov udalosti" -#: admin/includes/admin-new.php:121 +#: admin/includes/admin-new.php:137 msgid "Event Content" msgstr "Obsah udalosti" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203 msgid "Event updated." msgstr "Udalosť bola aktualizovaná." -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205 msgid "View event" msgstr "Pozri si udalosť" -#: admin/includes/admin-new.php:184 +#: admin/includes/admin-new.php:204 #, php-format msgid "Event restored to revision from %1$s" msgstr "" -#: admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:205 msgid "Event published." msgstr "Udalosť bola publikovaná." -#: admin/includes/admin-new.php:187 +#: admin/includes/admin-new.php:207 msgid "Event submitted." msgstr "Udalosť bola odoslaná." -#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209 +#: admin/includes/admin-new.php:210 msgid "Preview event" msgstr "Pozrieť podrobnosti udalosti." -#: admin/includes/admin-new.php:188 +#: admin/includes/admin-new.php:208 #, php-format msgid "Event scheduled for: %1$s>" msgstr "Udalosť naplánovaná na: %1$s>" -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:210 msgid "Event draft updated." msgstr "Koncept udalosti bol aktualizovaný." -#: admin/includes/admin-settings.php:71 +#: admin/includes/admin-settings.php:79 msgid "Go to Event Category switching page" msgstr "Prejdite na stránku prepínania kategórií udalostí" -#: admin/includes/admin-settings.php:83 +#: admin/includes/admin-settings.php:93 msgid "Frontend Settings" msgstr "Nastavenia Frontendu" -#: admin/includes/admin-settings.php:84 +#: admin/includes/admin-settings.php:94 msgid "Admin Page Settings" msgstr "Nastavenia Administračnej stránky" -#: admin/includes/admin-settings.php:85 +#: admin/includes/admin-settings.php:95 msgid "Feed Settings" msgstr "Nastavenia Feedu" -#: admin/includes/admin-settings.php:86 +#: admin/includes/admin-settings.php:96 msgid "Category Taxonomy" msgstr "" -#: includes/daterange_helptexts.php:7 +#: includes/daterange_helptexts.php:8 msgid "Year" msgstr "Rok" -#: includes/daterange_helptexts.php:8 +#: includes/daterange_helptexts.php:9 msgid "A year can be specified in 4 digit format." msgstr "Rok možno špecifikovať v 4-miestnom formáte." -#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14 -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:47 #, php-format msgid "" "For a start date filter the first day of %1$s is used, in an end date the " "last day." msgstr "" -#: includes/daterange_helptexts.php:9 +#: includes/daterange_helptexts.php:10 msgid "the resulting year" msgstr "" -#: includes/daterange_helptexts.php:12 +#: includes/daterange_helptexts.php:15 msgid "Month" msgstr "mesiac" -#: includes/daterange_helptexts.php:13 +#: includes/daterange_helptexts.php:16 msgid "" "A month can be specified with 4 digits for the year and 2 digits for the " "month, seperated by a hyphen (-)." msgstr "" -#: includes/daterange_helptexts.php:14 +#: includes/daterange_helptexts.php:17 msgid "the resulting month" msgstr "" -#: includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:22 msgid "Day" msgstr "deň" -#: includes/daterange_helptexts.php:18 +#: includes/daterange_helptexts.php:23 msgid "" "A day can be specified in the format 4 digits for the year, 2 digits for the" " month and 2 digets for the day, seperated by hyphens (-)." 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 (-)." -#: includes/daterange_helptexts.php:21 +#: includes/daterange_helptexts.php:28 msgid "Relative Year" msgstr "Relatívny rok" -#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28 -#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55 #, php-format msgid "%1$s from now can be specified in the following notation: %2$s" msgstr "" -#: includes/daterange_helptexts.php:22 +#: includes/daterange_helptexts.php:29 msgid "A relative year" msgstr "Relatívny rok" -#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29 -#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38 +#: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56 #, php-format msgid "" "This means you can specify a positive or negative (%1$s) %2$s from now with " "%3$s or %4$s attached (see also the example below)." msgstr "" -#: includes/daterange_helptexts.php:23 +#: includes/daterange_helptexts.php:30 msgid "number of years" msgstr "počet rokov" -#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30 -#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44 +#: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39 +#: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57 #, php-format msgid "Additionally the following values are available: %1$s" msgstr "Okrem toho sú k dispozícii nasledujúce hodnoty: %1$s" -#: includes/daterange_helptexts.php:27 +#: includes/daterange_helptexts.php:36 msgid "Relative Month" msgstr "Relatívny mesiac" -#: includes/daterange_helptexts.php:28 +#: includes/daterange_helptexts.php:37 msgid "A relative month" msgstr "Relatívny mesiac" -#: includes/daterange_helptexts.php:29 +#: includes/daterange_helptexts.php:38 msgid "number of months" msgstr "počet mesiacov" -#: includes/daterange_helptexts.php:33 +#: includes/daterange_helptexts.php:44 msgid "Relative Week" msgstr "Relatívny týždeň" -#: includes/daterange_helptexts.php:34 +#: includes/daterange_helptexts.php:45 msgid "A relative week" msgstr "Relatívny týždeň" -#: includes/daterange_helptexts.php:35 +#: includes/daterange_helptexts.php:46 msgid "number of weeks" msgstr "počet týždňov" -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:47 msgid "the resulting week" msgstr "" -#: includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:48 #, php-format msgid "" "The first day of the week is depending on the option %1$s which can be found" " and changed in %2$s." msgstr "" -#: includes/daterange_helptexts.php:41 +#: includes/daterange_helptexts.php:54 msgid "Relative Day" msgstr "Relatívny deň" -#: includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:55 msgid "A relative day" msgstr "Relatívny deň" -#: includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:56 msgid "number of days" msgstr "počet dní" -#: includes/daterange_helptexts.php:49 +#: includes/daterange_helptexts.php:64 msgid "Date range" msgstr "Rozmedzie dátumov" -#: includes/daterange_helptexts.php:50 +#: includes/daterange_helptexts.php:66 msgid "" "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n" "\t For the start and end date any available date format can be used." msgstr "" -#: includes/daterange_helptexts.php:55 +#: includes/daterange_helptexts.php:75 msgid "This value defines a range without any limits." msgstr "Táto hodnota definuje rozsah bez akýchkoľvek obmedzení." -#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61 -#: includes/daterange_helptexts.php:66 +#: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83 +#: includes/daterange_helptexts.php:90 #, php-format msgid "The corresponding date_range format is: %1$s" msgstr "" -#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 +#: includes/daterange_helptexts.php:81 includes/filterbar.php:310 msgid "Upcoming" msgstr "Nadchádzajúce" -#: includes/daterange_helptexts.php:60 +#: includes/daterange_helptexts.php:82 msgid "This value defines a range from the actual day to the future." msgstr "Táto hodnota definuje rozsah od aktuálneho dňa do budúcnosti." -#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 +#: includes/daterange_helptexts.php:88 includes/filterbar.php:318 msgid "Past" msgstr "Munulé" -#: includes/daterange_helptexts.php:65 +#: includes/daterange_helptexts.php:89 msgid "This value defines a range from the past to the previous day." msgstr "Táto hodnota definuje rozsah od minulosti do predchádzajúceho dňa." -#: includes/event.php:107 +#: includes/event.php:124 msgid "No valid start date provided" msgstr "Nie je k dispozícii platný dátum začiatku" -#: includes/events_post_type.php:60 +#: includes/event.php:299 includes/event.php:301 +#: includes/sc_event-list.php:298 +msgid "read more" +msgstr "" + +#: includes/events_post_type.php:69 msgid "Events" msgstr "Udalosti" -#: includes/events_post_type.php:61 +#: includes/events_post_type.php:70 msgid "Event" msgstr "Udalosť" -#: includes/events_post_type.php:62 +#: includes/events_post_type.php:71 msgid "Add New" msgstr "Pridať novú" -#: includes/events_post_type.php:63 +#: includes/events_post_type.php:72 msgid "Add New Event" msgstr "pridať udalosť" -#: includes/events_post_type.php:64 +#: includes/events_post_type.php:73 msgid "Edit Event" msgstr "Upraviť udalosť" -#: includes/events_post_type.php:65 +#: includes/events_post_type.php:74 msgid "New Event" msgstr "Nová udalosť" -#: includes/events_post_type.php:66 +#: includes/events_post_type.php:75 msgid "View Event" msgstr "Zobraziť udalosť" -#: includes/events_post_type.php:67 +#: includes/events_post_type.php:76 msgid "View Events" msgstr "Zobraziť udalosti" -#: includes/events_post_type.php:68 +#: includes/events_post_type.php:77 msgid "Search Events" msgstr "Vyhľadaj udalosti" -#: includes/events_post_type.php:70 +#: includes/events_post_type.php:79 msgid "No events found in Trash" msgstr "V koši neboli nájdené žiadne udalosti" -#: includes/events_post_type.php:72 +#: includes/events_post_type.php:81 msgid "All Events" msgstr "Všetky udalosti" -#: includes/events_post_type.php:73 +#: includes/events_post_type.php:82 msgid "Event Archives" msgstr "Archív udalostí" -#: includes/events_post_type.php:74 +#: includes/events_post_type.php:83 msgid "Event Attributes" msgstr "Vlastnosti udalostí" -#: includes/events_post_type.php:75 +#: includes/events_post_type.php:84 msgid "Insert into event" msgstr "Vložiť do udalosti" -#: includes/events_post_type.php:76 +#: includes/events_post_type.php:85 msgid "Uploaded to this event" msgstr "Nahrané do tejto udalosti" -#: includes/events_post_type.php:77 +#: includes/events_post_type.php:86 msgid "Event List" msgstr "Zoznam udalostí" -#: includes/events_post_type.php:78 +#: includes/events_post_type.php:87 msgid "Filter events list" msgstr "Filtrovať zoznam udalostí" -#: includes/events_post_type.php:79 +#: includes/events_post_type.php:88 msgid "Events list navigation" msgstr "Navigácia v zozname udalostí" -#: includes/events_post_type.php:80 +#: includes/events_post_type.php:89 msgid "Events list" msgstr "Zoznam udalostí" -#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +#: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90 msgid "Reset" msgstr "Resetovať - znovu nastaviť" -#: includes/filterbar.php:278 +#: includes/filterbar.php:296 msgid "All" msgstr "Všetko" -#: includes/filterbar.php:281 +#: includes/filterbar.php:298 msgid "All Dates" msgstr "Všetky dátumy" -#: includes/options_helptexts.php:10 +#: includes/options_helptexts.php:11 msgid "CSV File to import" msgstr "" -#: includes/options_helptexts.php:12 +#: includes/options_helptexts.php:13 msgid "Please select the file which contains the event data in CSV format." msgstr "" -#: includes/options_helptexts.php:15 +#: includes/options_helptexts.php:18 msgid "Used date format" msgstr "Použitý formát dátumu" -#: includes/options_helptexts.php:17 +#: includes/options_helptexts.php:21 msgid "" "With this option the given date format for event start and end date in the " "CSV file can be specified." msgstr "" -#: includes/options_helptexts.php:18 +#: includes/options_helptexts.php:23 #, php-format msgid "" "You can use the php date format options given in %1$s, the most important " "ones are:" msgstr "" -#: includes/options_helptexts.php:20 +#: includes/options_helptexts.php:26 msgid "full year representation, with 4 digits" msgstr "" -#: includes/options_helptexts.php:21 +#: includes/options_helptexts.php:27 msgid "numeric representation of a month, with leading zeros" msgstr "" -#: includes/options_helptexts.php:22 +#: includes/options_helptexts.php:28 msgid "day of the month, 2 digits with leading zeros" msgstr "" -#: includes/options_helptexts.php:24 +#: includes/options_helptexts.php:30 msgid "" "If the date format in the CSV file does not correspond to the given format, " "the import script tries to recognize the date format by itself." msgstr "" -#: includes/options_helptexts.php:25 +#: includes/options_helptexts.php:31 msgid "" "But this can cause problems or result in wrong dates, so it is recommended " "to specify the correct date format here." msgstr "" -#: includes/options_helptexts.php:26 +#: includes/options_helptexts.php:32 msgid "Examples" msgstr "" -#: includes/options_helptexts.php:33 +#: includes/options_helptexts.php:41 msgid "Text for no events" msgstr "Text pre žiadne udalosti" -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:43 msgid "" "This option defines the displayed text when no events are available for the " "selected view." msgstr "Táto možnosť definuje zobrazený text, ak pre vybrané zobrazenie nie sú k dispozícii žiadne udalosti." -#: includes/options_helptexts.php:38 +#: includes/options_helptexts.php:48 msgid "Multiday filter range" msgstr "Viacdenný rozsah " -#: includes/options_helptexts.php:39 +#: includes/options_helptexts.php:49 msgid "Use the complete event range in the date filter" msgstr "" -#: includes/options_helptexts.php:40 +#: includes/options_helptexts.php:51 msgid "" "This option defines if the complete range of a multiday event shall be " "considered in the date filter." msgstr "" -#: includes/options_helptexts.php:41 +#: includes/options_helptexts.php:52 msgid "" "If disabled, only the start day of an event is considered in the filter." msgstr "Ak je deaktivovaný, vo filtri sa zohľadní iba začiatočný deň udalosti." -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:53 msgid "" "For an example multiday event which started yesterday and ends tomorrow this" " means, that it is displayed in umcoming dates when this option is enabled, " "but it is hidden when the option is disabled." msgstr "" -#: includes/options_helptexts.php:45 +#: includes/options_helptexts.php:58 msgid "Date display" msgstr "Zobrazenie dátumu" -#: includes/options_helptexts.php:46 +#: includes/options_helptexts.php:59 msgid "Show the date only once per day" msgstr "Zobrazte dátum iba raz za deň" -#: includes/options_helptexts.php:47 +#: includes/options_helptexts.php:61 msgid "" "With this option enabled the date is only displayed once per day if more " "than one event is available on the same day." msgstr "" -#: includes/options_helptexts.php:48 +#: includes/options_helptexts.php:62 msgid "" "If enabled, the events are ordered in a different way (end date before start" " time) to allow using the same date for as much events as possible." msgstr "" -#: includes/options_helptexts.php:51 +#: includes/options_helptexts.php:67 msgid "HTML tags" msgstr "HTML značky" -#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:75 #, php-format msgid "Allow HTML tags in the event field \"%1$s\"" msgstr "Povoliť značky HTML v poli udalosti \"%1$s\"" -#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 +#: includes/options_helptexts.php:69 includes/options_helptexts.php:76 #, php-format msgid "" "This option specifies if HTML tags are allowed in the event field \"%1$s\"." msgstr "" -#: includes/options_helptexts.php:61 +#: includes/options_helptexts.php:81 msgid "Preferred language file" msgstr "Preferovaný jazykový súbor" -#: includes/options_helptexts.php:62 +#: includes/options_helptexts.php:82 msgid "Load translations from general language directory first" msgstr "Najprv načítajte preklady zo všeobecného adresára jazykov" -#: includes/options_helptexts.php:63 +#: includes/options_helptexts.php:84 #, php-format msgid "" "The default is to load the %1$s translation file from the plugin language " "directory first (%2$s)." msgstr "" -#: includes/options_helptexts.php:64 +#: includes/options_helptexts.php:85 #, php-format msgid "" "If you want to load your own language file from the general language " @@ -1129,295 +1135,312 @@ msgid "" "language directory, you have to enable this option." msgstr "" -#: includes/options_helptexts.php:68 +#: includes/options_helptexts.php:91 msgid "Events permalink slug" msgstr "" -#: includes/options_helptexts.php:69 +#: includes/options_helptexts.php:92 msgid "" "With this option the slug for the events permalink URLs can be defined." msgstr "" -#: includes/options_helptexts.php:72 +#: includes/options_helptexts.php:97 msgid "Text for \"Show content\"" msgstr "Text pre \"Zobraziť obsah\"" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:98 msgid "" "With this option the displayed text for the link to show the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:76 +#: includes/options_helptexts.php:103 msgid "Text for \"Hide content\"" msgstr "Text pre položku \"Skryť obsah\"" -#: includes/options_helptexts.php:77 +#: includes/options_helptexts.php:104 msgid "" "With this option the displayed text for the link to hide the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:109 msgid "Disable CSS file" msgstr "Zakázať súbor CSS" -#: includes/options_helptexts.php:81 +#: includes/options_helptexts.php:110 #, php-format msgid "Disable the %1$s file." msgstr "" -#: includes/options_helptexts.php:82 +#: includes/options_helptexts.php:112 #, php-format msgid "With this option you can disable the inclusion of the %1$s file." msgstr "" -#: includes/options_helptexts.php:83 +#: includes/options_helptexts.php:113 msgid "" "This normally only make sense if you have css conflicts with your theme and " "want to set all required css styles somewhere else (e.g. in the theme css)." msgstr "" -#: includes/options_helptexts.php:87 +#: includes/options_helptexts.php:119 msgid "Date format in edit form" msgstr "Formát dátumu vo formulári na upravenie" -#: includes/options_helptexts.php:88 +#: includes/options_helptexts.php:121 msgid "" "This option sets the displayed date format for the event date fields in the " "event new / edit form." msgstr "" -#: includes/options_helptexts.php:89 +#: includes/options_helptexts.php:122 msgid "The default is an empty string to use the Wordpress standard setting." msgstr "" -#: includes/options_helptexts.php:90 +#: includes/options_helptexts.php:123 #, php-format msgid "" "All available options to specify the date format can be found %1$shere%2$s." msgstr "" -#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 +#: includes/options_helptexts.php:129 msgid "Enable RSS feed" msgstr "Povoliť RSS kanál" -#: includes/options_helptexts.php:95 -msgid "Enable support for an event RSS feed" +#: includes/options_helptexts.php:130 +msgid "Enable support for the event RSS feed" msgstr "" -#: includes/options_helptexts.php:96 -msgid "This option activates a RSS feed for the events." +#: includes/options_helptexts.php:132 +msgid "" +"This option activates the RSS feed for the events and adds a feed link in " +"the html head." msgstr "" -#: includes/options_helptexts.php:97 +#: includes/options_helptexts.php:133 msgid "" "You have to enable this option if you want to use one of the RSS feed " "features." msgstr "" -#: includes/options_helptexts.php:100 -msgid "Feed name" -msgstr "Názov kanála" +#: includes/options_helptexts.php:138 +msgid "Enable iCal feed" +msgstr "" -#: includes/options_helptexts.php:101 -#, php-format -msgid "This option sets the feed name. The default value is %1$s." +#: includes/options_helptexts.php:139 +msgid "Enable support for the event iCal feed" msgstr "" -#: includes/options_helptexts.php:102 -#, php-format +#: includes/options_helptexts.php:141 +msgid "This option activates the iCal feed for events." +msgstr "" + +#: includes/options_helptexts.php:142 msgid "" -"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " -"enabled)." +"You have to enable this option if you want to use one of the iCal features." msgstr "" -#: includes/options_helptexts.php:105 -msgid "Feed Description" -msgstr "Popis kanála" +#: includes/options_helptexts.php:147 +msgid "Position of the RSS feed link" +msgstr "" -#: includes/options_helptexts.php:106 -#, php-format -msgid "This options set the feed description. The default value is %1$s." -msgstr "Tieto možnosti nastavujú popis kanála. Predvolená hodnota je %1$s." +#: includes/options_helptexts.php:149 +msgid "at the top (above the navigation bar)" +msgstr "v hornej časti (nad navigačnou lištou)" + +#: includes/options_helptexts.php:150 +msgid "between navigation bar and events" +msgstr "medzi navigačnou lištou a udalosťami" + +#: includes/options_helptexts.php:151 +msgid "at the bottom" +msgstr "na spodku" -#: includes/options_helptexts.php:107 +#: includes/options_helptexts.php:153 msgid "" -"This description will be used in the title for the feed link in the html " -"head and for the description in the feed itself." +"This option specifies the position of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:110 -msgid "Listed events" -msgstr "Zoznam udalostí" +#: includes/options_helptexts.php:158 +msgid "Align of the RSS feed link" +msgstr "" -#: includes/options_helptexts.php:111 -msgid "Only show upcoming events in feed" -msgstr "Zobrazovať iba nadchádzajúce udalosti v informačnom kanály" +#: includes/options_helptexts.php:160 +msgid "left" +msgstr "vľavo" -#: includes/options_helptexts.php:112 +#: includes/options_helptexts.php:161 +msgid "center" +msgstr "v strede" + +#: includes/options_helptexts.php:162 +msgid "right" +msgstr "vpravo" + +#: includes/options_helptexts.php:164 msgid "" -"If this option is enabled only the upcoming events are listed in the feed." +"This option specifies the align of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:113 -msgid "If disabled all events (upcoming and past) will be listed." -msgstr "Ak je zakázané, všetky udalosti (nadchádzajúce a minulé), budú zobrazené." +#: includes/options_helptexts.php:169 +msgid "RSS feed name" +msgstr "" -#: includes/options_helptexts.php:116 -msgid "Add RSS feed link in head" +#: includes/options_helptexts.php:171 +#, php-format +msgid "This option sets the RSS feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:117 -msgid "Add RSS feed link in the html head" +#: includes/options_helptexts.php:172 +#, php-format +msgid "" +"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " +"enabled)." msgstr "" -#: includes/options_helptexts.php:118 -msgid "This option adds a RSS feed in the html head for the events." +#: includes/options_helptexts.php:177 +msgid "RSS feed Description" msgstr "" -#: includes/options_helptexts.php:119 -msgid "There are 2 alternatives to include the RSS feed" +#: includes/options_helptexts.php:179 +#, php-format +msgid "This options set the RSS feed description. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:120 +#: includes/options_helptexts.php:180 msgid "" -"The first way is this option to include a link in the html head. This link " -"will be recognized by browers or feed readers." +"This description will be used in the title for the feed link in the html " +"head and for the description in the feed itself." msgstr "" -#: includes/options_helptexts.php:121 -#, php-format -msgid "" -"The second way is to include a visible feed link directly in the event list." -" This can be done by setting the shortcode attribute %1$s to %2$s." +#: includes/options_helptexts.php:185 +msgid "RSS feed events" msgstr "" -#: includes/options_helptexts.php:122 -#, php-format -msgid "This option is only valid if the setting %1$s is enabled." -msgstr "Táto možnosť je platná len v prípade ak %1$s je povolené." +#: includes/options_helptexts.php:186 +msgid "Only show upcoming events in the RSS feed" +msgstr "" -#: includes/options_helptexts.php:125 -msgid "Position of the RSS feed link" +#: includes/options_helptexts.php:188 +msgid "" +"If this option is enabled only the upcoming events are listed in the RSS " +"feed." msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the top (above the navigation bar)" -msgstr "v hornej časti (nad navigačnou lištou)" +#: includes/options_helptexts.php:189 includes/options_helptexts.php:215 +msgid "If disabled, all events (upcoming and past) will be listed." +msgstr "" -#: includes/options_helptexts.php:126 -msgid "between navigation bar and events" -msgstr "medzi navigačnou lištou a udalosťami" +#: includes/options_helptexts.php:194 +msgid "RSS link text" +msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the bottom" -msgstr "na spodku" +#: includes/options_helptexts.php:196 +msgid "This option sets the caption of the RSS feed link in the event list." +msgstr "" -#: includes/options_helptexts.php:127 -msgid "" -"This option specifies the position of the RSS feed link in the event list." +#: includes/options_helptexts.php:197 +msgid "Use an empty text to only show the rss image." msgstr "" -#: includes/options_helptexts.php:128 includes/options_helptexts.php:134 -#: includes/options_helptexts.php:140 includes/options_helptexts.php:146 +#: includes/options_helptexts.php:198 #, php-format msgid "" "You have to set the shortcode attribute %1$s to %2$s if you want to show the" -" feed link." +" RSS feed link." msgstr "" -#: includes/options_helptexts.php:131 -msgid "Align of the RSS feed link" +#: includes/options_helptexts.php:203 +msgid "iCal feed name" msgstr "" -#: includes/options_helptexts.php:132 -msgid "left" -msgstr "vľavo" - -#: includes/options_helptexts.php:132 -msgid "center" -msgstr "v strede" - -#: includes/options_helptexts.php:132 -msgid "right" -msgstr "vpravo" +#: includes/options_helptexts.php:205 +#, php-format +msgid "This option sets the iCal feed name. The default value is %1$s." +msgstr "" -#: includes/options_helptexts.php:133 +#: includes/options_helptexts.php:206 +#, php-format msgid "" -"This option specifies the align of the RSS feed link in the event list." +"This name will be used in the iCal feed url (e.g. %1$s, or %2$s with " +"permalinks enabled)." msgstr "" -#: includes/options_helptexts.php:137 -msgid "Feed link text" +#: includes/options_helptexts.php:211 +msgid "iCal feed events" msgstr "" -#: includes/options_helptexts.php:138 -msgid "" -"This option specifies the caption of the RSS feed link in the event list." +#: includes/options_helptexts.php:212 +msgid "Only show upcoming events in the iCal feed" msgstr "" -#: includes/options_helptexts.php:139 +#: includes/options_helptexts.php:214 msgid "" -"Insert an empty text to hide any text if you only want to show the rss " -"image." +"If this option is enabled only the upcoming events are listed in the iCal " +"file." msgstr "" -#: includes/options_helptexts.php:143 -msgid "Feed link image" +#: includes/options_helptexts.php:220 +msgid "iCal link text" msgstr "" -#: includes/options_helptexts.php:144 -msgid "Show rss image in feed link" +#: includes/options_helptexts.php:222 +msgid "This option sets the iCal link text in the event list." msgstr "" -#: includes/options_helptexts.php:145 +#: includes/options_helptexts.php:223 +msgid "Use an empty text to only show the iCal image." +msgstr "" + +#: includes/options_helptexts.php:224 +#, php-format msgid "" -"This option specifies if the an image should be dispayed in the feed link in" -" front of the text." +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" iCal feed link." msgstr "" -#: includes/options_helptexts.php:151 +#: includes/options_helptexts.php:231 msgid "Event Category handling" msgstr "Spracovanie kategórie udalostí" -#: includes/options_helptexts.php:152 +#: includes/options_helptexts.php:232 msgid "Use Post Categories" msgstr "" -#: includes/options_helptexts.php:153 +#: includes/options_helptexts.php:234 msgid "" "Do not maintain seperate categories for the events, and use the existing " "post categories instead." msgstr "" -#: includes/options_helptexts.php:154 +#: includes/options_helptexts.php:235 msgid "Attention" msgstr "Upozornenie" -#: includes/options_helptexts.php:155 +#: includes/options_helptexts.php:236 msgid "" "This option cannot be changed directly, but you can go to the Event Category" " switching page from here." msgstr "Táto možnosť sa nedá zmeniť priamo, ale môžete prejsť na stránku prepínania kategórií udalostí" -#: includes/options.php:40 +#: includes/options.php:73 msgid "events" msgstr "udalosti" -#: includes/options.php:41 +#: includes/options.php:77 msgid "Show content" msgstr "Zobraziť obsah" -#: includes/options.php:42 +#: includes/options.php:81 msgid "Hide content" msgstr "Skryť obsah" -#: includes/sc_event-list_helptexts.php:7 +#: includes/sc_event-list_helptexts.php:8 msgid "event-id" msgstr "identifikátor udalosti" -#: includes/sc_event-list_helptexts.php:8 +#: includes/sc_event-list_helptexts.php:9 #, php-format msgid "" "By default the event-list is displayed initially. But if an event-id (e.g. " @@ -1425,107 +1448,107 @@ msgid "" "this event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:10 -#: includes/sc_event-list_helptexts.php:22 +#: includes/sc_event-list_helptexts.php:13 +#: includes/sc_event-list_helptexts.php:31 msgid "year" msgstr "Rok" -#: includes/sc_event-list_helptexts.php:11 +#: includes/sc_event-list_helptexts.php:14 msgid "" "This attribute defines which events are initially shown. The default is to " "show the upcoming events only." msgstr "Tento atribút definuje, ktoré udalosti sa na začiatku zobrazujú. Predvolenou možnosťou je zobraziť len nadchádzajúce udalosti." -#: includes/sc_event-list_helptexts.php:12 +#: includes/sc_event-list_helptexts.php:15 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:14 +#: includes/sc_event-list_helptexts.php:19 msgid "category slug" msgstr "" -#: includes/sc_event-list_helptexts.php:15 +#: includes/sc_event-list_helptexts.php:20 msgid "" "This attribute defines the category of which events are initially shown. The" " default is to show events of all categories." msgstr "Tento atribút definuje kategóriu udalostí, ktoré sú na začiatku zobrazené. Predvolená hodnota je zobrazovať udalosti všetkých kategórií." -#: includes/sc_event-list_helptexts.php:16 +#: includes/sc_event-list_helptexts.php:21 msgid "" "Provide a category slug to change this behavior. It is still possible to " "change the displayed categories via the filterbar or url parameters." msgstr "" -#: includes/sc_event-list_helptexts.php:19 +#: includes/sc_event-list_helptexts.php:26 msgid "This attribute defines the initial order of the events." msgstr "Tento atribút definuje počiatočné poradie udalostí." -#: includes/sc_event-list_helptexts.php:20 +#: includes/sc_event-list_helptexts.php:27 msgid "" "With %1$S (default value) the events are sorted from old to new, with %2$s " "in the opposite direction (from new to old)." msgstr "" -#: includes/sc_event-list_helptexts.php:23 +#: includes/sc_event-list_helptexts.php:32 #, php-format msgid "" "This attribute defines the dates and date ranges of which events are " "displayed. The default is %1$s to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:24 +#: includes/sc_event-list_helptexts.php:33 #, php-format msgid "" "Filtered events according to %1$s value are not available in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:25 +#: includes/sc_event-list_helptexts.php:34 #, php-format msgid "" "You can find all available values with a description and examples in the " "sections %1$s and %2$s below." msgstr "" -#: includes/sc_event-list_helptexts.php:26 +#: includes/sc_event-list_helptexts.php:35 #, php-format msgid "See %1$s description if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:28 +#: includes/sc_event-list_helptexts.php:39 msgid "category slugs" msgstr "" -#: includes/sc_event-list_helptexts.php:29 +#: includes/sc_event-list_helptexts.php:40 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:30 +#: includes/sc_event-list_helptexts.php:41 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:31 +#: includes/sc_event-list_helptexts.php:42 #, php-format msgid "" "The filter is specified via the given category slugs. See %1$s description " "if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:33 -#: includes/sc_event-list_helptexts.php:74 -#: includes/sc_event-list_helptexts.php:89 -#: includes/sc_event-list_helptexts.php:104 +#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:111 +#: includes/sc_event-list_helptexts.php:138 +#: includes/sc_event-list_helptexts.php:177 msgid "number" msgstr "číslo" -#: includes/sc_event-list_helptexts.php:34 +#: includes/sc_event-list_helptexts.php:47 #, php-format msgid "" "This attribute defines how many events should be displayed if upcoming " @@ -1533,109 +1556,109 @@ msgid "" "displayed." msgstr "Tento atribút definuje, koľko udalostí by sa malo zobraziť, ak sa vyberú nadchádzajúce udalosti. Pri štandardnej hodnote %1$s sa zobrazia všetky udalosti." -#: includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:48 msgid "" "Please not that in the actual version there is no pagination of the events " "available, so the event list can be very long." msgstr "Uvedomte si prosím, že v aktuálnej verzii nie je k dispozícii žiadne stránkovanie udalostí, takže zoznam udalostí môže byť veľmi dlhý." -#: includes/sc_event-list_helptexts.php:38 +#: includes/sc_event-list_helptexts.php:53 msgid "" "This attribute defines if the filterbar should be displayed. The filterbar " "allows the users to specify filters for the listed events." msgstr "" -#: includes/sc_event-list_helptexts.php:39 +#: includes/sc_event-list_helptexts.php:54 #, php-format msgid "Choose %1$s to always hide and %2$s to always show the filterbar." msgstr "" -#: includes/sc_event-list_helptexts.php:40 +#: includes/sc_event-list_helptexts.php:55 #, php-format msgid "" "With %1$s the filterbar is only visible in the event list and with %2$s only" " in the single event view." msgstr "" -#: includes/sc_event-list_helptexts.php:43 +#: includes/sc_event-list_helptexts.php:60 #, php-format msgid "" "This attribute specifies the available items in the filterbar. This options " "are only valid if the filterbar is displayed (see %1$s attribute)." msgstr "" -#: includes/sc_event-list_helptexts.php:44 +#: includes/sc_event-list_helptexts.php:61 msgid "" "Find below an overview of the available filterbar items and their options:" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "filterbar item" msgstr "položka filtra" -#: includes/sc_event-list_helptexts.php:46 -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:96 msgid "description" msgstr "popis" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "item options" msgstr "možnosti hodnoty" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option values" msgstr "hodnoty ponuky" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "default value" msgstr "predvolená hodnota" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option description" msgstr "popis možnosti" -#: includes/sc_event-list_helptexts.php:47 +#: includes/sc_event-list_helptexts.php:67 msgid "" "Show a list of all available years. Additional there are some special " "entries available (see item options)." msgstr "Zobrazte zoznam všetkých dostupných rokov. Ďalej sú k dispozícii niektoré špeciálne položky (pozri možnosti položiek)." -#: includes/sc_event-list_helptexts.php:48 -#: includes/sc_event-list_helptexts.php:53 +#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:82 msgid "Add an entry to show all events." msgstr "Pridajte položku, aby ste zobrazili všetky udalosti." -#: includes/sc_event-list_helptexts.php:49 -#: includes/sc_event-list_helptexts.php:54 +#: includes/sc_event-list_helptexts.php:73 +#: includes/sc_event-list_helptexts.php:84 msgid "Add an entry to show all upcoming events." msgstr "Pridajte položku na zobrazenie všetkých nadchádzajúcich udalostí." -#: includes/sc_event-list_helptexts.php:50 -#: includes/sc_event-list_helptexts.php:55 +#: includes/sc_event-list_helptexts.php:74 +#: includes/sc_event-list_helptexts.php:85 msgid "Add an entry to show events in the past." msgstr "Pridajte položku na zobrazenie udalostí v minulosti." -#: includes/sc_event-list_helptexts.php:51 +#: includes/sc_event-list_helptexts.php:75 msgid "Set descending or ascending order of year entries." msgstr "Nastavte zostupne alebo vzostupne poradie rokov." -#: includes/sc_event-list_helptexts.php:52 +#: includes/sc_event-list_helptexts.php:78 msgid "Show a list of all available months." msgstr "Zobraziť zoznam všetkých dostupných mesiacov." -#: includes/sc_event-list_helptexts.php:56 +#: includes/sc_event-list_helptexts.php:86 msgid "Set descending or ascending order of month entries." msgstr "Nastavte mesiace zostupne alebo vzostupne." -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "php date-formats" msgstr "php formáty dátumov" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "Set the displayed date format of the month entries." msgstr "Nastavte zobrazený formát dátumu pre mesačné záznamy." -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "With this item you can display the special entries %1$s, %2$s and %3$s. You " @@ -1643,65 +1666,65 @@ msgid "" "order." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "Specifies the displayed values and their order. The items must be seperated " "by %1$s." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Show a list of all available categories." msgstr "Zobraziť zoznam všetkých dostupných kategórií." -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Add an entry to show events from all categories." msgstr "Pridajte položku na zobrazenie udalostí zo všetkých kategórií." -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "A link to reset the eventlist filter to standard." msgstr "Odkaz na obnovenie filtrovania zoznamu udalostí na štandardné." -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "any text" msgstr "akýkoľvek text" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "Set the caption of the link." msgstr "Titulok pre odkaz" -#: includes/sc_event-list_helptexts.php:61 +#: includes/sc_event-list_helptexts.php:93 msgid "Find below an overview of the available filterbar display options:" msgstr "Nižšie nájdete prehľad dostupných možností zobrazenia filtračnej lišty:" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "display option" msgstr "možnosti zobrazenia" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "available for" msgstr "dostupný pre" -#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:97 #, php-format msgid "Shows a horizonal list seperated by %1$s with a link to each item." msgstr "" -#: includes/sc_event-list_helptexts.php:65 +#: includes/sc_event-list_helptexts.php:98 msgid "" "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." msgstr "Zobrazí pole výberu, v ktorom sa dá vybrať položka. Po výbere položky sa stránka opätovne načíta pomocou javascriptu, aby sa zobrazili filtrované udalosti." -#: includes/sc_event-list_helptexts.php:66 +#: includes/sc_event-list_helptexts.php:99 msgid "Shows a simple link which can be clicked." msgstr "Zobrazuje jednoduchý odkaz, na ktorý je možné kliknúť." -#: includes/sc_event-list_helptexts.php:67 +#: includes/sc_event-list_helptexts.php:102 msgid "Find below some declaration examples with descriptions:" msgstr "Nižšie nájdete niekoľko príkladov s popismi:" -#: includes/sc_event-list_helptexts.php:69 +#: includes/sc_event-list_helptexts.php:104 #, php-format msgid "" "In this example you can see that the filterbar item and the used display " @@ -1709,22 +1732,22 @@ msgid "" "items seperated by a comma %2$s. These items will be displayed left-aligned." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "option_name" msgstr "názov_možnosti" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "value" msgstr "hodnota" -#: includes/sc_event-list_helptexts.php:72 +#: includes/sc_event-list_helptexts.php:107 #, php-format msgid "" "The 2 semicolon %1$s devides the bar in 3 section. The first section will be" @@ -1733,75 +1756,84 @@ msgid "" "left-aligned and the reset link will be on the right side." msgstr "" -#: includes/sc_event-list_helptexts.php:75 -#: includes/sc_event-list_helptexts.php:90 +#: includes/sc_event-list_helptexts.php:112 +#: includes/sc_event-list_helptexts.php:139 msgid "" "This attribute specifies if the title should be truncated to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:76 -#: includes/sc_event-list_helptexts.php:91 +#: includes/sc_event-list_helptexts.php:113 +#: includes/sc_event-list_helptexts.php:140 #, php-format msgid "" "With the standard value %1$s the full text is displayed, with %2$s the text " "is automatically truncated via css." msgstr "" -#: includes/sc_event-list_helptexts.php:77 -#: includes/sc_event-list_helptexts.php:92 -#: includes/sc_event-list_helptexts.php:107 +#: includes/sc_event-list_helptexts.php:114 +#: includes/sc_event-list_helptexts.php:141 +#: includes/sc_event-list_helptexts.php:180 msgid "This attribute has no influence if only a single event is shown." msgstr "Tento atribút nemá žiadny vplyv, ak je zobrazená iba jedna udalosť." -#: includes/sc_event-list_helptexts.php:80 +#: includes/sc_event-list_helptexts.php:120 msgid "" "This attribute specifies if the starttime is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n" "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:85 +#: includes/sc_event-list_helptexts.php:130 msgid "" "This attribute specifies if the location is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n" "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:95 +#: includes/sc_event-list_helptexts.php:147 msgid "" "This attribute specifies if the categories are displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n" "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:100 +#: includes/sc_event-list_helptexts.php:157 msgid "" "This attribute specifies if the content is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n" "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:105 +#: includes/sc_event-list_helptexts.php:167 +msgid "" +"This attribute specifies if the excerpt is displayed in the event list.<br />\n" +"\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n" +"\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" +"\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" +"\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)." +msgstr "" + +#: includes/sc_event-list_helptexts.php:178 msgid "" "This attribute specifies if the content should be truncate to the given " "number of characters in the event list." msgstr "Tento atribút určuje, či by sa obsah mal skrátiť na daný počet znakov v zozname udalostí." -#: includes/sc_event-list_helptexts.php:106 +#: includes/sc_event-list_helptexts.php:179 #, php-format msgid "With the standard value %1$s the full text is displayed." msgstr "Pri štandardnej hodnote %1$s sa zobrazí celý text." -#: includes/sc_event-list_helptexts.php:110 +#: includes/sc_event-list_helptexts.php:186 msgid "" -"This attribute specifies if the content should be collapsed initially.<br />\n" +"This attribute specifies if the content or excerpt should be collapsed initially.<br />\n" "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n" "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n" "\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." msgstr "" -#: includes/sc_event-list_helptexts.php:116 +#: includes/sc_event-list_helptexts.php:197 msgid "" "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n" "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n" @@ -1809,7 +1841,7 @@ msgid "" "\t With \"events_with_content_only\" the link is only added in the event list for events with event content." msgstr "" -#: includes/sc_event-list_helptexts.php:122 +#: includes/sc_event-list_helptexts.php:208 msgid "" "This attribute specifies if a rss feed link should be added.<br />\n" "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n" @@ -1818,32 +1850,52 @@ msgid "" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:128 +#: includes/sc_event-list_helptexts.php:220 +msgid "" +"This attribute specifies if a ical feed link should be added.<br />\n" +"\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n" +"\t On that page you can also find some settings to modify the output.<br />\n" +"\t Choose \"false\" to never add and \"true\" to always add the link.<br />" +msgstr "" + +#: includes/sc_event-list_helptexts.php:231 msgid "" "This attribute specifies the page or post url for event links.<br />\n" "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n" "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget." msgstr "" -#: includes/sc_event-list_helptexts.php:135 +#: includes/sc_event-list_helptexts.php:243 msgid "" "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n" "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget." msgstr "" -#: includes/sc_event-list.php:135 +#: includes/sc_event-list.php:154 +msgid "Sorry, the requested event is not available!" +msgstr "" + +#: includes/sc_event-list.php:163 msgid "Event Information:" msgstr "Informácie o udalosti" -#: includes/widget_helptexts.php:10 +#: includes/sc_event-list.php:405 +msgid "Link to RSS feed" +msgstr "" + +#: includes/sc_event-list.php:414 +msgid "Link to iCal feed" +msgstr "" + +#: includes/widget_helptexts.php:11 msgid "This option defines the displayed title for the widget." msgstr "Táto možnosť definuje zobrazený názov miniaplikácie." -#: includes/widget_helptexts.php:15 +#: includes/widget_helptexts.php:18 msgid "Category Filter" msgstr "Filter kategórií" -#: includes/widget_helptexts.php:17 +#: includes/widget_helptexts.php:20 msgid "" "This option defines the categories of which events are shown. The standard " "is all or an empty string to show all events. Specify a category slug or a " @@ -1852,137 +1904,145 @@ msgid "" "all possibilities." msgstr "" -#: includes/widget_helptexts.php:22 +#: includes/widget_helptexts.php:27 msgid "Number of listed events" msgstr "Počet uvedených udalostí " -#: includes/widget_helptexts.php:24 +#: includes/widget_helptexts.php:29 msgid "The number of upcoming events to display" msgstr "Počet nadchádzajúcich udalostí, ktoré sa majú zobraziť" -#: includes/widget_helptexts.php:29 +#: includes/widget_helptexts.php:36 msgid "Truncate event title to" msgstr "Skrátiť názov udalosti na" -#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52 -#: includes/widget_helptexts.php:67 +#: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65 +#: includes/widget_helptexts.php:93 msgid "characters" msgstr "znaky" -#: includes/widget_helptexts.php:31 +#: includes/widget_helptexts.php:38 msgid "" "This option defines the number of displayed characters for the event title." msgstr "Táto možnosť definuje počet zobrazených znakov pre názov udalosti." -#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54 +#: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67 #, php-format msgid "" "Set this value to %1$s to view the full text, or set it to %2$s to " "automatically truncate the text via css." msgstr "" -#: includes/widget_helptexts.php:37 +#: includes/widget_helptexts.php:46 msgid "Show event starttime" msgstr "Zobraziť čas začiatku udalosti" -#: includes/widget_helptexts.php:39 +#: includes/widget_helptexts.php:48 msgid "This option defines if the event start time will be displayed." msgstr "" -#: includes/widget_helptexts.php:44 +#: includes/widget_helptexts.php:55 msgid "Show event location" msgstr "Zobraziť miesto udalosti" -#: includes/widget_helptexts.php:46 +#: includes/widget_helptexts.php:57 msgid "This option defines if the event location will be displayed." msgstr "Táto možnosť určuje, či sa zobrazí miesto udalosti." -#: includes/widget_helptexts.php:51 +#: includes/widget_helptexts.php:64 msgid "Truncate location to" msgstr "Skrátiť umiestnenie na" -#: includes/widget_helptexts.php:53 +#: includes/widget_helptexts.php:66 msgid "" "If the event location is diplayed this option defines the number of " "displayed characters." msgstr "Ak sa zobrazuje miesto udalosti, táto možnosť definuje počet zobrazených znakov." -#: includes/widget_helptexts.php:59 +#: includes/widget_helptexts.php:74 +msgid "Show event excerpt" +msgstr "" + +#: includes/widget_helptexts.php:76 +msgid "This option defines if the event excerpt will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:83 msgid "Show event content" msgstr "Zobraziť obsah udalosti" -#: includes/widget_helptexts.php:61 +#: includes/widget_helptexts.php:85 msgid "This option defines if the event content will be displayed." msgstr "Táto možnosť určuje, či sa bude zobrazovať obsah udalosti." -#: includes/widget_helptexts.php:66 +#: includes/widget_helptexts.php:92 msgid "Truncate content to" msgstr "Skrátiť obsah na" -#: includes/widget_helptexts.php:68 +#: includes/widget_helptexts.php:94 msgid "" "If the event content are diplayed this option defines the number of diplayed" " characters." msgstr "Ak sa zobrazí obsah udalosti, táto možnosť definuje počet zobrazených znakov." -#: includes/widget_helptexts.php:69 +#: includes/widget_helptexts.php:95 #, php-format msgid "Set this value to %1$s to view the full text." msgstr "Nastav túto hodnotu na %1$s na zobrazenie celého textu." -#: includes/widget_helptexts.php:74 +#: includes/widget_helptexts.php:102 msgid "URL to the linked Event List page" msgstr "URL ku stránke Zoznamu udalostí" -#: includes/widget_helptexts.php:76 +#: includes/widget_helptexts.php:104 msgid "" "This option defines the url to the linked Event List page. This option is " "required if you want to use one of the options below." msgstr "" -#: includes/widget_helptexts.php:81 +#: includes/widget_helptexts.php:111 msgid "Shortcode ID on linked page" msgstr "" -#: includes/widget_helptexts.php:83 +#: includes/widget_helptexts.php:113 msgid "" "This option defines the shortcode-id for the Event List on the linked page. " "Normally the standard value 1 is correct, you only have to change it if you " "use multiple event-list shortcodes on the linked page." msgstr "" -#: includes/widget_helptexts.php:90 +#: includes/widget_helptexts.php:122 msgid "" "With this option you can add a link to the single event page for every " "displayed event. You have to specify the url to the page and the shortcode " "id option if you want to use it." msgstr "" -#: includes/widget_helptexts.php:97 +#: includes/widget_helptexts.php:131 msgid "" "With this option you can add a link to the event-list page below the " "diplayed events. You have to specify the url to page option if you want to " "use it." msgstr "" -#: includes/widget_helptexts.php:102 +#: includes/widget_helptexts.php:138 msgid "Caption for the link" msgstr "Titulok pre odkaz" -#: includes/widget_helptexts.php:104 +#: includes/widget_helptexts.php:140 msgid "" "This option defines the text for the link to the Event List page if the " "approriate option is selected." msgstr "Táto možnosť definuje text odkazu na stránku Zoznam udalostí, ak je vybratá príslušná možnosť." -#: includes/widget.php:20 +#: includes/widget.php:21 msgid "With this widget a list of upcoming events can be displayed." msgstr "Pomocou tejto miniaplikácie sa môže zobraziť zoznam nadchádzajúcich udalostí." -#: includes/widget.php:25 +#: includes/widget.php:26 msgid "Upcoming events" msgstr "Nadchádzajúce udalosti" -#: includes/widget.php:38 +#: includes/widget.php:40 msgid "show events page" msgstr "zobraziť stránku udalostí" diff --git a/wp-content/plugins/event-list/languages/event-list-sl_SI.mo b/wp-content/plugins/event-list/languages/event-list-sl_SI.mo index dc2773febc5c9a9aecad6afdc2b7c64c056c71c4..aa07e54797cc885e2f220a3b3b4135d2cde38e7c 100644 Binary files a/wp-content/plugins/event-list/languages/event-list-sl_SI.mo and b/wp-content/plugins/event-list/languages/event-list-sl_SI.mo differ diff --git a/wp-content/plugins/event-list/languages/event-list-sl_SI.po b/wp-content/plugins/event-list/languages/event-list-sl_SI.po index 28fcdb0d904e3aa5ae80b99fdb84468762de93f4..6ce41035dc1005f6d13de573a22d3c7cce936e8c 100644 --- a/wp-content/plugins/event-list/languages/event-list-sl_SI.po +++ b/wp-content/plugins/event-list/languages/event-list-sl_SI.po @@ -1,5 +1,5 @@ # Translation file for the 'Event List' WordPress plugin -# Copyright (C) 2018 by mibuthu +# Copyright (C) 2021 by mibuthu # This file is distributed under the same license as the corresponding wordpress plugin. # # Translators: @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: wp-event-list\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n" -"POT-Creation-Date: 2018-05-27 12:20+0200\n" -"PO-Revision-Date: 2018-05-27 10:20+0000\n" +"POT-Creation-Date: 2021-04-24 11:28+0200\n" +"PO-Revision-Date: 2021-04-24 09:26+0000\n" "Last-Translator: mibuthu\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/mibuthu/wp-event-list/language/sl_SI/)\n" "MIME-Version: 1.0\n" @@ -18,33 +18,33 @@ msgstr "" "Language: sl_SI\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Errors during upgrade of plugin %1$s" msgstr "" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Upgrade of plugin %1$s successful" msgstr "" -#: admin/admin.php:106 admin/includes/admin-settings.php:65 +#: admin/admin.php:116 admin/includes/admin-settings.php:73 msgid "Event List Settings" msgstr "Nastavitve seznama dogodkov" -#: admin/admin.php:106 +#: admin/admin.php:116 msgid "Settings" msgstr "Nastavitve" -#: admin/admin.php:110 admin/includes/admin-about.php:37 +#: admin/admin.php:120 admin/includes/admin-about.php:43 msgid "About Event List" msgstr "O seznamu dogodkov" -#: admin/admin.php:110 +#: admin/admin.php:120 msgid "About" msgstr "Info" -#: admin/admin.php:132 +#: admin/admin.php:144 #, php-format msgid "%s Event" msgid_plural "%s Events" @@ -53,84 +53,84 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 +#: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92 msgid "General" msgstr "" -#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 -#: admin/includes/admin-about.php:105 +#: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88 +#: admin/includes/admin-about.php:117 msgid "Shortcode Attributes" msgstr "" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:82 msgid "Help and Instructions" msgstr "" -#: admin/includes/admin-about.php:73 +#: admin/includes/admin-about.php:83 #, php-format msgid "You can manage the events %1$shere%2$s" msgstr "" -#: admin/includes/admin-about.php:74 +#: admin/includes/admin-about.php:84 msgid "To show the events on your site you have 2 possibilities" msgstr "" -#: admin/includes/admin-about.php:75 +#: admin/includes/admin-about.php:85 #, php-format msgid "you can place the <strong>shortcode</strong> %1$s on any page or post" msgstr "" -#: admin/includes/admin-about.php:76 +#: admin/includes/admin-about.php:86 #, php-format msgid "you can add the <strong>widget</strong> %1$s in your sidebars" msgstr "" -#: admin/includes/admin-about.php:77 +#: admin/includes/admin-about.php:87 msgid "" "The displayed events and their style can be modified with the available " "widget settings and the available attributes for the shortcode." msgstr "" -#: admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:88 #, php-format msgid "" "A list of all available shortcode attributes with their descriptions is " "available in the %1$s tab." msgstr "" -#: admin/includes/admin-about.php:79 +#: admin/includes/admin-about.php:89 msgid "The available widget options are described in their tooltip text." msgstr "" -#: admin/includes/admin-about.php:80 +#: admin/includes/admin-about.php:90 #, php-format msgid "" "If you enable one of the links options (%1$s or %2$s) in the widget you have" " to insert an URL to the linked event-list page." msgstr "" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120 msgid "Add links to the single events" msgstr "" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129 msgid "Add a link to the Event List page" msgstr "" -#: admin/includes/admin-about.php:81 +#: admin/includes/admin-about.php:91 msgid "" "This is required because the widget does not know in which page or post the " "shortcode was included." msgstr "" -#: admin/includes/admin-about.php:82 +#: admin/includes/admin-about.php:92 msgid "" "Additionally you have to insert the correct Shortcode id on the linked page." " This id describes which shortcode should be used on the given page or post " "if you have more than one." msgstr "" -#: admin/includes/admin-about.php:83 +#: admin/includes/admin-about.php:93 #, php-format msgid "" "The default value %1$s is normally o.k. (for pages with 1 shortcode only), " @@ -138,367 +138,367 @@ msgid "" "link on your linked page or post." msgstr "" -#: admin/includes/admin-about.php:84 +#: admin/includes/admin-about.php:94 #, php-format msgid "The id is available at the end of the URL parameters (e.g. %1$s)." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 #, php-format msgid "" "Be sure to also check the %1$s to get the plugin behaving just the way you " "want." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 msgid "Settings page" msgstr "" -#: admin/includes/admin-about.php:92 +#: admin/includes/admin-about.php:103 msgid "About the plugin author" msgstr "" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:105 #, php-format msgid "" "This plugin is developed by %1$s, you can find more information about the " "plugin on the %2$s." msgstr "" -#: admin/includes/admin-about.php:94 -msgid "wordpress plugin site" +#: admin/includes/admin-about.php:105 +msgid "WordPress plugin site" msgstr "" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:106 #, php-format msgid "If you like the plugin please rate it on the %1$s." msgstr "" -#: admin/includes/admin-about.php:95 -msgid "wordpress plugin review site" +#: admin/includes/admin-about.php:106 +msgid "WordPress plugin review site" msgstr "" -#: admin/includes/admin-about.php:96 +#: admin/includes/admin-about.php:107 msgid "" "If you want to support the plugin I would be happy to get a small donation" msgstr "" -#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 -#: admin/includes/admin-about.php:99 +#: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109 +#: admin/includes/admin-about.php:110 #, php-format msgid "Donate with %1$s" msgstr "" -#: admin/includes/admin-about.php:107 +#: admin/includes/admin-about.php:119 msgid "" "You have the possibility to modify the output if you add some of the " "following attributes to the shortcode." msgstr "" -#: admin/includes/admin-about.php:108 +#: admin/includes/admin-about.php:120 #, php-format msgid "" "You can combine and add as much attributes as you want. E.g. the shortcode " "including the attributes %1$s and %2$s would looks like this:" msgstr "" -#: admin/includes/admin-about.php:110 +#: admin/includes/admin-about.php:122 msgid "" "Below you can find a list of all supported attributes with their " "descriptions and available options:" msgstr "" -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:137 msgid "Attribute name" msgstr "" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:138 msgid "Value options" msgstr "" -#: admin/includes/admin-about.php:126 +#: admin/includes/admin-about.php:139 msgid "Default value" msgstr "" -#: admin/includes/admin-about.php:127 +#: admin/includes/admin-about.php:140 msgid "Description" msgstr "" -#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 -#: includes/sc_event-list_helptexts.php:31 +#: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:42 msgid "Filter Syntax" msgstr "" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:160 msgid "" "For date and cat filters you can specify complex filters with the following " "syntax:" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 #, php-format msgid "" "You can use %1$s and %2$s connections to define complex filters. " "Additionally you can set brackets %3$s for nested queries." msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "AND" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "OR" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "or" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "and" msgstr "" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:162 msgid "Examples for cat filters:" msgstr "" -#: admin/includes/admin-about.php:149 +#: admin/includes/admin-about.php:163 #, php-format msgid "Show all events with category %1$s." msgstr "" -#: admin/includes/admin-about.php:150 +#: admin/includes/admin-about.php:164 #, php-format msgid "Show all events with category %1$s or %2$s." msgstr "" -#: admin/includes/admin-about.php:151 +#: admin/includes/admin-about.php:165 #, php-format msgid "" "Show all events with category %1$s and all events where category %2$s as " "well as %3$s is selected." msgstr "" -#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34 msgid "Available Date Formats" msgstr "" -#: admin/includes/admin-about.php:157 +#: admin/includes/admin-about.php:172 msgid "For date filters you can use the following date formats:" msgstr "" -#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34 msgid "Available Date Range Formats" msgstr "" -#: admin/includes/admin-about.php:166 +#: admin/includes/admin-about.php:182 msgid "For date filters you can use the following daterange formats:" msgstr "" -#: admin/includes/admin-about.php:178 +#: admin/includes/admin-about.php:195 msgid "Value" msgstr "" -#: admin/includes/admin-about.php:182 +#: admin/includes/admin-about.php:199 msgid "Example" msgstr "" -#: admin/includes/admin-categories.php:38 +#: admin/includes/admin-categories.php:54 msgid "Synchronize with post categories" msgstr "" -#: admin/includes/admin-categories.php:46 +#: admin/includes/admin-categories.php:63 #, php-format msgid "%1$s categories modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:47 +#: admin/includes/admin-categories.php:64 #, php-format msgid "%1$s categories added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:48 +#: admin/includes/admin-categories.php:65 #, php-format msgid "%1$s categories deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:50 +#: admin/includes/admin-categories.php:67 #, php-format msgid "%1$s categories not modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:51 +#: admin/includes/admin-categories.php:68 #, php-format msgid "%1$s categories not added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:52 +#: admin/includes/admin-categories.php:69 #, php-format msgid "%1$s categories not deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:55 +#: admin/includes/admin-categories.php:72 msgid "An Error occured during the category sync" msgstr "" -#: admin/includes/admin-categories.php:59 +#: admin/includes/admin-categories.php:75 msgid "Category sync finished" msgstr "" -#: admin/includes/admin-category-sync.php:45 +#: admin/includes/admin-category-sync.php:54 msgid "Error: You are not allowed to view this page!" msgstr "" -#: admin/includes/admin-category-sync.php:62 +#: admin/includes/admin-category-sync.php:70 msgid "Affected Categories when switching to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:63 +#: admin/includes/admin-category-sync.php:71 msgid "Switch option to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:64 +#: admin/includes/admin-category-sync.php:72 msgid "" "If you proceed, all post categories will be copied and all events will be " "re-assigned to this new categories." msgstr "" -#: admin/includes/admin-category-sync.php:65 +#: admin/includes/admin-category-sync.php:73 msgid "" "Afterwards the event categories are independent of the post categories." msgstr "" -#: admin/includes/admin-category-sync.php:68 +#: admin/includes/admin-category-sync.php:75 msgid "Affected Categories when switching to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:69 +#: admin/includes/admin-category-sync.php:76 msgid "Switch option to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:70 +#: admin/includes/admin-category-sync.php:77 msgid "" "Take a detailed look at the affected categories above before you proceed! " "All seperate event categories will be deleted, this cannot be undone!" msgstr "" -#: admin/includes/admin-category-sync.php:73 +#: admin/includes/admin-category-sync.php:79 msgid "Event Categories: Synchronise with Post Categories" msgstr "" -#: admin/includes/admin-category-sync.php:74 +#: admin/includes/admin-category-sync.php:80 msgid "Start synchronisation" msgstr "" -#: admin/includes/admin-category-sync.php:75 +#: admin/includes/admin-category-sync.php:81 msgid "" "If this option is enabled the above listed categories will be deleted and " "removed from the existing events!" msgstr "" -#: admin/includes/admin-category-sync.php:90 +#: admin/includes/admin-category-sync.php:96 msgid "Categories to modify" msgstr "" -#: admin/includes/admin-category-sync.php:91 +#: admin/includes/admin-category-sync.php:97 msgid "Categories to add" msgstr "" -#: admin/includes/admin-category-sync.php:92 +#: admin/includes/admin-category-sync.php:98 msgid "Categories to delete (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:93 +#: admin/includes/admin-category-sync.php:99 msgid "Delete not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:97 +#: admin/includes/admin-category-sync.php:102 msgid "Categories with differences" msgstr "" -#: admin/includes/admin-category-sync.php:98 +#: admin/includes/admin-category-sync.php:103 msgid "Categories to add (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:99 +#: admin/includes/admin-category-sync.php:104 msgid "Add not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:117 +#: admin/includes/admin-category-sync.php:123 msgid "none" msgstr "" -#: admin/includes/admin-import.php:49 +#: admin/includes/admin-import.php:58 msgid "Import Events" msgstr "" -#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116 +#: admin/includes/admin-import.php:220 msgid "Step" msgstr "" -#: admin/includes/admin-import.php:69 +#: admin/includes/admin-import.php:79 msgid "Set import file and options" msgstr "" -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:82 #, php-format msgid "Proceed with Step %1$s" msgstr "" -#: admin/includes/admin-import.php:75 +#: admin/includes/admin-import.php:85 msgid "Example file" msgstr "" -#: admin/includes/admin-import.php:76 +#: admin/includes/admin-import.php:86 #, php-format msgid "" "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)" msgstr "" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "Note" msgstr "" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "" "Do not change the column header and separator line (first two lines), " "otherwise the import will fail!" msgstr "" -#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 +#: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103 msgid "Sorry, there has been an error." msgstr "" -#: admin/includes/admin-import.php:85 +#: admin/includes/admin-import.php:96 msgid "The file does not exist, please try again." msgstr "" -#: admin/includes/admin-import.php:93 +#: admin/includes/admin-import.php:104 msgid "The uploaded file does not have the required csv extension." msgstr "" -#: admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:116 msgid "Events review and additonal category selection" msgstr "" -#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133 msgid "Error" msgstr "" -#: admin/includes/admin-import.php:111 +#: admin/includes/admin-import.php:122 msgid "This CSV file cannot be imported" msgstr "" -#: admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:133 msgid "None of the events in this CSV file can be imported" msgstr "" -#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179 msgid "Warning" msgstr "" -#: admin/includes/admin-import.php:126 +#: admin/includes/admin-import.php:138 #, php-format msgid "There is %1$s event which cannot be imported" msgid_plural "There are %1$s events which cannot be imported" @@ -507,619 +507,624 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: admin/includes/admin-import.php:134 +#: admin/includes/admin-import.php:150 #, php-format msgid "CSV line %1$s" msgstr "" -#: admin/includes/admin-import.php:144 +#: admin/includes/admin-import.php:160 msgid "You can still import all other events listed below." msgstr "" -#: admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:179 msgid "" "The following category slugs are not available and will be removed from the " "imported events" msgstr "" -#: admin/includes/admin-import.php:169 +#: admin/includes/admin-import.php:185 msgid "" "If you want to keep these categories, please create these Categories first " "and do the import afterwards." msgstr "" -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:220 msgid "Import result" msgstr "" -#: admin/includes/admin-import.php:201 +#: admin/includes/admin-import.php:223 #, php-format msgid "Import of %1$s events successful!" msgstr "" -#: admin/includes/admin-import.php:202 +#: admin/includes/admin-import.php:224 msgid "Go back to All Events" msgstr "" -#: admin/includes/admin-import.php:206 +#: admin/includes/admin-import.php:227 msgid "Errors during Import" msgstr "" -#: admin/includes/admin-import.php:215 +#: admin/includes/admin-import.php:235 msgid "Event from CSV-line" msgstr "" -#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 -#: includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77 +#: includes/widget_helptexts.php:9 msgid "Title" msgstr "" -#: admin/includes/admin-import.php:227 +#: admin/includes/admin-import.php:248 msgid "Start Date" msgstr "" -#: admin/includes/admin-import.php:228 +#: admin/includes/admin-import.php:249 msgid "End Date" msgstr "" -#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 -#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 +#: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:69 msgid "Time" msgstr "" -#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62 -#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57 -#: includes/options_helptexts.php:58 +#: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78 +#: admin/includes/admin-new.php:107 includes/options_helptexts.php:75 +#: includes/options_helptexts.php:76 msgid "Location" msgstr "" -#: admin/includes/admin-import.php:231 +#: admin/includes/admin-import.php:252 msgid "Content" msgstr "" -#: admin/includes/admin-import.php:232 +#: admin/includes/admin-import.php:253 msgid "Category slugs" msgstr "" -#: admin/includes/admin-import.php:274 +#: admin/includes/admin-import.php:297 msgid "Header line is missing or not correct!" msgstr "" -#: admin/includes/admin-import.php:275 +#: admin/includes/admin-import.php:298 #, php-format msgid "" "Have a look at the %1$sexample file%2$s to see the correct header line " "format." msgstr "" -#: admin/includes/admin-import.php:281 +#: admin/includes/admin-import.php:305 #, php-format msgid "Wrong number of items in line (%1$s items found, 6-7 required)" msgstr "" -#: admin/includes/admin-import.php:309 +#: admin/includes/admin-import.php:334 msgid "Empty event title found" msgstr "" -#: admin/includes/admin-import.php:315 +#: admin/includes/admin-import.php:340 msgid "Wrong date format for startdate" msgstr "" -#: admin/includes/admin-import.php:324 +#: admin/includes/admin-import.php:348 msgid "Wrong date format for enddate" msgstr "" -#: admin/includes/admin-import.php:365 +#: admin/includes/admin-import.php:401 msgid "Import events" msgstr "" -#: admin/includes/admin-import.php:366 +#: admin/includes/admin-import.php:402 msgid "Add additional categories" msgstr "" -#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +#: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257 msgid "Import" msgstr "" -#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +#: admin/includes/admin-import.php:428 includes/events_post_type.php:78 msgid "No events found" msgstr "" -#: admin/includes/admin-import.php:432 +#: admin/includes/admin-import.php:473 msgid "Saving of event failed!" msgstr "" -#: admin/includes/admin-main.php:60 +#: admin/includes/admin-main.php:76 msgid "Event Date" msgstr "" -#: admin/includes/admin-main.php:64 +#: admin/includes/admin-main.php:80 msgid "Author" msgstr "" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 #, php-format msgid "Add a copy of %1$s" msgstr "" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 msgid "Copy" msgstr "" -#: admin/includes/admin-new.php:51 +#: admin/includes/admin-new.php:58 msgid "Event data" msgstr "" -#: admin/includes/admin-new.php:80 +#: admin/includes/admin-new.php:90 msgid "Add Copy" msgstr "" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "Date" msgstr "" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "required" msgstr "" -#: admin/includes/admin-new.php:87 +#: admin/includes/admin-new.php:101 msgid "Multi-Day Event" msgstr "" -#: admin/includes/admin-new.php:106 +#: admin/includes/admin-new.php:121 msgid "Event Title" msgstr "" -#: admin/includes/admin-new.php:121 +#: admin/includes/admin-new.php:137 msgid "Event Content" msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203 msgid "Event updated." msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205 msgid "View event" msgstr "" -#: admin/includes/admin-new.php:184 +#: admin/includes/admin-new.php:204 #, php-format msgid "Event restored to revision from %1$s" msgstr "" -#: admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:205 msgid "Event published." msgstr "" -#: admin/includes/admin-new.php:187 +#: admin/includes/admin-new.php:207 msgid "Event submitted." msgstr "" -#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209 +#: admin/includes/admin-new.php:210 msgid "Preview event" msgstr "" -#: admin/includes/admin-new.php:188 +#: admin/includes/admin-new.php:208 #, php-format msgid "Event scheduled for: %1$s>" msgstr "" -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:210 msgid "Event draft updated." msgstr "" -#: admin/includes/admin-settings.php:71 +#: admin/includes/admin-settings.php:79 msgid "Go to Event Category switching page" msgstr "" -#: admin/includes/admin-settings.php:83 +#: admin/includes/admin-settings.php:93 msgid "Frontend Settings" msgstr "" -#: admin/includes/admin-settings.php:84 +#: admin/includes/admin-settings.php:94 msgid "Admin Page Settings" msgstr "" -#: admin/includes/admin-settings.php:85 +#: admin/includes/admin-settings.php:95 msgid "Feed Settings" msgstr "" -#: admin/includes/admin-settings.php:86 +#: admin/includes/admin-settings.php:96 msgid "Category Taxonomy" msgstr "" -#: includes/daterange_helptexts.php:7 +#: includes/daterange_helptexts.php:8 msgid "Year" msgstr "" -#: includes/daterange_helptexts.php:8 +#: includes/daterange_helptexts.php:9 msgid "A year can be specified in 4 digit format." msgstr "" -#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14 -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:47 #, php-format msgid "" "For a start date filter the first day of %1$s is used, in an end date the " "last day." msgstr "" -#: includes/daterange_helptexts.php:9 +#: includes/daterange_helptexts.php:10 msgid "the resulting year" msgstr "" -#: includes/daterange_helptexts.php:12 +#: includes/daterange_helptexts.php:15 msgid "Month" msgstr "" -#: includes/daterange_helptexts.php:13 +#: includes/daterange_helptexts.php:16 msgid "" "A month can be specified with 4 digits for the year and 2 digits for the " "month, seperated by a hyphen (-)." msgstr "" -#: includes/daterange_helptexts.php:14 +#: includes/daterange_helptexts.php:17 msgid "the resulting month" msgstr "" -#: includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:22 msgid "Day" msgstr "" -#: includes/daterange_helptexts.php:18 +#: includes/daterange_helptexts.php:23 msgid "" "A day can be specified in the format 4 digits for the year, 2 digits for the" " month and 2 digets for the day, seperated by hyphens (-)." msgstr "" -#: includes/daterange_helptexts.php:21 +#: includes/daterange_helptexts.php:28 msgid "Relative Year" msgstr "" -#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28 -#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55 #, php-format msgid "%1$s from now can be specified in the following notation: %2$s" msgstr "" -#: includes/daterange_helptexts.php:22 +#: includes/daterange_helptexts.php:29 msgid "A relative year" msgstr "" -#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29 -#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38 +#: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56 #, php-format msgid "" "This means you can specify a positive or negative (%1$s) %2$s from now with " "%3$s or %4$s attached (see also the example below)." msgstr "" -#: includes/daterange_helptexts.php:23 +#: includes/daterange_helptexts.php:30 msgid "number of years" msgstr "" -#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30 -#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44 +#: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39 +#: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57 #, php-format msgid "Additionally the following values are available: %1$s" msgstr "" -#: includes/daterange_helptexts.php:27 +#: includes/daterange_helptexts.php:36 msgid "Relative Month" msgstr "" -#: includes/daterange_helptexts.php:28 +#: includes/daterange_helptexts.php:37 msgid "A relative month" msgstr "" -#: includes/daterange_helptexts.php:29 +#: includes/daterange_helptexts.php:38 msgid "number of months" msgstr "" -#: includes/daterange_helptexts.php:33 +#: includes/daterange_helptexts.php:44 msgid "Relative Week" msgstr "" -#: includes/daterange_helptexts.php:34 +#: includes/daterange_helptexts.php:45 msgid "A relative week" msgstr "" -#: includes/daterange_helptexts.php:35 +#: includes/daterange_helptexts.php:46 msgid "number of weeks" msgstr "" -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:47 msgid "the resulting week" msgstr "" -#: includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:48 #, php-format msgid "" "The first day of the week is depending on the option %1$s which can be found" " and changed in %2$s." msgstr "" -#: includes/daterange_helptexts.php:41 +#: includes/daterange_helptexts.php:54 msgid "Relative Day" msgstr "" -#: includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:55 msgid "A relative day" msgstr "" -#: includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:56 msgid "number of days" msgstr "" -#: includes/daterange_helptexts.php:49 +#: includes/daterange_helptexts.php:64 msgid "Date range" msgstr "" -#: includes/daterange_helptexts.php:50 +#: includes/daterange_helptexts.php:66 msgid "" "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n" "\t For the start and end date any available date format can be used." msgstr "" -#: includes/daterange_helptexts.php:55 +#: includes/daterange_helptexts.php:75 msgid "This value defines a range without any limits." msgstr "" -#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61 -#: includes/daterange_helptexts.php:66 +#: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83 +#: includes/daterange_helptexts.php:90 #, php-format msgid "The corresponding date_range format is: %1$s" msgstr "" -#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 +#: includes/daterange_helptexts.php:81 includes/filterbar.php:310 msgid "Upcoming" msgstr "" -#: includes/daterange_helptexts.php:60 +#: includes/daterange_helptexts.php:82 msgid "This value defines a range from the actual day to the future." msgstr "" -#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 +#: includes/daterange_helptexts.php:88 includes/filterbar.php:318 msgid "Past" msgstr "" -#: includes/daterange_helptexts.php:65 +#: includes/daterange_helptexts.php:89 msgid "This value defines a range from the past to the previous day." msgstr "" -#: includes/event.php:107 +#: includes/event.php:124 msgid "No valid start date provided" msgstr "" -#: includes/events_post_type.php:60 +#: includes/event.php:299 includes/event.php:301 +#: includes/sc_event-list.php:298 +msgid "read more" +msgstr "" + +#: includes/events_post_type.php:69 msgid "Events" msgstr "Dogodki" -#: includes/events_post_type.php:61 +#: includes/events_post_type.php:70 msgid "Event" msgstr "" -#: includes/events_post_type.php:62 +#: includes/events_post_type.php:71 msgid "Add New" msgstr "Dodaj" -#: includes/events_post_type.php:63 +#: includes/events_post_type.php:72 msgid "Add New Event" msgstr "Dodaj dogodek" -#: includes/events_post_type.php:64 +#: includes/events_post_type.php:73 msgid "Edit Event" msgstr "" -#: includes/events_post_type.php:65 +#: includes/events_post_type.php:74 msgid "New Event" msgstr "" -#: includes/events_post_type.php:66 +#: includes/events_post_type.php:75 msgid "View Event" msgstr "" -#: includes/events_post_type.php:67 +#: includes/events_post_type.php:76 msgid "View Events" msgstr "" -#: includes/events_post_type.php:68 +#: includes/events_post_type.php:77 msgid "Search Events" msgstr "" -#: includes/events_post_type.php:70 +#: includes/events_post_type.php:79 msgid "No events found in Trash" msgstr "" -#: includes/events_post_type.php:72 +#: includes/events_post_type.php:81 msgid "All Events" msgstr "Vsi dogodki" -#: includes/events_post_type.php:73 +#: includes/events_post_type.php:82 msgid "Event Archives" msgstr "" -#: includes/events_post_type.php:74 +#: includes/events_post_type.php:83 msgid "Event Attributes" msgstr "" -#: includes/events_post_type.php:75 +#: includes/events_post_type.php:84 msgid "Insert into event" msgstr "" -#: includes/events_post_type.php:76 +#: includes/events_post_type.php:85 msgid "Uploaded to this event" msgstr "" -#: includes/events_post_type.php:77 +#: includes/events_post_type.php:86 msgid "Event List" msgstr "Seznam dogodkov" -#: includes/events_post_type.php:78 +#: includes/events_post_type.php:87 msgid "Filter events list" msgstr "" -#: includes/events_post_type.php:79 +#: includes/events_post_type.php:88 msgid "Events list navigation" msgstr "" -#: includes/events_post_type.php:80 +#: includes/events_post_type.php:89 msgid "Events list" msgstr "" -#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +#: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90 msgid "Reset" msgstr "" -#: includes/filterbar.php:278 +#: includes/filterbar.php:296 msgid "All" msgstr "" -#: includes/filterbar.php:281 +#: includes/filterbar.php:298 msgid "All Dates" msgstr "" -#: includes/options_helptexts.php:10 +#: includes/options_helptexts.php:11 msgid "CSV File to import" msgstr "" -#: includes/options_helptexts.php:12 +#: includes/options_helptexts.php:13 msgid "Please select the file which contains the event data in CSV format." msgstr "" -#: includes/options_helptexts.php:15 +#: includes/options_helptexts.php:18 msgid "Used date format" msgstr "" -#: includes/options_helptexts.php:17 +#: includes/options_helptexts.php:21 msgid "" "With this option the given date format for event start and end date in the " "CSV file can be specified." msgstr "" -#: includes/options_helptexts.php:18 +#: includes/options_helptexts.php:23 #, php-format msgid "" "You can use the php date format options given in %1$s, the most important " "ones are:" msgstr "" -#: includes/options_helptexts.php:20 +#: includes/options_helptexts.php:26 msgid "full year representation, with 4 digits" msgstr "" -#: includes/options_helptexts.php:21 +#: includes/options_helptexts.php:27 msgid "numeric representation of a month, with leading zeros" msgstr "" -#: includes/options_helptexts.php:22 +#: includes/options_helptexts.php:28 msgid "day of the month, 2 digits with leading zeros" msgstr "" -#: includes/options_helptexts.php:24 +#: includes/options_helptexts.php:30 msgid "" "If the date format in the CSV file does not correspond to the given format, " "the import script tries to recognize the date format by itself." msgstr "" -#: includes/options_helptexts.php:25 +#: includes/options_helptexts.php:31 msgid "" "But this can cause problems or result in wrong dates, so it is recommended " "to specify the correct date format here." msgstr "" -#: includes/options_helptexts.php:26 +#: includes/options_helptexts.php:32 msgid "Examples" msgstr "" -#: includes/options_helptexts.php:33 +#: includes/options_helptexts.php:41 msgid "Text for no events" msgstr "" -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:43 msgid "" "This option defines the displayed text when no events are available for the " "selected view." msgstr "" -#: includes/options_helptexts.php:38 +#: includes/options_helptexts.php:48 msgid "Multiday filter range" msgstr "" -#: includes/options_helptexts.php:39 +#: includes/options_helptexts.php:49 msgid "Use the complete event range in the date filter" msgstr "" -#: includes/options_helptexts.php:40 +#: includes/options_helptexts.php:51 msgid "" "This option defines if the complete range of a multiday event shall be " "considered in the date filter." msgstr "" -#: includes/options_helptexts.php:41 +#: includes/options_helptexts.php:52 msgid "" "If disabled, only the start day of an event is considered in the filter." msgstr "" -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:53 msgid "" "For an example multiday event which started yesterday and ends tomorrow this" " means, that it is displayed in umcoming dates when this option is enabled, " "but it is hidden when the option is disabled." msgstr "" -#: includes/options_helptexts.php:45 +#: includes/options_helptexts.php:58 msgid "Date display" msgstr "" -#: includes/options_helptexts.php:46 +#: includes/options_helptexts.php:59 msgid "Show the date only once per day" msgstr "" -#: includes/options_helptexts.php:47 +#: includes/options_helptexts.php:61 msgid "" "With this option enabled the date is only displayed once per day if more " "than one event is available on the same day." msgstr "" -#: includes/options_helptexts.php:48 +#: includes/options_helptexts.php:62 msgid "" "If enabled, the events are ordered in a different way (end date before start" " time) to allow using the same date for as much events as possible." msgstr "" -#: includes/options_helptexts.php:51 +#: includes/options_helptexts.php:67 msgid "HTML tags" msgstr "" -#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:75 #, php-format msgid "Allow HTML tags in the event field \"%1$s\"" msgstr "" -#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 +#: includes/options_helptexts.php:69 includes/options_helptexts.php:76 #, php-format msgid "" "This option specifies if HTML tags are allowed in the event field \"%1$s\"." msgstr "" -#: includes/options_helptexts.php:61 +#: includes/options_helptexts.php:81 msgid "Preferred language file" msgstr "" -#: includes/options_helptexts.php:62 +#: includes/options_helptexts.php:82 msgid "Load translations from general language directory first" msgstr "" -#: includes/options_helptexts.php:63 +#: includes/options_helptexts.php:84 #, php-format msgid "" "The default is to load the %1$s translation file from the plugin language " "directory first (%2$s)." msgstr "" -#: includes/options_helptexts.php:64 +#: includes/options_helptexts.php:85 #, php-format msgid "" "If you want to load your own language file from the general language " @@ -1127,295 +1132,312 @@ msgid "" "language directory, you have to enable this option." msgstr "" -#: includes/options_helptexts.php:68 +#: includes/options_helptexts.php:91 msgid "Events permalink slug" msgstr "" -#: includes/options_helptexts.php:69 +#: includes/options_helptexts.php:92 msgid "" "With this option the slug for the events permalink URLs can be defined." msgstr "" -#: includes/options_helptexts.php:72 +#: includes/options_helptexts.php:97 msgid "Text for \"Show content\"" msgstr "" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:98 msgid "" "With this option the displayed text for the link to show the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:76 +#: includes/options_helptexts.php:103 msgid "Text for \"Hide content\"" msgstr "" -#: includes/options_helptexts.php:77 +#: includes/options_helptexts.php:104 msgid "" "With this option the displayed text for the link to hide the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:109 msgid "Disable CSS file" msgstr "" -#: includes/options_helptexts.php:81 +#: includes/options_helptexts.php:110 #, php-format msgid "Disable the %1$s file." msgstr "" -#: includes/options_helptexts.php:82 +#: includes/options_helptexts.php:112 #, php-format msgid "With this option you can disable the inclusion of the %1$s file." msgstr "" -#: includes/options_helptexts.php:83 +#: includes/options_helptexts.php:113 msgid "" "This normally only make sense if you have css conflicts with your theme and " "want to set all required css styles somewhere else (e.g. in the theme css)." msgstr "" -#: includes/options_helptexts.php:87 +#: includes/options_helptexts.php:119 msgid "Date format in edit form" msgstr "" -#: includes/options_helptexts.php:88 +#: includes/options_helptexts.php:121 msgid "" "This option sets the displayed date format for the event date fields in the " "event new / edit form." msgstr "" -#: includes/options_helptexts.php:89 +#: includes/options_helptexts.php:122 msgid "The default is an empty string to use the Wordpress standard setting." msgstr "" -#: includes/options_helptexts.php:90 +#: includes/options_helptexts.php:123 #, php-format msgid "" "All available options to specify the date format can be found %1$shere%2$s." msgstr "" -#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 +#: includes/options_helptexts.php:129 msgid "Enable RSS feed" msgstr "" -#: includes/options_helptexts.php:95 -msgid "Enable support for an event RSS feed" +#: includes/options_helptexts.php:130 +msgid "Enable support for the event RSS feed" msgstr "" -#: includes/options_helptexts.php:96 -msgid "This option activates a RSS feed for the events." +#: includes/options_helptexts.php:132 +msgid "" +"This option activates the RSS feed for the events and adds a feed link in " +"the html head." msgstr "" -#: includes/options_helptexts.php:97 +#: includes/options_helptexts.php:133 msgid "" "You have to enable this option if you want to use one of the RSS feed " "features." msgstr "" -#: includes/options_helptexts.php:100 -msgid "Feed name" +#: includes/options_helptexts.php:138 +msgid "Enable iCal feed" msgstr "" -#: includes/options_helptexts.php:101 -#, php-format -msgid "This option sets the feed name. The default value is %1$s." +#: includes/options_helptexts.php:139 +msgid "Enable support for the event iCal feed" msgstr "" -#: includes/options_helptexts.php:102 -#, php-format -msgid "" -"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " -"enabled)." +#: includes/options_helptexts.php:141 +msgid "This option activates the iCal feed for events." msgstr "" -#: includes/options_helptexts.php:105 -msgid "Feed Description" +#: includes/options_helptexts.php:142 +msgid "" +"You have to enable this option if you want to use one of the iCal features." msgstr "" -#: includes/options_helptexts.php:106 -#, php-format -msgid "This options set the feed description. The default value is %1$s." +#: includes/options_helptexts.php:147 +msgid "Position of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:107 -msgid "" -"This description will be used in the title for the feed link in the html " -"head and for the description in the feed itself." +#: includes/options_helptexts.php:149 +msgid "at the top (above the navigation bar)" msgstr "" -#: includes/options_helptexts.php:110 -msgid "Listed events" +#: includes/options_helptexts.php:150 +msgid "between navigation bar and events" msgstr "" -#: includes/options_helptexts.php:111 -msgid "Only show upcoming events in feed" +#: includes/options_helptexts.php:151 +msgid "at the bottom" msgstr "" -#: includes/options_helptexts.php:112 +#: includes/options_helptexts.php:153 msgid "" -"If this option is enabled only the upcoming events are listed in the feed." +"This option specifies the position of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:113 -msgid "If disabled all events (upcoming and past) will be listed." +#: includes/options_helptexts.php:158 +msgid "Align of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:116 -msgid "Add RSS feed link in head" +#: includes/options_helptexts.php:160 +msgid "left" msgstr "" -#: includes/options_helptexts.php:117 -msgid "Add RSS feed link in the html head" +#: includes/options_helptexts.php:161 +msgid "center" msgstr "" -#: includes/options_helptexts.php:118 -msgid "This option adds a RSS feed in the html head for the events." +#: includes/options_helptexts.php:162 +msgid "right" msgstr "" -#: includes/options_helptexts.php:119 -msgid "There are 2 alternatives to include the RSS feed" +#: includes/options_helptexts.php:164 +msgid "" +"This option specifies the align of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:120 -msgid "" -"The first way is this option to include a link in the html head. This link " -"will be recognized by browers or feed readers." +#: includes/options_helptexts.php:169 +msgid "RSS feed name" msgstr "" -#: includes/options_helptexts.php:121 +#: includes/options_helptexts.php:171 #, php-format -msgid "" -"The second way is to include a visible feed link directly in the event list." -" This can be done by setting the shortcode attribute %1$s to %2$s." +msgid "This option sets the RSS feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:122 +#: includes/options_helptexts.php:172 #, php-format -msgid "This option is only valid if the setting %1$s is enabled." +msgid "" +"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " +"enabled)." msgstr "" -#: includes/options_helptexts.php:125 -msgid "Position of the RSS feed link" +#: includes/options_helptexts.php:177 +msgid "RSS feed Description" msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the top (above the navigation bar)" +#: includes/options_helptexts.php:179 +#, php-format +msgid "This options set the RSS feed description. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:126 -msgid "between navigation bar and events" +#: includes/options_helptexts.php:180 +msgid "" +"This description will be used in the title for the feed link in the html " +"head and for the description in the feed itself." msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the bottom" +#: includes/options_helptexts.php:185 +msgid "RSS feed events" msgstr "" -#: includes/options_helptexts.php:127 -msgid "" -"This option specifies the position of the RSS feed link in the event list." +#: includes/options_helptexts.php:186 +msgid "Only show upcoming events in the RSS feed" msgstr "" -#: includes/options_helptexts.php:128 includes/options_helptexts.php:134 -#: includes/options_helptexts.php:140 includes/options_helptexts.php:146 -#, php-format +#: includes/options_helptexts.php:188 msgid "" -"You have to set the shortcode attribute %1$s to %2$s if you want to show the" -" feed link." +"If this option is enabled only the upcoming events are listed in the RSS " +"feed." msgstr "" -#: includes/options_helptexts.php:131 -msgid "Align of the RSS feed link" +#: includes/options_helptexts.php:189 includes/options_helptexts.php:215 +msgid "If disabled, all events (upcoming and past) will be listed." msgstr "" -#: includes/options_helptexts.php:132 -msgid "left" +#: includes/options_helptexts.php:194 +msgid "RSS link text" msgstr "" -#: includes/options_helptexts.php:132 -msgid "center" +#: includes/options_helptexts.php:196 +msgid "This option sets the caption of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:132 -msgid "right" +#: includes/options_helptexts.php:197 +msgid "Use an empty text to only show the rss image." msgstr "" -#: includes/options_helptexts.php:133 +#: includes/options_helptexts.php:198 +#, php-format msgid "" -"This option specifies the align of the RSS feed link in the event list." +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" RSS feed link." msgstr "" -#: includes/options_helptexts.php:137 -msgid "Feed link text" +#: includes/options_helptexts.php:203 +msgid "iCal feed name" msgstr "" -#: includes/options_helptexts.php:138 +#: includes/options_helptexts.php:205 +#, php-format +msgid "This option sets the iCal feed name. The default value is %1$s." +msgstr "" + +#: includes/options_helptexts.php:206 +#, php-format msgid "" -"This option specifies the caption of the RSS feed link in the event list." +"This name will be used in the iCal feed url (e.g. %1$s, or %2$s with " +"permalinks enabled)." msgstr "" -#: includes/options_helptexts.php:139 +#: includes/options_helptexts.php:211 +msgid "iCal feed events" +msgstr "" + +#: includes/options_helptexts.php:212 +msgid "Only show upcoming events in the iCal feed" +msgstr "" + +#: includes/options_helptexts.php:214 msgid "" -"Insert an empty text to hide any text if you only want to show the rss " -"image." +"If this option is enabled only the upcoming events are listed in the iCal " +"file." +msgstr "" + +#: includes/options_helptexts.php:220 +msgid "iCal link text" msgstr "" -#: includes/options_helptexts.php:143 -msgid "Feed link image" +#: includes/options_helptexts.php:222 +msgid "This option sets the iCal link text in the event list." msgstr "" -#: includes/options_helptexts.php:144 -msgid "Show rss image in feed link" +#: includes/options_helptexts.php:223 +msgid "Use an empty text to only show the iCal image." msgstr "" -#: includes/options_helptexts.php:145 +#: includes/options_helptexts.php:224 +#, php-format msgid "" -"This option specifies if the an image should be dispayed in the feed link in" -" front of the text." +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" iCal feed link." msgstr "" -#: includes/options_helptexts.php:151 +#: includes/options_helptexts.php:231 msgid "Event Category handling" msgstr "" -#: includes/options_helptexts.php:152 +#: includes/options_helptexts.php:232 msgid "Use Post Categories" msgstr "" -#: includes/options_helptexts.php:153 +#: includes/options_helptexts.php:234 msgid "" "Do not maintain seperate categories for the events, and use the existing " "post categories instead." msgstr "" -#: includes/options_helptexts.php:154 +#: includes/options_helptexts.php:235 msgid "Attention" msgstr "" -#: includes/options_helptexts.php:155 +#: includes/options_helptexts.php:236 msgid "" "This option cannot be changed directly, but you can go to the Event Category" " switching page from here." msgstr "" -#: includes/options.php:40 +#: includes/options.php:73 msgid "events" msgstr "" -#: includes/options.php:41 +#: includes/options.php:77 msgid "Show content" msgstr "" -#: includes/options.php:42 +#: includes/options.php:81 msgid "Hide content" msgstr "" -#: includes/sc_event-list_helptexts.php:7 +#: includes/sc_event-list_helptexts.php:8 msgid "event-id" msgstr "" -#: includes/sc_event-list_helptexts.php:8 +#: includes/sc_event-list_helptexts.php:9 #, php-format msgid "" "By default the event-list is displayed initially. But if an event-id (e.g. " @@ -1423,107 +1445,107 @@ msgid "" "this event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:10 -#: includes/sc_event-list_helptexts.php:22 +#: includes/sc_event-list_helptexts.php:13 +#: includes/sc_event-list_helptexts.php:31 msgid "year" msgstr "" -#: includes/sc_event-list_helptexts.php:11 +#: includes/sc_event-list_helptexts.php:14 msgid "" "This attribute defines which events are initially shown. The default is to " "show the upcoming events only." msgstr "" -#: includes/sc_event-list_helptexts.php:12 +#: includes/sc_event-list_helptexts.php:15 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:14 +#: includes/sc_event-list_helptexts.php:19 msgid "category slug" msgstr "" -#: includes/sc_event-list_helptexts.php:15 +#: includes/sc_event-list_helptexts.php:20 msgid "" "This attribute defines the category of which events are initially shown. The" " default is to show events of all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:16 +#: includes/sc_event-list_helptexts.php:21 msgid "" "Provide a category slug to change this behavior. It is still possible to " "change the displayed categories via the filterbar or url parameters." msgstr "" -#: includes/sc_event-list_helptexts.php:19 +#: includes/sc_event-list_helptexts.php:26 msgid "This attribute defines the initial order of the events." msgstr "" -#: includes/sc_event-list_helptexts.php:20 +#: includes/sc_event-list_helptexts.php:27 msgid "" "With %1$S (default value) the events are sorted from old to new, with %2$s " "in the opposite direction (from new to old)." msgstr "" -#: includes/sc_event-list_helptexts.php:23 +#: includes/sc_event-list_helptexts.php:32 #, php-format msgid "" "This attribute defines the dates and date ranges of which events are " "displayed. The default is %1$s to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:24 +#: includes/sc_event-list_helptexts.php:33 #, php-format msgid "" "Filtered events according to %1$s value are not available in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:25 +#: includes/sc_event-list_helptexts.php:34 #, php-format msgid "" "You can find all available values with a description and examples in the " "sections %1$s and %2$s below." msgstr "" -#: includes/sc_event-list_helptexts.php:26 +#: includes/sc_event-list_helptexts.php:35 #, php-format msgid "See %1$s description if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:28 +#: includes/sc_event-list_helptexts.php:39 msgid "category slugs" msgstr "" -#: includes/sc_event-list_helptexts.php:29 +#: includes/sc_event-list_helptexts.php:40 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:30 +#: includes/sc_event-list_helptexts.php:41 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:31 +#: includes/sc_event-list_helptexts.php:42 #, php-format msgid "" "The filter is specified via the given category slugs. See %1$s description " "if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:33 -#: includes/sc_event-list_helptexts.php:74 -#: includes/sc_event-list_helptexts.php:89 -#: includes/sc_event-list_helptexts.php:104 +#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:111 +#: includes/sc_event-list_helptexts.php:138 +#: includes/sc_event-list_helptexts.php:177 msgid "number" msgstr "" -#: includes/sc_event-list_helptexts.php:34 +#: includes/sc_event-list_helptexts.php:47 #, php-format msgid "" "This attribute defines how many events should be displayed if upcoming " @@ -1531,109 +1553,109 @@ msgid "" "displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:48 msgid "" "Please not that in the actual version there is no pagination of the events " "available, so the event list can be very long." msgstr "" -#: includes/sc_event-list_helptexts.php:38 +#: includes/sc_event-list_helptexts.php:53 msgid "" "This attribute defines if the filterbar should be displayed. The filterbar " "allows the users to specify filters for the listed events." msgstr "" -#: includes/sc_event-list_helptexts.php:39 +#: includes/sc_event-list_helptexts.php:54 #, php-format msgid "Choose %1$s to always hide and %2$s to always show the filterbar." msgstr "" -#: includes/sc_event-list_helptexts.php:40 +#: includes/sc_event-list_helptexts.php:55 #, php-format msgid "" "With %1$s the filterbar is only visible in the event list and with %2$s only" " in the single event view." msgstr "" -#: includes/sc_event-list_helptexts.php:43 +#: includes/sc_event-list_helptexts.php:60 #, php-format msgid "" "This attribute specifies the available items in the filterbar. This options " "are only valid if the filterbar is displayed (see %1$s attribute)." msgstr "" -#: includes/sc_event-list_helptexts.php:44 +#: includes/sc_event-list_helptexts.php:61 msgid "" "Find below an overview of the available filterbar items and their options:" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "filterbar item" msgstr "" -#: includes/sc_event-list_helptexts.php:46 -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:96 msgid "description" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "item options" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option values" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "default value" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option description" msgstr "" -#: includes/sc_event-list_helptexts.php:47 +#: includes/sc_event-list_helptexts.php:67 msgid "" "Show a list of all available years. Additional there are some special " "entries available (see item options)." msgstr "" -#: includes/sc_event-list_helptexts.php:48 -#: includes/sc_event-list_helptexts.php:53 +#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:82 msgid "Add an entry to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:49 -#: includes/sc_event-list_helptexts.php:54 +#: includes/sc_event-list_helptexts.php:73 +#: includes/sc_event-list_helptexts.php:84 msgid "Add an entry to show all upcoming events." msgstr "" -#: includes/sc_event-list_helptexts.php:50 -#: includes/sc_event-list_helptexts.php:55 +#: includes/sc_event-list_helptexts.php:74 +#: includes/sc_event-list_helptexts.php:85 msgid "Add an entry to show events in the past." msgstr "" -#: includes/sc_event-list_helptexts.php:51 +#: includes/sc_event-list_helptexts.php:75 msgid "Set descending or ascending order of year entries." msgstr "" -#: includes/sc_event-list_helptexts.php:52 +#: includes/sc_event-list_helptexts.php:78 msgid "Show a list of all available months." msgstr "" -#: includes/sc_event-list_helptexts.php:56 +#: includes/sc_event-list_helptexts.php:86 msgid "Set descending or ascending order of month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "php date-formats" msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "Set the displayed date format of the month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "With this item you can display the special entries %1$s, %2$s and %3$s. You " @@ -1641,65 +1663,65 @@ msgid "" "order." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "Specifies the displayed values and their order. The items must be seperated " "by %1$s." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Show a list of all available categories." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Add an entry to show events from all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "A link to reset the eventlist filter to standard." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "any text" msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "Set the caption of the link." msgstr "" -#: includes/sc_event-list_helptexts.php:61 +#: includes/sc_event-list_helptexts.php:93 msgid "Find below an overview of the available filterbar display options:" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "display option" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "available for" msgstr "" -#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:97 #, php-format msgid "Shows a horizonal list seperated by %1$s with a link to each item." msgstr "" -#: includes/sc_event-list_helptexts.php:65 +#: includes/sc_event-list_helptexts.php:98 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:66 +#: includes/sc_event-list_helptexts.php:99 msgid "Shows a simple link which can be clicked." msgstr "" -#: includes/sc_event-list_helptexts.php:67 +#: includes/sc_event-list_helptexts.php:102 msgid "Find below some declaration examples with descriptions:" msgstr "" -#: includes/sc_event-list_helptexts.php:69 +#: includes/sc_event-list_helptexts.php:104 #, php-format msgid "" "In this example you can see that the filterbar item and the used display " @@ -1707,22 +1729,22 @@ msgid "" "items seperated by a comma %2$s. These items will be displayed left-aligned." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "option_name" msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "value" msgstr "" -#: includes/sc_event-list_helptexts.php:72 +#: includes/sc_event-list_helptexts.php:107 #, php-format msgid "" "The 2 semicolon %1$s devides the bar in 3 section. The first section will be" @@ -1731,75 +1753,84 @@ msgid "" "left-aligned and the reset link will be on the right side." msgstr "" -#: includes/sc_event-list_helptexts.php:75 -#: includes/sc_event-list_helptexts.php:90 +#: includes/sc_event-list_helptexts.php:112 +#: includes/sc_event-list_helptexts.php:139 msgid "" "This attribute specifies if the title should be truncated to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:76 -#: includes/sc_event-list_helptexts.php:91 +#: includes/sc_event-list_helptexts.php:113 +#: includes/sc_event-list_helptexts.php:140 #, php-format msgid "" "With the standard value %1$s the full text is displayed, with %2$s the text " "is automatically truncated via css." msgstr "" -#: includes/sc_event-list_helptexts.php:77 -#: includes/sc_event-list_helptexts.php:92 -#: includes/sc_event-list_helptexts.php:107 +#: includes/sc_event-list_helptexts.php:114 +#: includes/sc_event-list_helptexts.php:141 +#: includes/sc_event-list_helptexts.php:180 msgid "This attribute has no influence if only a single event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:80 +#: includes/sc_event-list_helptexts.php:120 msgid "" "This attribute specifies if the starttime is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n" "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:85 +#: includes/sc_event-list_helptexts.php:130 msgid "" "This attribute specifies if the location is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n" "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:95 +#: includes/sc_event-list_helptexts.php:147 msgid "" "This attribute specifies if the categories are displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n" "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:100 +#: includes/sc_event-list_helptexts.php:157 msgid "" "This attribute specifies if the content is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n" "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:105 +#: includes/sc_event-list_helptexts.php:167 +msgid "" +"This attribute specifies if the excerpt is displayed in the event list.<br />\n" +"\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n" +"\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" +"\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" +"\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)." +msgstr "" + +#: includes/sc_event-list_helptexts.php:178 msgid "" "This attribute specifies if the content should be truncate to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:106 +#: includes/sc_event-list_helptexts.php:179 #, php-format msgid "With the standard value %1$s the full text is displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:110 +#: includes/sc_event-list_helptexts.php:186 msgid "" -"This attribute specifies if the content should be collapsed initially.<br />\n" +"This attribute specifies if the content or excerpt should be collapsed initially.<br />\n" "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n" "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n" "\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." msgstr "" -#: includes/sc_event-list_helptexts.php:116 +#: includes/sc_event-list_helptexts.php:197 msgid "" "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n" "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n" @@ -1807,7 +1838,7 @@ msgid "" "\t With \"events_with_content_only\" the link is only added in the event list for events with event content." msgstr "" -#: includes/sc_event-list_helptexts.php:122 +#: includes/sc_event-list_helptexts.php:208 msgid "" "This attribute specifies if a rss feed link should be added.<br />\n" "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n" @@ -1816,32 +1847,52 @@ msgid "" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:128 +#: includes/sc_event-list_helptexts.php:220 +msgid "" +"This attribute specifies if a ical feed link should be added.<br />\n" +"\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n" +"\t On that page you can also find some settings to modify the output.<br />\n" +"\t Choose \"false\" to never add and \"true\" to always add the link.<br />" +msgstr "" + +#: includes/sc_event-list_helptexts.php:231 msgid "" "This attribute specifies the page or post url for event links.<br />\n" "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n" "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget." msgstr "" -#: includes/sc_event-list_helptexts.php:135 +#: includes/sc_event-list_helptexts.php:243 msgid "" "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n" "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget." msgstr "" -#: includes/sc_event-list.php:135 +#: includes/sc_event-list.php:154 +msgid "Sorry, the requested event is not available!" +msgstr "" + +#: includes/sc_event-list.php:163 msgid "Event Information:" msgstr "" -#: includes/widget_helptexts.php:10 +#: includes/sc_event-list.php:405 +msgid "Link to RSS feed" +msgstr "" + +#: includes/sc_event-list.php:414 +msgid "Link to iCal feed" +msgstr "" + +#: includes/widget_helptexts.php:11 msgid "This option defines the displayed title for the widget." msgstr "" -#: includes/widget_helptexts.php:15 +#: includes/widget_helptexts.php:18 msgid "Category Filter" msgstr "" -#: includes/widget_helptexts.php:17 +#: includes/widget_helptexts.php:20 msgid "" "This option defines the categories of which events are shown. The standard " "is all or an empty string to show all events. Specify a category slug or a " @@ -1850,137 +1901,145 @@ msgid "" "all possibilities." msgstr "" -#: includes/widget_helptexts.php:22 +#: includes/widget_helptexts.php:27 msgid "Number of listed events" msgstr "" -#: includes/widget_helptexts.php:24 +#: includes/widget_helptexts.php:29 msgid "The number of upcoming events to display" msgstr "" -#: includes/widget_helptexts.php:29 +#: includes/widget_helptexts.php:36 msgid "Truncate event title to" msgstr "" -#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52 -#: includes/widget_helptexts.php:67 +#: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65 +#: includes/widget_helptexts.php:93 msgid "characters" msgstr "" -#: includes/widget_helptexts.php:31 +#: includes/widget_helptexts.php:38 msgid "" "This option defines the number of displayed characters for the event title." msgstr "" -#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54 +#: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67 #, php-format msgid "" "Set this value to %1$s to view the full text, or set it to %2$s to " "automatically truncate the text via css." msgstr "" -#: includes/widget_helptexts.php:37 +#: includes/widget_helptexts.php:46 msgid "Show event starttime" msgstr "" -#: includes/widget_helptexts.php:39 +#: includes/widget_helptexts.php:48 msgid "This option defines if the event start time will be displayed." msgstr "" -#: includes/widget_helptexts.php:44 +#: includes/widget_helptexts.php:55 msgid "Show event location" msgstr "" -#: includes/widget_helptexts.php:46 +#: includes/widget_helptexts.php:57 msgid "This option defines if the event location will be displayed." msgstr "" -#: includes/widget_helptexts.php:51 +#: includes/widget_helptexts.php:64 msgid "Truncate location to" msgstr "" -#: includes/widget_helptexts.php:53 +#: includes/widget_helptexts.php:66 msgid "" "If the event location is diplayed this option defines the number of " "displayed characters." msgstr "" -#: includes/widget_helptexts.php:59 +#: includes/widget_helptexts.php:74 +msgid "Show event excerpt" +msgstr "" + +#: includes/widget_helptexts.php:76 +msgid "This option defines if the event excerpt will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:83 msgid "Show event content" msgstr "" -#: includes/widget_helptexts.php:61 +#: includes/widget_helptexts.php:85 msgid "This option defines if the event content will be displayed." msgstr "" -#: includes/widget_helptexts.php:66 +#: includes/widget_helptexts.php:92 msgid "Truncate content to" msgstr "" -#: includes/widget_helptexts.php:68 +#: includes/widget_helptexts.php:94 msgid "" "If the event content are diplayed this option defines the number of diplayed" " characters." msgstr "" -#: includes/widget_helptexts.php:69 +#: includes/widget_helptexts.php:95 #, php-format msgid "Set this value to %1$s to view the full text." msgstr "" -#: includes/widget_helptexts.php:74 +#: includes/widget_helptexts.php:102 msgid "URL to the linked Event List page" msgstr "" -#: includes/widget_helptexts.php:76 +#: includes/widget_helptexts.php:104 msgid "" "This option defines the url to the linked Event List page. This option is " "required if you want to use one of the options below." msgstr "" -#: includes/widget_helptexts.php:81 +#: includes/widget_helptexts.php:111 msgid "Shortcode ID on linked page" msgstr "" -#: includes/widget_helptexts.php:83 +#: includes/widget_helptexts.php:113 msgid "" "This option defines the shortcode-id for the Event List on the linked page. " "Normally the standard value 1 is correct, you only have to change it if you " "use multiple event-list shortcodes on the linked page." msgstr "" -#: includes/widget_helptexts.php:90 +#: includes/widget_helptexts.php:122 msgid "" "With this option you can add a link to the single event page for every " "displayed event. You have to specify the url to the page and the shortcode " "id option if you want to use it." msgstr "" -#: includes/widget_helptexts.php:97 +#: includes/widget_helptexts.php:131 msgid "" "With this option you can add a link to the event-list page below the " "diplayed events. You have to specify the url to page option if you want to " "use it." msgstr "" -#: includes/widget_helptexts.php:102 +#: includes/widget_helptexts.php:138 msgid "Caption for the link" msgstr "" -#: includes/widget_helptexts.php:104 +#: includes/widget_helptexts.php:140 msgid "" "This option defines the text for the link to the Event List page if the " "approriate option is selected." msgstr "" -#: includes/widget.php:20 +#: includes/widget.php:21 msgid "With this widget a list of upcoming events can be displayed." msgstr "" -#: includes/widget.php:25 +#: includes/widget.php:26 msgid "Upcoming events" msgstr "" -#: includes/widget.php:38 +#: includes/widget.php:40 msgid "show events page" msgstr "" diff --git a/wp-content/plugins/event-list/languages/event-list-sv_SE.mo b/wp-content/plugins/event-list/languages/event-list-sv_SE.mo index afc05096b5e4779aae140de396327962e5062cbc..e4d50f08274c9d2bfcc0ba6b4cb4f6657dfe7e1a 100644 Binary files a/wp-content/plugins/event-list/languages/event-list-sv_SE.mo and b/wp-content/plugins/event-list/languages/event-list-sv_SE.mo differ diff --git a/wp-content/plugins/event-list/languages/event-list-sv_SE.po b/wp-content/plugins/event-list/languages/event-list-sv_SE.po index 8f65f8489ebf9141b03ecf4f6bc4d8138279a55b..4ad92304d6e59b84391f04a1dbf008d833506c26 100644 --- a/wp-content/plugins/event-list/languages/event-list-sv_SE.po +++ b/wp-content/plugins/event-list/languages/event-list-sv_SE.po @@ -1,5 +1,5 @@ # Translation file for the 'Event List' WordPress plugin -# Copyright (C) 2018 by mibuthu +# Copyright (C) 2021 by mibuthu # This file is distributed under the same license as the corresponding wordpress plugin. # # Translators: @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: wp-event-list\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n" -"POT-Creation-Date: 2018-05-27 12:20+0200\n" -"PO-Revision-Date: 2018-05-27 10:20+0000\n" +"POT-Creation-Date: 2021-04-24 11:28+0200\n" +"PO-Revision-Date: 2021-04-24 09:26+0000\n" "Last-Translator: mibuthu\n" "Language-Team: Swedish (Sweden) (http://www.transifex.com/mibuthu/wp-event-list/language/sv_SE/)\n" "MIME-Version: 1.0\n" @@ -20,117 +20,117 @@ msgstr "" "Language: sv_SE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Errors during upgrade of plugin %1$s" msgstr "Fel inträffade under uppdatering av tillägget %1$s" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Upgrade of plugin %1$s successful" msgstr "" -#: admin/admin.php:106 admin/includes/admin-settings.php:65 +#: admin/admin.php:116 admin/includes/admin-settings.php:73 msgid "Event List Settings" msgstr "Inställningar Event List" -#: admin/admin.php:106 +#: admin/admin.php:116 msgid "Settings" msgstr "Inställningar" -#: admin/admin.php:110 admin/includes/admin-about.php:37 +#: admin/admin.php:120 admin/includes/admin-about.php:43 msgid "About Event List" msgstr "Om Event List" -#: admin/admin.php:110 +#: admin/admin.php:120 msgid "About" msgstr "Om" -#: admin/admin.php:132 +#: admin/admin.php:144 #, php-format msgid "%s Event" msgid_plural "%s Events" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 +#: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92 msgid "General" msgstr "Allmän" -#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 -#: admin/includes/admin-about.php:105 +#: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88 +#: admin/includes/admin-about.php:117 msgid "Shortcode Attributes" msgstr "Shortcode Attribut" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:82 msgid "Help and Instructions" msgstr "Hjälp och instruktioner" -#: admin/includes/admin-about.php:73 +#: admin/includes/admin-about.php:83 #, php-format msgid "You can manage the events %1$shere%2$s" msgstr "" -#: admin/includes/admin-about.php:74 +#: admin/includes/admin-about.php:84 msgid "To show the events on your site you have 2 possibilities" msgstr "Du har 2 möjligheter att visa aktiviteter på din sida." -#: admin/includes/admin-about.php:75 +#: admin/includes/admin-about.php:85 #, php-format msgid "you can place the <strong>shortcode</strong> %1$s on any page or post" msgstr "du kan placera <strong>shortcode</strong> %1$s på vilken sida eller inlägg som helst" -#: admin/includes/admin-about.php:76 +#: admin/includes/admin-about.php:86 #, php-format msgid "you can add the <strong>widget</strong> %1$s in your sidebars" msgstr "du kan lägga till <strong>widget</strong> %1$s i din sidmeny" -#: admin/includes/admin-about.php:77 +#: admin/includes/admin-about.php:87 msgid "" "The displayed events and their style can be modified with the available " "widget settings and the available attributes for the shortcode." msgstr "De visade händelser och deras stil kan ändras med de tillgängliga widget inställningarna och tillgängliga attribut för shortcoden." -#: admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:88 #, php-format msgid "" "A list of all available shortcode attributes with their descriptions is " "available in the %1$s tab." msgstr "" -#: admin/includes/admin-about.php:79 +#: admin/includes/admin-about.php:89 msgid "The available widget options are described in their tooltip text." msgstr "De tillgängliga widget alternativen finns beskrivet i tooltip texten." -#: admin/includes/admin-about.php:80 +#: admin/includes/admin-about.php:90 #, php-format msgid "" "If you enable one of the links options (%1$s or %2$s) in the widget you have" " to insert an URL to the linked event-list page." msgstr "" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120 msgid "Add links to the single events" msgstr "Lägg till en länkar till enskilda aktiviteter" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129 msgid "Add a link to the Event List page" msgstr "Lägg till en länk till Event List sidan" -#: admin/includes/admin-about.php:81 +#: admin/includes/admin-about.php:91 msgid "" "This is required because the widget does not know in which page or post the " "shortcode was included." msgstr "" -#: admin/includes/admin-about.php:82 +#: admin/includes/admin-about.php:92 msgid "" "Additionally you have to insert the correct Shortcode id on the linked page." " This id describes which shortcode should be used on the given page or post " "if you have more than one." msgstr "" -#: admin/includes/admin-about.php:83 +#: admin/includes/admin-about.php:93 #, php-format msgid "" "The default value %1$s is normally o.k. (for pages with 1 shortcode only), " @@ -138,986 +138,991 @@ msgid "" "link on your linked page or post." msgstr "" -#: admin/includes/admin-about.php:84 +#: admin/includes/admin-about.php:94 #, php-format msgid "The id is available at the end of the URL parameters (e.g. %1$s)." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 #, php-format msgid "" "Be sure to also check the %1$s to get the plugin behaving just the way you " "want." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 msgid "Settings page" msgstr "" -#: admin/includes/admin-about.php:92 +#: admin/includes/admin-about.php:103 msgid "About the plugin author" msgstr "" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:105 #, php-format msgid "" "This plugin is developed by %1$s, you can find more information about the " "plugin on the %2$s." msgstr "" -#: admin/includes/admin-about.php:94 -msgid "wordpress plugin site" +#: admin/includes/admin-about.php:105 +msgid "WordPress plugin site" msgstr "" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:106 #, php-format msgid "If you like the plugin please rate it on the %1$s." msgstr "" -#: admin/includes/admin-about.php:95 -msgid "wordpress plugin review site" +#: admin/includes/admin-about.php:106 +msgid "WordPress plugin review site" msgstr "" -#: admin/includes/admin-about.php:96 +#: admin/includes/admin-about.php:107 msgid "" "If you want to support the plugin I would be happy to get a small donation" msgstr "" -#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 -#: admin/includes/admin-about.php:99 +#: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109 +#: admin/includes/admin-about.php:110 #, php-format msgid "Donate with %1$s" msgstr "" -#: admin/includes/admin-about.php:107 +#: admin/includes/admin-about.php:119 msgid "" "You have the possibility to modify the output if you add some of the " "following attributes to the shortcode." msgstr "Du har möjlighet att ändra outputen om du lägger till några av följande attribut till shortcoden." -#: admin/includes/admin-about.php:108 +#: admin/includes/admin-about.php:120 #, php-format msgid "" "You can combine and add as much attributes as you want. E.g. the shortcode " "including the attributes %1$s and %2$s would looks like this:" msgstr "Du kan kombinera och lägga till så mmånga attribut som du vill. T.ex. den kortkod inklusive attribut %1$s and %2$s skulle se ut såhär:" -#: admin/includes/admin-about.php:110 +#: admin/includes/admin-about.php:122 msgid "" "Below you can find a list of all supported attributes with their " "descriptions and available options:" msgstr "Nedanför kan du se en lista med alla tillgängliga attribut med beskrivning samt tillgängliga alternativ:" -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:137 msgid "Attribute name" msgstr "Attribut namn" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:138 msgid "Value options" msgstr "Värde alternativ" -#: admin/includes/admin-about.php:126 +#: admin/includes/admin-about.php:139 msgid "Default value" msgstr "Standard värde" -#: admin/includes/admin-about.php:127 +#: admin/includes/admin-about.php:140 msgid "Description" msgstr "Beskrivning" -#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 -#: includes/sc_event-list_helptexts.php:31 +#: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:42 msgid "Filter Syntax" msgstr "Filter Syntax" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:160 msgid "" "For date and cat filters you can specify complex filters with the following " "syntax:" msgstr "För datum och kat-filter kan du ange komplexa filter med följande syntax:" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 #, php-format msgid "" "You can use %1$s and %2$s connections to define complex filters. " "Additionally you can set brackets %3$s for nested queries." msgstr "Du kan använda %1$s och %2$s anslutningar för att definera komplexa filter. Dessutom akn du ställa in konsoler %3$s för kapslade frågor." -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "AND" msgstr "AND" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "OR" msgstr "OR" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "or" msgstr "or" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "and" msgstr "and" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:162 msgid "Examples for cat filters:" msgstr "Exempel på kat filter:" -#: admin/includes/admin-about.php:149 +#: admin/includes/admin-about.php:163 #, php-format msgid "Show all events with category %1$s." msgstr "Visa alla aktiviteter med kategori %1$s." -#: admin/includes/admin-about.php:150 +#: admin/includes/admin-about.php:164 #, php-format msgid "Show all events with category %1$s or %2$s." msgstr "Visa alla aktiviteter med kategori %1$s eller %2$s." -#: admin/includes/admin-about.php:151 +#: admin/includes/admin-about.php:165 #, php-format msgid "" "Show all events with category %1$s and all events where category %2$s as " "well as %3$s is selected." msgstr "Visa alla aktiviteter med kategori %1$s och alla aktiviteter där kategori %2$s samt %3$s är markerad." -#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34 msgid "Available Date Formats" msgstr "Tillgängliga Datum Format" -#: admin/includes/admin-about.php:157 +#: admin/includes/admin-about.php:172 msgid "For date filters you can use the following date formats:" msgstr "För datumfilter kan du använda följande datumformat:" -#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34 msgid "Available Date Range Formats" msgstr "Tillgängliga Datum Räckvidd Format" -#: admin/includes/admin-about.php:166 +#: admin/includes/admin-about.php:182 msgid "For date filters you can use the following daterange formats:" msgstr "För datumfilter kan du använda följande datumräckviddsformat:" -#: admin/includes/admin-about.php:178 +#: admin/includes/admin-about.php:195 msgid "Value" msgstr "Värde" -#: admin/includes/admin-about.php:182 +#: admin/includes/admin-about.php:199 msgid "Example" msgstr "Exempel" -#: admin/includes/admin-categories.php:38 +#: admin/includes/admin-categories.php:54 msgid "Synchronize with post categories" msgstr "" -#: admin/includes/admin-categories.php:46 +#: admin/includes/admin-categories.php:63 #, php-format msgid "%1$s categories modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:47 +#: admin/includes/admin-categories.php:64 #, php-format msgid "%1$s categories added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:48 +#: admin/includes/admin-categories.php:65 #, php-format msgid "%1$s categories deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:50 +#: admin/includes/admin-categories.php:67 #, php-format msgid "%1$s categories not modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:51 +#: admin/includes/admin-categories.php:68 #, php-format msgid "%1$s categories not added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:52 +#: admin/includes/admin-categories.php:69 #, php-format msgid "%1$s categories not deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:55 +#: admin/includes/admin-categories.php:72 msgid "An Error occured during the category sync" msgstr "" -#: admin/includes/admin-categories.php:59 +#: admin/includes/admin-categories.php:75 msgid "Category sync finished" msgstr "" -#: admin/includes/admin-category-sync.php:45 +#: admin/includes/admin-category-sync.php:54 msgid "Error: You are not allowed to view this page!" msgstr "" -#: admin/includes/admin-category-sync.php:62 +#: admin/includes/admin-category-sync.php:70 msgid "Affected Categories when switching to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:63 +#: admin/includes/admin-category-sync.php:71 msgid "Switch option to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:64 +#: admin/includes/admin-category-sync.php:72 msgid "" "If you proceed, all post categories will be copied and all events will be " "re-assigned to this new categories." msgstr "" -#: admin/includes/admin-category-sync.php:65 +#: admin/includes/admin-category-sync.php:73 msgid "" "Afterwards the event categories are independent of the post categories." msgstr "" -#: admin/includes/admin-category-sync.php:68 +#: admin/includes/admin-category-sync.php:75 msgid "Affected Categories when switching to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:69 +#: admin/includes/admin-category-sync.php:76 msgid "Switch option to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:70 +#: admin/includes/admin-category-sync.php:77 msgid "" "Take a detailed look at the affected categories above before you proceed! " "All seperate event categories will be deleted, this cannot be undone!" msgstr "" -#: admin/includes/admin-category-sync.php:73 +#: admin/includes/admin-category-sync.php:79 msgid "Event Categories: Synchronise with Post Categories" msgstr "" -#: admin/includes/admin-category-sync.php:74 +#: admin/includes/admin-category-sync.php:80 msgid "Start synchronisation" msgstr "" -#: admin/includes/admin-category-sync.php:75 +#: admin/includes/admin-category-sync.php:81 msgid "" "If this option is enabled the above listed categories will be deleted and " "removed from the existing events!" msgstr "" -#: admin/includes/admin-category-sync.php:90 +#: admin/includes/admin-category-sync.php:96 msgid "Categories to modify" msgstr "" -#: admin/includes/admin-category-sync.php:91 +#: admin/includes/admin-category-sync.php:97 msgid "Categories to add" msgstr "" -#: admin/includes/admin-category-sync.php:92 +#: admin/includes/admin-category-sync.php:98 msgid "Categories to delete (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:93 +#: admin/includes/admin-category-sync.php:99 msgid "Delete not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:97 +#: admin/includes/admin-category-sync.php:102 msgid "Categories with differences" msgstr "" -#: admin/includes/admin-category-sync.php:98 +#: admin/includes/admin-category-sync.php:103 msgid "Categories to add (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:99 +#: admin/includes/admin-category-sync.php:104 msgid "Add not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:117 +#: admin/includes/admin-category-sync.php:123 msgid "none" msgstr "" -#: admin/includes/admin-import.php:49 +#: admin/includes/admin-import.php:58 msgid "Import Events" msgstr "Importera aktiviteter" -#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116 +#: admin/includes/admin-import.php:220 msgid "Step" msgstr "Steg" -#: admin/includes/admin-import.php:69 +#: admin/includes/admin-import.php:79 msgid "Set import file and options" msgstr "Ange importfilen och alternativ" -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:82 #, php-format msgid "Proceed with Step %1$s" msgstr "" -#: admin/includes/admin-import.php:75 +#: admin/includes/admin-import.php:85 msgid "Example file" msgstr "Exempelfil" -#: admin/includes/admin-import.php:76 +#: admin/includes/admin-import.php:86 #, php-format msgid "" "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)" msgstr "Du kan ladda ner en exempelfil %1$shere%2$s (Kommaseparared CSV)" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "Note" msgstr "Anteckning" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "" "Do not change the column header and separator line (first two lines), " "otherwise the import will fail!" msgstr "Ändra inte raderna kolumnrubrik och separator (två rader), annars misslyckas importen!" -#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 +#: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103 msgid "Sorry, there has been an error." msgstr "Tyvärr, det har blivit ett fel." -#: admin/includes/admin-import.php:85 +#: admin/includes/admin-import.php:96 msgid "The file does not exist, please try again." msgstr "Filen existerar inte, försök igen." -#: admin/includes/admin-import.php:93 +#: admin/includes/admin-import.php:104 msgid "The uploaded file does not have the required csv extension." msgstr "" -#: admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:116 msgid "Events review and additonal category selection" msgstr "" -#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133 msgid "Error" msgstr "" -#: admin/includes/admin-import.php:111 +#: admin/includes/admin-import.php:122 msgid "This CSV file cannot be imported" msgstr "" -#: admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:133 msgid "None of the events in this CSV file can be imported" msgstr "" -#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179 msgid "Warning" msgstr "" -#: admin/includes/admin-import.php:126 +#: admin/includes/admin-import.php:138 #, php-format msgid "There is %1$s event which cannot be imported" msgid_plural "There are %1$s events which cannot be imported" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-import.php:134 +#: admin/includes/admin-import.php:150 #, php-format msgid "CSV line %1$s" msgstr "" -#: admin/includes/admin-import.php:144 +#: admin/includes/admin-import.php:160 msgid "You can still import all other events listed below." msgstr "" -#: admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:179 msgid "" "The following category slugs are not available and will be removed from the " "imported events" msgstr "" -#: admin/includes/admin-import.php:169 +#: admin/includes/admin-import.php:185 msgid "" "If you want to keep these categories, please create these Categories first " "and do the import afterwards." msgstr "" -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:220 msgid "Import result" msgstr "" -#: admin/includes/admin-import.php:201 +#: admin/includes/admin-import.php:223 #, php-format msgid "Import of %1$s events successful!" msgstr "" -#: admin/includes/admin-import.php:202 +#: admin/includes/admin-import.php:224 msgid "Go back to All Events" msgstr "Gå tillbaka till Alla aktiviteter" -#: admin/includes/admin-import.php:206 +#: admin/includes/admin-import.php:227 msgid "Errors during Import" msgstr "" -#: admin/includes/admin-import.php:215 +#: admin/includes/admin-import.php:235 msgid "Event from CSV-line" msgstr "" -#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 -#: includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77 +#: includes/widget_helptexts.php:9 msgid "Title" msgstr "Titel" -#: admin/includes/admin-import.php:227 +#: admin/includes/admin-import.php:248 msgid "Start Date" msgstr "Startdatum" -#: admin/includes/admin-import.php:228 +#: admin/includes/admin-import.php:249 msgid "End Date" msgstr "Slutdatum" -#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 -#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 +#: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:69 msgid "Time" msgstr "Tid" -#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62 -#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57 -#: includes/options_helptexts.php:58 +#: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78 +#: admin/includes/admin-new.php:107 includes/options_helptexts.php:75 +#: includes/options_helptexts.php:76 msgid "Location" msgstr "Plats" -#: admin/includes/admin-import.php:231 +#: admin/includes/admin-import.php:252 msgid "Content" msgstr "" -#: admin/includes/admin-import.php:232 +#: admin/includes/admin-import.php:253 msgid "Category slugs" msgstr "" -#: admin/includes/admin-import.php:274 +#: admin/includes/admin-import.php:297 msgid "Header line is missing or not correct!" msgstr "" -#: admin/includes/admin-import.php:275 +#: admin/includes/admin-import.php:298 #, php-format msgid "" "Have a look at the %1$sexample file%2$s to see the correct header line " "format." msgstr "" -#: admin/includes/admin-import.php:281 +#: admin/includes/admin-import.php:305 #, php-format msgid "Wrong number of items in line (%1$s items found, 6-7 required)" msgstr "" -#: admin/includes/admin-import.php:309 +#: admin/includes/admin-import.php:334 msgid "Empty event title found" msgstr "" -#: admin/includes/admin-import.php:315 +#: admin/includes/admin-import.php:340 msgid "Wrong date format for startdate" msgstr "" -#: admin/includes/admin-import.php:324 +#: admin/includes/admin-import.php:348 msgid "Wrong date format for enddate" msgstr "" -#: admin/includes/admin-import.php:365 +#: admin/includes/admin-import.php:401 msgid "Import events" msgstr "" -#: admin/includes/admin-import.php:366 +#: admin/includes/admin-import.php:402 msgid "Add additional categories" msgstr "" -#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +#: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257 msgid "Import" msgstr "Importera" -#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +#: admin/includes/admin-import.php:428 includes/events_post_type.php:78 msgid "No events found" msgstr "" -#: admin/includes/admin-import.php:432 +#: admin/includes/admin-import.php:473 msgid "Saving of event failed!" msgstr "" -#: admin/includes/admin-main.php:60 +#: admin/includes/admin-main.php:76 msgid "Event Date" msgstr "" -#: admin/includes/admin-main.php:64 +#: admin/includes/admin-main.php:80 msgid "Author" msgstr "Författare" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 #, php-format msgid "Add a copy of %1$s" msgstr "" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 msgid "Copy" msgstr "" -#: admin/includes/admin-new.php:51 +#: admin/includes/admin-new.php:58 msgid "Event data" msgstr "" -#: admin/includes/admin-new.php:80 +#: admin/includes/admin-new.php:90 msgid "Add Copy" msgstr "" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "Date" msgstr "Datum" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "required" msgstr "krävs" -#: admin/includes/admin-new.php:87 +#: admin/includes/admin-new.php:101 msgid "Multi-Day Event" msgstr "Flerdagsaktivitet" -#: admin/includes/admin-new.php:106 +#: admin/includes/admin-new.php:121 msgid "Event Title" msgstr "" -#: admin/includes/admin-new.php:121 +#: admin/includes/admin-new.php:137 msgid "Event Content" msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203 msgid "Event updated." msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205 msgid "View event" msgstr "" -#: admin/includes/admin-new.php:184 +#: admin/includes/admin-new.php:204 #, php-format msgid "Event restored to revision from %1$s" msgstr "" -#: admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:205 msgid "Event published." msgstr "" -#: admin/includes/admin-new.php:187 +#: admin/includes/admin-new.php:207 msgid "Event submitted." msgstr "" -#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209 +#: admin/includes/admin-new.php:210 msgid "Preview event" msgstr "" -#: admin/includes/admin-new.php:188 +#: admin/includes/admin-new.php:208 #, php-format msgid "Event scheduled for: %1$s>" msgstr "" -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:210 msgid "Event draft updated." msgstr "" -#: admin/includes/admin-settings.php:71 +#: admin/includes/admin-settings.php:79 msgid "Go to Event Category switching page" msgstr "" -#: admin/includes/admin-settings.php:83 +#: admin/includes/admin-settings.php:93 msgid "Frontend Settings" msgstr "Utvisningsinställningar" -#: admin/includes/admin-settings.php:84 +#: admin/includes/admin-settings.php:94 msgid "Admin Page Settings" msgstr "Admininstratörsinställningar" -#: admin/includes/admin-settings.php:85 +#: admin/includes/admin-settings.php:95 msgid "Feed Settings" msgstr "Flödesinställningar" -#: admin/includes/admin-settings.php:86 +#: admin/includes/admin-settings.php:96 msgid "Category Taxonomy" msgstr "" -#: includes/daterange_helptexts.php:7 +#: includes/daterange_helptexts.php:8 msgid "Year" msgstr "År" -#: includes/daterange_helptexts.php:8 +#: includes/daterange_helptexts.php:9 msgid "A year can be specified in 4 digit format." msgstr "Ett år kan vara specificerat med 4 siffror." -#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14 -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:47 #, php-format msgid "" "For a start date filter the first day of %1$s is used, in an end date the " "last day." msgstr "För startdagsfilter används första dagen av %1$s, för slutdatum den sista dagen." -#: includes/daterange_helptexts.php:9 +#: includes/daterange_helptexts.php:10 msgid "the resulting year" msgstr "resultatsår" -#: includes/daterange_helptexts.php:12 +#: includes/daterange_helptexts.php:15 msgid "Month" msgstr "Månad" -#: includes/daterange_helptexts.php:13 +#: includes/daterange_helptexts.php:16 msgid "" "A month can be specified with 4 digits for the year and 2 digits for the " "month, seperated by a hyphen (-)." msgstr "En månad kan anges med 4 siffror för året och 2 siffror för månaden, separerade med ett bindestreck (-)." -#: includes/daterange_helptexts.php:14 +#: includes/daterange_helptexts.php:17 msgid "the resulting month" msgstr "resultatsmånad" -#: includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:22 msgid "Day" msgstr "Dag" -#: includes/daterange_helptexts.php:18 +#: includes/daterange_helptexts.php:23 msgid "" "A day can be specified in the format 4 digits for the year, 2 digits for the" " month and 2 digets for the day, seperated by hyphens (-)." msgstr "En dag kan anges i formatet 4 siffror för året, 2 siffror för månaden och 2 siffror för dagen, åtskilda med bindestreck (-)." -#: includes/daterange_helptexts.php:21 +#: includes/daterange_helptexts.php:28 msgid "Relative Year" msgstr "Relaterat år" -#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28 -#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55 #, php-format msgid "%1$s from now can be specified in the following notation: %2$s" msgstr "%1$s från och med nu kan specificera följande notering: %2$s" -#: includes/daterange_helptexts.php:22 +#: includes/daterange_helptexts.php:29 msgid "A relative year" msgstr "Ett relativt år" -#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29 -#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38 +#: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56 #, php-format msgid "" "This means you can specify a positive or negative (%1$s) %2$s from now with " "%3$s or %4$s attached (see also the example below)." msgstr "Det betyder att du kan specificera ett positivt eller negativt (%1$s) %2$s från nu med %3$s eller %4$s angivet (se exempel)." -#: includes/daterange_helptexts.php:23 +#: includes/daterange_helptexts.php:30 msgid "number of years" msgstr "antal år" -#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30 -#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44 +#: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39 +#: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57 #, php-format msgid "Additionally the following values are available: %1$s" msgstr "Och även dessa värden är tillgängliga: %1$s" -#: includes/daterange_helptexts.php:27 +#: includes/daterange_helptexts.php:36 msgid "Relative Month" msgstr "Relativ månad" -#: includes/daterange_helptexts.php:28 +#: includes/daterange_helptexts.php:37 msgid "A relative month" msgstr "En relativ månad" -#: includes/daterange_helptexts.php:29 +#: includes/daterange_helptexts.php:38 msgid "number of months" msgstr "antal månader" -#: includes/daterange_helptexts.php:33 +#: includes/daterange_helptexts.php:44 msgid "Relative Week" msgstr "Relativ vecka" -#: includes/daterange_helptexts.php:34 +#: includes/daterange_helptexts.php:45 msgid "A relative week" msgstr "En relativ vecka" -#: includes/daterange_helptexts.php:35 +#: includes/daterange_helptexts.php:46 msgid "number of weeks" msgstr "antal veckor" -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:47 msgid "the resulting week" msgstr "Resultatsvecka" -#: includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:48 #, php-format msgid "" "The first day of the week is depending on the option %1$s which can be found" " and changed in %2$s." msgstr "Den första dagen av veckan är beror på hur inställningen %1$s är satt, som kan hittas och ändras i %2$s." -#: includes/daterange_helptexts.php:41 +#: includes/daterange_helptexts.php:54 msgid "Relative Day" msgstr "Relativ dag" -#: includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:55 msgid "A relative day" msgstr "En relativ dag" -#: includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:56 msgid "number of days" msgstr "antal dagar" -#: includes/daterange_helptexts.php:49 +#: includes/daterange_helptexts.php:64 msgid "Date range" msgstr "Datumintervall" -#: includes/daterange_helptexts.php:50 +#: includes/daterange_helptexts.php:66 msgid "" "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n" "\t For the start and end date any available date format can be used." msgstr "Ett datumintervall kan specificeras med ett startdatum och slutdatum separerat med ett tilde (~).<br/>\n⇥ För start och slutdatum kan vilket format som helst användas." -#: includes/daterange_helptexts.php:55 +#: includes/daterange_helptexts.php:75 msgid "This value defines a range without any limits." msgstr "Detta värde definierar ett område utan några begränsningar." -#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61 -#: includes/daterange_helptexts.php:66 +#: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83 +#: includes/daterange_helptexts.php:90 #, php-format msgid "The corresponding date_range format is: %1$s" msgstr "Motsvarande datumintervallsformat är: %1$s" -#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 +#: includes/daterange_helptexts.php:81 includes/filterbar.php:310 msgid "Upcoming" msgstr "Kommande" -#: includes/daterange_helptexts.php:60 +#: includes/daterange_helptexts.php:82 msgid "This value defines a range from the actual day to the future." msgstr "Detta värde definierar ett område från i dag till framtiden." -#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 +#: includes/daterange_helptexts.php:88 includes/filterbar.php:318 msgid "Past" msgstr "Tidigare" -#: includes/daterange_helptexts.php:65 +#: includes/daterange_helptexts.php:89 msgid "This value defines a range from the past to the previous day." msgstr "Detta värde definierar ett intervall från det förflutna till föregående dag." -#: includes/event.php:107 +#: includes/event.php:124 msgid "No valid start date provided" msgstr "" -#: includes/events_post_type.php:60 +#: includes/event.php:299 includes/event.php:301 +#: includes/sc_event-list.php:298 +msgid "read more" +msgstr "" + +#: includes/events_post_type.php:69 msgid "Events" msgstr "Aktiviteter" -#: includes/events_post_type.php:61 +#: includes/events_post_type.php:70 msgid "Event" msgstr "" -#: includes/events_post_type.php:62 +#: includes/events_post_type.php:71 msgid "Add New" msgstr "Lägg till ny" -#: includes/events_post_type.php:63 +#: includes/events_post_type.php:72 msgid "Add New Event" msgstr "Lägg till ny aktivitet" -#: includes/events_post_type.php:64 +#: includes/events_post_type.php:73 msgid "Edit Event" msgstr "Ändra aktivitet" -#: includes/events_post_type.php:65 +#: includes/events_post_type.php:74 msgid "New Event" msgstr "" -#: includes/events_post_type.php:66 +#: includes/events_post_type.php:75 msgid "View Event" msgstr "" -#: includes/events_post_type.php:67 +#: includes/events_post_type.php:76 msgid "View Events" msgstr "" -#: includes/events_post_type.php:68 +#: includes/events_post_type.php:77 msgid "Search Events" msgstr "" -#: includes/events_post_type.php:70 +#: includes/events_post_type.php:79 msgid "No events found in Trash" msgstr "" -#: includes/events_post_type.php:72 +#: includes/events_post_type.php:81 msgid "All Events" msgstr "Alla aktiviteter" -#: includes/events_post_type.php:73 +#: includes/events_post_type.php:82 msgid "Event Archives" msgstr "" -#: includes/events_post_type.php:74 +#: includes/events_post_type.php:83 msgid "Event Attributes" msgstr "" -#: includes/events_post_type.php:75 +#: includes/events_post_type.php:84 msgid "Insert into event" msgstr "" -#: includes/events_post_type.php:76 +#: includes/events_post_type.php:85 msgid "Uploaded to this event" msgstr "" -#: includes/events_post_type.php:77 +#: includes/events_post_type.php:86 msgid "Event List" msgstr "Aktivitetslista" -#: includes/events_post_type.php:78 +#: includes/events_post_type.php:87 msgid "Filter events list" msgstr "" -#: includes/events_post_type.php:79 +#: includes/events_post_type.php:88 msgid "Events list navigation" msgstr "" -#: includes/events_post_type.php:80 +#: includes/events_post_type.php:89 msgid "Events list" msgstr "" -#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +#: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90 msgid "Reset" msgstr "" -#: includes/filterbar.php:278 +#: includes/filterbar.php:296 msgid "All" msgstr "Alla" -#: includes/filterbar.php:281 +#: includes/filterbar.php:298 msgid "All Dates" msgstr "" -#: includes/options_helptexts.php:10 +#: includes/options_helptexts.php:11 msgid "CSV File to import" msgstr "CSV-fil att importera" -#: includes/options_helptexts.php:12 +#: includes/options_helptexts.php:13 msgid "Please select the file which contains the event data in CSV format." msgstr "Välj den fil som innehåller aktivitetsdata i CSV-format." -#: includes/options_helptexts.php:15 +#: includes/options_helptexts.php:18 msgid "Used date format" msgstr "Använt datum-format" -#: includes/options_helptexts.php:17 +#: includes/options_helptexts.php:21 msgid "" "With this option the given date format for event start and end date in the " "CSV file can be specified." msgstr "" -#: includes/options_helptexts.php:18 +#: includes/options_helptexts.php:23 #, php-format msgid "" "You can use the php date format options given in %1$s, the most important " "ones are:" msgstr "" -#: includes/options_helptexts.php:20 +#: includes/options_helptexts.php:26 msgid "full year representation, with 4 digits" msgstr "" -#: includes/options_helptexts.php:21 +#: includes/options_helptexts.php:27 msgid "numeric representation of a month, with leading zeros" msgstr "" -#: includes/options_helptexts.php:22 +#: includes/options_helptexts.php:28 msgid "day of the month, 2 digits with leading zeros" msgstr "" -#: includes/options_helptexts.php:24 +#: includes/options_helptexts.php:30 msgid "" "If the date format in the CSV file does not correspond to the given format, " "the import script tries to recognize the date format by itself." msgstr "" -#: includes/options_helptexts.php:25 +#: includes/options_helptexts.php:31 msgid "" "But this can cause problems or result in wrong dates, so it is recommended " "to specify the correct date format here." msgstr "" -#: includes/options_helptexts.php:26 +#: includes/options_helptexts.php:32 msgid "Examples" msgstr "" -#: includes/options_helptexts.php:33 +#: includes/options_helptexts.php:41 msgid "Text for no events" msgstr "Text vid inga event" -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:43 msgid "" "This option defines the displayed text when no events are available for the " "selected view." msgstr "Den här inställningen definierar den text som visas när inga händelser är tillgängliga för den valda vyn." -#: includes/options_helptexts.php:38 +#: includes/options_helptexts.php:48 msgid "Multiday filter range" msgstr "Omfång flerdagarsfilter" -#: includes/options_helptexts.php:39 +#: includes/options_helptexts.php:49 msgid "Use the complete event range in the date filter" msgstr "Använd hela event-omfånget i datumfiltret" -#: includes/options_helptexts.php:40 +#: includes/options_helptexts.php:51 msgid "" "This option defines if the complete range of a multiday event shall be " "considered in the date filter." msgstr "Valet definierar om hela omfånget i ett flerdagarsevent ska användas i datumfiltret." -#: includes/options_helptexts.php:41 +#: includes/options_helptexts.php:52 msgid "" "If disabled, only the start day of an event is considered in the filter." msgstr "Om avslaget så används startdatum för event i filtret." -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:53 msgid "" "For an example multiday event which started yesterday and ends tomorrow this" " means, that it is displayed in umcoming dates when this option is enabled, " "but it is hidden when the option is disabled." msgstr "Som exempel ett flerdagarsevent som startade igår och slutar imorgon så visas den som kommande event om vald men göms om avaktiverad." -#: includes/options_helptexts.php:45 +#: includes/options_helptexts.php:58 msgid "Date display" msgstr "Datumvisning" -#: includes/options_helptexts.php:46 +#: includes/options_helptexts.php:59 msgid "Show the date only once per day" msgstr "Visa endast datum en gång per dag" -#: includes/options_helptexts.php:47 +#: includes/options_helptexts.php:61 msgid "" "With this option enabled the date is only displayed once per day if more " "than one event is available on the same day." msgstr "Med detta val påslaget visas bara datumet en gång om det finns fler händelser på samma dag." -#: includes/options_helptexts.php:48 +#: includes/options_helptexts.php:62 msgid "" "If enabled, the events are ordered in a different way (end date before start" " time) to allow using the same date for as much events as possible." msgstr "If enabled, the events are ordered in a different way (end date before start time) to allow using the same date for as much events as possible." -#: includes/options_helptexts.php:51 +#: includes/options_helptexts.php:67 msgid "HTML tags" msgstr "HTML-taggar" -#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:75 #, php-format msgid "Allow HTML tags in the event field \"%1$s\"" msgstr "Tillåt HTML-taggar i aktivitetsfältet \"%1$s\"" -#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 +#: includes/options_helptexts.php:69 includes/options_helptexts.php:76 #, php-format msgid "" "This option specifies if HTML tags are allowed in the event field \"%1$s\"." msgstr "Valet specificerar om HTML-taggar tillåts i eventfältet \"%1$s\"." -#: includes/options_helptexts.php:61 +#: includes/options_helptexts.php:81 msgid "Preferred language file" msgstr "" -#: includes/options_helptexts.php:62 +#: includes/options_helptexts.php:82 msgid "Load translations from general language directory first" msgstr "" -#: includes/options_helptexts.php:63 +#: includes/options_helptexts.php:84 #, php-format msgid "" "The default is to load the %1$s translation file from the plugin language " "directory first (%2$s)." msgstr "" -#: includes/options_helptexts.php:64 +#: includes/options_helptexts.php:85 #, php-format msgid "" "If you want to load your own language file from the general language " @@ -1125,295 +1130,312 @@ msgid "" "language directory, you have to enable this option." msgstr "" -#: includes/options_helptexts.php:68 +#: includes/options_helptexts.php:91 msgid "Events permalink slug" msgstr "" -#: includes/options_helptexts.php:69 +#: includes/options_helptexts.php:92 msgid "" "With this option the slug for the events permalink URLs can be defined." msgstr "" -#: includes/options_helptexts.php:72 +#: includes/options_helptexts.php:97 msgid "Text for \"Show content\"" msgstr "" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:98 msgid "" "With this option the displayed text for the link to show the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:76 +#: includes/options_helptexts.php:103 msgid "Text for \"Hide content\"" msgstr "" -#: includes/options_helptexts.php:77 +#: includes/options_helptexts.php:104 msgid "" "With this option the displayed text for the link to hide the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:109 msgid "Disable CSS file" msgstr "Inaktivera CSS-filen" -#: includes/options_helptexts.php:81 +#: includes/options_helptexts.php:110 #, php-format msgid "Disable the %1$s file." msgstr "Inaktivera %1$s filen." -#: includes/options_helptexts.php:82 +#: includes/options_helptexts.php:112 #, php-format msgid "With this option you can disable the inclusion of the %1$s file." msgstr "Med denna inställning kan du inaktivera inkluderingen av %1$s filen." -#: includes/options_helptexts.php:83 +#: includes/options_helptexts.php:113 msgid "" "This normally only make sense if you have css conflicts with your theme and " "want to set all required css styles somewhere else (e.g. in the theme css)." msgstr "Normalt används detta om du har css-konflikter i ditt tema och du vill bestämma alla valda stilar någon annanstans (ex i temats css)." -#: includes/options_helptexts.php:87 +#: includes/options_helptexts.php:119 msgid "Date format in edit form" msgstr "Datumformat i redigeringsformulär" -#: includes/options_helptexts.php:88 +#: includes/options_helptexts.php:121 msgid "" "This option sets the displayed date format for the event date fields in the " "event new / edit form." msgstr "Detta val ställer in datumformatet för händelsens datumfält i nytt/ändra händelse/event." -#: includes/options_helptexts.php:89 +#: includes/options_helptexts.php:122 msgid "The default is an empty string to use the Wordpress standard setting." msgstr "" -#: includes/options_helptexts.php:90 +#: includes/options_helptexts.php:123 #, php-format msgid "" "All available options to specify the date format can be found %1$shere%2$s." msgstr "Alla val för att specifiera datumformat hittas här: %1$shere%2$s." -#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 +#: includes/options_helptexts.php:129 msgid "Enable RSS feed" msgstr "Aktivera RSS-flöde" -#: includes/options_helptexts.php:95 -msgid "Enable support for an event RSS feed" -msgstr "Aktivera stöd för en aktvitets RSS-flöde" +#: includes/options_helptexts.php:130 +msgid "Enable support for the event RSS feed" +msgstr "" -#: includes/options_helptexts.php:96 -msgid "This option activates a RSS feed for the events." +#: includes/options_helptexts.php:132 +msgid "" +"This option activates the RSS feed for the events and adds a feed link in " +"the html head." msgstr "" -#: includes/options_helptexts.php:97 +#: includes/options_helptexts.php:133 msgid "" "You have to enable this option if you want to use one of the RSS feed " "features." msgstr "" -#: includes/options_helptexts.php:100 -msgid "Feed name" -msgstr "Flödesnamn" +#: includes/options_helptexts.php:138 +msgid "Enable iCal feed" +msgstr "" -#: includes/options_helptexts.php:101 -#, php-format -msgid "This option sets the feed name. The default value is %1$s." +#: includes/options_helptexts.php:139 +msgid "Enable support for the event iCal feed" msgstr "" -#: includes/options_helptexts.php:102 -#, php-format +#: includes/options_helptexts.php:141 +msgid "This option activates the iCal feed for events." +msgstr "" + +#: includes/options_helptexts.php:142 msgid "" -"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " -"enabled)." +"You have to enable this option if you want to use one of the iCal features." msgstr "" -#: includes/options_helptexts.php:105 -msgid "Feed Description" -msgstr "Flödesbeskrivning" +#: includes/options_helptexts.php:147 +msgid "Position of the RSS feed link" +msgstr "Position av RSS-flödeslänk" -#: includes/options_helptexts.php:106 -#, php-format -msgid "This options set the feed description. The default value is %1$s." +#: includes/options_helptexts.php:149 +msgid "at the top (above the navigation bar)" msgstr "" -#: includes/options_helptexts.php:107 -msgid "" -"This description will be used in the title for the feed link in the html " -"head and for the description in the feed itself." +#: includes/options_helptexts.php:150 +msgid "between navigation bar and events" msgstr "" -#: includes/options_helptexts.php:110 -msgid "Listed events" -msgstr "Listade aktiviteter" - -#: includes/options_helptexts.php:111 -msgid "Only show upcoming events in feed" -msgstr "Visa endast kommande händelser i flödet" +#: includes/options_helptexts.php:151 +msgid "at the bottom" +msgstr "" -#: includes/options_helptexts.php:112 +#: includes/options_helptexts.php:153 msgid "" -"If this option is enabled only the upcoming events are listed in the feed." +"This option specifies the position of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:113 -msgid "If disabled all events (upcoming and past) will be listed." +#: includes/options_helptexts.php:158 +msgid "Align of the RSS feed link" +msgstr "Positionering av RSS-flödeslänk" + +#: includes/options_helptexts.php:160 +msgid "left" msgstr "" -#: includes/options_helptexts.php:116 -msgid "Add RSS feed link in head" -msgstr "Lägg till RSS-flödeslänk i huvud" +#: includes/options_helptexts.php:161 +msgid "center" +msgstr "" -#: includes/options_helptexts.php:117 -msgid "Add RSS feed link in the html head" -msgstr "Lägg till RSS-flödeslänk i html huvudet" +#: includes/options_helptexts.php:162 +msgid "right" +msgstr "" -#: includes/options_helptexts.php:118 -msgid "This option adds a RSS feed in the html head for the events." +#: includes/options_helptexts.php:164 +msgid "" +"This option specifies the align of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:119 -msgid "There are 2 alternatives to include the RSS feed" +#: includes/options_helptexts.php:169 +msgid "RSS feed name" msgstr "" -#: includes/options_helptexts.php:120 -msgid "" -"The first way is this option to include a link in the html head. This link " -"will be recognized by browers or feed readers." +#: includes/options_helptexts.php:171 +#, php-format +msgid "This option sets the RSS feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:121 +#: includes/options_helptexts.php:172 #, php-format msgid "" -"The second way is to include a visible feed link directly in the event list." -" This can be done by setting the shortcode attribute %1$s to %2$s." +"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " +"enabled)." msgstr "" -#: includes/options_helptexts.php:122 -#, php-format -msgid "This option is only valid if the setting %1$s is enabled." +#: includes/options_helptexts.php:177 +msgid "RSS feed Description" msgstr "" -#: includes/options_helptexts.php:125 -msgid "Position of the RSS feed link" -msgstr "Position av RSS-flödeslänk" +#: includes/options_helptexts.php:179 +#, php-format +msgid "This options set the RSS feed description. The default value is %1$s." +msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the top (above the navigation bar)" +#: includes/options_helptexts.php:180 +msgid "" +"This description will be used in the title for the feed link in the html " +"head and for the description in the feed itself." msgstr "" -#: includes/options_helptexts.php:126 -msgid "between navigation bar and events" +#: includes/options_helptexts.php:185 +msgid "RSS feed events" msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the bottom" +#: includes/options_helptexts.php:186 +msgid "Only show upcoming events in the RSS feed" msgstr "" -#: includes/options_helptexts.php:127 +#: includes/options_helptexts.php:188 msgid "" -"This option specifies the position of the RSS feed link in the event list." +"If this option is enabled only the upcoming events are listed in the RSS " +"feed." msgstr "" -#: includes/options_helptexts.php:128 includes/options_helptexts.php:134 -#: includes/options_helptexts.php:140 includes/options_helptexts.php:146 +#: includes/options_helptexts.php:189 includes/options_helptexts.php:215 +msgid "If disabled, all events (upcoming and past) will be listed." +msgstr "" + +#: includes/options_helptexts.php:194 +msgid "RSS link text" +msgstr "" + +#: includes/options_helptexts.php:196 +msgid "This option sets the caption of the RSS feed link in the event list." +msgstr "" + +#: includes/options_helptexts.php:197 +msgid "Use an empty text to only show the rss image." +msgstr "" + +#: includes/options_helptexts.php:198 #, php-format msgid "" "You have to set the shortcode attribute %1$s to %2$s if you want to show the" -" feed link." +" RSS feed link." msgstr "" -#: includes/options_helptexts.php:131 -msgid "Align of the RSS feed link" -msgstr "Positionering av RSS-flödeslänk" - -#: includes/options_helptexts.php:132 -msgid "left" +#: includes/options_helptexts.php:203 +msgid "iCal feed name" msgstr "" -#: includes/options_helptexts.php:132 -msgid "center" +#: includes/options_helptexts.php:205 +#, php-format +msgid "This option sets the iCal feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:132 -msgid "right" +#: includes/options_helptexts.php:206 +#, php-format +msgid "" +"This name will be used in the iCal feed url (e.g. %1$s, or %2$s with " +"permalinks enabled)." msgstr "" -#: includes/options_helptexts.php:133 -msgid "" -"This option specifies the align of the RSS feed link in the event list." +#: includes/options_helptexts.php:211 +msgid "iCal feed events" msgstr "" -#: includes/options_helptexts.php:137 -msgid "Feed link text" -msgstr "Flödets länk-text" +#: includes/options_helptexts.php:212 +msgid "Only show upcoming events in the iCal feed" +msgstr "" -#: includes/options_helptexts.php:138 +#: includes/options_helptexts.php:214 msgid "" -"This option specifies the caption of the RSS feed link in the event list." +"If this option is enabled only the upcoming events are listed in the iCal " +"file." msgstr "" -#: includes/options_helptexts.php:139 -msgid "" -"Insert an empty text to hide any text if you only want to show the rss " -"image." +#: includes/options_helptexts.php:220 +msgid "iCal link text" msgstr "" -#: includes/options_helptexts.php:143 -msgid "Feed link image" -msgstr "Flödets länk-bild" +#: includes/options_helptexts.php:222 +msgid "This option sets the iCal link text in the event list." +msgstr "" -#: includes/options_helptexts.php:144 -msgid "Show rss image in feed link" -msgstr "Visa RSS-bild i flödes-länken." +#: includes/options_helptexts.php:223 +msgid "Use an empty text to only show the iCal image." +msgstr "" -#: includes/options_helptexts.php:145 +#: includes/options_helptexts.php:224 +#, php-format msgid "" -"This option specifies if the an image should be dispayed in the feed link in" -" front of the text." +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" iCal feed link." msgstr "" -#: includes/options_helptexts.php:151 +#: includes/options_helptexts.php:231 msgid "Event Category handling" msgstr "" -#: includes/options_helptexts.php:152 +#: includes/options_helptexts.php:232 msgid "Use Post Categories" msgstr "" -#: includes/options_helptexts.php:153 +#: includes/options_helptexts.php:234 msgid "" "Do not maintain seperate categories for the events, and use the existing " "post categories instead." msgstr "" -#: includes/options_helptexts.php:154 +#: includes/options_helptexts.php:235 msgid "Attention" msgstr "OBS" -#: includes/options_helptexts.php:155 +#: includes/options_helptexts.php:236 msgid "" "This option cannot be changed directly, but you can go to the Event Category" " switching page from here." msgstr "" -#: includes/options.php:40 +#: includes/options.php:73 msgid "events" msgstr "" -#: includes/options.php:41 +#: includes/options.php:77 msgid "Show content" msgstr "" -#: includes/options.php:42 +#: includes/options.php:81 msgid "Hide content" msgstr "" -#: includes/sc_event-list_helptexts.php:7 +#: includes/sc_event-list_helptexts.php:8 msgid "event-id" msgstr "" -#: includes/sc_event-list_helptexts.php:8 +#: includes/sc_event-list_helptexts.php:9 #, php-format msgid "" "By default the event-list is displayed initially. But if an event-id (e.g. " @@ -1421,107 +1443,107 @@ msgid "" "this event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:10 -#: includes/sc_event-list_helptexts.php:22 +#: includes/sc_event-list_helptexts.php:13 +#: includes/sc_event-list_helptexts.php:31 msgid "year" msgstr "" -#: includes/sc_event-list_helptexts.php:11 +#: includes/sc_event-list_helptexts.php:14 msgid "" "This attribute defines which events are initially shown. The default is to " "show the upcoming events only." msgstr "" -#: includes/sc_event-list_helptexts.php:12 +#: includes/sc_event-list_helptexts.php:15 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:14 +#: includes/sc_event-list_helptexts.php:19 msgid "category slug" msgstr "" -#: includes/sc_event-list_helptexts.php:15 +#: includes/sc_event-list_helptexts.php:20 msgid "" "This attribute defines the category of which events are initially shown. The" " default is to show events of all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:16 +#: includes/sc_event-list_helptexts.php:21 msgid "" "Provide a category slug to change this behavior. It is still possible to " "change the displayed categories via the filterbar or url parameters." msgstr "" -#: includes/sc_event-list_helptexts.php:19 +#: includes/sc_event-list_helptexts.php:26 msgid "This attribute defines the initial order of the events." msgstr "" -#: includes/sc_event-list_helptexts.php:20 +#: includes/sc_event-list_helptexts.php:27 msgid "" "With %1$S (default value) the events are sorted from old to new, with %2$s " "in the opposite direction (from new to old)." msgstr "" -#: includes/sc_event-list_helptexts.php:23 +#: includes/sc_event-list_helptexts.php:32 #, php-format msgid "" "This attribute defines the dates and date ranges of which events are " "displayed. The default is %1$s to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:24 +#: includes/sc_event-list_helptexts.php:33 #, php-format msgid "" "Filtered events according to %1$s value are not available in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:25 +#: includes/sc_event-list_helptexts.php:34 #, php-format msgid "" "You can find all available values with a description and examples in the " "sections %1$s and %2$s below." msgstr "" -#: includes/sc_event-list_helptexts.php:26 +#: includes/sc_event-list_helptexts.php:35 #, php-format msgid "See %1$s description if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:28 +#: includes/sc_event-list_helptexts.php:39 msgid "category slugs" msgstr "" -#: includes/sc_event-list_helptexts.php:29 +#: includes/sc_event-list_helptexts.php:40 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:30 +#: includes/sc_event-list_helptexts.php:41 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:31 +#: includes/sc_event-list_helptexts.php:42 #, php-format msgid "" "The filter is specified via the given category slugs. See %1$s description " "if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:33 -#: includes/sc_event-list_helptexts.php:74 -#: includes/sc_event-list_helptexts.php:89 -#: includes/sc_event-list_helptexts.php:104 +#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:111 +#: includes/sc_event-list_helptexts.php:138 +#: includes/sc_event-list_helptexts.php:177 msgid "number" msgstr "" -#: includes/sc_event-list_helptexts.php:34 +#: includes/sc_event-list_helptexts.php:47 #, php-format msgid "" "This attribute defines how many events should be displayed if upcoming " @@ -1529,109 +1551,109 @@ msgid "" "displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:48 msgid "" "Please not that in the actual version there is no pagination of the events " "available, so the event list can be very long." msgstr "" -#: includes/sc_event-list_helptexts.php:38 +#: includes/sc_event-list_helptexts.php:53 msgid "" "This attribute defines if the filterbar should be displayed. The filterbar " "allows the users to specify filters for the listed events." msgstr "" -#: includes/sc_event-list_helptexts.php:39 +#: includes/sc_event-list_helptexts.php:54 #, php-format msgid "Choose %1$s to always hide and %2$s to always show the filterbar." msgstr "" -#: includes/sc_event-list_helptexts.php:40 +#: includes/sc_event-list_helptexts.php:55 #, php-format msgid "" "With %1$s the filterbar is only visible in the event list and with %2$s only" " in the single event view." msgstr "" -#: includes/sc_event-list_helptexts.php:43 +#: includes/sc_event-list_helptexts.php:60 #, php-format msgid "" "This attribute specifies the available items in the filterbar. This options " "are only valid if the filterbar is displayed (see %1$s attribute)." msgstr "" -#: includes/sc_event-list_helptexts.php:44 +#: includes/sc_event-list_helptexts.php:61 msgid "" "Find below an overview of the available filterbar items and their options:" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "filterbar item" msgstr "" -#: includes/sc_event-list_helptexts.php:46 -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:96 msgid "description" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "item options" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option values" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "default value" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option description" msgstr "" -#: includes/sc_event-list_helptexts.php:47 +#: includes/sc_event-list_helptexts.php:67 msgid "" "Show a list of all available years. Additional there are some special " "entries available (see item options)." msgstr "" -#: includes/sc_event-list_helptexts.php:48 -#: includes/sc_event-list_helptexts.php:53 +#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:82 msgid "Add an entry to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:49 -#: includes/sc_event-list_helptexts.php:54 +#: includes/sc_event-list_helptexts.php:73 +#: includes/sc_event-list_helptexts.php:84 msgid "Add an entry to show all upcoming events." msgstr "" -#: includes/sc_event-list_helptexts.php:50 -#: includes/sc_event-list_helptexts.php:55 +#: includes/sc_event-list_helptexts.php:74 +#: includes/sc_event-list_helptexts.php:85 msgid "Add an entry to show events in the past." msgstr "" -#: includes/sc_event-list_helptexts.php:51 +#: includes/sc_event-list_helptexts.php:75 msgid "Set descending or ascending order of year entries." msgstr "" -#: includes/sc_event-list_helptexts.php:52 +#: includes/sc_event-list_helptexts.php:78 msgid "Show a list of all available months." msgstr "" -#: includes/sc_event-list_helptexts.php:56 +#: includes/sc_event-list_helptexts.php:86 msgid "Set descending or ascending order of month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "php date-formats" msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "Set the displayed date format of the month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "With this item you can display the special entries %1$s, %2$s and %3$s. You " @@ -1639,65 +1661,65 @@ msgid "" "order." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "Specifies the displayed values and their order. The items must be seperated " "by %1$s." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Show a list of all available categories." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Add an entry to show events from all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "A link to reset the eventlist filter to standard." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "any text" msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "Set the caption of the link." msgstr "" -#: includes/sc_event-list_helptexts.php:61 +#: includes/sc_event-list_helptexts.php:93 msgid "Find below an overview of the available filterbar display options:" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "display option" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "available for" msgstr "" -#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:97 #, php-format msgid "Shows a horizonal list seperated by %1$s with a link to each item." msgstr "" -#: includes/sc_event-list_helptexts.php:65 +#: includes/sc_event-list_helptexts.php:98 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:66 +#: includes/sc_event-list_helptexts.php:99 msgid "Shows a simple link which can be clicked." msgstr "" -#: includes/sc_event-list_helptexts.php:67 +#: includes/sc_event-list_helptexts.php:102 msgid "Find below some declaration examples with descriptions:" msgstr "" -#: includes/sc_event-list_helptexts.php:69 +#: includes/sc_event-list_helptexts.php:104 #, php-format msgid "" "In this example you can see that the filterbar item and the used display " @@ -1705,22 +1727,22 @@ msgid "" "items seperated by a comma %2$s. These items will be displayed left-aligned." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "option_name" msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "value" msgstr "" -#: includes/sc_event-list_helptexts.php:72 +#: includes/sc_event-list_helptexts.php:107 #, php-format msgid "" "The 2 semicolon %1$s devides the bar in 3 section. The first section will be" @@ -1729,75 +1751,84 @@ msgid "" "left-aligned and the reset link will be on the right side." msgstr "" -#: includes/sc_event-list_helptexts.php:75 -#: includes/sc_event-list_helptexts.php:90 +#: includes/sc_event-list_helptexts.php:112 +#: includes/sc_event-list_helptexts.php:139 msgid "" "This attribute specifies if the title should be truncated to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:76 -#: includes/sc_event-list_helptexts.php:91 +#: includes/sc_event-list_helptexts.php:113 +#: includes/sc_event-list_helptexts.php:140 #, php-format msgid "" "With the standard value %1$s the full text is displayed, with %2$s the text " "is automatically truncated via css." msgstr "" -#: includes/sc_event-list_helptexts.php:77 -#: includes/sc_event-list_helptexts.php:92 -#: includes/sc_event-list_helptexts.php:107 +#: includes/sc_event-list_helptexts.php:114 +#: includes/sc_event-list_helptexts.php:141 +#: includes/sc_event-list_helptexts.php:180 msgid "This attribute has no influence if only a single event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:80 +#: includes/sc_event-list_helptexts.php:120 msgid "" "This attribute specifies if the starttime is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n" "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:85 +#: includes/sc_event-list_helptexts.php:130 msgid "" "This attribute specifies if the location is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n" "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:95 +#: includes/sc_event-list_helptexts.php:147 msgid "" "This attribute specifies if the categories are displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n" "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:100 +#: includes/sc_event-list_helptexts.php:157 msgid "" "This attribute specifies if the content is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n" "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:105 +#: includes/sc_event-list_helptexts.php:167 +msgid "" +"This attribute specifies if the excerpt is displayed in the event list.<br />\n" +"\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n" +"\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" +"\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" +"\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)." +msgstr "" + +#: includes/sc_event-list_helptexts.php:178 msgid "" "This attribute specifies if the content should be truncate to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:106 +#: includes/sc_event-list_helptexts.php:179 #, php-format msgid "With the standard value %1$s the full text is displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:110 +#: includes/sc_event-list_helptexts.php:186 msgid "" -"This attribute specifies if the content should be collapsed initially.<br />\n" +"This attribute specifies if the content or excerpt should be collapsed initially.<br />\n" "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n" "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n" "\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." msgstr "" -#: includes/sc_event-list_helptexts.php:116 +#: includes/sc_event-list_helptexts.php:197 msgid "" "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n" "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n" @@ -1805,7 +1836,7 @@ msgid "" "\t With \"events_with_content_only\" the link is only added in the event list for events with event content." msgstr "" -#: includes/sc_event-list_helptexts.php:122 +#: includes/sc_event-list_helptexts.php:208 msgid "" "This attribute specifies if a rss feed link should be added.<br />\n" "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n" @@ -1814,32 +1845,52 @@ msgid "" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:128 +#: includes/sc_event-list_helptexts.php:220 +msgid "" +"This attribute specifies if a ical feed link should be added.<br />\n" +"\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n" +"\t On that page you can also find some settings to modify the output.<br />\n" +"\t Choose \"false\" to never add and \"true\" to always add the link.<br />" +msgstr "" + +#: includes/sc_event-list_helptexts.php:231 msgid "" "This attribute specifies the page or post url for event links.<br />\n" "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n" "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget." msgstr "" -#: includes/sc_event-list_helptexts.php:135 +#: includes/sc_event-list_helptexts.php:243 msgid "" "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n" "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget." msgstr "" -#: includes/sc_event-list.php:135 +#: includes/sc_event-list.php:154 +msgid "Sorry, the requested event is not available!" +msgstr "" + +#: includes/sc_event-list.php:163 msgid "Event Information:" msgstr "Aktivitets Information:" -#: includes/widget_helptexts.php:10 +#: includes/sc_event-list.php:405 +msgid "Link to RSS feed" +msgstr "" + +#: includes/sc_event-list.php:414 +msgid "Link to iCal feed" +msgstr "" + +#: includes/widget_helptexts.php:11 msgid "This option defines the displayed title for the widget." msgstr "" -#: includes/widget_helptexts.php:15 +#: includes/widget_helptexts.php:18 msgid "Category Filter" msgstr "Kategori Filter" -#: includes/widget_helptexts.php:17 +#: includes/widget_helptexts.php:20 msgid "" "This option defines the categories of which events are shown. The standard " "is all or an empty string to show all events. Specify a category slug or a " @@ -1848,137 +1899,145 @@ msgid "" "all possibilities." msgstr "" -#: includes/widget_helptexts.php:22 +#: includes/widget_helptexts.php:27 msgid "Number of listed events" msgstr "Antal aktiviteter som skall visas" -#: includes/widget_helptexts.php:24 +#: includes/widget_helptexts.php:29 msgid "The number of upcoming events to display" msgstr "Antal kommande aktiviteter som skall visas" -#: includes/widget_helptexts.php:29 +#: includes/widget_helptexts.php:36 msgid "Truncate event title to" msgstr "" -#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52 -#: includes/widget_helptexts.php:67 +#: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65 +#: includes/widget_helptexts.php:93 msgid "characters" msgstr "tecken" -#: includes/widget_helptexts.php:31 +#: includes/widget_helptexts.php:38 msgid "" "This option defines the number of displayed characters for the event title." msgstr "" -#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54 +#: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67 #, php-format msgid "" "Set this value to %1$s to view the full text, or set it to %2$s to " "automatically truncate the text via css." msgstr "" -#: includes/widget_helptexts.php:37 +#: includes/widget_helptexts.php:46 msgid "Show event starttime" msgstr "Visa starttiden för aktivitet" -#: includes/widget_helptexts.php:39 +#: includes/widget_helptexts.php:48 msgid "This option defines if the event start time will be displayed." msgstr "Denna inställning bestämmer om aktivitetens starttid kommer visas." -#: includes/widget_helptexts.php:44 +#: includes/widget_helptexts.php:55 msgid "Show event location" msgstr "Visa plats för aktivitet" -#: includes/widget_helptexts.php:46 +#: includes/widget_helptexts.php:57 msgid "This option defines if the event location will be displayed." msgstr "Denna inställning bestämmer om aktivitetens plats kommer visas." -#: includes/widget_helptexts.php:51 +#: includes/widget_helptexts.php:64 msgid "Truncate location to" msgstr "" -#: includes/widget_helptexts.php:53 +#: includes/widget_helptexts.php:66 msgid "" "If the event location is diplayed this option defines the number of " "displayed characters." msgstr "" -#: includes/widget_helptexts.php:59 +#: includes/widget_helptexts.php:74 +msgid "Show event excerpt" +msgstr "" + +#: includes/widget_helptexts.php:76 +msgid "This option defines if the event excerpt will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:83 msgid "Show event content" msgstr "" -#: includes/widget_helptexts.php:61 +#: includes/widget_helptexts.php:85 msgid "This option defines if the event content will be displayed." msgstr "" -#: includes/widget_helptexts.php:66 +#: includes/widget_helptexts.php:92 msgid "Truncate content to" msgstr "" -#: includes/widget_helptexts.php:68 +#: includes/widget_helptexts.php:94 msgid "" "If the event content are diplayed this option defines the number of diplayed" " characters." msgstr "" -#: includes/widget_helptexts.php:69 +#: includes/widget_helptexts.php:95 #, php-format msgid "Set this value to %1$s to view the full text." msgstr "" -#: includes/widget_helptexts.php:74 +#: includes/widget_helptexts.php:102 msgid "URL to the linked Event List page" msgstr "" -#: includes/widget_helptexts.php:76 +#: includes/widget_helptexts.php:104 msgid "" "This option defines the url to the linked Event List page. This option is " "required if you want to use one of the options below." msgstr "" -#: includes/widget_helptexts.php:81 +#: includes/widget_helptexts.php:111 msgid "Shortcode ID on linked page" msgstr "" -#: includes/widget_helptexts.php:83 +#: includes/widget_helptexts.php:113 msgid "" "This option defines the shortcode-id for the Event List on the linked page. " "Normally the standard value 1 is correct, you only have to change it if you " "use multiple event-list shortcodes on the linked page." msgstr "" -#: includes/widget_helptexts.php:90 +#: includes/widget_helptexts.php:122 msgid "" "With this option you can add a link to the single event page for every " "displayed event. You have to specify the url to the page and the shortcode " "id option if you want to use it." msgstr "" -#: includes/widget_helptexts.php:97 +#: includes/widget_helptexts.php:131 msgid "" "With this option you can add a link to the event-list page below the " "diplayed events. You have to specify the url to page option if you want to " "use it." msgstr "" -#: includes/widget_helptexts.php:102 +#: includes/widget_helptexts.php:138 msgid "Caption for the link" msgstr "Titel för länken" -#: includes/widget_helptexts.php:104 +#: includes/widget_helptexts.php:140 msgid "" "This option defines the text for the link to the Event List page if the " "approriate option is selected." msgstr "Detta val definierar texten för länken till aktivitetslistssidan om aktiverad." -#: includes/widget.php:20 +#: includes/widget.php:21 msgid "With this widget a list of upcoming events can be displayed." msgstr "Med denna widget visas en lista med kommande händelser." -#: includes/widget.php:25 +#: includes/widget.php:26 msgid "Upcoming events" msgstr "Kommande aktiviteter" -#: includes/widget.php:38 +#: includes/widget.php:40 msgid "show events page" msgstr "Visa aktivitetssidan" diff --git a/wp-content/plugins/event-list/languages/event-list-zh_CN.mo b/wp-content/plugins/event-list/languages/event-list-zh_CN.mo index 82aa697790f6b29eaddd6486b10f5e70ffa2a34a..ad2c4efb596fb9685617e67bdc2ddb873d574b19 100644 Binary files a/wp-content/plugins/event-list/languages/event-list-zh_CN.mo and b/wp-content/plugins/event-list/languages/event-list-zh_CN.mo differ diff --git a/wp-content/plugins/event-list/languages/event-list-zh_CN.po b/wp-content/plugins/event-list/languages/event-list-zh_CN.po index 05071bc0237678795a22d679a5fb0d8ea3d64d80..10b305b9d09909415a661054d043f533014c896d 100644 --- a/wp-content/plugins/event-list/languages/event-list-zh_CN.po +++ b/wp-content/plugins/event-list/languages/event-list-zh_CN.po @@ -1,5 +1,5 @@ # Translation file for the 'Event List' WordPress plugin -# Copyright (C) 2018 by mibuthu +# Copyright (C) 2021 by mibuthu # This file is distributed under the same license as the corresponding wordpress plugin. # # Translators: @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: wp-event-list\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n" -"POT-Creation-Date: 2018-05-27 12:20+0200\n" -"PO-Revision-Date: 2018-05-27 10:20+0000\n" +"POT-Creation-Date: 2021-04-24 11:28+0200\n" +"PO-Revision-Date: 2021-04-24 09:26+0000\n" "Last-Translator: mibuthu\n" "Language-Team: Chinese (China) (http://www.transifex.com/mibuthu/wp-event-list/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -18,116 +18,116 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Errors during upgrade of plugin %1$s" msgstr "" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Upgrade of plugin %1$s successful" msgstr "" -#: admin/admin.php:106 admin/includes/admin-settings.php:65 +#: admin/admin.php:116 admin/includes/admin-settings.php:73 msgid "Event List Settings" msgstr "活动列表设置" -#: admin/admin.php:106 +#: admin/admin.php:116 msgid "Settings" msgstr "设置" -#: admin/admin.php:110 admin/includes/admin-about.php:37 +#: admin/admin.php:120 admin/includes/admin-about.php:43 msgid "About Event List" msgstr "有关活动列表" -#: admin/admin.php:110 +#: admin/admin.php:120 msgid "About" msgstr "有关" -#: admin/admin.php:132 +#: admin/admin.php:144 #, php-format msgid "%s Event" msgid_plural "%s Events" msgstr[0] "" -#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 +#: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92 msgid "General" msgstr "一般" -#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 -#: admin/includes/admin-about.php:105 +#: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88 +#: admin/includes/admin-about.php:117 msgid "Shortcode Attributes" msgstr "段代码属性" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:82 msgid "Help and Instructions" msgstr "帮助和指引" -#: admin/includes/admin-about.php:73 +#: admin/includes/admin-about.php:83 #, php-format msgid "You can manage the events %1$shere%2$s" msgstr "您可以在%1$s这里%2$s管理活动" -#: admin/includes/admin-about.php:74 +#: admin/includes/admin-about.php:84 msgid "To show the events on your site you have 2 possibilities" msgstr "您有2种可能展示活动在您的网站" -#: admin/includes/admin-about.php:75 +#: admin/includes/admin-about.php:85 #, php-format msgid "you can place the <strong>shortcode</strong> %1$s on any page or post" msgstr "您可以将 <strong>短代码</strong> %1$s 放置到任何页面或文章中" -#: admin/includes/admin-about.php:76 +#: admin/includes/admin-about.php:86 #, php-format msgid "you can add the <strong>widget</strong> %1$s in your sidebars" msgstr "您可以将<strong>小工具</strong> %1$s加入到边栏" -#: admin/includes/admin-about.php:77 +#: admin/includes/admin-about.php:87 msgid "" "The displayed events and their style can be modified with the available " "widget settings and the available attributes for the shortcode." msgstr "" -#: admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:88 #, php-format msgid "" "A list of all available shortcode attributes with their descriptions is " "available in the %1$s tab." msgstr "" -#: admin/includes/admin-about.php:79 +#: admin/includes/admin-about.php:89 msgid "The available widget options are described in their tooltip text." msgstr "" -#: admin/includes/admin-about.php:80 +#: admin/includes/admin-about.php:90 #, php-format msgid "" "If you enable one of the links options (%1$s or %2$s) in the widget you have" " to insert an URL to the linked event-list page." msgstr "" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120 msgid "Add links to the single events" msgstr "" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129 msgid "Add a link to the Event List page" msgstr "" -#: admin/includes/admin-about.php:81 +#: admin/includes/admin-about.php:91 msgid "" "This is required because the widget does not know in which page or post the " "shortcode was included." msgstr "" -#: admin/includes/admin-about.php:82 +#: admin/includes/admin-about.php:92 msgid "" "Additionally you have to insert the correct Shortcode id on the linked page." " This id describes which shortcode should be used on the given page or post " "if you have more than one." msgstr "" -#: admin/includes/admin-about.php:83 +#: admin/includes/admin-about.php:93 #, php-format msgid "" "The default value %1$s is normally o.k. (for pages with 1 shortcode only), " @@ -135,985 +135,990 @@ msgid "" "link on your linked page or post." msgstr "" -#: admin/includes/admin-about.php:84 +#: admin/includes/admin-about.php:94 #, php-format msgid "The id is available at the end of the URL parameters (e.g. %1$s)." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 #, php-format msgid "" "Be sure to also check the %1$s to get the plugin behaving just the way you " "want." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 msgid "Settings page" msgstr "" -#: admin/includes/admin-about.php:92 +#: admin/includes/admin-about.php:103 msgid "About the plugin author" msgstr "" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:105 #, php-format msgid "" "This plugin is developed by %1$s, you can find more information about the " "plugin on the %2$s." msgstr "" -#: admin/includes/admin-about.php:94 -msgid "wordpress plugin site" +#: admin/includes/admin-about.php:105 +msgid "WordPress plugin site" msgstr "" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:106 #, php-format msgid "If you like the plugin please rate it on the %1$s." msgstr "" -#: admin/includes/admin-about.php:95 -msgid "wordpress plugin review site" +#: admin/includes/admin-about.php:106 +msgid "WordPress plugin review site" msgstr "" -#: admin/includes/admin-about.php:96 +#: admin/includes/admin-about.php:107 msgid "" "If you want to support the plugin I would be happy to get a small donation" msgstr "" -#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 -#: admin/includes/admin-about.php:99 +#: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109 +#: admin/includes/admin-about.php:110 #, php-format msgid "Donate with %1$s" msgstr "" -#: admin/includes/admin-about.php:107 +#: admin/includes/admin-about.php:119 msgid "" "You have the possibility to modify the output if you add some of the " "following attributes to the shortcode." msgstr "" -#: admin/includes/admin-about.php:108 +#: admin/includes/admin-about.php:120 #, php-format msgid "" "You can combine and add as much attributes as you want. E.g. the shortcode " "including the attributes %1$s and %2$s would looks like this:" msgstr "" -#: admin/includes/admin-about.php:110 +#: admin/includes/admin-about.php:122 msgid "" "Below you can find a list of all supported attributes with their " "descriptions and available options:" msgstr "" -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:137 msgid "Attribute name" msgstr "" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:138 msgid "Value options" msgstr "" -#: admin/includes/admin-about.php:126 +#: admin/includes/admin-about.php:139 msgid "Default value" msgstr "" -#: admin/includes/admin-about.php:127 +#: admin/includes/admin-about.php:140 msgid "Description" msgstr "" -#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 -#: includes/sc_event-list_helptexts.php:31 +#: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:42 msgid "Filter Syntax" msgstr "" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:160 msgid "" "For date and cat filters you can specify complex filters with the following " "syntax:" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 #, php-format msgid "" "You can use %1$s and %2$s connections to define complex filters. " "Additionally you can set brackets %3$s for nested queries." msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "AND" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "OR" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "or" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "and" msgstr "" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:162 msgid "Examples for cat filters:" msgstr "" -#: admin/includes/admin-about.php:149 +#: admin/includes/admin-about.php:163 #, php-format msgid "Show all events with category %1$s." msgstr "" -#: admin/includes/admin-about.php:150 +#: admin/includes/admin-about.php:164 #, php-format msgid "Show all events with category %1$s or %2$s." msgstr "" -#: admin/includes/admin-about.php:151 +#: admin/includes/admin-about.php:165 #, php-format msgid "" "Show all events with category %1$s and all events where category %2$s as " "well as %3$s is selected." msgstr "" -#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34 msgid "Available Date Formats" msgstr "" -#: admin/includes/admin-about.php:157 +#: admin/includes/admin-about.php:172 msgid "For date filters you can use the following date formats:" msgstr "" -#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34 msgid "Available Date Range Formats" msgstr "" -#: admin/includes/admin-about.php:166 +#: admin/includes/admin-about.php:182 msgid "For date filters you can use the following daterange formats:" msgstr "" -#: admin/includes/admin-about.php:178 +#: admin/includes/admin-about.php:195 msgid "Value" msgstr "地点" -#: admin/includes/admin-about.php:182 +#: admin/includes/admin-about.php:199 msgid "Example" msgstr "范例" -#: admin/includes/admin-categories.php:38 +#: admin/includes/admin-categories.php:54 msgid "Synchronize with post categories" msgstr "" -#: admin/includes/admin-categories.php:46 +#: admin/includes/admin-categories.php:63 #, php-format msgid "%1$s categories modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:47 +#: admin/includes/admin-categories.php:64 #, php-format msgid "%1$s categories added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:48 +#: admin/includes/admin-categories.php:65 #, php-format msgid "%1$s categories deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:50 +#: admin/includes/admin-categories.php:67 #, php-format msgid "%1$s categories not modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:51 +#: admin/includes/admin-categories.php:68 #, php-format msgid "%1$s categories not added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:52 +#: admin/includes/admin-categories.php:69 #, php-format msgid "%1$s categories not deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:55 +#: admin/includes/admin-categories.php:72 msgid "An Error occured during the category sync" msgstr "" -#: admin/includes/admin-categories.php:59 +#: admin/includes/admin-categories.php:75 msgid "Category sync finished" msgstr "" -#: admin/includes/admin-category-sync.php:45 +#: admin/includes/admin-category-sync.php:54 msgid "Error: You are not allowed to view this page!" msgstr "" -#: admin/includes/admin-category-sync.php:62 +#: admin/includes/admin-category-sync.php:70 msgid "Affected Categories when switching to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:63 +#: admin/includes/admin-category-sync.php:71 msgid "Switch option to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:64 +#: admin/includes/admin-category-sync.php:72 msgid "" "If you proceed, all post categories will be copied and all events will be " "re-assigned to this new categories." msgstr "" -#: admin/includes/admin-category-sync.php:65 +#: admin/includes/admin-category-sync.php:73 msgid "" "Afterwards the event categories are independent of the post categories." msgstr "" -#: admin/includes/admin-category-sync.php:68 +#: admin/includes/admin-category-sync.php:75 msgid "Affected Categories when switching to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:69 +#: admin/includes/admin-category-sync.php:76 msgid "Switch option to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:70 +#: admin/includes/admin-category-sync.php:77 msgid "" "Take a detailed look at the affected categories above before you proceed! " "All seperate event categories will be deleted, this cannot be undone!" msgstr "" -#: admin/includes/admin-category-sync.php:73 +#: admin/includes/admin-category-sync.php:79 msgid "Event Categories: Synchronise with Post Categories" msgstr "" -#: admin/includes/admin-category-sync.php:74 +#: admin/includes/admin-category-sync.php:80 msgid "Start synchronisation" msgstr "" -#: admin/includes/admin-category-sync.php:75 +#: admin/includes/admin-category-sync.php:81 msgid "" "If this option is enabled the above listed categories will be deleted and " "removed from the existing events!" msgstr "" -#: admin/includes/admin-category-sync.php:90 +#: admin/includes/admin-category-sync.php:96 msgid "Categories to modify" msgstr "" -#: admin/includes/admin-category-sync.php:91 +#: admin/includes/admin-category-sync.php:97 msgid "Categories to add" msgstr "" -#: admin/includes/admin-category-sync.php:92 +#: admin/includes/admin-category-sync.php:98 msgid "Categories to delete (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:93 +#: admin/includes/admin-category-sync.php:99 msgid "Delete not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:97 +#: admin/includes/admin-category-sync.php:102 msgid "Categories with differences" msgstr "" -#: admin/includes/admin-category-sync.php:98 +#: admin/includes/admin-category-sync.php:103 msgid "Categories to add (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:99 +#: admin/includes/admin-category-sync.php:104 msgid "Add not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:117 +#: admin/includes/admin-category-sync.php:123 msgid "none" msgstr "" -#: admin/includes/admin-import.php:49 +#: admin/includes/admin-import.php:58 msgid "Import Events" msgstr "" -#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116 +#: admin/includes/admin-import.php:220 msgid "Step" msgstr "" -#: admin/includes/admin-import.php:69 +#: admin/includes/admin-import.php:79 msgid "Set import file and options" msgstr "" -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:82 #, php-format msgid "Proceed with Step %1$s" msgstr "" -#: admin/includes/admin-import.php:75 +#: admin/includes/admin-import.php:85 msgid "Example file" msgstr "" -#: admin/includes/admin-import.php:76 +#: admin/includes/admin-import.php:86 #, php-format msgid "" "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)" msgstr "" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "Note" msgstr "" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "" "Do not change the column header and separator line (first two lines), " "otherwise the import will fail!" msgstr "" -#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 +#: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103 msgid "Sorry, there has been an error." msgstr "" -#: admin/includes/admin-import.php:85 +#: admin/includes/admin-import.php:96 msgid "The file does not exist, please try again." msgstr "" -#: admin/includes/admin-import.php:93 +#: admin/includes/admin-import.php:104 msgid "The uploaded file does not have the required csv extension." msgstr "" -#: admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:116 msgid "Events review and additonal category selection" msgstr "" -#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133 msgid "Error" msgstr "" -#: admin/includes/admin-import.php:111 +#: admin/includes/admin-import.php:122 msgid "This CSV file cannot be imported" msgstr "" -#: admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:133 msgid "None of the events in this CSV file can be imported" msgstr "" -#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179 msgid "Warning" msgstr "" -#: admin/includes/admin-import.php:126 +#: admin/includes/admin-import.php:138 #, php-format msgid "There is %1$s event which cannot be imported" msgid_plural "There are %1$s events which cannot be imported" msgstr[0] "" -#: admin/includes/admin-import.php:134 +#: admin/includes/admin-import.php:150 #, php-format msgid "CSV line %1$s" msgstr "" -#: admin/includes/admin-import.php:144 +#: admin/includes/admin-import.php:160 msgid "You can still import all other events listed below." msgstr "" -#: admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:179 msgid "" "The following category slugs are not available and will be removed from the " "imported events" msgstr "" -#: admin/includes/admin-import.php:169 +#: admin/includes/admin-import.php:185 msgid "" "If you want to keep these categories, please create these Categories first " "and do the import afterwards." msgstr "" -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:220 msgid "Import result" msgstr "" -#: admin/includes/admin-import.php:201 +#: admin/includes/admin-import.php:223 #, php-format msgid "Import of %1$s events successful!" msgstr "" -#: admin/includes/admin-import.php:202 +#: admin/includes/admin-import.php:224 msgid "Go back to All Events" msgstr "" -#: admin/includes/admin-import.php:206 +#: admin/includes/admin-import.php:227 msgid "Errors during Import" msgstr "" -#: admin/includes/admin-import.php:215 +#: admin/includes/admin-import.php:235 msgid "Event from CSV-line" msgstr "" -#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 -#: includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77 +#: includes/widget_helptexts.php:9 msgid "Title" msgstr "" -#: admin/includes/admin-import.php:227 +#: admin/includes/admin-import.php:248 msgid "Start Date" msgstr "" -#: admin/includes/admin-import.php:228 +#: admin/includes/admin-import.php:249 msgid "End Date" msgstr "" -#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 -#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 +#: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:69 msgid "Time" msgstr "" -#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62 -#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57 -#: includes/options_helptexts.php:58 +#: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78 +#: admin/includes/admin-new.php:107 includes/options_helptexts.php:75 +#: includes/options_helptexts.php:76 msgid "Location" msgstr "" -#: admin/includes/admin-import.php:231 +#: admin/includes/admin-import.php:252 msgid "Content" msgstr "" -#: admin/includes/admin-import.php:232 +#: admin/includes/admin-import.php:253 msgid "Category slugs" msgstr "" -#: admin/includes/admin-import.php:274 +#: admin/includes/admin-import.php:297 msgid "Header line is missing or not correct!" msgstr "" -#: admin/includes/admin-import.php:275 +#: admin/includes/admin-import.php:298 #, php-format msgid "" "Have a look at the %1$sexample file%2$s to see the correct header line " "format." msgstr "" -#: admin/includes/admin-import.php:281 +#: admin/includes/admin-import.php:305 #, php-format msgid "Wrong number of items in line (%1$s items found, 6-7 required)" msgstr "" -#: admin/includes/admin-import.php:309 +#: admin/includes/admin-import.php:334 msgid "Empty event title found" msgstr "" -#: admin/includes/admin-import.php:315 +#: admin/includes/admin-import.php:340 msgid "Wrong date format for startdate" msgstr "" -#: admin/includes/admin-import.php:324 +#: admin/includes/admin-import.php:348 msgid "Wrong date format for enddate" msgstr "" -#: admin/includes/admin-import.php:365 +#: admin/includes/admin-import.php:401 msgid "Import events" msgstr "" -#: admin/includes/admin-import.php:366 +#: admin/includes/admin-import.php:402 msgid "Add additional categories" msgstr "" -#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +#: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257 msgid "Import" msgstr "" -#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +#: admin/includes/admin-import.php:428 includes/events_post_type.php:78 msgid "No events found" msgstr "" -#: admin/includes/admin-import.php:432 +#: admin/includes/admin-import.php:473 msgid "Saving of event failed!" msgstr "" -#: admin/includes/admin-main.php:60 +#: admin/includes/admin-main.php:76 msgid "Event Date" msgstr "" -#: admin/includes/admin-main.php:64 +#: admin/includes/admin-main.php:80 msgid "Author" msgstr "" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 #, php-format msgid "Add a copy of %1$s" msgstr "" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 msgid "Copy" msgstr "" -#: admin/includes/admin-new.php:51 +#: admin/includes/admin-new.php:58 msgid "Event data" msgstr "" -#: admin/includes/admin-new.php:80 +#: admin/includes/admin-new.php:90 msgid "Add Copy" msgstr "" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "Date" msgstr "" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "required" msgstr "" -#: admin/includes/admin-new.php:87 +#: admin/includes/admin-new.php:101 msgid "Multi-Day Event" msgstr "" -#: admin/includes/admin-new.php:106 +#: admin/includes/admin-new.php:121 msgid "Event Title" msgstr "" -#: admin/includes/admin-new.php:121 +#: admin/includes/admin-new.php:137 msgid "Event Content" msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203 msgid "Event updated." msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205 msgid "View event" msgstr "" -#: admin/includes/admin-new.php:184 +#: admin/includes/admin-new.php:204 #, php-format msgid "Event restored to revision from %1$s" msgstr "" -#: admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:205 msgid "Event published." msgstr "" -#: admin/includes/admin-new.php:187 +#: admin/includes/admin-new.php:207 msgid "Event submitted." msgstr "" -#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209 +#: admin/includes/admin-new.php:210 msgid "Preview event" msgstr "" -#: admin/includes/admin-new.php:188 +#: admin/includes/admin-new.php:208 #, php-format msgid "Event scheduled for: %1$s>" msgstr "" -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:210 msgid "Event draft updated." msgstr "" -#: admin/includes/admin-settings.php:71 +#: admin/includes/admin-settings.php:79 msgid "Go to Event Category switching page" msgstr "" -#: admin/includes/admin-settings.php:83 +#: admin/includes/admin-settings.php:93 msgid "Frontend Settings" msgstr "" -#: admin/includes/admin-settings.php:84 +#: admin/includes/admin-settings.php:94 msgid "Admin Page Settings" msgstr "" -#: admin/includes/admin-settings.php:85 +#: admin/includes/admin-settings.php:95 msgid "Feed Settings" msgstr "" -#: admin/includes/admin-settings.php:86 +#: admin/includes/admin-settings.php:96 msgid "Category Taxonomy" msgstr "" -#: includes/daterange_helptexts.php:7 +#: includes/daterange_helptexts.php:8 msgid "Year" msgstr "" -#: includes/daterange_helptexts.php:8 +#: includes/daterange_helptexts.php:9 msgid "A year can be specified in 4 digit format." msgstr "" -#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14 -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:47 #, php-format msgid "" "For a start date filter the first day of %1$s is used, in an end date the " "last day." msgstr "" -#: includes/daterange_helptexts.php:9 +#: includes/daterange_helptexts.php:10 msgid "the resulting year" msgstr "" -#: includes/daterange_helptexts.php:12 +#: includes/daterange_helptexts.php:15 msgid "Month" msgstr "" -#: includes/daterange_helptexts.php:13 +#: includes/daterange_helptexts.php:16 msgid "" "A month can be specified with 4 digits for the year and 2 digits for the " "month, seperated by a hyphen (-)." msgstr "" -#: includes/daterange_helptexts.php:14 +#: includes/daterange_helptexts.php:17 msgid "the resulting month" msgstr "" -#: includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:22 msgid "Day" msgstr "" -#: includes/daterange_helptexts.php:18 +#: includes/daterange_helptexts.php:23 msgid "" "A day can be specified in the format 4 digits for the year, 2 digits for the" " month and 2 digets for the day, seperated by hyphens (-)." msgstr "" -#: includes/daterange_helptexts.php:21 +#: includes/daterange_helptexts.php:28 msgid "Relative Year" msgstr "" -#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28 -#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55 #, php-format msgid "%1$s from now can be specified in the following notation: %2$s" msgstr "" -#: includes/daterange_helptexts.php:22 +#: includes/daterange_helptexts.php:29 msgid "A relative year" msgstr "" -#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29 -#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38 +#: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56 #, php-format msgid "" "This means you can specify a positive or negative (%1$s) %2$s from now with " "%3$s or %4$s attached (see also the example below)." msgstr "" -#: includes/daterange_helptexts.php:23 +#: includes/daterange_helptexts.php:30 msgid "number of years" msgstr "" -#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30 -#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44 +#: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39 +#: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57 #, php-format msgid "Additionally the following values are available: %1$s" msgstr "" -#: includes/daterange_helptexts.php:27 +#: includes/daterange_helptexts.php:36 msgid "Relative Month" msgstr "" -#: includes/daterange_helptexts.php:28 +#: includes/daterange_helptexts.php:37 msgid "A relative month" msgstr "" -#: includes/daterange_helptexts.php:29 +#: includes/daterange_helptexts.php:38 msgid "number of months" msgstr "" -#: includes/daterange_helptexts.php:33 +#: includes/daterange_helptexts.php:44 msgid "Relative Week" msgstr "" -#: includes/daterange_helptexts.php:34 +#: includes/daterange_helptexts.php:45 msgid "A relative week" msgstr "" -#: includes/daterange_helptexts.php:35 +#: includes/daterange_helptexts.php:46 msgid "number of weeks" msgstr "" -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:47 msgid "the resulting week" msgstr "" -#: includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:48 #, php-format msgid "" "The first day of the week is depending on the option %1$s which can be found" " and changed in %2$s." msgstr "" -#: includes/daterange_helptexts.php:41 +#: includes/daterange_helptexts.php:54 msgid "Relative Day" msgstr "" -#: includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:55 msgid "A relative day" msgstr "" -#: includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:56 msgid "number of days" msgstr "" -#: includes/daterange_helptexts.php:49 +#: includes/daterange_helptexts.php:64 msgid "Date range" msgstr "" -#: includes/daterange_helptexts.php:50 +#: includes/daterange_helptexts.php:66 msgid "" "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n" "\t For the start and end date any available date format can be used." msgstr "" -#: includes/daterange_helptexts.php:55 +#: includes/daterange_helptexts.php:75 msgid "This value defines a range without any limits." msgstr "" -#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61 -#: includes/daterange_helptexts.php:66 +#: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83 +#: includes/daterange_helptexts.php:90 #, php-format msgid "The corresponding date_range format is: %1$s" msgstr "" -#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 +#: includes/daterange_helptexts.php:81 includes/filterbar.php:310 msgid "Upcoming" msgstr "" -#: includes/daterange_helptexts.php:60 +#: includes/daterange_helptexts.php:82 msgid "This value defines a range from the actual day to the future." msgstr "" -#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 +#: includes/daterange_helptexts.php:88 includes/filterbar.php:318 msgid "Past" msgstr "" -#: includes/daterange_helptexts.php:65 +#: includes/daterange_helptexts.php:89 msgid "This value defines a range from the past to the previous day." msgstr "" -#: includes/event.php:107 +#: includes/event.php:124 msgid "No valid start date provided" msgstr "" -#: includes/events_post_type.php:60 +#: includes/event.php:299 includes/event.php:301 +#: includes/sc_event-list.php:298 +msgid "read more" +msgstr "" + +#: includes/events_post_type.php:69 msgid "Events" msgstr "活动" -#: includes/events_post_type.php:61 +#: includes/events_post_type.php:70 msgid "Event" msgstr "" -#: includes/events_post_type.php:62 +#: includes/events_post_type.php:71 msgid "Add New" msgstr "添加" -#: includes/events_post_type.php:63 +#: includes/events_post_type.php:72 msgid "Add New Event" msgstr "添加新活动" -#: includes/events_post_type.php:64 +#: includes/events_post_type.php:73 msgid "Edit Event" msgstr "" -#: includes/events_post_type.php:65 +#: includes/events_post_type.php:74 msgid "New Event" msgstr "" -#: includes/events_post_type.php:66 +#: includes/events_post_type.php:75 msgid "View Event" msgstr "" -#: includes/events_post_type.php:67 +#: includes/events_post_type.php:76 msgid "View Events" msgstr "" -#: includes/events_post_type.php:68 +#: includes/events_post_type.php:77 msgid "Search Events" msgstr "" -#: includes/events_post_type.php:70 +#: includes/events_post_type.php:79 msgid "No events found in Trash" msgstr "" -#: includes/events_post_type.php:72 +#: includes/events_post_type.php:81 msgid "All Events" msgstr "所有活动" -#: includes/events_post_type.php:73 +#: includes/events_post_type.php:82 msgid "Event Archives" msgstr "" -#: includes/events_post_type.php:74 +#: includes/events_post_type.php:83 msgid "Event Attributes" msgstr "" -#: includes/events_post_type.php:75 +#: includes/events_post_type.php:84 msgid "Insert into event" msgstr "" -#: includes/events_post_type.php:76 +#: includes/events_post_type.php:85 msgid "Uploaded to this event" msgstr "" -#: includes/events_post_type.php:77 +#: includes/events_post_type.php:86 msgid "Event List" msgstr "活动列表" -#: includes/events_post_type.php:78 +#: includes/events_post_type.php:87 msgid "Filter events list" msgstr "" -#: includes/events_post_type.php:79 +#: includes/events_post_type.php:88 msgid "Events list navigation" msgstr "" -#: includes/events_post_type.php:80 +#: includes/events_post_type.php:89 msgid "Events list" msgstr "" -#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +#: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90 msgid "Reset" msgstr "" -#: includes/filterbar.php:278 +#: includes/filterbar.php:296 msgid "All" msgstr "" -#: includes/filterbar.php:281 +#: includes/filterbar.php:298 msgid "All Dates" msgstr "" -#: includes/options_helptexts.php:10 +#: includes/options_helptexts.php:11 msgid "CSV File to import" msgstr "" -#: includes/options_helptexts.php:12 +#: includes/options_helptexts.php:13 msgid "Please select the file which contains the event data in CSV format." msgstr "" -#: includes/options_helptexts.php:15 +#: includes/options_helptexts.php:18 msgid "Used date format" msgstr "" -#: includes/options_helptexts.php:17 +#: includes/options_helptexts.php:21 msgid "" "With this option the given date format for event start and end date in the " "CSV file can be specified." msgstr "" -#: includes/options_helptexts.php:18 +#: includes/options_helptexts.php:23 #, php-format msgid "" "You can use the php date format options given in %1$s, the most important " "ones are:" msgstr "" -#: includes/options_helptexts.php:20 +#: includes/options_helptexts.php:26 msgid "full year representation, with 4 digits" msgstr "" -#: includes/options_helptexts.php:21 +#: includes/options_helptexts.php:27 msgid "numeric representation of a month, with leading zeros" msgstr "" -#: includes/options_helptexts.php:22 +#: includes/options_helptexts.php:28 msgid "day of the month, 2 digits with leading zeros" msgstr "" -#: includes/options_helptexts.php:24 +#: includes/options_helptexts.php:30 msgid "" "If the date format in the CSV file does not correspond to the given format, " "the import script tries to recognize the date format by itself." msgstr "" -#: includes/options_helptexts.php:25 +#: includes/options_helptexts.php:31 msgid "" "But this can cause problems or result in wrong dates, so it is recommended " "to specify the correct date format here." msgstr "" -#: includes/options_helptexts.php:26 +#: includes/options_helptexts.php:32 msgid "Examples" msgstr "" -#: includes/options_helptexts.php:33 +#: includes/options_helptexts.php:41 msgid "Text for no events" msgstr "" -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:43 msgid "" "This option defines the displayed text when no events are available for the " "selected view." msgstr "" -#: includes/options_helptexts.php:38 +#: includes/options_helptexts.php:48 msgid "Multiday filter range" msgstr "" -#: includes/options_helptexts.php:39 +#: includes/options_helptexts.php:49 msgid "Use the complete event range in the date filter" msgstr "" -#: includes/options_helptexts.php:40 +#: includes/options_helptexts.php:51 msgid "" "This option defines if the complete range of a multiday event shall be " "considered in the date filter." msgstr "" -#: includes/options_helptexts.php:41 +#: includes/options_helptexts.php:52 msgid "" "If disabled, only the start day of an event is considered in the filter." msgstr "" -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:53 msgid "" "For an example multiday event which started yesterday and ends tomorrow this" " means, that it is displayed in umcoming dates when this option is enabled, " "but it is hidden when the option is disabled." msgstr "" -#: includes/options_helptexts.php:45 +#: includes/options_helptexts.php:58 msgid "Date display" msgstr "" -#: includes/options_helptexts.php:46 +#: includes/options_helptexts.php:59 msgid "Show the date only once per day" msgstr "" -#: includes/options_helptexts.php:47 +#: includes/options_helptexts.php:61 msgid "" "With this option enabled the date is only displayed once per day if more " "than one event is available on the same day." msgstr "" -#: includes/options_helptexts.php:48 +#: includes/options_helptexts.php:62 msgid "" "If enabled, the events are ordered in a different way (end date before start" " time) to allow using the same date for as much events as possible." msgstr "" -#: includes/options_helptexts.php:51 +#: includes/options_helptexts.php:67 msgid "HTML tags" msgstr "" -#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:75 #, php-format msgid "Allow HTML tags in the event field \"%1$s\"" msgstr "" -#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 +#: includes/options_helptexts.php:69 includes/options_helptexts.php:76 #, php-format msgid "" "This option specifies if HTML tags are allowed in the event field \"%1$s\"." msgstr "" -#: includes/options_helptexts.php:61 +#: includes/options_helptexts.php:81 msgid "Preferred language file" msgstr "" -#: includes/options_helptexts.php:62 +#: includes/options_helptexts.php:82 msgid "Load translations from general language directory first" msgstr "" -#: includes/options_helptexts.php:63 +#: includes/options_helptexts.php:84 #, php-format msgid "" "The default is to load the %1$s translation file from the plugin language " "directory first (%2$s)." msgstr "" -#: includes/options_helptexts.php:64 +#: includes/options_helptexts.php:85 #, php-format msgid "" "If you want to load your own language file from the general language " @@ -1121,295 +1126,312 @@ msgid "" "language directory, you have to enable this option." msgstr "" -#: includes/options_helptexts.php:68 +#: includes/options_helptexts.php:91 msgid "Events permalink slug" msgstr "" -#: includes/options_helptexts.php:69 +#: includes/options_helptexts.php:92 msgid "" "With this option the slug for the events permalink URLs can be defined." msgstr "" -#: includes/options_helptexts.php:72 +#: includes/options_helptexts.php:97 msgid "Text for \"Show content\"" msgstr "" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:98 msgid "" "With this option the displayed text for the link to show the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:76 +#: includes/options_helptexts.php:103 msgid "Text for \"Hide content\"" msgstr "" -#: includes/options_helptexts.php:77 +#: includes/options_helptexts.php:104 msgid "" "With this option the displayed text for the link to hide the event content " "can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:109 msgid "Disable CSS file" msgstr "" -#: includes/options_helptexts.php:81 +#: includes/options_helptexts.php:110 #, php-format msgid "Disable the %1$s file." msgstr "" -#: includes/options_helptexts.php:82 +#: includes/options_helptexts.php:112 #, php-format msgid "With this option you can disable the inclusion of the %1$s file." msgstr "" -#: includes/options_helptexts.php:83 +#: includes/options_helptexts.php:113 msgid "" "This normally only make sense if you have css conflicts with your theme and " "want to set all required css styles somewhere else (e.g. in the theme css)." msgstr "" -#: includes/options_helptexts.php:87 +#: includes/options_helptexts.php:119 msgid "Date format in edit form" msgstr "" -#: includes/options_helptexts.php:88 +#: includes/options_helptexts.php:121 msgid "" "This option sets the displayed date format for the event date fields in the " "event new / edit form." msgstr "" -#: includes/options_helptexts.php:89 +#: includes/options_helptexts.php:122 msgid "The default is an empty string to use the Wordpress standard setting." msgstr "" -#: includes/options_helptexts.php:90 +#: includes/options_helptexts.php:123 #, php-format msgid "" "All available options to specify the date format can be found %1$shere%2$s." msgstr "" -#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 +#: includes/options_helptexts.php:129 msgid "Enable RSS feed" msgstr "" -#: includes/options_helptexts.php:95 -msgid "Enable support for an event RSS feed" +#: includes/options_helptexts.php:130 +msgid "Enable support for the event RSS feed" msgstr "" -#: includes/options_helptexts.php:96 -msgid "This option activates a RSS feed for the events." +#: includes/options_helptexts.php:132 +msgid "" +"This option activates the RSS feed for the events and adds a feed link in " +"the html head." msgstr "" -#: includes/options_helptexts.php:97 +#: includes/options_helptexts.php:133 msgid "" "You have to enable this option if you want to use one of the RSS feed " "features." msgstr "" -#: includes/options_helptexts.php:100 -msgid "Feed name" +#: includes/options_helptexts.php:138 +msgid "Enable iCal feed" msgstr "" -#: includes/options_helptexts.php:101 -#, php-format -msgid "This option sets the feed name. The default value is %1$s." +#: includes/options_helptexts.php:139 +msgid "Enable support for the event iCal feed" msgstr "" -#: includes/options_helptexts.php:102 -#, php-format -msgid "" -"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " -"enabled)." +#: includes/options_helptexts.php:141 +msgid "This option activates the iCal feed for events." msgstr "" -#: includes/options_helptexts.php:105 -msgid "Feed Description" +#: includes/options_helptexts.php:142 +msgid "" +"You have to enable this option if you want to use one of the iCal features." msgstr "" -#: includes/options_helptexts.php:106 -#, php-format -msgid "This options set the feed description. The default value is %1$s." +#: includes/options_helptexts.php:147 +msgid "Position of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:107 -msgid "" -"This description will be used in the title for the feed link in the html " -"head and for the description in the feed itself." +#: includes/options_helptexts.php:149 +msgid "at the top (above the navigation bar)" msgstr "" -#: includes/options_helptexts.php:110 -msgid "Listed events" +#: includes/options_helptexts.php:150 +msgid "between navigation bar and events" msgstr "" -#: includes/options_helptexts.php:111 -msgid "Only show upcoming events in feed" +#: includes/options_helptexts.php:151 +msgid "at the bottom" msgstr "" -#: includes/options_helptexts.php:112 +#: includes/options_helptexts.php:153 msgid "" -"If this option is enabled only the upcoming events are listed in the feed." +"This option specifies the position of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:113 -msgid "If disabled all events (upcoming and past) will be listed." +#: includes/options_helptexts.php:158 +msgid "Align of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:116 -msgid "Add RSS feed link in head" +#: includes/options_helptexts.php:160 +msgid "left" msgstr "" -#: includes/options_helptexts.php:117 -msgid "Add RSS feed link in the html head" +#: includes/options_helptexts.php:161 +msgid "center" msgstr "" -#: includes/options_helptexts.php:118 -msgid "This option adds a RSS feed in the html head for the events." +#: includes/options_helptexts.php:162 +msgid "right" msgstr "" -#: includes/options_helptexts.php:119 -msgid "There are 2 alternatives to include the RSS feed" +#: includes/options_helptexts.php:164 +msgid "" +"This option specifies the align of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:120 -msgid "" -"The first way is this option to include a link in the html head. This link " -"will be recognized by browers or feed readers." +#: includes/options_helptexts.php:169 +msgid "RSS feed name" msgstr "" -#: includes/options_helptexts.php:121 +#: includes/options_helptexts.php:171 #, php-format -msgid "" -"The second way is to include a visible feed link directly in the event list." -" This can be done by setting the shortcode attribute %1$s to %2$s." +msgid "This option sets the RSS feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:122 +#: includes/options_helptexts.php:172 #, php-format -msgid "This option is only valid if the setting %1$s is enabled." +msgid "" +"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks " +"enabled)." msgstr "" -#: includes/options_helptexts.php:125 -msgid "Position of the RSS feed link" +#: includes/options_helptexts.php:177 +msgid "RSS feed Description" msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the top (above the navigation bar)" +#: includes/options_helptexts.php:179 +#, php-format +msgid "This options set the RSS feed description. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:126 -msgid "between navigation bar and events" +#: includes/options_helptexts.php:180 +msgid "" +"This description will be used in the title for the feed link in the html " +"head and for the description in the feed itself." msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the bottom" +#: includes/options_helptexts.php:185 +msgid "RSS feed events" msgstr "" -#: includes/options_helptexts.php:127 -msgid "" -"This option specifies the position of the RSS feed link in the event list." +#: includes/options_helptexts.php:186 +msgid "Only show upcoming events in the RSS feed" msgstr "" -#: includes/options_helptexts.php:128 includes/options_helptexts.php:134 -#: includes/options_helptexts.php:140 includes/options_helptexts.php:146 -#, php-format +#: includes/options_helptexts.php:188 msgid "" -"You have to set the shortcode attribute %1$s to %2$s if you want to show the" -" feed link." +"If this option is enabled only the upcoming events are listed in the RSS " +"feed." msgstr "" -#: includes/options_helptexts.php:131 -msgid "Align of the RSS feed link" +#: includes/options_helptexts.php:189 includes/options_helptexts.php:215 +msgid "If disabled, all events (upcoming and past) will be listed." msgstr "" -#: includes/options_helptexts.php:132 -msgid "left" +#: includes/options_helptexts.php:194 +msgid "RSS link text" msgstr "" -#: includes/options_helptexts.php:132 -msgid "center" +#: includes/options_helptexts.php:196 +msgid "This option sets the caption of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:132 -msgid "right" +#: includes/options_helptexts.php:197 +msgid "Use an empty text to only show the rss image." msgstr "" -#: includes/options_helptexts.php:133 +#: includes/options_helptexts.php:198 +#, php-format msgid "" -"This option specifies the align of the RSS feed link in the event list." +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" RSS feed link." msgstr "" -#: includes/options_helptexts.php:137 -msgid "Feed link text" +#: includes/options_helptexts.php:203 +msgid "iCal feed name" msgstr "" -#: includes/options_helptexts.php:138 +#: includes/options_helptexts.php:205 +#, php-format +msgid "This option sets the iCal feed name. The default value is %1$s." +msgstr "" + +#: includes/options_helptexts.php:206 +#, php-format msgid "" -"This option specifies the caption of the RSS feed link in the event list." +"This name will be used in the iCal feed url (e.g. %1$s, or %2$s with " +"permalinks enabled)." msgstr "" -#: includes/options_helptexts.php:139 +#: includes/options_helptexts.php:211 +msgid "iCal feed events" +msgstr "" + +#: includes/options_helptexts.php:212 +msgid "Only show upcoming events in the iCal feed" +msgstr "" + +#: includes/options_helptexts.php:214 msgid "" -"Insert an empty text to hide any text if you only want to show the rss " -"image." +"If this option is enabled only the upcoming events are listed in the iCal " +"file." +msgstr "" + +#: includes/options_helptexts.php:220 +msgid "iCal link text" msgstr "" -#: includes/options_helptexts.php:143 -msgid "Feed link image" +#: includes/options_helptexts.php:222 +msgid "This option sets the iCal link text in the event list." msgstr "" -#: includes/options_helptexts.php:144 -msgid "Show rss image in feed link" +#: includes/options_helptexts.php:223 +msgid "Use an empty text to only show the iCal image." msgstr "" -#: includes/options_helptexts.php:145 +#: includes/options_helptexts.php:224 +#, php-format msgid "" -"This option specifies if the an image should be dispayed in the feed link in" -" front of the text." +"You have to set the shortcode attribute %1$s to %2$s if you want to show the" +" iCal feed link." msgstr "" -#: includes/options_helptexts.php:151 +#: includes/options_helptexts.php:231 msgid "Event Category handling" msgstr "" -#: includes/options_helptexts.php:152 +#: includes/options_helptexts.php:232 msgid "Use Post Categories" msgstr "" -#: includes/options_helptexts.php:153 +#: includes/options_helptexts.php:234 msgid "" "Do not maintain seperate categories for the events, and use the existing " "post categories instead." msgstr "" -#: includes/options_helptexts.php:154 +#: includes/options_helptexts.php:235 msgid "Attention" msgstr "" -#: includes/options_helptexts.php:155 +#: includes/options_helptexts.php:236 msgid "" "This option cannot be changed directly, but you can go to the Event Category" " switching page from here." msgstr "" -#: includes/options.php:40 +#: includes/options.php:73 msgid "events" msgstr "" -#: includes/options.php:41 +#: includes/options.php:77 msgid "Show content" msgstr "" -#: includes/options.php:42 +#: includes/options.php:81 msgid "Hide content" msgstr "" -#: includes/sc_event-list_helptexts.php:7 +#: includes/sc_event-list_helptexts.php:8 msgid "event-id" msgstr "" -#: includes/sc_event-list_helptexts.php:8 +#: includes/sc_event-list_helptexts.php:9 #, php-format msgid "" "By default the event-list is displayed initially. But if an event-id (e.g. " @@ -1417,107 +1439,107 @@ msgid "" "this event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:10 -#: includes/sc_event-list_helptexts.php:22 +#: includes/sc_event-list_helptexts.php:13 +#: includes/sc_event-list_helptexts.php:31 msgid "year" msgstr "" -#: includes/sc_event-list_helptexts.php:11 +#: includes/sc_event-list_helptexts.php:14 msgid "" "This attribute defines which events are initially shown. The default is to " "show the upcoming events only." msgstr "" -#: includes/sc_event-list_helptexts.php:12 +#: includes/sc_event-list_helptexts.php:15 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:14 +#: includes/sc_event-list_helptexts.php:19 msgid "category slug" msgstr "" -#: includes/sc_event-list_helptexts.php:15 +#: includes/sc_event-list_helptexts.php:20 msgid "" "This attribute defines the category of which events are initially shown. The" " default is to show events of all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:16 +#: includes/sc_event-list_helptexts.php:21 msgid "" "Provide a category slug to change this behavior. It is still possible to " "change the displayed categories via the filterbar or url parameters." msgstr "" -#: includes/sc_event-list_helptexts.php:19 +#: includes/sc_event-list_helptexts.php:26 msgid "This attribute defines the initial order of the events." msgstr "" -#: includes/sc_event-list_helptexts.php:20 +#: includes/sc_event-list_helptexts.php:27 msgid "" "With %1$S (default value) the events are sorted from old to new, with %2$s " "in the opposite direction (from new to old)." msgstr "" -#: includes/sc_event-list_helptexts.php:23 +#: includes/sc_event-list_helptexts.php:32 #, php-format msgid "" "This attribute defines the dates and date ranges of which events are " "displayed. The default is %1$s to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:24 +#: includes/sc_event-list_helptexts.php:33 #, php-format msgid "" "Filtered events according to %1$s value are not available in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:25 +#: includes/sc_event-list_helptexts.php:34 #, php-format msgid "" "You can find all available values with a description and examples in the " "sections %1$s and %2$s below." msgstr "" -#: includes/sc_event-list_helptexts.php:26 +#: includes/sc_event-list_helptexts.php:35 #, php-format msgid "See %1$s description if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:28 +#: includes/sc_event-list_helptexts.php:39 msgid "category slugs" msgstr "" -#: includes/sc_event-list_helptexts.php:29 +#: includes/sc_event-list_helptexts.php:40 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:30 +#: includes/sc_event-list_helptexts.php:41 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:31 +#: includes/sc_event-list_helptexts.php:42 #, php-format msgid "" "The filter is specified via the given category slugs. See %1$s description " "if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:33 -#: includes/sc_event-list_helptexts.php:74 -#: includes/sc_event-list_helptexts.php:89 -#: includes/sc_event-list_helptexts.php:104 +#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:111 +#: includes/sc_event-list_helptexts.php:138 +#: includes/sc_event-list_helptexts.php:177 msgid "number" msgstr "" -#: includes/sc_event-list_helptexts.php:34 +#: includes/sc_event-list_helptexts.php:47 #, php-format msgid "" "This attribute defines how many events should be displayed if upcoming " @@ -1525,109 +1547,109 @@ msgid "" "displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:48 msgid "" "Please not that in the actual version there is no pagination of the events " "available, so the event list can be very long." msgstr "" -#: includes/sc_event-list_helptexts.php:38 +#: includes/sc_event-list_helptexts.php:53 msgid "" "This attribute defines if the filterbar should be displayed. The filterbar " "allows the users to specify filters for the listed events." msgstr "" -#: includes/sc_event-list_helptexts.php:39 +#: includes/sc_event-list_helptexts.php:54 #, php-format msgid "Choose %1$s to always hide and %2$s to always show the filterbar." msgstr "" -#: includes/sc_event-list_helptexts.php:40 +#: includes/sc_event-list_helptexts.php:55 #, php-format msgid "" "With %1$s the filterbar is only visible in the event list and with %2$s only" " in the single event view." msgstr "" -#: includes/sc_event-list_helptexts.php:43 +#: includes/sc_event-list_helptexts.php:60 #, php-format msgid "" "This attribute specifies the available items in the filterbar. This options " "are only valid if the filterbar is displayed (see %1$s attribute)." msgstr "" -#: includes/sc_event-list_helptexts.php:44 +#: includes/sc_event-list_helptexts.php:61 msgid "" "Find below an overview of the available filterbar items and their options:" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "filterbar item" msgstr "" -#: includes/sc_event-list_helptexts.php:46 -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:96 msgid "description" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "item options" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option values" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "default value" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option description" msgstr "" -#: includes/sc_event-list_helptexts.php:47 +#: includes/sc_event-list_helptexts.php:67 msgid "" "Show a list of all available years. Additional there are some special " "entries available (see item options)." msgstr "" -#: includes/sc_event-list_helptexts.php:48 -#: includes/sc_event-list_helptexts.php:53 +#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:82 msgid "Add an entry to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:49 -#: includes/sc_event-list_helptexts.php:54 +#: includes/sc_event-list_helptexts.php:73 +#: includes/sc_event-list_helptexts.php:84 msgid "Add an entry to show all upcoming events." msgstr "" -#: includes/sc_event-list_helptexts.php:50 -#: includes/sc_event-list_helptexts.php:55 +#: includes/sc_event-list_helptexts.php:74 +#: includes/sc_event-list_helptexts.php:85 msgid "Add an entry to show events in the past." msgstr "" -#: includes/sc_event-list_helptexts.php:51 +#: includes/sc_event-list_helptexts.php:75 msgid "Set descending or ascending order of year entries." msgstr "" -#: includes/sc_event-list_helptexts.php:52 +#: includes/sc_event-list_helptexts.php:78 msgid "Show a list of all available months." msgstr "" -#: includes/sc_event-list_helptexts.php:56 +#: includes/sc_event-list_helptexts.php:86 msgid "Set descending or ascending order of month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "php date-formats" msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "Set the displayed date format of the month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "With this item you can display the special entries %1$s, %2$s and %3$s. You " @@ -1635,65 +1657,65 @@ msgid "" "order." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "" "Specifies the displayed values and their order. The items must be seperated " "by %1$s." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Show a list of all available categories." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Add an entry to show events from all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "A link to reset the eventlist filter to standard." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "any text" msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "Set the caption of the link." msgstr "" -#: includes/sc_event-list_helptexts.php:61 +#: includes/sc_event-list_helptexts.php:93 msgid "Find below an overview of the available filterbar display options:" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "display option" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "available for" msgstr "" -#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:97 #, php-format msgid "Shows a horizonal list seperated by %1$s with a link to each item." msgstr "" -#: includes/sc_event-list_helptexts.php:65 +#: includes/sc_event-list_helptexts.php:98 msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:66 +#: includes/sc_event-list_helptexts.php:99 msgid "Shows a simple link which can be clicked." msgstr "" -#: includes/sc_event-list_helptexts.php:67 +#: includes/sc_event-list_helptexts.php:102 msgid "Find below some declaration examples with descriptions:" msgstr "" -#: includes/sc_event-list_helptexts.php:69 +#: includes/sc_event-list_helptexts.php:104 #, php-format msgid "" "In this example you can see that the filterbar item and the used display " @@ -1701,22 +1723,22 @@ msgid "" "items seperated by a comma %2$s. These items will be displayed left-aligned." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 #, php-format msgid "" "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." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "option_name" msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "value" msgstr "" -#: includes/sc_event-list_helptexts.php:72 +#: includes/sc_event-list_helptexts.php:107 #, php-format msgid "" "The 2 semicolon %1$s devides the bar in 3 section. The first section will be" @@ -1725,75 +1747,84 @@ msgid "" "left-aligned and the reset link will be on the right side." msgstr "" -#: includes/sc_event-list_helptexts.php:75 -#: includes/sc_event-list_helptexts.php:90 +#: includes/sc_event-list_helptexts.php:112 +#: includes/sc_event-list_helptexts.php:139 msgid "" "This attribute specifies if the title should be truncated to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:76 -#: includes/sc_event-list_helptexts.php:91 +#: includes/sc_event-list_helptexts.php:113 +#: includes/sc_event-list_helptexts.php:140 #, php-format msgid "" "With the standard value %1$s the full text is displayed, with %2$s the text " "is automatically truncated via css." msgstr "" -#: includes/sc_event-list_helptexts.php:77 -#: includes/sc_event-list_helptexts.php:92 -#: includes/sc_event-list_helptexts.php:107 +#: includes/sc_event-list_helptexts.php:114 +#: includes/sc_event-list_helptexts.php:141 +#: includes/sc_event-list_helptexts.php:180 msgid "This attribute has no influence if only a single event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:80 +#: includes/sc_event-list_helptexts.php:120 msgid "" "This attribute specifies if the starttime is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n" "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:85 +#: includes/sc_event-list_helptexts.php:130 msgid "" "This attribute specifies if the location is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n" "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:95 +#: includes/sc_event-list_helptexts.php:147 msgid "" "This attribute specifies if the categories are displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n" "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:100 +#: includes/sc_event-list_helptexts.php:157 msgid "" "This attribute specifies if the content is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n" "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:105 +#: includes/sc_event-list_helptexts.php:167 +msgid "" +"This attribute specifies if the excerpt is displayed in the event list.<br />\n" +"\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n" +"\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" +"\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" +"\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)." +msgstr "" + +#: includes/sc_event-list_helptexts.php:178 msgid "" "This attribute specifies if the content should be truncate to the given " "number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:106 +#: includes/sc_event-list_helptexts.php:179 #, php-format msgid "With the standard value %1$s the full text is displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:110 +#: includes/sc_event-list_helptexts.php:186 msgid "" -"This attribute specifies if the content should be collapsed initially.<br />\n" +"This attribute specifies if the content or excerpt should be collapsed initially.<br />\n" "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n" "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n" "\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." msgstr "" -#: includes/sc_event-list_helptexts.php:116 +#: includes/sc_event-list_helptexts.php:197 msgid "" "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n" "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n" @@ -1801,7 +1832,7 @@ msgid "" "\t With \"events_with_content_only\" the link is only added in the event list for events with event content." msgstr "" -#: includes/sc_event-list_helptexts.php:122 +#: includes/sc_event-list_helptexts.php:208 msgid "" "This attribute specifies if a rss feed link should be added.<br />\n" "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n" @@ -1810,32 +1841,52 @@ msgid "" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:128 +#: includes/sc_event-list_helptexts.php:220 +msgid "" +"This attribute specifies if a ical feed link should be added.<br />\n" +"\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n" +"\t On that page you can also find some settings to modify the output.<br />\n" +"\t Choose \"false\" to never add and \"true\" to always add the link.<br />" +msgstr "" + +#: includes/sc_event-list_helptexts.php:231 msgid "" "This attribute specifies the page or post url for event links.<br />\n" "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n" "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget." msgstr "" -#: includes/sc_event-list_helptexts.php:135 +#: includes/sc_event-list_helptexts.php:243 msgid "" "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n" "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget." msgstr "" -#: includes/sc_event-list.php:135 +#: includes/sc_event-list.php:154 +msgid "Sorry, the requested event is not available!" +msgstr "" + +#: includes/sc_event-list.php:163 msgid "Event Information:" msgstr "" -#: includes/widget_helptexts.php:10 +#: includes/sc_event-list.php:405 +msgid "Link to RSS feed" +msgstr "" + +#: includes/sc_event-list.php:414 +msgid "Link to iCal feed" +msgstr "" + +#: includes/widget_helptexts.php:11 msgid "This option defines the displayed title for the widget." msgstr "" -#: includes/widget_helptexts.php:15 +#: includes/widget_helptexts.php:18 msgid "Category Filter" msgstr "" -#: includes/widget_helptexts.php:17 +#: includes/widget_helptexts.php:20 msgid "" "This option defines the categories of which events are shown. The standard " "is all or an empty string to show all events. Specify a category slug or a " @@ -1844,137 +1895,145 @@ msgid "" "all possibilities." msgstr "" -#: includes/widget_helptexts.php:22 +#: includes/widget_helptexts.php:27 msgid "Number of listed events" msgstr "" -#: includes/widget_helptexts.php:24 +#: includes/widget_helptexts.php:29 msgid "The number of upcoming events to display" msgstr "" -#: includes/widget_helptexts.php:29 +#: includes/widget_helptexts.php:36 msgid "Truncate event title to" msgstr "" -#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52 -#: includes/widget_helptexts.php:67 +#: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65 +#: includes/widget_helptexts.php:93 msgid "characters" msgstr "" -#: includes/widget_helptexts.php:31 +#: includes/widget_helptexts.php:38 msgid "" "This option defines the number of displayed characters for the event title." msgstr "" -#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54 +#: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67 #, php-format msgid "" "Set this value to %1$s to view the full text, or set it to %2$s to " "automatically truncate the text via css." msgstr "" -#: includes/widget_helptexts.php:37 +#: includes/widget_helptexts.php:46 msgid "Show event starttime" msgstr "" -#: includes/widget_helptexts.php:39 +#: includes/widget_helptexts.php:48 msgid "This option defines if the event start time will be displayed." msgstr "" -#: includes/widget_helptexts.php:44 +#: includes/widget_helptexts.php:55 msgid "Show event location" msgstr "" -#: includes/widget_helptexts.php:46 +#: includes/widget_helptexts.php:57 msgid "This option defines if the event location will be displayed." msgstr "" -#: includes/widget_helptexts.php:51 +#: includes/widget_helptexts.php:64 msgid "Truncate location to" msgstr "" -#: includes/widget_helptexts.php:53 +#: includes/widget_helptexts.php:66 msgid "" "If the event location is diplayed this option defines the number of " "displayed characters." msgstr "" -#: includes/widget_helptexts.php:59 +#: includes/widget_helptexts.php:74 +msgid "Show event excerpt" +msgstr "" + +#: includes/widget_helptexts.php:76 +msgid "This option defines if the event excerpt will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:83 msgid "Show event content" msgstr "" -#: includes/widget_helptexts.php:61 +#: includes/widget_helptexts.php:85 msgid "This option defines if the event content will be displayed." msgstr "" -#: includes/widget_helptexts.php:66 +#: includes/widget_helptexts.php:92 msgid "Truncate content to" msgstr "" -#: includes/widget_helptexts.php:68 +#: includes/widget_helptexts.php:94 msgid "" "If the event content are diplayed this option defines the number of diplayed" " characters." msgstr "" -#: includes/widget_helptexts.php:69 +#: includes/widget_helptexts.php:95 #, php-format msgid "Set this value to %1$s to view the full text." msgstr "" -#: includes/widget_helptexts.php:74 +#: includes/widget_helptexts.php:102 msgid "URL to the linked Event List page" msgstr "" -#: includes/widget_helptexts.php:76 +#: includes/widget_helptexts.php:104 msgid "" "This option defines the url to the linked Event List page. This option is " "required if you want to use one of the options below." msgstr "" -#: includes/widget_helptexts.php:81 +#: includes/widget_helptexts.php:111 msgid "Shortcode ID on linked page" msgstr "" -#: includes/widget_helptexts.php:83 +#: includes/widget_helptexts.php:113 msgid "" "This option defines the shortcode-id for the Event List on the linked page. " "Normally the standard value 1 is correct, you only have to change it if you " "use multiple event-list shortcodes on the linked page." msgstr "" -#: includes/widget_helptexts.php:90 +#: includes/widget_helptexts.php:122 msgid "" "With this option you can add a link to the single event page for every " "displayed event. You have to specify the url to the page and the shortcode " "id option if you want to use it." msgstr "" -#: includes/widget_helptexts.php:97 +#: includes/widget_helptexts.php:131 msgid "" "With this option you can add a link to the event-list page below the " "diplayed events. You have to specify the url to page option if you want to " "use it." msgstr "" -#: includes/widget_helptexts.php:102 +#: includes/widget_helptexts.php:138 msgid "Caption for the link" msgstr "" -#: includes/widget_helptexts.php:104 +#: includes/widget_helptexts.php:140 msgid "" "This option defines the text for the link to the Event List page if the " "approriate option is selected." msgstr "" -#: includes/widget.php:20 +#: includes/widget.php:21 msgid "With this widget a list of upcoming events can be displayed." msgstr "" -#: includes/widget.php:25 +#: includes/widget.php:26 msgid "Upcoming events" msgstr "" -#: includes/widget.php:38 +#: includes/widget.php:40 msgid "show events page" msgstr "" diff --git a/wp-content/plugins/event-list/languages/event-list.pot b/wp-content/plugins/event-list/languages/event-list.pot index dde21e87666047866227fa36994314817061e8a7..68481cdf60d93e12fd60e5177de82688d6a8bbd5 100644 --- a/wp-content/plugins/event-list/languages/event-list.pot +++ b/wp-content/plugins/event-list/languages/event-list.pot @@ -1,1619 +1,1648 @@ # Translation file for the 'Event List' WordPress plugin -# Copyright (C) 2018 by mibuthu +# Copyright (C) 2021 by mibuthu # This file is distributed under the same license as the corresponding wordpress plugin. # #, fuzzy msgid "" msgstr "" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n" -"POT-Creation-Date: 2018-05-27 12:20+0200\n" +"POT-Creation-Date: 2021-04-24 11:28+0200\n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Errors during upgrade of plugin %1$s" msgstr "" -#: admin/admin.php:57 +#: admin/admin.php:64 #, php-format msgid "Upgrade of plugin %1$s successful" msgstr "" -#: admin/admin.php:106 admin/includes/admin-settings.php:65 +#: admin/admin.php:116 admin/includes/admin-settings.php:73 msgid "Event List Settings" msgstr "" -#: admin/admin.php:106 +#: admin/admin.php:116 msgid "Settings" msgstr "" -#: admin/admin.php:110 admin/includes/admin-about.php:37 +#: admin/admin.php:120 admin/includes/admin-about.php:43 msgid "About Event List" msgstr "" -#: admin/admin.php:110 +#: admin/admin.php:120 msgid "About" msgstr "" -#: admin/admin.php:132 +#: admin/admin.php:144 #, php-format msgid "%s Event" msgid_plural "%s Events" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 +#: admin/includes/admin-about.php:67 admin/includes/admin-settings.php:92 msgid "General" msgstr "" -#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 -#: admin/includes/admin-about.php:105 +#: admin/includes/admin-about.php:68 admin/includes/admin-about.php:88 +#: admin/includes/admin-about.php:117 msgid "Shortcode Attributes" msgstr "" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:82 msgid "Help and Instructions" msgstr "" -#: admin/includes/admin-about.php:73 +#: admin/includes/admin-about.php:83 #, php-format msgid "You can manage the events %1$shere%2$s" msgstr "" -#: admin/includes/admin-about.php:74 +#: admin/includes/admin-about.php:84 msgid "To show the events on your site you have 2 possibilities" msgstr "" -#: admin/includes/admin-about.php:75 +#: admin/includes/admin-about.php:85 #, php-format msgid "you can place the <strong>shortcode</strong> %1$s on any page or post" msgstr "" -#: admin/includes/admin-about.php:76 +#: admin/includes/admin-about.php:86 #, php-format msgid "you can add the <strong>widget</strong> %1$s in your sidebars" msgstr "" -#: admin/includes/admin-about.php:77 +#: admin/includes/admin-about.php:87 msgid "The displayed events and their style can be modified with the available widget settings and the available attributes for the shortcode." msgstr "" -#: admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:88 #, php-format msgid "A list of all available shortcode attributes with their descriptions is available in the %1$s tab." msgstr "" -#: admin/includes/admin-about.php:79 +#: admin/includes/admin-about.php:89 msgid "The available widget options are described in their tooltip text." msgstr "" -#: admin/includes/admin-about.php:80 +#: admin/includes/admin-about.php:90 #, php-format msgid "If you enable one of the links options (%1$s or %2$s) in the widget you have to insert an URL to the linked event-list page." msgstr "" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:120 msgid "Add links to the single events" msgstr "" -#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:90 includes/widget_helptexts.php:129 msgid "Add a link to the Event List page" msgstr "" -#: admin/includes/admin-about.php:81 +#: admin/includes/admin-about.php:91 msgid "This is required because the widget does not know in which page or post the shortcode was included." msgstr "" -#: admin/includes/admin-about.php:82 +#: admin/includes/admin-about.php:92 msgid "Additionally you have to insert the correct Shortcode id on the linked page. This id describes which shortcode should be used on the given page or post if you have more than one." msgstr "" -#: admin/includes/admin-about.php:83 +#: admin/includes/admin-about.php:93 #, php-format msgid "The default value %1$s is normally o.k. (for pages with 1 shortcode only), but if required you can check the id by looking into the URL of an event link on your linked page or post." msgstr "" -#: admin/includes/admin-about.php:84 +#: admin/includes/admin-about.php:94 #, php-format msgid "The id is available at the end of the URL parameters (e.g. %1$s)." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 #, php-format msgid "Be sure to also check the %1$s to get the plugin behaving just the way you want." msgstr "" -#: admin/includes/admin-about.php:86 +#: admin/includes/admin-about.php:96 msgid "Settings page" msgstr "" -#: admin/includes/admin-about.php:92 +#: admin/includes/admin-about.php:103 msgid "About the plugin author" msgstr "" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:105 #, php-format msgid "This plugin is developed by %1$s, you can find more information about the plugin on the %2$s." msgstr "" -#: admin/includes/admin-about.php:94 -msgid "wordpress plugin site" +#: admin/includes/admin-about.php:105 +msgid "WordPress plugin site" msgstr "" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:106 #, php-format msgid "If you like the plugin please rate it on the %1$s." msgstr "" -#: admin/includes/admin-about.php:95 -msgid "wordpress plugin review site" +#: admin/includes/admin-about.php:106 +msgid "WordPress plugin review site" msgstr "" -#: admin/includes/admin-about.php:96 +#: admin/includes/admin-about.php:107 msgid "If you want to support the plugin I would be happy to get a small donation" msgstr "" -#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 -#: admin/includes/admin-about.php:99 +#: admin/includes/admin-about.php:108 admin/includes/admin-about.php:109 +#: admin/includes/admin-about.php:110 #, php-format msgid "Donate with %1$s" msgstr "" -#: admin/includes/admin-about.php:107 +#: admin/includes/admin-about.php:119 msgid "You have the possibility to modify the output if you add some of the following attributes to the shortcode." msgstr "" -#: admin/includes/admin-about.php:108 +#: admin/includes/admin-about.php:120 #, php-format msgid "You can combine and add as much attributes as you want. E.g. the shortcode including the attributes %1$s and %2$s would looks like this:" msgstr "" -#: admin/includes/admin-about.php:110 +#: admin/includes/admin-about.php:122 msgid "Below you can find a list of all supported attributes with their descriptions and available options:" msgstr "" -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:137 msgid "Attribute name" msgstr "" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:138 msgid "Value options" msgstr "" -#: admin/includes/admin-about.php:126 +#: admin/includes/admin-about.php:139 msgid "Default value" msgstr "" -#: admin/includes/admin-about.php:127 +#: admin/includes/admin-about.php:140 msgid "Description" msgstr "" -#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 -#: includes/sc_event-list_helptexts.php:31 +#: admin/includes/admin-about.php:159 includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:42 msgid "Filter Syntax" msgstr "" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:160 msgid "For date and cat filters you can specify complex filters with the following syntax:" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 #, php-format msgid "You can use %1$s and %2$s connections to define complex filters. Additionally you can set brackets %3$s for nested queries." msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "AND" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "OR" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "or" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:161 msgid "and" msgstr "" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:162 msgid "Examples for cat filters:" msgstr "" -#: admin/includes/admin-about.php:149 +#: admin/includes/admin-about.php:163 #, php-format msgid "Show all events with category %1$s." msgstr "" -#: admin/includes/admin-about.php:150 +#: admin/includes/admin-about.php:164 #, php-format msgid "Show all events with category %1$s or %2$s." msgstr "" -#: admin/includes/admin-about.php:151 +#: admin/includes/admin-about.php:165 #, php-format msgid "Show all events with category %1$s and all events where category %2$s as well as %3$s is selected." msgstr "" -#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:171 includes/sc_event-list_helptexts.php:34 msgid "Available Date Formats" msgstr "" -#: admin/includes/admin-about.php:157 +#: admin/includes/admin-about.php:172 msgid "For date filters you can use the following date formats:" msgstr "" -#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:181 includes/sc_event-list_helptexts.php:34 msgid "Available Date Range Formats" msgstr "" -#: admin/includes/admin-about.php:166 +#: admin/includes/admin-about.php:182 msgid "For date filters you can use the following daterange formats:" msgstr "" -#: admin/includes/admin-about.php:178 +#: admin/includes/admin-about.php:195 msgid "Value" msgstr "" -#: admin/includes/admin-about.php:182 +#: admin/includes/admin-about.php:199 msgid "Example" msgstr "" -#: admin/includes/admin-categories.php:38 +#: admin/includes/admin-categories.php:54 msgid "Synchronize with post categories" msgstr "" -#: admin/includes/admin-categories.php:46 +#: admin/includes/admin-categories.php:63 #, php-format msgid "%1$s categories modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:47 +#: admin/includes/admin-categories.php:64 #, php-format msgid "%1$s categories added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:48 +#: admin/includes/admin-categories.php:65 #, php-format msgid "%1$s categories deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:50 +#: admin/includes/admin-categories.php:67 #, php-format msgid "%1$s categories not modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:51 +#: admin/includes/admin-categories.php:68 #, php-format msgid "%1$s categories not added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:52 +#: admin/includes/admin-categories.php:69 #, php-format msgid "%1$s categories not deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:55 +#: admin/includes/admin-categories.php:72 msgid "An Error occured during the category sync" msgstr "" -#: admin/includes/admin-categories.php:59 +#: admin/includes/admin-categories.php:75 msgid "Category sync finished" msgstr "" -#: admin/includes/admin-category-sync.php:45 +#: admin/includes/admin-category-sync.php:54 msgid "Error: You are not allowed to view this page!" msgstr "" -#: admin/includes/admin-category-sync.php:62 +#: admin/includes/admin-category-sync.php:70 msgid "Affected Categories when switching to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:63 +#: admin/includes/admin-category-sync.php:71 msgid "Switch option to seperate Event Categories" msgstr "" -#: admin/includes/admin-category-sync.php:64 +#: admin/includes/admin-category-sync.php:72 msgid "If you proceed, all post categories will be copied and all events will be re-assigned to this new categories." msgstr "" -#: admin/includes/admin-category-sync.php:65 +#: admin/includes/admin-category-sync.php:73 msgid "Afterwards the event categories are independent of the post categories." msgstr "" -#: admin/includes/admin-category-sync.php:68 +#: admin/includes/admin-category-sync.php:75 msgid "Affected Categories when switching to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:69 +#: admin/includes/admin-category-sync.php:76 msgid "Switch option to use Post Categories for events" msgstr "" -#: admin/includes/admin-category-sync.php:70 +#: admin/includes/admin-category-sync.php:77 msgid "Take a detailed look at the affected categories above before you proceed! All seperate event categories will be deleted, this cannot be undone!" msgstr "" -#: admin/includes/admin-category-sync.php:73 +#: admin/includes/admin-category-sync.php:79 msgid "Event Categories: Synchronise with Post Categories" msgstr "" -#: admin/includes/admin-category-sync.php:74 +#: admin/includes/admin-category-sync.php:80 msgid "Start synchronisation" msgstr "" -#: admin/includes/admin-category-sync.php:75 +#: admin/includes/admin-category-sync.php:81 msgid "If this option is enabled the above listed categories will be deleted and removed from the existing events!" msgstr "" -#: admin/includes/admin-category-sync.php:90 +#: admin/includes/admin-category-sync.php:96 msgid "Categories to modify" msgstr "" -#: admin/includes/admin-category-sync.php:91 +#: admin/includes/admin-category-sync.php:97 msgid "Categories to add" msgstr "" -#: admin/includes/admin-category-sync.php:92 +#: admin/includes/admin-category-sync.php:98 msgid "Categories to delete (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:93 +#: admin/includes/admin-category-sync.php:99 msgid "Delete not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:97 +#: admin/includes/admin-category-sync.php:102 msgid "Categories with differences" msgstr "" -#: admin/includes/admin-category-sync.php:98 +#: admin/includes/admin-category-sync.php:103 msgid "Categories to add (optional)" msgstr "" -#: admin/includes/admin-category-sync.php:99 +#: admin/includes/admin-category-sync.php:104 msgid "Add not available post categories" msgstr "" -#: admin/includes/admin-category-sync.php:117 +#: admin/includes/admin-category-sync.php:123 msgid "none" msgstr "" -#: admin/includes/admin-import.php:49 +#: admin/includes/admin-import.php:58 msgid "Import Events" msgstr "" -#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:79 admin/includes/admin-import.php:116 +#: admin/includes/admin-import.php:220 msgid "Step" msgstr "" -#: admin/includes/admin-import.php:69 +#: admin/includes/admin-import.php:79 msgid "Set import file and options" msgstr "" -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:82 #, php-format msgid "Proceed with Step %1$s" msgstr "" -#: admin/includes/admin-import.php:75 +#: admin/includes/admin-import.php:85 msgid "Example file" msgstr "" -#: admin/includes/admin-import.php:76 +#: admin/includes/admin-import.php:86 #, php-format msgid "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)" msgstr "" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "Note" msgstr "" -#: admin/includes/admin-import.php:77 +#: admin/includes/admin-import.php:87 msgid "Do not change the column header and separator line (first two lines), otherwise the import will fail!" msgstr "" -#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 +#: admin/includes/admin-import.php:95 admin/includes/admin-import.php:103 msgid "Sorry, there has been an error." msgstr "" -#: admin/includes/admin-import.php:85 +#: admin/includes/admin-import.php:96 msgid "The file does not exist, please try again." msgstr "" -#: admin/includes/admin-import.php:93 +#: admin/includes/admin-import.php:104 msgid "The uploaded file does not have the required csv extension." msgstr "" -#: admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:116 msgid "Events review and additonal category selection" msgstr "" -#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:122 admin/includes/admin-import.php:133 msgid "Error" msgstr "" -#: admin/includes/admin-import.php:111 +#: admin/includes/admin-import.php:122 msgid "This CSV file cannot be imported" msgstr "" -#: admin/includes/admin-import.php:122 +#: admin/includes/admin-import.php:133 msgid "None of the events in this CSV file can be imported" msgstr "" -#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:136 admin/includes/admin-import.php:179 msgid "Warning" msgstr "" -#: admin/includes/admin-import.php:126 +#: admin/includes/admin-import.php:138 #, php-format msgid "There is %1$s event which cannot be imported" msgid_plural "There are %1$s events which cannot be imported" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-import.php:134 +#: admin/includes/admin-import.php:150 #, php-format msgid "CSV line %1$s" msgstr "" -#: admin/includes/admin-import.php:144 +#: admin/includes/admin-import.php:160 msgid "You can still import all other events listed below." msgstr "" -#: admin/includes/admin-import.php:163 +#: admin/includes/admin-import.php:179 msgid "The following category slugs are not available and will be removed from the imported events" msgstr "" -#: admin/includes/admin-import.php:169 +#: admin/includes/admin-import.php:185 msgid "If you want to keep these categories, please create these Categories first and do the import afterwards." msgstr "" -#: admin/includes/admin-import.php:198 +#: admin/includes/admin-import.php:220 msgid "Import result" msgstr "" -#: admin/includes/admin-import.php:201 +#: admin/includes/admin-import.php:223 #, php-format msgid "Import of %1$s events successful!" msgstr "" -#: admin/includes/admin-import.php:202 +#: admin/includes/admin-import.php:224 msgid "Go back to All Events" msgstr "" -#: admin/includes/admin-import.php:206 +#: admin/includes/admin-import.php:227 msgid "Errors during Import" msgstr "" -#: admin/includes/admin-import.php:215 +#: admin/includes/admin-import.php:235 msgid "Event from CSV-line" msgstr "" -#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 -#: includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:247 admin/includes/admin-main.php:77 +#: includes/widget_helptexts.php:9 msgid "Title" msgstr "" -#: admin/includes/admin-import.php:227 +#: admin/includes/admin-import.php:248 msgid "Start Date" msgstr "" -#: admin/includes/admin-import.php:228 +#: admin/includes/admin-import.php:249 msgid "End Date" msgstr "" -#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 -#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 +#: admin/includes/admin-import.php:250 admin/includes/admin-new.php:105 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:69 msgid "Time" msgstr "" -#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62 -#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57 -#: includes/options_helptexts.php:58 +#: admin/includes/admin-import.php:251 admin/includes/admin-main.php:78 +#: admin/includes/admin-new.php:107 includes/options_helptexts.php:75 +#: includes/options_helptexts.php:76 msgid "Location" msgstr "" -#: admin/includes/admin-import.php:231 +#: admin/includes/admin-import.php:252 msgid "Content" msgstr "" -#: admin/includes/admin-import.php:232 +#: admin/includes/admin-import.php:253 msgid "Category slugs" msgstr "" -#: admin/includes/admin-import.php:274 +#: admin/includes/admin-import.php:297 msgid "Header line is missing or not correct!" msgstr "" -#: admin/includes/admin-import.php:275 +#: admin/includes/admin-import.php:298 #, php-format msgid "Have a look at the %1$sexample file%2$s to see the correct header line format." msgstr "" -#: admin/includes/admin-import.php:281 +#: admin/includes/admin-import.php:305 #, php-format msgid "Wrong number of items in line (%1$s items found, 6-7 required)" msgstr "" -#: admin/includes/admin-import.php:309 +#: admin/includes/admin-import.php:334 msgid "Empty event title found" msgstr "" -#: admin/includes/admin-import.php:315 +#: admin/includes/admin-import.php:340 msgid "Wrong date format for startdate" msgstr "" -#: admin/includes/admin-import.php:324 +#: admin/includes/admin-import.php:348 msgid "Wrong date format for enddate" msgstr "" -#: admin/includes/admin-import.php:365 +#: admin/includes/admin-import.php:401 msgid "Import events" msgstr "" -#: admin/includes/admin-import.php:366 +#: admin/includes/admin-import.php:402 msgid "Add additional categories" msgstr "" -#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +#: admin/includes/admin-import.php:410 admin/includes/admin-main.php:257 msgid "Import" msgstr "" -#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +#: admin/includes/admin-import.php:428 includes/events_post_type.php:78 msgid "No events found" msgstr "" -#: admin/includes/admin-import.php:432 +#: admin/includes/admin-import.php:473 msgid "Saving of event failed!" msgstr "" -#: admin/includes/admin-main.php:60 +#: admin/includes/admin-main.php:76 msgid "Event Date" msgstr "" -#: admin/includes/admin-main.php:64 +#: admin/includes/admin-main.php:80 msgid "Author" msgstr "" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 #, php-format msgid "Add a copy of %1$s" msgstr "" -#: admin/includes/admin-main.php:126 +#: admin/includes/admin-main.php:148 msgid "Copy" msgstr "" -#: admin/includes/admin-new.php:51 +#: admin/includes/admin-new.php:58 msgid "Event data" msgstr "" -#: admin/includes/admin-new.php:80 +#: admin/includes/admin-new.php:90 msgid "Add Copy" msgstr "" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "Date" msgstr "" -#: admin/includes/admin-new.php:84 +#: admin/includes/admin-new.php:98 msgid "required" msgstr "" -#: admin/includes/admin-new.php:87 +#: admin/includes/admin-new.php:101 msgid "Multi-Day Event" msgstr "" -#: admin/includes/admin-new.php:106 +#: admin/includes/admin-new.php:121 msgid "Event Title" msgstr "" -#: admin/includes/admin-new.php:121 +#: admin/includes/admin-new.php:137 msgid "Event Content" msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:203 msgid "Event updated." msgstr "" -#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:200 admin/includes/admin-new.php:205 msgid "View event" msgstr "" -#: admin/includes/admin-new.php:184 +#: admin/includes/admin-new.php:204 #, php-format msgid "Event restored to revision from %1$s" msgstr "" -#: admin/includes/admin-new.php:185 +#: admin/includes/admin-new.php:205 msgid "Event published." msgstr "" -#: admin/includes/admin-new.php:187 +#: admin/includes/admin-new.php:207 msgid "Event submitted." msgstr "" -#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:207 admin/includes/admin-new.php:209 +#: admin/includes/admin-new.php:210 msgid "Preview event" msgstr "" -#: admin/includes/admin-new.php:188 +#: admin/includes/admin-new.php:208 #, php-format msgid "Event scheduled for: %1$s>" msgstr "" -#: admin/includes/admin-new.php:190 +#: admin/includes/admin-new.php:210 msgid "Event draft updated." msgstr "" -#: admin/includes/admin-settings.php:71 +#: admin/includes/admin-settings.php:79 msgid "Go to Event Category switching page" msgstr "" -#: admin/includes/admin-settings.php:83 +#: admin/includes/admin-settings.php:93 msgid "Frontend Settings" msgstr "" -#: admin/includes/admin-settings.php:84 +#: admin/includes/admin-settings.php:94 msgid "Admin Page Settings" msgstr "" -#: admin/includes/admin-settings.php:85 +#: admin/includes/admin-settings.php:95 msgid "Feed Settings" msgstr "" -#: admin/includes/admin-settings.php:86 +#: admin/includes/admin-settings.php:96 msgid "Category Taxonomy" msgstr "" -#: includes/daterange_helptexts.php:7 +#: includes/daterange_helptexts.php:8 msgid "Year" msgstr "" -#: includes/daterange_helptexts.php:8 +#: includes/daterange_helptexts.php:9 msgid "A year can be specified in 4 digit format." msgstr "" -#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14 -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:10 includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:47 #, php-format msgid "For a start date filter the first day of %1$s is used, in an end date the last day." msgstr "" -#: includes/daterange_helptexts.php:9 +#: includes/daterange_helptexts.php:10 msgid "the resulting year" msgstr "" -#: includes/daterange_helptexts.php:12 +#: includes/daterange_helptexts.php:15 msgid "Month" msgstr "" -#: includes/daterange_helptexts.php:13 +#: includes/daterange_helptexts.php:16 msgid "A month can be specified with 4 digits for the year and 2 digits for the month, seperated by a hyphen (-)." msgstr "" -#: includes/daterange_helptexts.php:14 +#: includes/daterange_helptexts.php:17 msgid "the resulting month" msgstr "" -#: includes/daterange_helptexts.php:17 +#: includes/daterange_helptexts.php:22 msgid "Day" msgstr "" -#: includes/daterange_helptexts.php:18 +#: includes/daterange_helptexts.php:23 msgid "A day can be specified in the format 4 digits for the year, 2 digits for the month and 2 digets for the day, seperated by hyphens (-)." msgstr "" -#: includes/daterange_helptexts.php:21 +#: includes/daterange_helptexts.php:28 msgid "Relative Year" msgstr "" -#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28 -#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:29 includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:45 includes/daterange_helptexts.php:55 #, php-format msgid "%1$s from now can be specified in the following notation: %2$s" msgstr "" -#: includes/daterange_helptexts.php:22 +#: includes/daterange_helptexts.php:29 msgid "A relative year" msgstr "" -#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29 -#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:30 includes/daterange_helptexts.php:38 +#: includes/daterange_helptexts.php:46 includes/daterange_helptexts.php:56 #, php-format msgid "This means you can specify a positive or negative (%1$s) %2$s from now with %3$s or %4$s attached (see also the example below)." msgstr "" -#: includes/daterange_helptexts.php:23 +#: includes/daterange_helptexts.php:30 msgid "number of years" msgstr "" -#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30 -#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44 +#: includes/daterange_helptexts.php:31 includes/daterange_helptexts.php:39 +#: includes/daterange_helptexts.php:49 includes/daterange_helptexts.php:57 #, php-format msgid "Additionally the following values are available: %1$s" msgstr "" -#: includes/daterange_helptexts.php:27 +#: includes/daterange_helptexts.php:36 msgid "Relative Month" msgstr "" -#: includes/daterange_helptexts.php:28 +#: includes/daterange_helptexts.php:37 msgid "A relative month" msgstr "" -#: includes/daterange_helptexts.php:29 +#: includes/daterange_helptexts.php:38 msgid "number of months" msgstr "" -#: includes/daterange_helptexts.php:33 +#: includes/daterange_helptexts.php:44 msgid "Relative Week" msgstr "" -#: includes/daterange_helptexts.php:34 +#: includes/daterange_helptexts.php:45 msgid "A relative week" msgstr "" -#: includes/daterange_helptexts.php:35 +#: includes/daterange_helptexts.php:46 msgid "number of weeks" msgstr "" -#: includes/daterange_helptexts.php:36 +#: includes/daterange_helptexts.php:47 msgid "the resulting week" msgstr "" -#: includes/daterange_helptexts.php:37 +#: includes/daterange_helptexts.php:48 #, php-format msgid "The first day of the week is depending on the option %1$s which can be found and changed in %2$s." msgstr "" -#: includes/daterange_helptexts.php:41 +#: includes/daterange_helptexts.php:54 msgid "Relative Day" msgstr "" -#: includes/daterange_helptexts.php:42 +#: includes/daterange_helptexts.php:55 msgid "A relative day" msgstr "" -#: includes/daterange_helptexts.php:43 +#: includes/daterange_helptexts.php:56 msgid "number of days" msgstr "" -#: includes/daterange_helptexts.php:49 +#: includes/daterange_helptexts.php:64 msgid "Date range" msgstr "" -#: includes/daterange_helptexts.php:50 +#: includes/daterange_helptexts.php:66 msgid "" "A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n" "\t For the start and end date any available date format can be used." msgstr "" -#: includes/daterange_helptexts.php:55 +#: includes/daterange_helptexts.php:75 msgid "This value defines a range without any limits." msgstr "" -#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61 -#: includes/daterange_helptexts.php:66 +#: includes/daterange_helptexts.php:76 includes/daterange_helptexts.php:83 +#: includes/daterange_helptexts.php:90 #, php-format msgid "The corresponding date_range format is: %1$s" msgstr "" -#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 +#: includes/daterange_helptexts.php:81 includes/filterbar.php:310 msgid "Upcoming" msgstr "" -#: includes/daterange_helptexts.php:60 +#: includes/daterange_helptexts.php:82 msgid "This value defines a range from the actual day to the future." msgstr "" -#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 +#: includes/daterange_helptexts.php:88 includes/filterbar.php:318 msgid "Past" msgstr "" -#: includes/daterange_helptexts.php:65 +#: includes/daterange_helptexts.php:89 msgid "This value defines a range from the past to the previous day." msgstr "" -#: includes/event.php:107 +#: includes/event.php:124 msgid "No valid start date provided" msgstr "" -#: includes/events_post_type.php:60 +#: includes/event.php:299 includes/event.php:301 includes/sc_event-list.php:298 +msgid "read more" +msgstr "" + +#: includes/events_post_type.php:69 msgid "Events" msgstr "" -#: includes/events_post_type.php:61 +#: includes/events_post_type.php:70 msgid "Event" msgstr "" -#: includes/events_post_type.php:62 +#: includes/events_post_type.php:71 msgid "Add New" msgstr "" -#: includes/events_post_type.php:63 +#: includes/events_post_type.php:72 msgid "Add New Event" msgstr "" -#: includes/events_post_type.php:64 +#: includes/events_post_type.php:73 msgid "Edit Event" msgstr "" -#: includes/events_post_type.php:65 +#: includes/events_post_type.php:74 msgid "New Event" msgstr "" -#: includes/events_post_type.php:66 +#: includes/events_post_type.php:75 msgid "View Event" msgstr "" -#: includes/events_post_type.php:67 +#: includes/events_post_type.php:76 msgid "View Events" msgstr "" -#: includes/events_post_type.php:68 +#: includes/events_post_type.php:77 msgid "Search Events" msgstr "" -#: includes/events_post_type.php:70 +#: includes/events_post_type.php:79 msgid "No events found in Trash" msgstr "" -#: includes/events_post_type.php:72 +#: includes/events_post_type.php:81 msgid "All Events" msgstr "" -#: includes/events_post_type.php:73 +#: includes/events_post_type.php:82 msgid "Event Archives" msgstr "" -#: includes/events_post_type.php:74 +#: includes/events_post_type.php:83 msgid "Event Attributes" msgstr "" -#: includes/events_post_type.php:75 +#: includes/events_post_type.php:84 msgid "Insert into event" msgstr "" -#: includes/events_post_type.php:76 +#: includes/events_post_type.php:85 msgid "Uploaded to this event" msgstr "" -#: includes/events_post_type.php:77 +#: includes/events_post_type.php:86 msgid "Event List" msgstr "" -#: includes/events_post_type.php:78 +#: includes/events_post_type.php:87 msgid "Filter events list" msgstr "" -#: includes/events_post_type.php:79 +#: includes/events_post_type.php:88 msgid "Events list navigation" msgstr "" -#: includes/events_post_type.php:80 +#: includes/events_post_type.php:89 msgid "Events list" msgstr "" -#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +#: includes/filterbar.php:244 includes/sc_event-list_helptexts.php:90 msgid "Reset" msgstr "" -#: includes/filterbar.php:278 +#: includes/filterbar.php:296 msgid "All" msgstr "" -#: includes/filterbar.php:281 +#: includes/filterbar.php:298 msgid "All Dates" msgstr "" -#: includes/options_helptexts.php:10 +#: includes/options_helptexts.php:11 msgid "CSV File to import" msgstr "" -#: includes/options_helptexts.php:12 +#: includes/options_helptexts.php:13 msgid "Please select the file which contains the event data in CSV format." msgstr "" -#: includes/options_helptexts.php:15 +#: includes/options_helptexts.php:18 msgid "Used date format" msgstr "" -#: includes/options_helptexts.php:17 +#: includes/options_helptexts.php:21 msgid "With this option the given date format for event start and end date in the CSV file can be specified." msgstr "" -#: includes/options_helptexts.php:18 +#: includes/options_helptexts.php:23 #, php-format msgid "You can use the php date format options given in %1$s, the most important ones are:" msgstr "" -#: includes/options_helptexts.php:20 +#: includes/options_helptexts.php:26 msgid "full year representation, with 4 digits" msgstr "" -#: includes/options_helptexts.php:21 +#: includes/options_helptexts.php:27 msgid "numeric representation of a month, with leading zeros" msgstr "" -#: includes/options_helptexts.php:22 +#: includes/options_helptexts.php:28 msgid "day of the month, 2 digits with leading zeros" msgstr "" -#: includes/options_helptexts.php:24 +#: includes/options_helptexts.php:30 msgid "If the date format in the CSV file does not correspond to the given format, the import script tries to recognize the date format by itself." msgstr "" -#: includes/options_helptexts.php:25 +#: includes/options_helptexts.php:31 msgid "But this can cause problems or result in wrong dates, so it is recommended to specify the correct date format here." msgstr "" -#: includes/options_helptexts.php:26 +#: includes/options_helptexts.php:32 msgid "Examples" msgstr "" -#: includes/options_helptexts.php:33 +#: includes/options_helptexts.php:41 msgid "Text for no events" msgstr "" -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:43 msgid "This option defines the displayed text when no events are available for the selected view." msgstr "" -#: includes/options_helptexts.php:38 +#: includes/options_helptexts.php:48 msgid "Multiday filter range" msgstr "" -#: includes/options_helptexts.php:39 +#: includes/options_helptexts.php:49 msgid "Use the complete event range in the date filter" msgstr "" -#: includes/options_helptexts.php:40 +#: includes/options_helptexts.php:51 msgid "This option defines if the complete range of a multiday event shall be considered in the date filter." msgstr "" -#: includes/options_helptexts.php:41 +#: includes/options_helptexts.php:52 msgid "If disabled, only the start day of an event is considered in the filter." msgstr "" -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:53 msgid "For an example multiday event which started yesterday and ends tomorrow this means, that it is displayed in umcoming dates when this option is enabled, but it is hidden when the option is disabled." msgstr "" -#: includes/options_helptexts.php:45 +#: includes/options_helptexts.php:58 msgid "Date display" msgstr "" -#: includes/options_helptexts.php:46 +#: includes/options_helptexts.php:59 msgid "Show the date only once per day" msgstr "" -#: includes/options_helptexts.php:47 +#: includes/options_helptexts.php:61 msgid "With this option enabled the date is only displayed once per day if more than one event is available on the same day." msgstr "" -#: includes/options_helptexts.php:48 +#: includes/options_helptexts.php:62 msgid "If enabled, the events are ordered in a different way (end date before start time) to allow using the same date for as much events as possible." msgstr "" -#: includes/options_helptexts.php:51 +#: includes/options_helptexts.php:67 msgid "HTML tags" msgstr "" -#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 +#: includes/options_helptexts.php:68 includes/options_helptexts.php:75 #, php-format msgid "Allow HTML tags in the event field \"%1$s\"" msgstr "" -#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 +#: includes/options_helptexts.php:69 includes/options_helptexts.php:76 #, php-format msgid "This option specifies if HTML tags are allowed in the event field \"%1$s\"." msgstr "" -#: includes/options_helptexts.php:61 +#: includes/options_helptexts.php:81 msgid "Preferred language file" msgstr "" -#: includes/options_helptexts.php:62 +#: includes/options_helptexts.php:82 msgid "Load translations from general language directory first" msgstr "" -#: includes/options_helptexts.php:63 +#: includes/options_helptexts.php:84 #, php-format msgid "The default is to load the %1$s translation file from the plugin language directory first (%2$s)." msgstr "" -#: includes/options_helptexts.php:64 +#: includes/options_helptexts.php:85 #, php-format msgid "If you want to load your own language file from the general language directory %1$s for a language which is already included in the plugin language directory, you have to enable this option." msgstr "" -#: includes/options_helptexts.php:68 +#: includes/options_helptexts.php:91 msgid "Events permalink slug" msgstr "" -#: includes/options_helptexts.php:69 +#: includes/options_helptexts.php:92 msgid "With this option the slug for the events permalink URLs can be defined." msgstr "" -#: includes/options_helptexts.php:72 +#: includes/options_helptexts.php:97 msgid "Text for \"Show content\"" msgstr "" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:98 msgid "With this option the displayed text for the link to show the event content can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:76 +#: includes/options_helptexts.php:103 msgid "Text for \"Hide content\"" msgstr "" -#: includes/options_helptexts.php:77 +#: includes/options_helptexts.php:104 msgid "With this option the displayed text for the link to hide the event content can be changed, when collapsing is enabled." msgstr "" -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:109 msgid "Disable CSS file" msgstr "" -#: includes/options_helptexts.php:81 +#: includes/options_helptexts.php:110 #, php-format msgid "Disable the %1$s file." msgstr "" -#: includes/options_helptexts.php:82 +#: includes/options_helptexts.php:112 #, php-format msgid "With this option you can disable the inclusion of the %1$s file." msgstr "" -#: includes/options_helptexts.php:83 +#: includes/options_helptexts.php:113 msgid "This normally only make sense if you have css conflicts with your theme and want to set all required css styles somewhere else (e.g. in the theme css)." msgstr "" -#: includes/options_helptexts.php:87 +#: includes/options_helptexts.php:119 msgid "Date format in edit form" msgstr "" -#: includes/options_helptexts.php:88 +#: includes/options_helptexts.php:121 msgid "This option sets the displayed date format for the event date fields in the event new / edit form." msgstr "" -#: includes/options_helptexts.php:89 +#: includes/options_helptexts.php:122 msgid "The default is an empty string to use the Wordpress standard setting." msgstr "" -#: includes/options_helptexts.php:90 +#: includes/options_helptexts.php:123 #, php-format msgid "All available options to specify the date format can be found %1$shere%2$s." msgstr "" -#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 +#: includes/options_helptexts.php:129 msgid "Enable RSS feed" msgstr "" -#: includes/options_helptexts.php:95 -msgid "Enable support for an event RSS feed" +#: includes/options_helptexts.php:130 +msgid "Enable support for the event RSS feed" msgstr "" -#: includes/options_helptexts.php:96 -msgid "This option activates a RSS feed for the events." +#: includes/options_helptexts.php:132 +msgid "This option activates the RSS feed for the events and adds a feed link in the html head." msgstr "" -#: includes/options_helptexts.php:97 +#: includes/options_helptexts.php:133 msgid "You have to enable this option if you want to use one of the RSS feed features." msgstr "" -#: includes/options_helptexts.php:100 -msgid "Feed name" +#: includes/options_helptexts.php:138 +msgid "Enable iCal feed" msgstr "" -#: includes/options_helptexts.php:101 -#, php-format -msgid "This option sets the feed name. The default value is %1$s." +#: includes/options_helptexts.php:139 +msgid "Enable support for the event iCal feed" msgstr "" -#: includes/options_helptexts.php:102 -#, php-format -msgid "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks enabled)." +#: includes/options_helptexts.php:141 +msgid "This option activates the iCal feed for events." msgstr "" -#: includes/options_helptexts.php:105 -msgid "Feed Description" +#: includes/options_helptexts.php:142 +msgid "You have to enable this option if you want to use one of the iCal features." msgstr "" -#: includes/options_helptexts.php:106 -#, php-format -msgid "This options set the feed description. The default value is %1$s." +#: includes/options_helptexts.php:147 +msgid "Position of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:107 -msgid "This description will be used in the title for the feed link in the html head and for the description in the feed itself." +#: includes/options_helptexts.php:149 +msgid "at the top (above the navigation bar)" msgstr "" -#: includes/options_helptexts.php:110 -msgid "Listed events" +#: includes/options_helptexts.php:150 +msgid "between navigation bar and events" msgstr "" -#: includes/options_helptexts.php:111 -msgid "Only show upcoming events in feed" +#: includes/options_helptexts.php:151 +msgid "at the bottom" msgstr "" -#: includes/options_helptexts.php:112 -msgid "If this option is enabled only the upcoming events are listed in the feed." +#: includes/options_helptexts.php:153 +msgid "This option specifies the position of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:113 -msgid "If disabled all events (upcoming and past) will be listed." +#: includes/options_helptexts.php:158 +msgid "Align of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:116 -msgid "Add RSS feed link in head" +#: includes/options_helptexts.php:160 +msgid "left" msgstr "" -#: includes/options_helptexts.php:117 -msgid "Add RSS feed link in the html head" +#: includes/options_helptexts.php:161 +msgid "center" msgstr "" -#: includes/options_helptexts.php:118 -msgid "This option adds a RSS feed in the html head for the events." +#: includes/options_helptexts.php:162 +msgid "right" msgstr "" -#: includes/options_helptexts.php:119 -msgid "There are 2 alternatives to include the RSS feed" +#: includes/options_helptexts.php:164 +msgid "This option specifies the align of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:120 -msgid "The first way is this option to include a link in the html head. This link will be recognized by browers or feed readers." +#: includes/options_helptexts.php:169 +msgid "RSS feed name" msgstr "" -#: includes/options_helptexts.php:121 +#: includes/options_helptexts.php:171 #, php-format -msgid "The second way is to include a visible feed link directly in the event list. This can be done by setting the shortcode attribute %1$s to %2$s." +msgid "This option sets the RSS feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:122 +#: includes/options_helptexts.php:172 #, php-format -msgid "This option is only valid if the setting %1$s is enabled." +msgid "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks enabled)." msgstr "" -#: includes/options_helptexts.php:125 -msgid "Position of the RSS feed link" +#: includes/options_helptexts.php:177 +msgid "RSS feed Description" msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the top (above the navigation bar)" +#: includes/options_helptexts.php:179 +#, php-format +msgid "This options set the RSS feed description. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:126 -msgid "between navigation bar and events" +#: includes/options_helptexts.php:180 +msgid "This description will be used in the title for the feed link in the html head and for the description in the feed itself." msgstr "" -#: includes/options_helptexts.php:126 -msgid "at the bottom" +#: includes/options_helptexts.php:185 +msgid "RSS feed events" msgstr "" -#: includes/options_helptexts.php:127 -msgid "This option specifies the position of the RSS feed link in the event list." +#: includes/options_helptexts.php:186 +msgid "Only show upcoming events in the RSS feed" msgstr "" -#: includes/options_helptexts.php:128 includes/options_helptexts.php:134 -#: includes/options_helptexts.php:140 includes/options_helptexts.php:146 -#, php-format -msgid "You have to set the shortcode attribute %1$s to %2$s if you want to show the feed link." +#: includes/options_helptexts.php:188 +msgid "If this option is enabled only the upcoming events are listed in the RSS feed." msgstr "" -#: includes/options_helptexts.php:131 -msgid "Align of the RSS feed link" +#: includes/options_helptexts.php:189 includes/options_helptexts.php:215 +msgid "If disabled, all events (upcoming and past) will be listed." msgstr "" -#: includes/options_helptexts.php:132 -msgid "left" +#: includes/options_helptexts.php:194 +msgid "RSS link text" msgstr "" -#: includes/options_helptexts.php:132 -msgid "center" +#: includes/options_helptexts.php:196 +msgid "This option sets the caption of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:132 -msgid "right" +#: includes/options_helptexts.php:197 +msgid "Use an empty text to only show the rss image." msgstr "" -#: includes/options_helptexts.php:133 -msgid "This option specifies the align of the RSS feed link in the event list." +#: includes/options_helptexts.php:198 +#, php-format +msgid "You have to set the shortcode attribute %1$s to %2$s if you want to show the RSS feed link." msgstr "" -#: includes/options_helptexts.php:137 -msgid "Feed link text" +#: includes/options_helptexts.php:203 +msgid "iCal feed name" msgstr "" -#: includes/options_helptexts.php:138 -msgid "This option specifies the caption of the RSS feed link in the event list." +#: includes/options_helptexts.php:205 +#, php-format +msgid "This option sets the iCal feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:139 -msgid "Insert an empty text to hide any text if you only want to show the rss image." +#: includes/options_helptexts.php:206 +#, php-format +msgid "This name will be used in the iCal feed url (e.g. %1$s, or %2$s with permalinks enabled)." msgstr "" -#: includes/options_helptexts.php:143 -msgid "Feed link image" +#: includes/options_helptexts.php:211 +msgid "iCal feed events" msgstr "" -#: includes/options_helptexts.php:144 -msgid "Show rss image in feed link" +#: includes/options_helptexts.php:212 +msgid "Only show upcoming events in the iCal feed" msgstr "" -#: includes/options_helptexts.php:145 -msgid "This option specifies if the an image should be dispayed in the feed link in front of the text." +#: includes/options_helptexts.php:214 +msgid "If this option is enabled only the upcoming events are listed in the iCal file." msgstr "" -#: includes/options_helptexts.php:151 +#: includes/options_helptexts.php:220 +msgid "iCal link text" +msgstr "" + +#: includes/options_helptexts.php:222 +msgid "This option sets the iCal link text in the event list." +msgstr "" + +#: includes/options_helptexts.php:223 +msgid "Use an empty text to only show the iCal image." +msgstr "" + +#: includes/options_helptexts.php:224 +#, php-format +msgid "You have to set the shortcode attribute %1$s to %2$s if you want to show the iCal feed link." +msgstr "" + +#: includes/options_helptexts.php:231 msgid "Event Category handling" msgstr "" -#: includes/options_helptexts.php:152 +#: includes/options_helptexts.php:232 msgid "Use Post Categories" msgstr "" -#: includes/options_helptexts.php:153 +#: includes/options_helptexts.php:234 msgid "Do not maintain seperate categories for the events, and use the existing post categories instead." msgstr "" -#: includes/options_helptexts.php:154 +#: includes/options_helptexts.php:235 msgid "Attention" msgstr "" -#: includes/options_helptexts.php:155 +#: includes/options_helptexts.php:236 msgid "This option cannot be changed directly, but you can go to the Event Category switching page from here." msgstr "" -#: includes/options.php:40 +#: includes/options.php:73 msgid "events" msgstr "" -#: includes/options.php:41 +#: includes/options.php:77 msgid "Show content" msgstr "" -#: includes/options.php:42 +#: includes/options.php:81 msgid "Hide content" msgstr "" -#: includes/sc_event-list_helptexts.php:7 +#: includes/sc_event-list_helptexts.php:8 msgid "event-id" msgstr "" -#: includes/sc_event-list_helptexts.php:8 +#: includes/sc_event-list_helptexts.php:9 #, php-format msgid "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." msgstr "" -#: includes/sc_event-list_helptexts.php:10 -#: includes/sc_event-list_helptexts.php:22 +#: includes/sc_event-list_helptexts.php:13 +#: includes/sc_event-list_helptexts.php:31 msgid "year" msgstr "" -#: includes/sc_event-list_helptexts.php:11 +#: includes/sc_event-list_helptexts.php:14 msgid "This attribute defines which events are initially shown. The default is to show the upcoming events only." msgstr "" -#: includes/sc_event-list_helptexts.php:12 +#: includes/sc_event-list_helptexts.php:15 #, php-format msgid "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." msgstr "" -#: includes/sc_event-list_helptexts.php:14 +#: includes/sc_event-list_helptexts.php:19 msgid "category slug" msgstr "" -#: includes/sc_event-list_helptexts.php:15 +#: includes/sc_event-list_helptexts.php:20 msgid "This attribute defines the category of which events are initially shown. The default is to show events of all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:16 +#: includes/sc_event-list_helptexts.php:21 msgid "Provide a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters." msgstr "" -#: includes/sc_event-list_helptexts.php:19 +#: includes/sc_event-list_helptexts.php:26 msgid "This attribute defines the initial order of the events." msgstr "" -#: includes/sc_event-list_helptexts.php:20 +#: includes/sc_event-list_helptexts.php:27 msgid "With %1$S (default value) the events are sorted from old to new, with %2$s in the opposite direction (from new to old)." msgstr "" -#: includes/sc_event-list_helptexts.php:23 +#: includes/sc_event-list_helptexts.php:32 #, php-format msgid "This attribute defines the dates and date ranges of which events are displayed. The default is %1$s to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:24 +#: includes/sc_event-list_helptexts.php:33 #, php-format msgid "Filtered events according to %1$s value are not available in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:25 +#: includes/sc_event-list_helptexts.php:34 #, php-format msgid "You can find all available values with a description and examples in the sections %1$s and %2$s below." msgstr "" -#: includes/sc_event-list_helptexts.php:26 +#: includes/sc_event-list_helptexts.php:35 #, php-format msgid "See %1$s description if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:28 +#: includes/sc_event-list_helptexts.php:39 msgid "category slugs" msgstr "" -#: includes/sc_event-list_helptexts.php:29 +#: includes/sc_event-list_helptexts.php:40 msgid "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." msgstr "" -#: includes/sc_event-list_helptexts.php:30 +#: includes/sc_event-list_helptexts.php:41 #, php-format msgid "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." msgstr "" -#: includes/sc_event-list_helptexts.php:31 +#: includes/sc_event-list_helptexts.php:42 #, php-format msgid "The filter is specified via the given category slugs. See %1$s description if you want to define complex filters." msgstr "" -#: includes/sc_event-list_helptexts.php:33 -#: includes/sc_event-list_helptexts.php:74 -#: includes/sc_event-list_helptexts.php:89 -#: includes/sc_event-list_helptexts.php:104 +#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:111 +#: includes/sc_event-list_helptexts.php:138 +#: includes/sc_event-list_helptexts.php:177 msgid "number" msgstr "" -#: includes/sc_event-list_helptexts.php:34 +#: includes/sc_event-list_helptexts.php:47 #, php-format msgid "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." msgstr "" -#: includes/sc_event-list_helptexts.php:35 +#: includes/sc_event-list_helptexts.php:48 msgid "Please not that in the actual version there is no pagination of the events available, so the event list can be very long." msgstr "" -#: includes/sc_event-list_helptexts.php:38 +#: includes/sc_event-list_helptexts.php:53 msgid "This attribute defines if the filterbar should be displayed. The filterbar allows the users to specify filters for the listed events." msgstr "" -#: includes/sc_event-list_helptexts.php:39 +#: includes/sc_event-list_helptexts.php:54 #, php-format msgid "Choose %1$s to always hide and %2$s to always show the filterbar." msgstr "" -#: includes/sc_event-list_helptexts.php:40 +#: includes/sc_event-list_helptexts.php:55 #, php-format msgid "With %1$s the filterbar is only visible in the event list and with %2$s only in the single event view." msgstr "" -#: includes/sc_event-list_helptexts.php:43 +#: includes/sc_event-list_helptexts.php:60 #, php-format msgid "This attribute specifies the available items in the filterbar. This options are only valid if the filterbar is displayed (see %1$s attribute)." msgstr "" -#: includes/sc_event-list_helptexts.php:44 +#: includes/sc_event-list_helptexts.php:61 msgid "Find below an overview of the available filterbar items and their options:" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "filterbar item" msgstr "" -#: includes/sc_event-list_helptexts.php:46 -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:96 msgid "description" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "item options" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option values" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "default value" msgstr "" -#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:64 msgid "option description" msgstr "" -#: includes/sc_event-list_helptexts.php:47 +#: includes/sc_event-list_helptexts.php:67 msgid "Show a list of all available years. Additional there are some special entries available (see item options)." msgstr "" -#: includes/sc_event-list_helptexts.php:48 -#: includes/sc_event-list_helptexts.php:53 +#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:82 msgid "Add an entry to show all events." msgstr "" -#: includes/sc_event-list_helptexts.php:49 -#: includes/sc_event-list_helptexts.php:54 +#: includes/sc_event-list_helptexts.php:73 +#: includes/sc_event-list_helptexts.php:84 msgid "Add an entry to show all upcoming events." msgstr "" -#: includes/sc_event-list_helptexts.php:50 -#: includes/sc_event-list_helptexts.php:55 +#: includes/sc_event-list_helptexts.php:74 +#: includes/sc_event-list_helptexts.php:85 msgid "Add an entry to show events in the past." msgstr "" -#: includes/sc_event-list_helptexts.php:51 +#: includes/sc_event-list_helptexts.php:75 msgid "Set descending or ascending order of year entries." msgstr "" -#: includes/sc_event-list_helptexts.php:52 +#: includes/sc_event-list_helptexts.php:78 msgid "Show a list of all available months." msgstr "" -#: includes/sc_event-list_helptexts.php:56 +#: includes/sc_event-list_helptexts.php:86 msgid "Set descending or ascending order of month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "php date-formats" msgstr "" -#: includes/sc_event-list_helptexts.php:57 +#: includes/sc_event-list_helptexts.php:87 msgid "Set the displayed date format of the month entries." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "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." msgstr "" -#: includes/sc_event-list_helptexts.php:58 +#: includes/sc_event-list_helptexts.php:88 #, php-format msgid "Specifies the displayed values and their order. The items must be seperated by %1$s." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Show a list of all available categories." msgstr "" -#: includes/sc_event-list_helptexts.php:59 +#: includes/sc_event-list_helptexts.php:89 msgid "Add an entry to show events from all categories." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "A link to reset the eventlist filter to standard." msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "any text" msgstr "" -#: includes/sc_event-list_helptexts.php:60 +#: includes/sc_event-list_helptexts.php:90 msgid "Set the caption of the link." msgstr "" -#: includes/sc_event-list_helptexts.php:61 +#: includes/sc_event-list_helptexts.php:93 msgid "Find below an overview of the available filterbar display options:" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "display option" msgstr "" -#: includes/sc_event-list_helptexts.php:63 +#: includes/sc_event-list_helptexts.php:96 msgid "available for" msgstr "" -#: includes/sc_event-list_helptexts.php:64 +#: includes/sc_event-list_helptexts.php:97 #, php-format msgid "Shows a horizonal list seperated by %1$s with a link to each item." msgstr "" -#: includes/sc_event-list_helptexts.php:65 +#: includes/sc_event-list_helptexts.php:98 msgid "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." msgstr "" -#: includes/sc_event-list_helptexts.php:66 +#: includes/sc_event-list_helptexts.php:99 msgid "Shows a simple link which can be clicked." msgstr "" -#: includes/sc_event-list_helptexts.php:67 +#: includes/sc_event-list_helptexts.php:102 msgid "Find below some declaration examples with descriptions:" msgstr "" -#: includes/sc_event-list_helptexts.php:69 +#: includes/sc_event-list_helptexts.php:104 #, php-format msgid "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." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 #, php-format msgid "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." msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "option_name" msgstr "" -#: includes/sc_event-list_helptexts.php:71 +#: includes/sc_event-list_helptexts.php:106 msgid "value" msgstr "" -#: includes/sc_event-list_helptexts.php:72 +#: includes/sc_event-list_helptexts.php:107 #, php-format msgid "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." msgstr "" -#: includes/sc_event-list_helptexts.php:75 -#: includes/sc_event-list_helptexts.php:90 +#: includes/sc_event-list_helptexts.php:112 +#: includes/sc_event-list_helptexts.php:139 msgid "This attribute specifies if the title should be truncated to the given number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:76 -#: includes/sc_event-list_helptexts.php:91 +#: includes/sc_event-list_helptexts.php:113 +#: includes/sc_event-list_helptexts.php:140 #, php-format msgid "With the standard value %1$s the full text is displayed, with %2$s the text is automatically truncated via css." msgstr "" -#: includes/sc_event-list_helptexts.php:77 -#: includes/sc_event-list_helptexts.php:92 -#: includes/sc_event-list_helptexts.php:107 +#: includes/sc_event-list_helptexts.php:114 +#: includes/sc_event-list_helptexts.php:141 +#: includes/sc_event-list_helptexts.php:180 msgid "This attribute has no influence if only a single event is shown." msgstr "" -#: includes/sc_event-list_helptexts.php:80 +#: includes/sc_event-list_helptexts.php:120 msgid "" "This attribute specifies if the starttime is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n" "\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:85 +#: includes/sc_event-list_helptexts.php:130 msgid "" "This attribute specifies if the location is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n" "\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:95 +#: includes/sc_event-list_helptexts.php:147 msgid "" "This attribute specifies if the categories are displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n" "\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:100 +#: includes/sc_event-list_helptexts.php:157 msgid "" "This attribute specifies if the content is displayed in the event list.<br />\n" "\t Choose \"false\" to always hide and \"true\" to always show the content.<br />\n" "\t With \"event_list_only\" the content is only visible in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:105 +#: includes/sc_event-list_helptexts.php:167 +msgid "" +"This attribute specifies if the excerpt is displayed in the event list.<br />\n" +"\t Choose \"false\" to always hide and \"true\" to always show the excerpt.<br />\n" +"\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" +"\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" +"\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)." +msgstr "" + +#: includes/sc_event-list_helptexts.php:178 msgid "This attribute specifies if the content should be truncate to the given number of characters in the event list." msgstr "" -#: includes/sc_event-list_helptexts.php:106 +#: includes/sc_event-list_helptexts.php:179 #, php-format msgid "With the standard value %1$s the full text is displayed." msgstr "" -#: includes/sc_event-list_helptexts.php:110 +#: includes/sc_event-list_helptexts.php:186 msgid "" -"This attribute specifies if the content should be collapsed initially.<br />\n" +"This attribute specifies if the content or excerpt should be collapsed initially.<br />\n" "\t Then a link will be displayed instead of the content. By clicking this link the content are getting visible.<br />\n" "\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the content.<br />\n" "\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." msgstr "" -#: includes/sc_event-list_helptexts.php:116 +#: includes/sc_event-list_helptexts.php:197 msgid "" "This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n" "\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n" @@ -1621,7 +1650,7 @@ msgid "" "\t With \"events_with_content_only\" the link is only added in the event list for events with event content." msgstr "" -#: includes/sc_event-list_helptexts.php:122 +#: includes/sc_event-list_helptexts.php:208 msgid "" "This attribute specifies if a rss feed link should be added.<br />\n" "\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n" @@ -1630,146 +1659,174 @@ msgid "" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event" msgstr "" -#: includes/sc_event-list_helptexts.php:128 +#: includes/sc_event-list_helptexts.php:220 +msgid "" +"This attribute specifies if a ical feed link should be added.<br />\n" +"\t You have to enable the ical feed in the eventlist settings to make this attribute workable.<br />\n" +"\t On that page you can also find some settings to modify the output.<br />\n" +"\t Choose \"false\" to never add and \"true\" to always add the link.<br />" +msgstr "" + +#: includes/sc_event-list_helptexts.php:231 msgid "" "This attribute specifies the page or post url for event links.<br />\n" "\t The standard is an empty string. Then the url will be calculated automatically.<br />\n" "\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget." msgstr "" -#: includes/sc_event-list_helptexts.php:135 +#: includes/sc_event-list_helptexts.php:243 msgid "" "This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n" "\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget." msgstr "" -#: includes/sc_event-list.php:135 +#: includes/sc_event-list.php:154 +msgid "Sorry, the requested event is not available!" +msgstr "" + +#: includes/sc_event-list.php:163 msgid "Event Information:" msgstr "" -#: includes/widget_helptexts.php:10 +#: includes/sc_event-list.php:405 +msgid "Link to RSS feed" +msgstr "" + +#: includes/sc_event-list.php:414 +msgid "Link to iCal feed" +msgstr "" + +#: includes/widget_helptexts.php:11 msgid "This option defines the displayed title for the widget." msgstr "" -#: includes/widget_helptexts.php:15 +#: includes/widget_helptexts.php:18 msgid "Category Filter" msgstr "" -#: includes/widget_helptexts.php:17 +#: includes/widget_helptexts.php:20 msgid "This option defines the categories of which events are shown. The standard is all or an empty string to show all events. Specify a category slug or a list of category slugs to only show events of the specified categories. See description of the shortcode attribute cat_filter for detailed info about all possibilities." msgstr "" -#: includes/widget_helptexts.php:22 +#: includes/widget_helptexts.php:27 msgid "Number of listed events" msgstr "" -#: includes/widget_helptexts.php:24 +#: includes/widget_helptexts.php:29 msgid "The number of upcoming events to display" msgstr "" -#: includes/widget_helptexts.php:29 +#: includes/widget_helptexts.php:36 msgid "Truncate event title to" msgstr "" -#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52 -#: includes/widget_helptexts.php:67 +#: includes/widget_helptexts.php:37 includes/widget_helptexts.php:65 +#: includes/widget_helptexts.php:93 msgid "characters" msgstr "" -#: includes/widget_helptexts.php:31 +#: includes/widget_helptexts.php:38 msgid "This option defines the number of displayed characters for the event title." msgstr "" -#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54 +#: includes/widget_helptexts.php:39 includes/widget_helptexts.php:67 #, php-format msgid "Set this value to %1$s to view the full text, or set it to %2$s to automatically truncate the text via css." msgstr "" -#: includes/widget_helptexts.php:37 +#: includes/widget_helptexts.php:46 msgid "Show event starttime" msgstr "" -#: includes/widget_helptexts.php:39 +#: includes/widget_helptexts.php:48 msgid "This option defines if the event start time will be displayed." msgstr "" -#: includes/widget_helptexts.php:44 +#: includes/widget_helptexts.php:55 msgid "Show event location" msgstr "" -#: includes/widget_helptexts.php:46 +#: includes/widget_helptexts.php:57 msgid "This option defines if the event location will be displayed." msgstr "" -#: includes/widget_helptexts.php:51 +#: includes/widget_helptexts.php:64 msgid "Truncate location to" msgstr "" -#: includes/widget_helptexts.php:53 +#: includes/widget_helptexts.php:66 msgid "If the event location is diplayed this option defines the number of displayed characters." msgstr "" -#: includes/widget_helptexts.php:59 +#: includes/widget_helptexts.php:74 +msgid "Show event excerpt" +msgstr "" + +#: includes/widget_helptexts.php:76 +msgid "This option defines if the event excerpt will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:83 msgid "Show event content" msgstr "" -#: includes/widget_helptexts.php:61 +#: includes/widget_helptexts.php:85 msgid "This option defines if the event content will be displayed." msgstr "" -#: includes/widget_helptexts.php:66 +#: includes/widget_helptexts.php:92 msgid "Truncate content to" msgstr "" -#: includes/widget_helptexts.php:68 +#: includes/widget_helptexts.php:94 msgid "If the event content are diplayed this option defines the number of diplayed characters." msgstr "" -#: includes/widget_helptexts.php:69 +#: includes/widget_helptexts.php:95 #, php-format msgid "Set this value to %1$s to view the full text." msgstr "" -#: includes/widget_helptexts.php:74 +#: includes/widget_helptexts.php:102 msgid "URL to the linked Event List page" msgstr "" -#: includes/widget_helptexts.php:76 +#: includes/widget_helptexts.php:104 msgid "This option defines the url to the linked Event List page. This option is required if you want to use one of the options below." msgstr "" -#: includes/widget_helptexts.php:81 +#: includes/widget_helptexts.php:111 msgid "Shortcode ID on linked page" msgstr "" -#: includes/widget_helptexts.php:83 +#: includes/widget_helptexts.php:113 msgid "This option defines the shortcode-id for the Event List on the linked page. Normally the standard value 1 is correct, you only have to change it if you use multiple event-list shortcodes on the linked page." msgstr "" -#: includes/widget_helptexts.php:90 +#: includes/widget_helptexts.php:122 msgid "With this option you can add a link to the single event page for every displayed event. You have to specify the url to the page and the shortcode id option if you want to use it." msgstr "" -#: includes/widget_helptexts.php:97 +#: includes/widget_helptexts.php:131 msgid "With this option you can add a link to the event-list page below the diplayed events. You have to specify the url to page option if you want to use it." msgstr "" -#: includes/widget_helptexts.php:102 +#: includes/widget_helptexts.php:138 msgid "Caption for the link" msgstr "" -#: includes/widget_helptexts.php:104 +#: includes/widget_helptexts.php:140 msgid "This option defines the text for the link to the Event List page if the approriate option is selected." msgstr "" -#: includes/widget.php:20 +#: includes/widget.php:21 msgid "With this widget a list of upcoming events can be displayed." msgstr "" -#: includes/widget.php:25 +#: includes/widget.php:26 msgid "Upcoming events" msgstr "" -#: includes/widget.php:38 +#: includes/widget.php:40 msgid "show events page" msgstr "" diff --git a/wp-content/plugins/event-list/readme.txt b/wp-content/plugins/event-list/readme.txt index 07865c1fe5bc932172bd6410a04af3b945ff1671..e8385f4ab00a6bc525f4ea638a6c9f40208bf819 100644 --- a/wp-content/plugins/event-list/readme.txt +++ b/wp-content/plugins/event-list/readme.txt @@ -1,14 +1,14 @@ === Event List === -Contributors: mibuthu, clhunsen +Contributors: mibuthu, clhunsen, chunsen1, seeseekey Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=W54LNZMWF9KW2 Tags: event, events, list, listview, calendar, schedule, shortcode, page, category, categories, filter, admin, attribute, widget, sidebar, feed, rss -Requires at least: 4.2 -Tested up to: 4.9 +Requires at least: 4.9 +Tested up to: 5.7 Requires PHP: 5.2 -Stable tag: 0.8.3 -Plugin URI: http://wordpress.org/extend/plugins/event-list +Stable tag: 0.8.6 +Plugin URI: https://wordpress.org/plugins/event-list Licence: GPLv2 -License URI: http://www.gnu.org/licenses/gpl-2.0.html +License URI: https://www.gnu.org/licenses/gpl-2.0.html Manage your events and show them on your site. @@ -86,6 +86,28 @@ Another possibility would be to call the wordpress function "do_shortcode()". == Changelog == += 0.8.6 (2021-04-24) = +* fixed saving a new event when no excerpt is provided (also fixes CSV import of events) +* added missing translation function for the read more links +* removed deprecated css zoom function (which was only required for a fix for IE 6+7) +* fixed trash view in admin page +* fixed shortcode page display when an invalid event_id was provided (e.g. from a link to a deleted event) +* switched to WordPress coding standard +* some other internal fixes and improvements + += 0.8.5 (2020-11-16) = +* add iCal support (add a link in the event-list with the new shortcode attribute) +* changes in feed options +* updated feed link styling +* changed rss feed link attribute name from "add_feed_link" to "add_rss_link". Please update your shortcode! +* some internal changed in feed handling +* fixed logfile path for upgrade + += 0.8.4 (2020-10-30) = +* added support for excerpts in events +* added support for authors in events +* changed path for upgrade logfile + = 0.8.3 (2018-05-27) = * improved import handling and error messages when there is still an import error * improved help text for import date format