diff --git a/wp-content/plugins/event-list/admin/admin.php b/wp-content/plugins/event-list/admin/admin.php index a936edbcd30e66340e3a3f803622bd571adbf7bb..fbdeb6e5030d39da40ef3c1ddafc778a780cc634 100644 --- a/wp-content/plugins/event-list/admin/admin.php +++ b/wp-content/plugins/event-list/admin/admin.php @@ -1,14 +1,17 @@ <?php -if(!defined('WPINC')) { +if(!defined('WP_ADMIN')) { exit; } -require_once( EL_PATH.'includes/options.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 @@ -21,56 +24,99 @@ class EL_Admin { private function __construct() { $this->options = &EL_Options::get_instance(); + $this->events_post_type = &EL_Events_Post_Type::get_instance(); + // Register actions - add_action('admin_init', array(&$this, 'sync_post_categories'), 11); + 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_action('plugins_loaded', array(&$this, 'db_upgrade_check')); - add_filter('dashboard_glance_items', array($this, 'add_events_to_glance') -);;; - } - - public function sync_post_categories() { - // Register syncing actions if enabled. - // Has to be done after Options::register_options, so that $this->options->get returns the correct value. - if(1 == $this->options->get('el_sync_cats')) { - add_action('create_category', array(&$this, 'action_add_category')); - add_action('edit_category', array(&$this, 'action_edit_category')); - add_action('delete_category', array(&$this, 'action_delete_category')); + 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'])) { + // load upgrade class + require_once(EL_PATH.'admin/includes/upgrade.php'); + EL_Upgrade::get_instance()->upgrade(); } } - /** - * Add and register all admin pages in the admin menu - */ - public function register_pages() { - // Main Menu page - add_menu_page(__('Event List','event-list'), __('Event List','event-list'), 'edit_posts', 'el_admin_main', array(&$this, 'show_main_page'), 'dashicons-calendar-alt', '22.2'); + public function show_plugin_upgrade_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>'; + } + } - // All Events subpage - $page = add_submenu_page('el_admin_main', __('Events','event-list'), __('All Events','event-list'), 'edit_posts', 'el_admin_main', array(&$this, 'show_main_page')); - add_action('admin_print_scripts-'.$page, array(&$this, 'embed_main_scripts')); + 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; - // New Event subpage - $page = add_submenu_page('el_admin_main', __('Add New Event','event-list'), __('Add New','event-list'), 'edit_posts', 'el_admin_new', array(&$this, 'show_new_page')); - add_action('admin_print_scripts-'.$page, array(&$this, 'embed_new_scripts')); + array_push($args, 'el-upgr-finished', 'resume-el-upgr'); + return $args; + } - // Categories subpage - $page = add_submenu_page('el_admin_main', __('Event List Categories','event-list'), __('Categories','event-list'), 'manage_categories', 'el_admin_categories', array(&$this, 'show_categories_page')); - add_action('admin_print_scripts-'.$page, array(&$this, 'embed_categories_scripts')); + 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) { + // Main/all events page + case 'edit-el_events': + 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'); + 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'); + EL_Admin_Categories::get_instance(); + } + break; + } + } + } + /** + * Add and register all admin pages in the admin menu + */ + public function register_pages() { // Settings subpage - $page = add_submenu_page('el_admin_main', __('Event List Settings','event-list'), __('Settings','event-list'), 'manage_options', 'el_admin_settings', array(&$this, 'show_settings_page')); + $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('el_admin_main', __('About Event List','event-list'), __('About','event-list'), 'edit_posts', 'el_admin_about', array(&$this, 'show_about_page')); + $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')); - } - public function db_upgrade_check() { - require_once(EL_PATH.'includes/db.php'); - EL_Db::get_instance()->upgrade_check(); + // 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')); + + // 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')); } public function add_dashboard_styles() { @@ -81,42 +127,17 @@ class EL_Admin { public function add_events_to_glance() { if(current_user_can('edit_posts')) { - require_once(EL_PATH.'includes/db.php'); - $num = EL_Db::get_instance()->get_num_events(); - $url = admin_url('admin.php?page=el_admin_main'); - $text = sprintf(_n('%s Event','%s Events',$num,'event-list'), number_format_i18n($num)); - return array('<a class="el-events-count" href="'.$url.'">'.$text.'</a>'); - } - } - - public function show_main_page() { - require_once(EL_PATH.'admin/includes/admin-main.php'); - EL_Admin_Main::get_instance()->show_main(); - } - - public function embed_main_scripts() { - require_once(EL_PATH.'admin/includes/admin-main.php'); - EL_Admin_Main::get_instance()->embed_main_scripts(); - } - - public function show_new_page() { - require_once(EL_PATH.'admin/includes/admin-new.php'); - EL_Admin_New::get_instance()->show_new(); - } - - public function embed_new_scripts() { - require_once(EL_PATH.'admin/includes/admin-new.php'); - EL_Admin_New::get_instance()->embed_new_scripts(); - } - - public function show_categories_page() { - require_once(EL_PATH.'admin/includes/admin-categories.php'); - EL_Admin_Categories::get_instance()->show_categories(); - } + 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>'); + } + else { + return array($text); + } - public function embed_categories_scripts() { - require_once(EL_PATH.'admin/includes/admin-categories.php'); - EL_Admin_Categories::get_instance()->embed_categories_scripts(); + } } public function show_settings_page() { @@ -139,19 +160,24 @@ class EL_Admin { EL_Admin_About::get_instance()->embed_about_scripts(); } - public function action_add_category($cat_id) { - require_once(EL_PATH.'includes/categories.php'); - EL_Categories::get_instance()->add_post_category($cat_id); + public function show_import_page() { + 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'); + EL_Admin_Import::get_instance()->embed_import_scripts(); } - public function action_edit_category($cat_id) { - require_once(EL_PATH.'includes/categories.php'); - EL_Categories::get_instance()->edit_post_category($cat_id); + public function show_cat_sync_page() { + require_once(EL_PATH.'admin/includes/admin-category-sync.php'); + EL_Admin_Category_Sync::get_instance()->show_cat_sync(); } - public function action_delete_category($cat_id) { - require_once(EL_PATH.'includes/categories.php'); - EL_Categories::get_instance()->delete_post_category($cat_id); + public function handle_cat_sync_actions() { + 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/css/admin_import.css b/wp-content/plugins/event-list/admin/css/admin_import.css index 4d4ee677b8b09de3ebb3112a627d736367f09194..f546da6342ac90aa5e6fba9d1f3505b9973eebca 100644 --- a/wp-content/plugins/event-list/admin/css/admin_import.css +++ b/wp-content/plugins/event-list/admin/css/admin_import.css @@ -1,11 +1,19 @@ -.el-warning { +.el-warning, .el-success { background: #fff; - border-left: 4px solid #dc3232; margin: 5px 0 15px; padding: 1px 12px; + border-left: 4px solid; +} + +.el-warning { + border-left-color: #dc3232; } -ul.el-categories { +.el-success { + border-left-color: #46b450; +} + +ul.el-categories, ul.el-event-errors, td ul { list-style: circle inside; margin: 8px 0; } @@ -17,3 +25,7 @@ ul.el-categories { .el-event-data { font-style: italic; } + +.form-table td { + vertical-align: top; +} diff --git a/wp-content/plugins/event-list/admin/css/admin_main.css b/wp-content/plugins/event-list/admin/css/admin_main.css index ad744efad30d749e97337c0d00a719d6d4260b51..bfc3be11490c2e44811bab5dbd7968203c3090d1 100644 --- a/wp-content/plugins/event-list/admin/css/admin_main.css +++ b/wp-content/plugins/event-list/admin/css/admin_main.css @@ -1,22 +1,7 @@ -.wp-list-table .column-date { - width: 105px; -} -.wp-list-table .column-title { - width: 35%; -} -.wp-list-table .column-location { - width: 25% -} -.wp-list-table .column-details { - width: 40%; -} -.wp-list-table .column-pub_user { - width: 105px; -} -.wp-list-table .column-pub_date { - width: 115px; +.wp-list-table .column-eventdate { + width: 130px; } -span.time { +span.starttime { font-style: italic; -} \ No newline at end of file +} diff --git a/wp-content/plugins/event-list/admin/css/admin_new.css b/wp-content/plugins/event-list/admin/css/admin_new.css index b219f8cce76c0e0cbb14ccbf8372e5dfef1eec18..6bb344a39af90e5b80d0dac6471657b9dfe606f3 100644 --- a/wp-content/plugins/event-list/admin/css/admin_new.css +++ b/wp-content/plugins/event-list/admin/css/admin_new.css @@ -1,36 +1,53 @@ -#title, #location { - width: 400px; +label.event-option { + font-size: 14px; + font-weight: 600; + padding-left: 0.4em; + padding-top: 1.3em; + display: inline-block; } -span.date-wrapper, #start_date, #end_date, #time { - width: 130px; +.inside label.event-option { + padding-bottom: 0.3em; } -p.note { - margin: 2px; - font-style: italic; +#startdate, #enddate, #starttime, #location { + padding: 0.5em; + z-index: 1000; } -div#postbox-container-1 { - width: 260px !important; +span.date-wrapper, #startdate, #enddate, #starttime { + width: 150px; +} + +#location { + width: 400px; } span.date-wrapper { position: relative; - display: inline-table; + display: inline-block; } span.date-wrapper i.dashicons { display: inline-block; position: absolute; - padding-top: 3px; - padding-right: 4px; + padding-top: 0.3em; + padding-right: 0.1em; pointer-events: none; right: 0px; - z-index: 1; + z-index: 1001; } span.date-wrapper input { padding-right: 24px; position: relative; } + +.el-inline-checkbox { + padding-left: 1em; + padding-bottom: 0.1em; +} + +#postbox-container-0 #primary-sortables { + min-height: 10px; +} 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 448f8e151257bc4e5e85da7896e4296eff42fdc9..85f7ce8cf33b54118d9a6d4efc14d9b8c2d25b0a 100644 --- a/wp-content/plugins/event-list/admin/includes/admin-about.php +++ b/wp-content/plugins/event-list/admin/includes/admin-about.php @@ -1,5 +1,5 @@ <?php -if(!defined('WPINC')) { +if(!defined('WP_ADMIN')) { exit; } @@ -37,6 +37,7 @@ class EL_Admin_About { <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(); @@ -60,7 +61,7 @@ class EL_Admin_About { $out = '<h3 class="nav-tab-wrapper">'; foreach($tabs as $tab => $name){ $class = ($tab == $current) ? ' nav-tab-active' : ''; - $out .= '<a class="nav-tab'.$class.'" href="?page=el_admin_about&tab='.$tab.'">'.$name.'</a>'; + $out .= '<a class="nav-tab'.$class.'" href="'.add_query_arg('tab', $tab, add_query_arg(array())).'">'.$name.'</a>'; } $out .= '</h3>'; return $out; @@ -69,7 +70,7 @@ class EL_Admin_About { 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('admin.php?page=el_admin_main').'">', '</a>').'.</p> + <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> 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 54c7247f8a78db591c275340b0ffe629a3a9e860..d807cd75135f826ead481f151a623d2e4559e348 100644 --- a/wp-content/plugins/event-list/admin/includes/admin-categories.php +++ b/wp-content/plugins/event-list/admin/includes/admin-categories.php @@ -1,67 +1,31 @@ <?php -if(!defined('ABSPATH')) { +if(!defined('WP_ADMIN')) { exit; } -require_once(EL_PATH.'includes/db.php'); -require_once(EL_PATH.'includes/categories.php'); require_once(EL_PATH.'includes/options.php'); -require_once(EL_PATH.'admin/includes/admin-functions.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 $db; - private $categories; - private $options; - private $functions; + private $events_post_type; public static function &get_instance() { // Create class instance if required if(!isset(self::$instance)) { - self::$instance = new EL_Admin_Categories(); + self::$instance = new self(); } // Return class instance return self::$instance; } private function __construct() { - $this->db = &EL_Db::get_instance(); - $this->categories = &EL_Categories::get_instance(); - $this->options = &EL_Options::get_instance(); - $this->functions = &EL_Admin_Functions::get_instance(); - } - - public function show_categories () { - if(!current_user_can('manage_categories')) { - wp_die(__('You do not have sufficient permissions to access this page.')); - } - // check used get parameters - $action = isset($_GET['action']) ? sanitize_key($_GET['action']) : ''; - $slug = isset($_GET['id']) ? sanitize_key($_GET['id']) : 0; - - // check actions - $out = $this->check_actions_and_show_messages($action); - - // normal output - $out.= '<div class="wrap"> - <div id="icon-edit-pages" class="icon32"><br /></div><h2>'.__('Event List Categories','event-list').'</h2> - <div id="posttype-page" class="posttypediv">'; - if('edit' === $action && !empty($slug)) { - $out .= $this->show_edit_category_form(__('Edit Category','event-list'), __('Update Category','event-list'), $this->categories->get_category_data($slug)); - } - else { - // show category table - $out .= $this->show_category_table(); - // show add category form - $out .= $this->show_edit_category_form(__('Add New Category','event-list'), __('Add New Category','event-list')); - // show cat sync option form - $out .= $this->show_cat_sync_form(); - } - $out .= ' - </div> - </div>'; - echo $out; + $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')); } public function embed_categories_scripts() { @@ -69,191 +33,55 @@ class EL_Admin_Categories { wp_enqueue_script('eventlist_admin_categories_js', EL_URL.'admin/js/admin_categories.js'); } - private function check_actions_and_show_messages($action) { - // check used get parameters - $slugs = isset($_GET['slug']) ? preg_replace('/[^a-z0-9,_\-]/', '', $_GET['slug']) : ''; + 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>'; + } - $is_disabled = '1' == $this->options->get('el_sync_cats'); - $out = ''; - if('delete' === $action && !empty($slugs) && !$is_disabled) { - // delete categories - $slug_array = array_map('sanitize_key', explode(',', $slugs)); - $num_affected_events = $this->db->remove_category_in_events($slug_array); - if($this->categories->remove_categories($slug_array, false)) { - $out .= '<div id="message" class="updated"> - <p><strong>'.sprintf(__('Category "%s" deleted.','event-list'), implode(', ', $slug_array)); - if(0 < $num_affected_events) { - $out .= '<br />'.sprintf(__('This Category was also removed from %d events.','event-list'), $num_affected_events); - } - $out .= '</strong></p> - </div>'; - } - else { - $out .= '<div id="message" class="error below-h2"><p><strong>'.sprintf(__('Error while deleting category "%s"','event-list'), implode(', ', $slug_array)).'.</strong></p></div>'; - } + 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'); } - else if('setcatsync' === $action) { - // check used post parameters - $el_sync_cats = isset($_POST['el_sync_cats']) && intval($_POST['el_sync_cats']) ? '1' : ''; - - $this->options->set('el_sync_cats', $el_sync_cats); - $is_disabled = '1' == $this->options->get('el_sync_cats'); - if($is_disabled) { - $this->categories->sync_with_post_cats(); - $out .= '<div id="message" class="updated"><p><strong>'.__('Sync with post categories enabled.','event-list').'</strong></p></div>'; - } - else { - $out .= '<div id="message" class="updated"><p><strong>'.__('Sync with post categories disabled.','event-list').'</strong></p></div>'; - } + if($error) { + $msgtext = __('An Error occured during the category sync','event-list').':<br />'; + $msgnum = 22; } - else if('manualcatsync' === $action) { - if(!$is_disabled) { - $this->categories->sync_with_post_cats(); - $out .= '<div id="message" class="updated"><p><strong>'.__('Manual sync with post categories sucessfully finished.','event-list').'</strong></p></div>'; - } + else { + $msgtext = __('Category sync finished','event-list').':<br />'; + $msgnum = 21; } - else if('editcat' === $action && !empty($_POST)) { - if(!$is_disabled) { - // check used post parameters - $oldslug = isset($_POST['oldslug']) ? sanitize_key($_POST['oldslug']) : 0; - $slug = isset($_POST['slug']) ? sanitize_key($_POST['slug']) : 0; - $name = isset($_POST['name']) ? sanitize_text_field($_POST['name']) : 'No name available!'; - - if(empty($oldslug)) { - // add new category - if($this->categories->add_category($_POST)) { - $out .= '<div id="message" class="updated below-h2"><p><strong>'.sprintf(__('New Category "%s" was added','event-list'), $name).'.</strong></p></div>'; - } - else { - $out .= '<div id="message" class="error below-h2"><p><strong>'.sprintf(__('Error: New Category "%s" could not be added','event-list'), $name).'.</strong></p></div>'; - } - } - else { - // edit category - if($this->categories->edit_category($_POST, $oldslug)) { - $out .= '<div id="message" class="updated below-h2"><p><strong>'.sprintf(__('Category "%s" was modified','event-list'), $oldslug).'.</strong></p></div>'; - } - else { - $out .= '<div id="message" class="error below-h2"><p><strong>'.sprintf(__('Error: Category "%s" could not be modified','event-list'), $oldslug).'.</strong></p></div>'; - } - } + $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); } } - // add message if forms are disabled - if($is_disabled) { - $out .= '<div id="message" class="updated"><p>'.__('Categories are automatically synced with the post categories.','event-list').'<br />'. - __('Because of this all options to add new categories or editing existing categories are disabled.','event-list').'<br />'. - __('If you want to manually edit the categories you have to disable this option.','event-list').'</p></div>'; - } - return $out; + $msgtext .= '</ul>'; + $messages['_item'][$msgnum] = $msgtext; + return $messages; } - private function show_edit_category_form($title, $button_text, $cat_data=null) { - $is_disabled = '1' == $this->options->get('el_sync_cats'); - $is_new_event = (null == $cat_data); - if($is_new_event) { - $cat_data['name'] = ''; - $cat_data['slug'] = ''; - $cat_data['desc'] = ''; + private function show_sync_items($items, $text) { + if(!empty($items)) { + return ' + <li>'.sprintf($text, '<strong>'.count($items).'</strong>', implode(', ', $items)).'</li>'; } - $out = ' - <div id="col-left"> - <div class="col-wrap"> - <div class="form-wrap"> - <h3>'.$title.'</h3> - <form id="addtag" method="POST" action="?page=el_admin_categories&action=editcat">'; - if(!$is_new_event) { - $out .= ' - <input type="hidden" name="oldslug" value="'.$cat_data['slug'].'">'; - } - // Category Name - $out .= ' - <div class="form-field form-required"><label for="name">'.__('Name').': </label>'; - $out .= $this->functions->show_text('name', $cat_data['name'], $is_disabled); - $out .= '<p>'.__('The name is how it appears on your site.','event-list').'</p></div>'; - // Category Slug - $out .= ' - <div class="form-field"><label for="name">'.__('Slug').': </label>'; - $out .= $this->functions->show_text('slug', $cat_data['slug'], $is_disabled); - $out .= '<p>'.__('The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.','event-list').'</p></div>'; - // Category Parent - $out .= ' - <div class="form-field"><label for="parent">'.__('Parent').': </label>'; - $cat_array = $this->categories->get_cat_array('name', 'asc', $cat_data['slug']); - $value_array = array('' => __('None')); - $class_array = array(); - foreach($cat_array as $cat) { - $value_array[$cat['slug']] = str_pad('', 12*$cat['level'], ' ', STR_PAD_LEFT).$cat['name']; - $class_array[$cat['slug']] = 'level-'.$cat['level']; - } - $selected = isset($cat_data['parent']) ? $cat_data['parent'] : null; - $out .= $this->functions->show_dropdown('parent', $selected, $value_array, $class_array, $is_disabled); - $out .= '<p>'.__('Categories can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.','event-list').'</p></div>'; - // Category Description - $out .= ' - <div class="form-field"><label for="name">'.__('Description','event-list').': </label>'; - $out .= $this->functions->show_textarea('desc', $cat_data['desc'], $is_disabled); - $out .= '</div> - <p class="submit"><input type="submit" class="button-primary" value="'.$button_text.'" id="submitbutton"'.$this->functions->get_disabled_text($is_disabled).'></p>'; - $out .= ' - </form> - </div> - </div> - </div>'; - return $out; - } - - private function show_category_table() { - // check used parameters - $page = isset($_REQUEST['page']) ? sanitize_key($_REQUEST['page']) : ''; - - $out = ' - <div id="col-container"> - <div id="col-right"> - <div class="col-wrap"> - <form id="category-filter" method="get"> - <input type="hidden" name="page" value="'.$page.'" />'; - $is_disabled = '1' == $this->options->get('el_sync_cats'); - require_once(EL_PATH.'admin/includes/category_table.php'); - $category_table = new EL_Category_Table($is_disabled); - $category_table->prepare_items(); - ob_start(); - $category_table->display(); - $out .= ob_get_contents(); - ob_end_clean(); - $out .= ' - </form> - </div> - </div>'; - return $out; + return ''; } - private function show_cat_sync_form() { - $sync_option = &$this->options->options['el_sync_cats']; - $sync_option_value = $this->options->get('el_sync_cats'); - $out = ' - <div id="col-left"> - <div class="col-wrap"> - <div class="form-wrap"> - <h3>'.$sync_option['label'].'</h3> - <form id="catsync" method="POST" action="?page=el_admin_categories&action=setcatsync">'; - // Checkbox - $out .= $this->functions->show_checkbox('el_sync_cats', $sync_option_value, $sync_option['caption'].' <input type="submit" class="button-primary" value="'.__('Apply','event-list').'" id="catsyncsubmitbutton">'); - $out .= '<br />'.$sync_option['desc']; - $out .= ' - </form> - </div>'; - // Manual sync button - $disabled_text = $this->functions->get_disabled_text('1' == $sync_option_value); - $out .= '<br /> - <div> - <form id="manualcatsync" method="POST" action="?page=el_admin_categories&action=manualcatsync"> - <input type="submit" class="button-secondary" value="'.__('Do a manual sync with post categories','event-list').'" id="manualcatsyncbutton"'.$disabled_text.'> - </form> - </div>'; - $out .= ' - </div>'; - return $out; + 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 new file mode 100644 index 0000000000000000000000000000000000000000..a073334524a285d610cea78b8aeda8e8aa55dddf --- /dev/null +++ b/wp-content/plugins/event-list/admin/includes/admin-category-sync.php @@ -0,0 +1,200 @@ +<?php +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'); + +// 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)) { + 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->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')); + + // 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(!(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) { + $action = 'sync'; + } + elseif($this->use_post_cats) { + $action = 'switch-to-event'; + } + 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'); + } + // 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> + <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) { + // 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'])); + } + 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' : ''; + echo ' + <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) { + echo '<br /> + <div> + <h3>'.$heading.':</h3>'; + if(empty($cat_slugs)) { + echo ' + <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; + echo ' + <li>'.$cat_name.' ('.__('Slug').': '.$cat_slug.')</li>'; + } + echo ' + </ul>'; + } + echo ' + </div>'; + $this->show_hidden($input_id, esc_html(json_encode($cat_slugs))); + } + + private function show_hidden($id, $value) { + echo ' + <input type="hidden" name="'.$id.'" id="'.$id.'" value="'.$value.'">'; + } + + 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>'; + } + + public function handle_actions() { + // check used post parameter + $action = isset($_POST['action']) ? sanitize_key($_POST['action']) : ''; + // action handling + 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 { + $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['message'] = '21'; + } + else { + $args['message'] = '22'; + $args['error'] = 1; + } + 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'); + $args['settings-updated'] = 'true'; + 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); + } + $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())); + 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 01ebe9ee86c40effaf2e91c1b75e936f1725e99c..3862b3310c5f28bdc59b8f7a8ebca9961a91c2c9 100644 --- a/wp-content/plugins/event-list/admin/includes/admin-functions.php +++ b/wp-content/plugins/event-list/admin/includes/admin-functions.php @@ -1,5 +1,5 @@ <?php -if(!defined('WPINC')) { +if(!defined('WP_ADMIN')) { exit; } @@ -13,7 +13,7 @@ class EL_Admin_Functions { public static function &get_instance() { // Create class instance if required if(!isset(self::$instance)) { - self::$instance = new EL_Admin_Functions(); + self::$instance = new self(); } // Return class instance return self::$instance; @@ -24,19 +24,17 @@ class EL_Admin_Functions { $this->options->load_options_helptexts(); } - public function show_option_form($section) { + 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.php"> + <form method="post" action="'.$options['page'].'"> '; ob_start(); settings_fields('el_'.$section); $out .= ob_get_contents(); ob_end_clean(); $out .= $this->show_option_table($section); - ob_start(); - submit_button(); - $out .= ob_get_contents(); - ob_end_clean(); + $out .= get_submit_button($options['button_text'], $options['button_class']); $out .=' </form>'; return $out; @@ -58,22 +56,22 @@ class EL_Admin_Functions { <td>'; switch($o['type']) { case 'checkbox': - $out .= $this->show_checkbox($oname, $this->options->get($oname), $o['caption']); + $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']); + $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']); + $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)); + $out .= $this->show_text($oname, $this->options->get($oname), isset($o['disable'])); break; case 'textarea': - $out .= $this->show_textarea($oname, $this->options->get($oname)); + $out .= $this->show_textarea($oname, $this->options->get($oname), isset($o['disable'])); break; case 'file-upload': - $out .= $this->show_file_upload($oname, $o['maxsize']); + $out .= $this->show_file_upload($oname, $o['maxsize'], isset($o['disable'])); } $out .= ' </td> 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 e65ed3b70fa4a177cadcaded17cfe775b1038052..48193f8c218f7700ad940488fdf95c3844e3027c 100644 --- a/wp-content/plugins/event-list/admin/includes/admin-import.php +++ b/wp-content/plugins/event-list/admin/includes/admin-import.php @@ -1,21 +1,24 @@ <?php -if(!defined('WPINC')) { +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/db.php'); -require_once(EL_PATH.'includes/categories.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'); +} // 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 $db; - private $categories; - private $import_data; + private $events; private $example_file_path; public static function &get_instance() { @@ -29,10 +32,11 @@ class EL_Admin_Import { 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->db = &EL_Db::get_instance(); - $this->categories = &EL_Categories::get_instance(); - $this->example_file_path = EL_URL.'/files/events-import-example.csv'; + $this->events = &EL_Events::get_instance(); + $this->example_file_path = EL_URL.'files/events-import-example.csv'; + $this->add_metaboxes(); } public function show_import() { @@ -49,8 +53,8 @@ class EL_Admin_Import { } // Finish import (add events) elseif(isset($_POST['reviewed_events'])) { - $import_error = $this->import_events(); - $this->show_import_finished($import_error); + $import_status = $this->import_events(); + $this->show_import_finished($import_status); } // Import form else { @@ -86,39 +90,77 @@ class EL_Admin_Import { $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 file is not a CSV file.','event-list').'</p>'; + echo __('The uploaded file does not have the required csv extension.','event-list').'</p>'; return; } - // safe settings - $this->safe_import_settings(); + // save settings + $this->save_import_settings(); // parse file - $this->import_data = $this->parseImportFile($file); + $import_data = $this->parse_import_file($file); - // parsing failed? - if(is_wp_error($this->import_data)) { - echo '<h3>'.__('Sorry, there has been an error.','event-list').'</h3>'; - echo '<p>' . esc_html($this->import_data->get_error_message()).'</p>'; + // show heading + echo ' + <h3>'.__('Step','event-list').' 2: '.__('Events review and additonal category selection','event-list').'</h3>'; + + // show messages + // failed parsing + 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>'; return; } - // Check categories + // 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)) { + echo ' + <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).':'; + } + 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>'; + } + } + echo '</ul>'; + if($num_event_errors == count($import_data)) { + echo ' + </div>'; + return; + } + echo ' + '.__('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)')); + } + + // missing categories $not_available_cats = array(); - foreach($this->import_data as $event) { + foreach($import_data as $event) { + if(is_wp_error($event)) { + continue; + } foreach($event['categories'] as $cat) { - if(!$this->categories->is_set($cat) && !in_array($cat, $not_available_cats)) { + if(!$this->events->cat_exists($cat) && !in_array($cat, $not_available_cats)) { $not_available_cats[] = $cat; } } } - - // show review page - echo ' - <h3>'.__('Step','event-list').' 2: '.__('Events review and additonal category selection','event-list').'</h3>'; if(!empty($not_available_cats)) { echo ' - <div class="el-warning">'.__('Warning: 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>'; @@ -126,8 +168,9 @@ class EL_Admin_Import { echo '</ul> '.__('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="?page=el_admin_main&action=import">'; + <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); @@ -135,35 +178,45 @@ class EL_Admin_Import { <div id="poststuff"> <div id="post-body" class="metabox-holder columns-2"> <div id="post-body-content">'; - foreach($this->import_data as $event) { + foreach($import_data as $event) { $this->show_event($event); } echo ' </div> - <div id="postbox-container-1" class="postbox-container"> - <div id="side-sortables" class="meta-box-sortables ui-sortable">'; - add_meta_box('event-categories', __('Add additional categories','event-list'), array(&$this, 'render_category_metabox'),'event-list', 'advanced', 'default', null); - add_meta_box('event-publish', __('Import events','event-list'), array(&$this, 'render_publish_metabox'), 'event-list'); - do_meta_boxes('event-list', 'advanced', null); + <div id="postbox-container-1" class="postbox-container">'; + do_meta_boxes('el-import', 'side', null); echo ' - </div> </div> </div> </div> - <input type="hidden" name="reviewed_events" id="reviewed_events" value="'.esc_html(json_encode($this->import_data)).'" /> + <input type="hidden" name="reviewed_events" id="reviewed_events" value="'.esc_html(json_encode($import_data)).'" /> </form>'; } - private function show_import_finished($with_error) { - if(!$with_error) { + private function show_import_finished($import_status) { + echo ' + <h3>'.__('Step','event-list').' 3: '.__('Import result','event-list').'</h3>'; + if(empty($import_status['errors'])) { echo ' - <h3>'.__('Import with errors!','event-list').'</h3> - '.__('Sorry, an error occurred during import!','event-list'); + <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 ' - <h3>'.__('Import successful!','event-list').'</h3> - <a href="?page=el_admin_main">'.__('Go back to All Events','event-list').'</a>'; + <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 { + 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>'; + } + } + echo '</ul> + </div>'; } } @@ -171,11 +224,11 @@ class EL_Admin_Import { 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['start_date'].'</span><br /> - <span class="el-event-header">'.__('End Date','event-list').':</span> <span class="el-event-data">'.$event['end_date'].'</span><br /> - <span class="el-event-header">'.__('Time','event-list').':</span> <span class="el-event-data">'.$event['time'].'</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">'.__('Details','event-list').':</span> <span class="el-event-data">'.$event['details'].'</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>'; } @@ -183,59 +236,121 @@ class EL_Admin_Import { /** * @return WP_Error */ - private function parseImportFile($file) { + private function parse_import_file($file) { $delimiter = ','; - $header = array('title', 'start date', 'end date', 'time', 'location', 'details', 'category_slugs'); - $separator = array('sep=,'); + $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'); - $lineNum = 0; - $emptyLines = 0; + $event_lines = -1; + $empty_lines = 0; while(!feof($file_handle)) { - $line = fgetcsv($file_handle, 0); + // get line + $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)); // skip empty lines - if(empty($line)) { - $emptyLines += 1; + if(!array_filter($line)) { + $empty_lines += 1; continue; } // check header - if(empty($lineNum)) { + if(0 > $event_lines) { // check optional separator line - if($line === $separator) { - $emptyLines += 1; + if($line[0] === $separator_line) { + $empty_lines += 1; continue; } // check header line elseif($line === $header || $line === array_slice($header,0,-1)) { - $lineNum += 1; + $event_lines += 1; continue; } else { - return new WP_Error('CSV_parse_error', sprintf(__('There was an error at line %1$s when reading this CSV file: Header line is missing or not correct!','event-list'), $lineNum+$emptyLines)); + 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>')); } } - // handle lines with events - $events[] = array( + $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); + continue; + } + // check and prepare event data + $eventdata = array( + 'csv_line' => $event_lines+$empty_lines+1, 'title' => $line[0], - 'start_date' => $line[1], - 'end_date' => !empty($line[2]) ? $line[2] : $line[1], - 'time' => $line[3], + 'startdate' => $line[1], + 'enddate' => $line[2], + 'starttime' => $line[3], 'location' => $line[4], - 'details' => $line[5], + 'content' => $line[5], 'categories' => isset($line[6]) ? explode('|', $line[6]) : array(), ); - $lineNum += 1; + $event = $this->prepare_event($eventdata, $this->options->get('el_import_date_format')); + // add event + $events[] = $event; } //close file fclose($file_handle); return $events; } - private function safe_import_settings() { + 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);')); + // title + 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']); + } + // 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']); + } + } + // no additional checks for starttime, location, content required + // categories + $event['categories'] = array_map('trim', $event['categories']); + return $event; + } + + private function prepare_date($date_string, $date_format) { + $auto_detect = true; + 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) { + // try automatic date detection + if($auto_detect) { + $date = date_create($date_string); + } + if(!$date instanceof DateTime) { + return false; + } + } + return $date->format('Y-m-d'); + } + + private function save_import_settings() { foreach($this->options->options as $oname => $o) { // check used post parameters $ovalue = isset($_POST[$oname]) ? sanitize_text_field($_POST[$oname]) : ''; @@ -246,6 +361,11 @@ class EL_Admin_Import { } } + 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'); + } + public function render_publish_metabox() { echo ' <div class="submitbox"> @@ -256,89 +376,64 @@ class EL_Admin_Import { } public function render_category_metabox($post, $metabox) { - echo ' - <div id="taxonomy-category" class="categorydiv"> - <div id="category-all" class="tabs-panel">'; - $cat_array = $this->categories->get_cat_array('name', 'asc'); - if(empty($cat_array)) { - echo __('No categories available.'); - } - else { - echo ' - <ul id="categorychecklist" class="categorychecklist form-no-clear">'; - $level = 0; - $event_cats = $this->categories->convert_db_string($metabox['args']['event_cats'], 'slug_array'); - foreach($cat_array as $cat) { - if($cat['level'] > $level) { - //new sub level - echo ' - <ul class="children">'; - $level++; - } - while($cat['level'] < $level) { - // finish sub level - echo ' - </ul>'; - $level--; - } - $level = $cat['level']; - $checked = in_array($cat['slug'], $event_cats) ? 'checked="checked" ' : ''; - echo ' - <li id="'.$cat['slug'].'" class="popular-catergory"> - <label class="selectit"> - <input value="'.$cat['slug'].'" type="checkbox" name="categories[]" id="categories" '.$checked.'/> '.$cat['name'].' - </label> - </li>'; - } - echo ' - </ul>'; - } - echo ' - </div> - </div>'; + 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 false; + return new WP_Error('no_events', __('No events found','event-list')); } - $additional_cat_array = isset($_POST['categories']) && is_array($_POST['categories']) ? array_map('sanitize_key', $_POST['categories']) : array(); - - // Category handling - foreach($reviewed_events as &$event) { - // Remove not available categories of import file - foreach($event['categories'] as $cat) { - if(!$this->categories->is_set($cat)) { - unset($event['categories'][$cat]); + // 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(); + } + 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_slugs = array(); + 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) { + // 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]); } } - // Add the additionally specified categories to the event - if(!empty($additional_cat_array)) { - $event['categories'] = array_unique(array_merge($event['categories'], $additional_cat_array)); + // 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)); } } - $ret = array(); - foreach($reviewed_events as &$event) { - // check if dates have correct formats - $start_date = DateTime::createFromFormat($this->options->get('el_import_date_format'), $event['start_date']); - $end_date = DateTime::createFromFormat($this->options->get('el_import_date_format'), $event['end_date']); - if($start_date instanceof DateTime) { - $event['start_date'] = $start_date->format('Y-m-d'); - if($end_date) { - $event['end_date'] = $end_date->format('Y-m-d'); - } - else { - $event['end_date'] = ''; - } - $ret[] = $this->db->update_event($event); + // 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['errors'][] = $ed; + continue; } - else { - return false; + //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; } - // TODO: Improve error messages return $ret; } 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 9b0ab69e80ffb9a3c02cf881a72abb57b020daf5..2adc463cdd868f64fe6863a28327b1eac2c26e2f 100644 --- a/wp-content/plugins/event-list/admin/includes/admin-main.php +++ b/wp-content/plugins/event-list/admin/includes/admin-main.php @@ -1,253 +1,255 @@ <?php -if(!defined('WPINC')) { +if(!defined('WP_ADMIN')) { exit; } -require_once(EL_PATH.'includes/db.php'); -require_once(EL_PATH.'admin/includes/event_table.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 +/** + * This class handles all data for the admin main page + */ class EL_Admin_Main { private static $instance; - private $db; + private $options; + private $events_post_type; private $filterbar; - private $event_table; - private $action; public static function &get_instance() { // Create class instance if required if(!isset(self::$instance)) { - self::$instance = new EL_Admin_Main(); + self::$instance = new self(); } // Return class instance return self::$instance; } private function __construct() { - $this->db = &EL_Db::get_instance(); + $this->options = &EL_Options::get_instance(); + $this->events_post_type = &EL_Events_Post_Type::get_instance(); $this->filterbar = &EL_Filterbar::get_instance(); - $this->event_table = new EL_Event_Table(); - $this->action = $this->event_table->current_action(); - - // check for real actions - if($this->action) { - // check used post parameters - $title = isset($_POST['title']) ? sanitize_text_field($_POST['title']) : ''; - - switch($this->action) { - // real actions (redirect when finished) - case 'new': - if(!empty($_POST)) { - $id = $this->update_event(); - $error = !$id; - $this->redirect('added', $error, array('title' => urlencode($title), 'id' => $id)); - } - break; - case 'edited': - if(!empty($_POST)) { - $id = isset($_POST['id']) ? intval($_POST['id']) : 0; - $error = !$this->update_event(); - $this->redirect('modified', $error, array('title' => urlencode($title), 'id' => $id)); - } - break; - case 'delete': - $ids_string = isset($_GET['id']) ? preg_replace('/[^0-9,]/', '', $_GET['id']) : ''; - $id_array = explode(',', $ids_string); - $error = !$this->db->delete_events($id_array); - $this->redirect('deleted', $error, array('id' => implode(',', $id_array))); - break; - // proceed with header if a bulk action was triggered (required due to "noheader" attribute for all action above) - case 'delete_bulk': - require_once(ABSPATH.'wp-admin/admin-header.php'); - break; - } - } - // check used get parameters - $action1 = isset($_REQUEST['action']) ? intval($_REQUEST['action']) : 0; - $action2 = isset($_REQUEST['action2']) ? intval($_REQUEST['action2']) : 0; + 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')); + } - // cleanup query args if the button for bulk action was clicked, but no bulk action was selected - if(-1 == $action1 && -1 == $action2) { - $this->redirect(); - } + /** ************************************************************************ + * 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') + ); } - // show the main admin page - public function show_main() { - // check permissions - if(!current_user_can('edit_posts')) { - wp_die(__('You do not have sufficient permissions to access this page.')); - } - // TODO: add check_admin_referer to improve security (see /wp-admin/edit.php) - // is there POST data an event was edited must be updated - - // check for actions - if($this->action) { - switch($this->action) { - // actions showing edit view - case 'edit': - case 'added': - case 'modified': - $this->show_edit_view($this->action); - return; - // actions showing import view - case 'import': - EL_Admin_Import::get_instance()->show_import(); - return; - // actions showing event list - case 'deleted': - // nothing to do - break; - } + 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()); + break; + case 'location': + $event = new EL_Event($pid); + echo $event->location; + break; } - - $this->show_page_header($this->action); - echo $this->show_event_table(); - echo '</div>'; } - private function show_page_header($action, $editview=false) { - if($editview) { - // check used get parameters - $id = isset($_GET['id']) ? intval($_GET['id']) : 0; + public function events_sortable_columns($columns) { + $columns['eventdate'] = 'eventdate'; + $columns['location'] = 'location'; + $columns['author'] = 'author'; + return $columns; + } - $duplicate_link = add_query_arg(array('id'=>$id, 'action'=>'copy'), '?page=el_admin_new'); - $header = __('Edit Event','event-list').' <a href="'.$duplicate_link.'" class="add-new-h2">'.__('Duplicate','event-list').'</a>'; + public function sort_events($args) { + // Set default order to 'eventdate' of no other sorting is set + if(!isset($args['orderby'])) { + $args['orderby'] = 'eventdate'; + $args['order'] = 'asc'; } - else { - $header = __('Events','event-list'); + $add_args=array(); + switch($args['orderby']) { + case 'eventdate': + $add_args = array( + 'meta_key' => 'startdate', + 'meta_query' => array( + 'relation' => 'AND', + 'startdate' => array('key' => 'startdate'), + 'starttime' => array('key' => 'starttime'), + 'enddate' => array('key' => 'enddate') + ), + 'orderby' => array( + 'startdate' => $args['order'], + 'starttime' => $args['order'], + 'enddate' => $args['order'] + ) + ); + break; + case 'location': + $add_args = array( + 'meta_key' => 'location' + ); + break; } - $new_link = '<a href="?page=el_admin_new" class="add-new-h2">'.__('Add New','event-list').'</a>'; - $import_link = $editview ? '' : '<a href="?page=el_admin_main&action=import" class="add-new-h2">'.__('Import','event-list').'</a>'; - echo ' - <div class="wrap"> - <div id="icon-edit-pages" class="icon32"><br /></div><h2>'.$header.' '.$new_link.' '.$import_link.'</h2>'; - $this->show_message($action); + if(!empty($add_args)) { + $args = array_merge($args, $add_args); + } + return $args; } - private function show_edit_view($action) { - $this->show_page_header($action, true); - require_once(EL_PATH.'admin/includes/admin-new.php'); - echo EL_Admin_New::get_instance()->edit_event(); - echo '</div>'; + 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>'; + return $actions; } - public function embed_main_scripts() { - // If edit event is selected switch to embed admin_new - switch($this->action) { - case 'edit': - case 'added': - case 'modified': - // embed admin new script - require_once(EL_PATH.'admin/includes/admin-new.php'); - EL_Admin_New::get_instance()->embed_new_scripts(); - break; - case 'import': - require_once(EL_PATH.'admin/includes/admin-import.php'); - EL_Admin_Import::get_instance()->embed_import_scripts(); - break; - default: - // embed admin_main script - wp_enqueue_script('eventlist_admin_main_js', EL_URL.'admin/js/admin_main.js'); - wp_enqueue_style('eventlist_admin_main', EL_URL.'admin/css/admin_main.css'); + 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; + + + // date filter + 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, + ); + // additional parameters required if a seperate taxonomy is used + if(!$this->events_post_type->use_post_categories) { + // check used get parameters + $selected_cat = isset($_GET['cat']) ? sanitize_key($_GET['cat']) : ''; + + $cat_args['value_field'] = 'slug'; + $cat_args['selected'] = $selected_cat; + } + wp_dropdown_categories($cat_args); } - private function show_event_table() { - // check used parameters - $page = isset($_REQUEST['page']) ? sanitize_key($_REQUEST['page']) : ''; - - // show event table - // the form is required for bulk actions, the page field is required for plugins to ensure that the form posts back to the current page - $out = '<form id="event-filter" method="get"> - <input type="hidden" name="page" value="'.$page.'" />'; - // show table - $this->event_table->prepare_items(); - ob_start(); - $this->event_table->display(); - $out .= ob_get_contents(); - ob_end_clean(); - $out .= '</form>'; - return $out; + public function filter_request($query) { + // check used get parameters + $selected_date = isset($_GET['date']) ? sanitize_key($_GET['date']) : 'upcoming'; + + $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); + } + $meta_query[] = array( + 'relation' => 'AND', + array( + 'key' => $date_for_startrange, + 'value' => $date_range[0], + 'compare' => '>=', + ), + array( + '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) { + // check used get parameters + $selected_cat = isset($_GET['cat']) ? sanitize_key($_GET['cat']) : ''; + + $query->query_vars['cat'] = false; + $query->query_vars[$this->events_post_type->taxonomy] = $selected_cat; + } } - private function show_message($action) { - if(empty($action)) { - return; + /* 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')); + exit; } + return $events; + } + public function set_default_posts_list_mode() { // check used get parameters - $error = isset($_GET['error']) ? 0 < intval($_GET['error']) : false; - $title = isset($_GET['title']) ? sanitize_text_field($_GET['title']) : 'No title available!'; - - switch($action) { - case 'added': - if(!$error) - $this->show_update_message('New Event "'.esc_html(stripslashes($title)).'" was added.'); - else - $this->show_error_message('Error: New Event "'.esc_html(stripslashes($title)).'" could not be added.'); - break; - case 'modified': - // check used get parameters - $id = isset($_GET['id']) ? intval($_GET['id']) : 0; - - if(!$error) - $this->show_update_message('Event "'.esc_html(stripslashes($title)).'" (id: '.$id.') was modified.'); - else - $this->show_error_message('Error: Event "'.esc_html(stripslashes($title)).'" (id: '.$id.') could not be modified.'); - break; - case 'deleted': - // check used get parameters - $ids_string = isset($_GET['id']) ? preg_replace('/[^0-9,]/', '', $_GET['id']) : ''; - - $num_deleted = count(explode(',', $ids_string)); - $plural = ($num_deleted > 1) ? 's' : ''; - if(!$error) - $this->show_update_message($num_deleted.' Event'.$plural.' deleted (id'.$plural.': '.htmlentities($ids_string).').'); - else - $this->show_error_message('Error: Deleting failed (Event id'.$plural.': '.htmlentities($ids_string).')!'); - break; + $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'; } } - private function show_update_message($text) { - echo ' - <div id="message" class="updated below-h2"><p><strong>'.$text.'</strong></p></div>'; + public function embed_scripts() { + wp_enqueue_style('eventlist_admin_main', EL_URL.'admin/css/admin_main.css'); } - private function show_error_message($text) { + public function add_import_button() { echo ' - <div id="message" class="error below-h2"><p><strong>'.$text.'</strong></p></div>'; + <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>'; } - private function update_event() { - $eventdata = $_POST; - // provide correct sql start- and end-date - if(!empty($eventdata['sql_start_date'])) { - $eventdata['start_date'] = $eventdata['sql_start_date']; + /** ************************************************************************ + * 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); + // end date for multiday event + if($startdate !== $enddate) { + $out .= ' -<br />'.mysql2date(__('Y/m/d'), $enddate); } - if(!empty($eventdata['sql_end_date'])) { - $eventdata['end_date'] = $eventdata['sql_end_date']; + // event starttime + if('' !== $starttime) { + $out .= '<br /> + <span class="starttime">'.esc_html($starttime).'</span>'; } - // set end_date to start_date if multiday is not selected - if(empty($eventdata['multiday'])) { - $eventdata['end_date'] = $eventdata['start_date']; - } - return $this->db->update_event($eventdata); - } - - private function redirect($action=false, $error=false, $query_args=array()) { - $url = remove_query_arg(array('noheader', 'action', 'action2', 'filter', '_wpnonce', '_wp_http_referer'), $_SERVER['REQUEST_URI']); - if($action) { - $url = add_query_arg('action', $action, $url); - } - if($error) { - $url = add_query_arg('error', '1', $url); - } - $url = add_query_arg($query_args, $url); - wp_redirect($url); - exit; + $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 79f4a9bff5c321b1f58b7c63a05dcec417bc3769..2219470caf0b8127a302bf90340333328dfdd58f 100644 --- a/wp-content/plugins/event-list/admin/includes/admin-new.php +++ b/wp-content/plugins/event-list/admin/includes/admin-new.php @@ -1,26 +1,24 @@ <?php -if(!defined('ABSPATH')) { +if(!defined('WP_ADMIN')) { exit; } -require_once(EL_PATH.'includes/db.php'); require_once(EL_PATH.'includes/options.php'); -require_once(EL_PATH.'includes/categories.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 $db; private $options; - private $categories; - private $id; private $is_new; - private $is_duplicate; + private $copy_event = null; public static function &get_instance() { // Create class instance if required if(!isset(self::$instance)) { - self::$instance = new EL_Admin_New(); + self::$instance = new self(); } // Return class instance return self::$instance; @@ -29,36 +27,106 @@ class EL_Admin_New { private function __construct() { // check used get parameters $action = isset($_GET['action']) ? sanitize_key($_GET['action']) : ''; - $this->id = isset($_GET['id']) ? intval($_GET['id']) : 0; + $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->db = &EL_Db::get_instance(); $this->options = &EL_Options::get_instance(); - $this->categories = &EL_Categories::get_instance(); - $this->is_new = !('edit' == $action || 'added' == $action || 'modified' == $action); - $this->is_duplicate = $this->is_new && '' != $action && 0 < $this->id; + $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 show_new() { - if(!current_user_can('edit_posts')) { - wp_die(__('You do not have sufficient permissions to access this page.')); + public function add_eventdata_metabox($post_type) { + add_meta_box( + 'el_event_edit_meta', + __('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)) { + // set next day as date + $startdate = current_time('timestamp')+86400; // next day (86400 seconds = 1*24*60*60 = 1 day); + $enddate = $startdate; + $starttime = ''; + $location = ''; } - $out = '<div class="wrap"> - <div id="icon-edit-pages" class="icon32"><br /></div><h2>'.__('Add New Event','event-list').'</h2>'; - if($this->is_duplicate) { - $out .= '<span style="color:silver">('.sprintf(__('Duplicate of event id:%d','event-list'), $this->id).')</span>'; + 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); + } + // 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'))); + // 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="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>'; + } + + public function form_top_content() { + // set post values if an event gets copied + if(!empty($this->copy_event)) { + global $post; + $post->post_title = $this->copy_event->title; + $post->post_content = $this->copy_event->content; } - $out .= $this->edit_event(); - $out .= '</div>'; - echo $out; + // show label for event title + echo ' + <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']); + echo ' + </div>'; + // show label for event content + echo ' + <label class="event-option">'.__('Event Content','event-list').':</label>'; } - public function embed_new_scripts() { + public function embed_scripts() { wp_enqueue_script('jquery-ui-datepicker'); - wp_enqueue_script('link'); 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")) { + 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'); @@ -68,165 +136,24 @@ class EL_Admin_New { wp_enqueue_style('eventlist_datepicker', EL_URL.'admin/css/jquery-ui-datepicker.css'); } - public function edit_event() { - $dateformat = $this->get_event_dateformat(); - if($this->is_new && !$this->is_duplicate) { - // set next day as date - $start_date = current_time('timestamp')+86400; // next day (86400 seconds = 1*24*60*60 = 1 day); - $end_date = $start_date; + 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) { + return $pid; } - else { - // set event data and existing date - $event = $this->db->get_event($this->id); - $start_date = strtotime($event->start_date); - $end_date = strtotime($event->end_date); + $eventdata = $_POST; + // provide iso start- and end-date + if(!empty($eventdata['startdate-iso'])) { + $eventdata['startdate'] = $eventdata['startdate-iso']; } - // Add required data for javascript in a hidden field - $json = json_encode(array('el_date_format' => $this->datepicker_format($dateformat), - 'el_start_of_week' => get_option('start_of_week'))); - $out = ' - <form method="POST" action="'.add_query_arg('noheader', 'true', '?page=el_admin_main').'">'; - $out .= " - <input type='hidden' id='json_for_js' value='".$json."' />"; // single quote required for value due to json layout - // TODO: saving changed metabox status and order is not working yet - $out .= wp_nonce_field('autosavenonce', 'autosavenonce', false, false); - $out .= wp_nonce_field('closedpostboxesnonce', 'closedpostboxesnonce', false, false); - $out .= wp_nonce_field('meta-box-order-nonce', 'meta-box-order-nonce', false, false); - $out .= ' - <div id="poststuff"> - <div id="post-body" class="metabox-holder columns-2"> - <div id="post-body-content">'; - if($this->is_new) { - $out .= ' - <input type="hidden" name="action" value="new" />'; + if(!empty($eventdata['enddate-iso'])) { + $eventdata['enddate'] = $eventdata['enddate-iso']; } - else { - $out .= ' - <input type="hidden" name="action" value="edited" /> - <input type="hidden" name="id" value="'.$this->id.'" />'; + // set end_date to start_date if multiday is not selected + if(empty($eventdata['multiday'])) { + $eventdata['enddate'] = $eventdata['startdate']; } - $out .= ' - <table class="form-table"> - <tr> - <th><label>'.__('Title','event-list').' ('.__('required','event-list').')</label></th> - <td><input type="text" class="text form-required" name="title" id="title" value="'.str_replace('"', '"', isset($event->title) ? $event->title : '').'" /></td> - </tr> - <tr> - <th><label>'.__('Date','event-list').' ('.__('required','event-list').')</label></th> - <td><span class="date-wrapper"><input type="text" class="text form-required" name="start_date" id="start_date" value="'.date('Y-m-d', $start_date).'" /><i class="dashicons dashicons-calendar-alt"></i></span> - <span id="end_date_area"> - <span class="date-wrapper"><input type="text" class="text" name="end_date" id="end_date" value="'.date('Y-m-d', $end_date).'" /><i class="dashicons dashicons-calendar-alt"></i></span></span> - <label><input type="checkbox" name="multiday" id="multiday" value="1" /> '.__('Multi-Day Event','event-list').'</label> - <input type="hidden" id="sql_start_date" name="sql_start_date" value="" /> - <input type="hidden" id="sql_end_date" name="sql_end_date" value="" /> - </td> - </tr> - <tr> - <th><label>'.__('Time','event-list').'</label></th> - <td><input type="text" class="text" name="time" id="time" value="'.str_replace('"', '"', isset($event->time) ? $event->time : '').'" /></td> - </tr> - <tr> - <th><label>'.__('Location','event-list').'</label></th> - <td><input type="text" class="text" name="location" id="location" value="'.str_replace('"', '"', isset($event->location) ? $event->location : '').'" /></td> - </tr> - <tr> - <th><label>'.__('Details','event-list').'</label></th> - <td>'; - $editor_settings = array('drag_drop_upload' => true, - 'textarea_rows' => 20); - ob_start(); - wp_editor(isset($event->details) ? $event->details : '', 'details', $editor_settings); - $out .= ob_get_contents(); - ob_end_clean(); - $out .= ' - <p class="note">NOTE: In the text editor, use RETURN to start a new paragraph - use SHIFT-RETURN to start a new line.</p></td> - </tr> - </table>'; - $out .= ' - </div> - <div id="postbox-container-1" class="postbox-container"> - <div id="side-sortables" class="meta-box-sortables ui-sortable">'; - add_meta_box('event-publish', __('Publish','event-list'), array(&$this, 'render_publish_metabox'), 'event-list'); - $metabox_args = isset($event->categories) ? array('event_cats' => $event->categories) : null; - add_meta_box('event-categories', __('Categories','event-list'), array(&$this, 'render_category_metabox'), 'event-list', 'advanced', 'default', $metabox_args); - ob_start(); - do_meta_boxes('event-list', 'advanced', null); - $out .= ob_get_contents(); - ob_end_clean(); - $out .= ' - </div> - </div> - </div> - </div> - </form>'; - return $out; - } - - public function render_publish_metabox() { - $button_text = $this->is_new ? __('Publish','event-list') : __('Update','event-list'); - $out = '<div class="submitbox"> - <div id="delete-action"><a href="?page=el_admin_main" class="submitdelete deletion">'.__('Cancel','event-list').'</a></div> - <div id="publishing-action"><input type="submit" class="button button-primary button-large" name="publish" value="'.$button_text.'" id="publish"></div> - <div class="clear"></div> - </div>'; - echo $out; - } - - public function render_category_metabox($post, $metabox) { - $out = ' - <div id="taxonomy-category" class="categorydiv"> - <div id="category-all" class="tabs-panel">'; - $cat_array = $this->categories->get_cat_array('name', 'asc'); - if(empty($cat_array)) { - $out .= __('No categories available.','event-list'); - } - else { - $out .= ' - <ul id="categorychecklist" class="categorychecklist form-no-clear">'; - $level = 0; - $event_cats = $this->categories->convert_db_string($metabox['args']['event_cats'], 'slug_array'); - foreach($cat_array as $cat) { - if($cat['level'] > $level) { - //new sub level - $out .= ' - <ul class="children">'; - $level++; - } - while($cat['level'] < $level) { - // finish sub level - $out .= ' - </ul>'; - $level--; - } - $level = $cat['level']; - $checked = in_array($cat['slug'], $event_cats) ? 'checked="checked" ' : ''; - $out .= ' - <li id="'.$cat['slug'].'" class="popular-catergory"> - <label class="selectit"> - <input value="'.$cat['slug'].'" type="checkbox" name="categories[]" id="categories" '.$checked.'/> '.$cat['name'].' - </label> - </li>'; - } - $out .= ' - </ul>'; - } - - $out .= ' - </div>'; - // TODO: Adding new categories in edit event form - /* <div id="category-adder" class="wp-hidden-children"> - <h4><a id="category-add-toggle" href="#category-add" class="hide-if-no-js">'.__('+ Add New Category','event-list').'</a></h4> - <p id="category-add" class="category-add wp-hidden-child"> - <label class="screen-reader-text" for="newcategory">'.__('Category Name','event-list').'</label> - <input type="text" name="newcategory" id="newcategory" class="form-required form-input-tip" value="" aria-required="true"/> - <input type="button" id="category-add-submit" class="button category-add-submit" value="'.__('Add Category','event-list').'" /> - </p> - </div>*/ - $out .= ' - <div id="category-manager"> - <a id="category-manage-link" href="?page=el_admin_categories">'.__('Goto Category Settings','event-list').'</a> - </div> - </div>'; - echo $out; + return (bool)EL_Event::save_postmeta($pid, $eventdata); } private function get_event_dateformat() { @@ -238,6 +165,40 @@ class EL_Admin_New { } } + 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; + + 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>', + 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>', + ); + return $messages; + } + + 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 * @@ -246,17 +207,17 @@ class EL_Admin_New { */ private function datepicker_format($format) { return str_replace( - array( - 'd', 'j', 'l', 'z', // Day. - 'F', 'M', 'n', 'm', // Month. - 'Y', 'y' // Year. - ), - array( - 'dd', 'd', 'DD', 'o', - 'MM', 'M', 'm', 'mm', - 'yy', 'y' - ), - $format); + array( + 'd', 'j', 'l', 'z', // Day. + 'F', 'M', 'n', 'm', // Month. + 'Y', 'y' // Year. + ), + array( + 'dd', 'd', 'DD', 'o', + 'MM', 'M', 'm', 'mm', + 'yy', 'y' + ), + $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 396b785312281b71613923e9b050ad63921fe50c..6f69b7aad5bea2bee020de10c04db82300410125 100644 --- a/wp-content/plugins/event-list/admin/includes/admin-settings.php +++ b/wp-content/plugins/event-list/admin/includes/admin-settings.php @@ -1,5 +1,5 @@ <?php -if(!defined('ABSPATH')) { +if(!defined('WP_ADMIN')) { exit; } @@ -39,12 +39,23 @@ class EL_Admin_Settings { if('true' === $settings_updated) { // show "settings saved" message $out .= '<div id="message" class="updated"> - <p><strong>'.__('Settings saved.','event-list').'</strong></p> + <p><strong>'.__('Settings saved.').'</strong></p> </div>'; - // check feed rewrite status and update it if required - if('feed' == $tab) { - require_once(EL_PATH.'includes/feed.php'); - EL_Feed::get_instance()->update_feed_rewrite_status(); + 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(); + break; + case 'taxonomy': + // update category count + require_once(EL_PATH.'admin/includes/event-category_functions.php'); + EL_Event_Category_Functions::get_instance()->update_cat_count(); + break; } } @@ -54,26 +65,29 @@ class EL_Admin_Settings { <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">'; - $out .= $this->functions->show_option_form($tab); + $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'); + } + $out .= $this->functions->show_option_form($tab, $options); $out .= ' </div> </div>'; echo $out; } -/* - public function embed_settings_scripts() { - wp_enqueue_script('eventlist_admin_settings_js', EL_URL.'admin/js/admin_settings.js'); - } -*/ + 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')); + 'feed' => __('Feed Settings','event-list'), + 'taxonomy' => __('Category Taxonomy','event-list')); $out = '<h3 class="nav-tab-wrapper">'; - foreach($tabs as $tab => $name){ + foreach($tabs as $tab => $name) { $class = ($tab == $current) ? ' nav-tab-active' : ''; - $out .= '<a class="nav-tab'.$class.'" href="?page=el_admin_settings&tab='.$tab.'">'.$name.'</a>'; + $out .= '<a class="nav-tab'.$class.'" href="'.remove_query_arg('settings-updated', add_query_arg('tab', $tab)).'">'.$name.'</a>'; } $out .= '</h3>'; return $out; 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 new file mode 100644 index 0000000000000000000000000000000000000000..a1a65e43eca48f91b95364c1e313c4ed31ed3c97 --- /dev/null +++ b/wp-content/plugins/event-list/admin/includes/event-category_functions.php @@ -0,0 +1,286 @@ +<?php +if(!defined('WP_ADMIN')) { + exit; +} + +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)) { + 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(); + } + + 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) { + $source_cats = $event_cat_slugs; + $target_cats = $post_cat_slugs; + } + 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); + } + // to_del: + 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); + // 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 || + $post_cat->alias_of !== $event_cat->alias_of || + $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: + * * 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))) { + $affected_cats['to_mod'][] = $cat_slug; + } + } + } + return $affected_cats; + } + + public function sync_categories($direction, $affected_cats) { + $ret = array(); + 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); + $source_cat = 'to_event_cats' === $direction ? $post_cat : $event_cat; + 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_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 + 'description' => $source_cat->description, + '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; + } + 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) { + $ret['del_error'][] = $cat_slug; + } + else { + $ret['del_ok'][] = $cat_slug; + } + } + } + + 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. + * + * Before the switch is done, the id of all categories are replace. The category comparison is done by the category slug. + * If a target category with the same slug is not available, the category will be removed from the event. + * + * @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) { + global $wpdb; + // get events + $events = $this->events->get(array('status'=>null)); + // preparations + 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) { + $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!'); + } + // Iterate over all events + foreach($events as $event) { + // Iterate over all categories of the event + 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 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') + ); + } + 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.'"'); + } + } + } + // Switch taxonomy -> change option value + 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. + * + * This function can be also called if the event taxonomy is not registered, because the terms are + * getting identified via a database request directly. + */ + public function delete_all_event_cats() { + // 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); + } + } + + 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); + } + + 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); + } + + 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); + } + } + + 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 + ON t.term_id = tt.term_id + 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); + } + } +} + +/** 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.')); + } + $taxonomy_object = get_taxonomy($taxonomy); + // Do not allow unregistering internal taxonomies. + 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]); + return true; + } +} +?> diff --git a/wp-content/plugins/event-list/admin/includes/upgrade.php b/wp-content/plugins/event-list/admin/includes/upgrade.php new file mode 100644 index 0000000000000000000000000000000000000000..ba4fd3a6baed79d6c4016afa5a2cf3b5e350bd42 --- /dev/null +++ b/wp-content/plugins/event-list/admin/includes/upgrade.php @@ -0,0 +1,523 @@ +<?php +if(!defined('WP_ADMIN')) { + exit; +} + +/** + * 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)) { + self::$instance = new self(); + } + // Return class instance + return self::$instance; + } + + private function __construct() { + $this->logfile = EL_PATH.'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->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); + return false; + } + // set upgrade trigger + $this->update_option('el_upgr_in_progress', $this->upgrade_starttime, false); + // do upgrade + 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); + // close logfile + $this->logfile_close(); + // redirect + $this->redirect(array('el-upgr-finished'=>($this->error ? 2 : 1)), array('resume-el-upgr')); + } + + /** + * Preparations for the upgrade check + */ + private function init() { + // enable wbdb error logging + global $wpdb; + $wpdb->show_errors(); + // init logfile + $this->logfile_init(); + // get actual plugin 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'); + // fix for older version < 0.8.0 + 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); + } + // 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); + flush_rewrite_rules(); + $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 />'. + 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->upgrade_to_0_8_0(); + } + + // update last_upgr_version + $this->update_last_upgr_version(); + } + + + /** Upgrade to VERSION 0.8.0: change from seperate database to custom post type + * * import existing categories from "categories" option + * * import existing events from "event_list" table + * * delete option "el_db_version" + * * rename option "el_show_details_text" to "el_content_show_text" + * * rename option "el_hide_details_text" to "el_content_hide_text" + * * rename option "el_sync_cats" to "el_use_post_cats" + * * 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'); + + $version = '0.8.0'; + // Correct events post type + 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; + // re-register events post type with correct taxonomy + 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) { + $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').'")'); + + // Import existing categories + 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'])) { + 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']); + continue; + } + // import event category + $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)) { + $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'); + } + $this->complete_action_item($version, $action, $cat['slug']); + } + $this->complete_action($action); + } + } + 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'); + } + + // 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)) { + $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'])) { + 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']); + 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); + } + else { + $this->log('Event "'.$eventdata['title'].'" successfully imported'); + } + $this->complete_action_item($version, $action, $event['id']); + } + $this->complete_action($action); + } + } + else { + $this->log('No existing events found'); + } + + // Delete obsolete 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'); + + // Rename option "el_hide_details_text" to "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'); + } + + private function upgrade_required($version) { + if(version_compare($this->last_upgr_version, $version) < 0 || $this->resume_version === $version) { + return true; + } + 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 = 25; + } + $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) { + return true; + } + 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 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; + // 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 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.'); + // close logfile + $this->logfile_close(); + // redirect + $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); + } + } + + 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? + * @return int|false 2.. if option was not available and added successfully + * 1.. if option was updated successfully + * 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); + // add option, if option does not exist + 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); + 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); + } + 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); + 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); + } + 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) { + global $wpdb; + 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); + } + return $ret; + } + + /** + * Rename an option (create new option name with old option name value, then delete old option name) + * + * @param string $oldname Old option name + * @param string $newname New option name + * @param bool $msg Print logging messages? + * @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); + return true; + } + $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); + } + } + else { + $this->log('Correct value "'.$value.'"is already set', $msg); + } + } + 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); + return false; + } + } + $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); + } + 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); + } + return $ret; + } + + private function logfile_init() { + // rename all existing log files and remove files older than 90 days + if(file_exists($this->logfile) && 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!'); + 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!'); + return false; + } + return true; + } + + private function logfile_close() { + 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) + * + * @param string $text Message text + * @param bool|null $msg Print error message: + * null: don't print message to debug log or upgrade log file + * false: only print message to debug log + * true: print message to log and upgrade log file + * @return null + */ + private function log($text, $msg=true, $error=false) { + $error_text = ''; + if(!is_null($msg)) { + if($error) { + $this->error = true; + $error_text = 'ERROR: '; + } + 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); + } + } +} + +/** Function to unregister posttype before WordPress version 4.5 + **/ +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]); + return true; + } + return false; + } +} +?> diff --git a/wp-content/plugins/event-list/admin/js/admin_categories.js b/wp-content/plugins/event-list/admin/js/admin_categories.js index 4f8ffb01c3ab89da031f6d7428ec831504c13cc1..d14edad73d17414a5ef5c6305a940613b3920431 100644 --- a/wp-content/plugins/event-list/admin/js/admin_categories.js +++ b/wp-content/plugins/event-list/admin/js/admin_categories.js @@ -1,30 +1,12 @@ -// Javascript functions for event-list admin_settings page - -// Confirmation for event deletion -function eventlist_deleteCategory(del_slugs) { - if(del_slugs == "") { - window.alert("No categories selected for deletion! Deletion aborted!"); - } - else if(window.confirm("Are you sure you want to delete this event category?")) { - document.location.href = "?page=el_admin_categories&slug=" + del_slugs + "&action=delete"; - } -} +// Javascript functions for event-list admin_categories page jQuery(document).ready(function($) { - // Confirmation for manual syncing with post categories - $("#manualcatsync").submit(function() { - if(!confirm("Are you sure you want to manually sync the event categories with the post categories?\n\nWarning: Please not that this will delete all categories which are not available in post categories!")) { - return false; - } - return true; - }); - // Confirmation for automatic syncing with post categories - $("#catsync").submit(function() { - if($("#el_sync_cats").prop('checked')) { - if(!confirm("Are you sure you want to automatically sync the event categories with the post categories?\n\nWarning: Please not that this will delete all categories which are not available in post categories!")) { - return false; - } - } - return true; - }); + // Move sync button next to table action button + $("#sync-cats").first().insertAfter($("div.bulkactions").first()); }); + +function el_show_syncform(syncform_url) { + // Redirect to execute action + window.location.assign(syncform_url); + return false; +} diff --git a/wp-content/plugins/event-list/admin/js/admin_main.js b/wp-content/plugins/event-list/admin/js/admin_main.js index 0128a122c3d8ac76b1789e8228ec86e612435385..f69cc0c8d1bfb5dbef8d4dcc2844e9aea30392d4 100644 --- a/wp-content/plugins/event-list/admin/js/admin_main.js +++ b/wp-content/plugins/event-list/admin/js/admin_main.js @@ -1,13 +1,6 @@ // Javascript functions for event-list admin_main page -// Confirmation for event deletion -function eventlist_deleteEvent (del_ids, referer_url) { - if (del_ids == "") { - window.alert("No event selected for deletion! Deletion aborted!"); - } - else if (window.confirm("Are you sure you want to delete this event?")) { - document.location.href = referer_url + "&id=" + del_ids + "&action=delete&noheader=true"; - return; - } - document.location.href = referer_url; -} +jQuery(document).ready(function($) { + // Add import button to page title actions + $("a.page-title-action").first().after('<a href="edit.php?post_type=el_events&action=import" class="add-new-h2">Import</a>'); +}); diff --git a/wp-content/plugins/event-list/admin/js/admin_new.js b/wp-content/plugins/event-list/admin/js/admin_new.js index e87c874553c4b958b7b2d33e6af5ff119806f620..011032f84e1cb2ebf2625a141672791c0fb65fc6 100644 --- a/wp-content/plugins/event-list/admin/js/admin_new.js +++ b/wp-content/plugins/event-list/admin/js/admin_new.js @@ -6,9 +6,14 @@ jQuery(document).ready(function($) { var json = $("#json_for_js").val(); var conf = JSON.parse(json); + // Add copy button if required + if(conf.el_copy_url.length > 0) { + $("h1.wp-heading-inline").first().after('<a href="' + conf.el_copy_url + '" class="add-new-h2">' + conf.el_copy_text + '</a>'); + } + // Show or hide end_date - if ($("#start_date").val() == $("#end_date").val()) { - $("#end_date_area").hide(); + if ($("#startdate").val() == $("#enddate").val()) { + $("#enddate-area").hide(); } else { $("#multiday").attr('checked', true); @@ -27,37 +32,37 @@ jQuery(document).ready(function($) { }); // Datepickers - $("#start_date").datepicker( { + $("#startdate").datepicker( { dateFormat: conf.el_date_format, // don't work when only set with setDefaults - altField: "#sql_start_date", + altField: "#startdate-iso", onClose: function(selectedDate) { // set minDate for end_date picker - minDate = $.datepicker.parseDate( conf.el_date_format, selectedDate ); - minDate.setDate(minDate.getDate()+1); - $("#end_date").datepicker("option", "minDate", minDate); + minDate = $.datepicker.parseDate(conf.el_date_format, selectedDate); + minDate.setDate(minDate.getDate() + 1); + console.log(minDate); + $("#enddate").datepicker("option", "minDate", minDate); } }); - $("#end_date").datepicker( { + $("#enddate").datepicker( { dateFormat: conf.el_date_format, // don't work when only set with setDefaults - altField: "#sql_end_date", + altField: "#enddate-iso", }); // Toogle end_date visibility and insert the correct date $("#multiday").click(function() { - var enddate = $("#start_date").datepicker("getDate"); + var enddate = $("#startdate").datepicker("getDate"); if (this.checked) { - timestamp = enddate.getTime() + 1*24*60*60*1000; - enddate.setTime(timestamp); - $("#end_date").datepicker("option", "minDate", enddate); - $("#end_date_area").fadeIn(); + enddate.setDate(enddate.getDate() + 1); + $("#enddate").datepicker("option", "minDate", enddate); + $("#enddate-area").fadeIn(); } else { - $("#end_date_area").fadeOut(); + $("#enddate-area").fadeOut(); } - $("#end_date").datepicker("setDate", enddate); + $("#enddate").datepicker("setDate", enddate); }); // Initialize Dates - $("#start_date").datepicker("setDate", $.datepicker.parseDate('yy-mm-dd', $("#start_date").val())); - $("#end_date").datepicker("setDate", $.datepicker.parseDate('yy-mm-dd', $("#end_date").val())); + $("#startdate").datepicker("setDate", $.datepicker.parseDate('yy-mm-dd', $("#startdate").val())); + $("#enddate").datepicker("setDate", $.datepicker.parseDate('yy-mm-dd', $("#enddate").val())); }); diff --git a/wp-content/plugins/event-list/event-list.php b/wp-content/plugins/event-list/event-list.php index de42c55ff83f6cde7babebd2d42cc6d83f46b328..c481b283916b4bba4c1f32624cb303c8da7d991f 100644 --- a/wp-content/plugins/event-list/event-list.php +++ b/wp-content/plugins/event-list/event-list.php @@ -3,14 +3,14 @@ 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.7.12 +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-2017 mibuthu +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 @@ -35,12 +35,13 @@ 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'); // MAIN PLUGIN CLASS class Event_List { private $options; - private $shortcode; - private $styles_loaded; + private $shortcode = null; + private $styles_loaded = false; /** * Constructor: @@ -48,12 +49,12 @@ class Event_List { */ public function __construct() { $this->options = EL_Options::get_instance(); - $this->shortcode = null; - $this->styles_loaded = false; // ALWAYS: // Register translation 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')); // Register widgets diff --git a/wp-content/plugins/event-list/files/events-import-example.csv b/wp-content/plugins/event-list/files/events-import-example.csv index 06b1762ae9ea9b89ef3c670e63db841a6aab40e6..e2d03b4de0aaddc2093b799ce936ee42ea45000b 100644 --- a/wp-content/plugins/event-list/files/events-import-example.csv +++ b/wp-content/plugins/event-list/files/events-import-example.csv @@ -1,4 +1,4 @@ "sep=," -"title","start date","end date","time","location","details","category_slugs" -"Cycling",2018-01-01,,17:00:00,"at home","This is a test entry." +"title","startdate","enddate","starttime","location","content","category_slugs" +"Cycling",2018-10-31,,17:00:00,"at home","This is a test entry." "Hiking",2020-02-02,2020-02-04,10:00:00,"in the mountains","TestTest?<br>2nd test entry.","events|sports" 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 5ed6c6f2ca96a3ce4dec785eccb7f3ebf4557ab3..b029dd1b8dc8ea9fef89e7087c7e0c938b9d91d8 100644 --- a/wp-content/plugins/event-list/includes/css/event-list.css +++ b/wp-content/plugins/event-list/includes/css/event-list.css @@ -19,18 +19,18 @@ li.event { background: url(../images/date-separator.png) center no-repeat; } -.event-list .start-date, .event-list .end-date { +.event-list .startdate, .event-list .enddate { text-align: center; width: 3.2em; border-radius: 5px; background-color: rgb(230,230,230); } -.event-list .start-date { +.event-list .startdate { float: left; } -.event-list .end-date { +.event-list .enddate { margin-left: 3.8em; } @@ -87,7 +87,7 @@ li.event { font-size: 0.95em; } -.event-details { +.event-content { font-size: 0.8em; } @@ -104,7 +104,7 @@ div.feed img { } div.filterbar, div.filterbar div { - clear both; + clear: both; margin: 1em 0; vertical-align: middle; } diff --git a/wp-content/plugins/event-list/includes/daterange.php b/wp-content/plugins/event-list/includes/daterange.php index 1e448a7585e84ae5e33a56fc4f5c181708dc226b..51c6a43aa96fde220d8d48e943abf561b29ffc2c 100644 --- a/wp-content/plugins/event-list/includes/daterange.php +++ b/wp-content/plugins/event-list/includes/daterange.php @@ -12,7 +12,7 @@ class EL_Daterange { public static function &get_instance() { // Create class instance if required if(!isset( self::$instance)) { - self::$instance = new self(); + self::$instance = new self(); } // Return class instance return self::$instance; @@ -20,7 +20,6 @@ class EL_Daterange { private function __construct() { $this->init_formats(); - add_action('admin_init', array(&$this, 'load_formats_helptexts'), 2); } public function init_formats() { @@ -123,13 +122,24 @@ class EL_Daterange { } /* create date_create_from_format (DateTime::createFromFormat) alternative for PHP 5.2 - * - * This function is only a small implementation of this function with reduced functionality to handle sql dates (format: 2014-01-31) */ -if(!function_exists("date_create_from_format")) { +if(!function_exists('date_create_from_format')) { function date_create_from_format($dformat, $dvalue) { - $d = new DateTime($dvalue); - return $d; + $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', + $ugly['tm_year'] + 1900, // This will be "111", so we need to add 1900. + $ugly['tm_mon'] + 1, // This will be the month minus one, so we add one. + $ugly['tm_mday'], + $ugly['tm_hour'], + $ugly['tm_min'], + $ugly['tm_sec'] + ); + return new DateTime($ymd); } } ?> diff --git a/wp-content/plugins/event-list/includes/event.php b/wp-content/plugins/event-list/includes/event.php new file mode 100644 index 0000000000000000000000000000000000000000..d970019f9ad1456213284e688348a638276148d4 --- /dev/null +++ b/wp-content/plugins/event-list/includes/event.php @@ -0,0 +1,303 @@ +<?php +if(!defined('WPINC')) { + exit; +} + +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'); +} + +// 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 $content = ''; + + public function __construct($post) { + $this->events_post_type = &EL_Events_Post_Type::get_instance(); + if($post instanceof WP_Post) { + $this->post = $post; + } + else { + $this->post = get_post($post); + if(0 === $this->post->ID) { + die('ERROR: Post not found!'); + } + } + $this->load_eventdata(); + } + + private function load_eventdata() { + $this->title = $this->post->post_title; + $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] : ''; + } + $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) { + // create new post + $postdata['post_type'] = 'el_events'; + $postdata['post_status'] = 'publish'; + $postdata['post_title'] = $eventdata['title']; + $postdata['post_content'] = $eventdata['content']; + if(isset($eventdata['slug'])) { + $postdata['post_name'] = $eventdata['slug']; + } + if(isset($eventdata['post_date'])) { + $postdata['post_date'] = $eventdata['post_date']; + } + if(isset($eventdata['post_user'])) { + $postdata['post_user'] = $eventdata['post_user']; + } + + $pid = wp_insert_post($postdata); + // set categories + $cats = self::set_categories($pid, $eventdata['categories']); + // save postmeta (created event instance) + if(!empty($pid)) { + $post = self::save_postmeta($pid, $eventdata); + return $post; + } + else { + global $wpdb; + $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. + * @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(); + + // 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'); + } + //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']); + + // update all data + 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' ) { + 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); + 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); + } + + public function starttime_i18n() { + $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')) { + return $datestring; + } + return false; + } + + public static function validate_time($timestring) { + // Try to extract a correct time from the provided text + $timestamp = strtotime(stripslashes($timestring)); + // Return a standard time format if the conversion was successful + 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'); + } + + public function get_category_slugs() { + return $this->get_category_fields('slug'); + } + + public function get_category_names() { + return $this->get_category_fields('name'); + } + + 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 + * + * @param string $html The html code which should be shortened. + * @param int $length The length (number of characters) to which the text will be shortened. + * With [0] the full text will be returned. With [auto] also the complete text + * will be used, but a wrapper div will be added which shortens the text to 1 full + * line via css. + * @param bool $skip If this value is true the truncate will be skipped (nothing will be done) + * @param bool $perserve_tags Specifies if html tags should be preserved or if only the text should be + * shortened. + * @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) { + // 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) { + // do nothing + return $html; + } + elseif(!$preserve_tags) { + // only shorten the text + return mb_substr($html, 0, $length); + } + else { + // truncate with preserving html tags + $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)) { + 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); + $printedLength = $length; + $truncated = true; + break; + } + $out .= $str; + $printedLength += mb_strlen($str); + if('&' == $tag[0]) { + // Handle the entity + $out .= $tag; + $printedLength++; + } + else { + // Handle the tag + $tagName = $match[1][0]; + if($this->mb_preg_match('{^</}', $tag)) { + // This is a closing tag + $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); + $tags[] = $openingTag; + } + else { + $out .= $tag; + } + } + else if($this->mb_preg_match('{/\s*>$}', $tag)) { + // Self-closing tag + $out .= $tag; + } + else { + // Opening tag + $out .= $tag; + $tags[] = $tagName; + } + } + // Continue after the tag + $position = $tagPosition + mb_strlen($tag); + } + // Print any remaining text + 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 .= ' …'; + } + } + // Close any open 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) { + // 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)) { + $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); + } + return $out; + } +} diff --git a/wp-content/plugins/event-list/includes/events.php b/wp-content/plugins/event-list/includes/events.php new file mode 100644 index 0000000000000000000000000000000000000000..17a3044e0478fdf9969554d5e229c8ba2a0ec70f --- /dev/null +++ b/wp-content/plugins/event-list/includes/events.php @@ -0,0 +1,281 @@ +<?php +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'); + +/** + * 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)) { + 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->daterange = &EL_Daterange::get_instance(); + } + + 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']; + } + $result = $wpdb->get_results($sql, 'ARRAY_N'); + $events = array(); + foreach($result as $row) { + $events[] = new EL_Event($row[0]); + } + return $events; + } + + 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) { + case 'years': + $distinct = 'SUBSTR(`startdate`,1,4)'; + break; + case 'months': + $distinct = 'SUBSTR(`startdate`,1,7)'; + break; + case 'categories': + $distinct = '`categories`'; + break; + default: + 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']) { + $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)) { + // 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))); + } + } + $result = array_unique($cats); + sort($result); + } + // handling of the hierarchical category structure + if('categories' === $type && $options['hierarchical']) { + // create terms object array + $terms = array(); + foreach($result as $cat) { + $terms[] = $this->get_cat_by_slug($cat); + } + /* + * Separate elements into two buckets: top level and children elements. + * Children_elements is two dimensional array, eg. + * 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)) { + $toplevel_elements[] = $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); + } + // handle the children_elements of which the corresponding toplevel element is not included + 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])) { + continue; + } + 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) { + // Add level to object and add object to list + $element->level = $level; + $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); + } + unset($children[$element->term_id]); + } + } + + 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; + } + 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'; + return $sql; + } + + public function get_num_events($status='publish') { + $count = wp_count_posts('el_events'); + // return special case 'all' + 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'))) { + return $count->$status; + } + return false; + } + + 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)) { + // 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); + } + + public function count_events( $slug ) { + global $wpdb; + $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) { + $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'); + } + // cat_filter + $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'); + } + // no filter + 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 = ''; + } + $filter_sql .= $delimiters[$filter_text[$i]]; + } + else { + $element .= $filter_text[$i]; + } + } + if('' !== $element) { + $filter_sql .= call_user_func(array($this, $callback), $element); + } + 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); + } + 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].'")'; + } + + 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 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 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_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 new file mode 100644 index 0000000000000000000000000000000000000000..4f38df081b098c51ee7a52fd88523651b3c738b8 --- /dev/null +++ b/wp-content/plugins/event-list/includes/events_post_type.php @@ -0,0 +1,152 @@ +<?php +if(!defined('WPINC')) { + exit; +} + +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. +*/ +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. + * + * @return class instance reference + */ + public static function &get_instance() { + // Create class instance if required + if(!isset(self::$instance)) { + self::$instance = new self(); + } + // Return class instance + return self::$instance; + } + + /** + * Constructor which handles all required class preparations + * + * @return null + */ + private function __construct() { + // Register actions and filters + 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; + // 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); + } + } + + /** + * Register the events post type to handle the events. + * + * @return null + */ + 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'), + ); + $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'), + '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, + ); + register_post_type('el_events', $args); + } + + /** + * Register the event category taxonomy for handling event categories. + * + * @return + */ + 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'), + ); + $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, + '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, + ); + register_taxonomy($this->event_cat_taxonomy, 'el_events', $args); + } +} +?> diff --git a/wp-content/plugins/event-list/includes/feed.php b/wp-content/plugins/event-list/includes/feed.php index d0caed9819a53cc28a6acd777377fa983db1673c..164bf9a9f69f3d8a067d35006f9937ca57bf6d00 100644 --- a/wp-content/plugins/event-list/includes/feed.php +++ b/wp-content/plugins/event-list/includes/feed.php @@ -1,19 +1,17 @@ <?php -if(!defined('ABSPATH')) { +if(!defined('WPINC')) { exit; } -require_once(EL_PATH.'includes/db.php'); require_once(EL_PATH.'includes/options.php'); -require_once(EL_PATH.'includes/categories.php'); +require_once(EL_PATH.'includes/events.php'); // This class handles rss feeds class EL_Feed { private static $instance; - private $db; private $options; - private $categories; + private $events; public static function &get_instance() { // Create class instance if required @@ -25,9 +23,8 @@ class EL_Feed { } private function __construct() { - $this->db = EL_Db::get_instance(); + $this->events = EL_Events::get_instance(); $this->options = EL_Options::get_instance(); - $this->categories = EL_Categories::get_instance(); $this->init(); } @@ -44,7 +41,11 @@ class EL_Feed { public function print_eventlist_feed() { header('Content-Type: '.feed_content_type('rss-http').'; charset='.get_option('blog_charset'), true); - $events = $this->db->get_events(($this->options->get('el_feed_upcoming_only') ? 'upcoming' : null), null, 0, array('start_date DESC', 'time DESC', 'end_date DESC')); + $options = array( + 'date_filter' => $this->options->get('el_feed_upcoming_only') ? 'upcoming' : null, + 'order' => array('startdate DESC', 'starttime DESC', 'enddate DESC'), + ); + $events = $this->events->get($options); // Print feeds echo @@ -71,23 +72,21 @@ class EL_Feed { foreach ($events as $event) { echo ' <item> - <title>'.$this->format_date($event->start_date, $event->end_date).' - '.$this->sanitize_feed_text($event->title).'</title> - <pubDate>'.mysql2date('D, d M Y H:i:s +0000', $event->start_date, false).'</pubDate>'; + <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>'; // Feed categories - $cats = $this->categories->convert_db_string($event->categories, 'name_array'); - foreach ($cats as $cat) { + foreach ($event->categories as $cat) { echo ' - <category>'.$this->sanitize_feed_text($cat).'</category>'; + <category>'.$this->sanitize_feed_text($cat->name).'</category>'; } echo ' <description> - '.$this->feed_description($event).' + '.$this->event_data($event).' </description>'; - if(!empty($event->details)) { + if(!empty($event->content)) { echo ' <content:encoded> - '.$this->feed_description($event).': - '.$this->sanitize_feed_text(do_shortcode($event->details)).' + '.$this->event_data($event).': </content:encoded>'; } echo ' @@ -122,45 +121,47 @@ class EL_Feed { } } - private function feed_description(&$event) { - return $this->format_date($event->start_date, $event->end_date). (empty($event->time) ? '' : ' '.$this->sanitize_feed_text($event->time)).(empty($event->location) ? '' : ' - '.$this->sanitize_feed_text($event->location)); + 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($start_date, $end_date) { - $startArray = explode("-", $start_date); - $start_date = mktime(0,0,0,$startArray[1],$startArray[2],$startArray[0]); + private function format_date($startdate, $enddate) { + $start_array = explode("-", $startdate); + $startdate = mktime(0,0,0,$start_array[1],$start_array[2],$start_array[0]); - $endArray = explode("-", $end_date); - $end_date = mktime(0,0,0,$endArray[1],$endArray[2],$endArray[0]); + $end_array = explode("-", $enddate); + $enddate = mktime(0,0,0,$end_array[1],$end_array[2],$end_array[0]); - $event_date = ''; + $eventdate = ''; - if ($start_date == $end_date) { - if ($startArray[2] == "00") { - $start_date = mktime(0,0,0,$startArray[1],15,$startArray[0]); - $event_date .= date("F, Y", $start_date); - return $event_date; + 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; } - $event_date .= date("M j, Y", $start_date); - return $event_date; + $eventdate .= date("M j, Y", $startdate); + return $eventdate; } - if ($startArray[0] == $endArray[0]) { - if ($startArray[1] == $endArray[1]) { - $event_date .= date("M j", $start_date) . "-" . date("j, Y", $end_date); - return $event_date; + 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; } - $event_date .= date("M j", $start_date) . "-" . date("M j, Y", $end_date); - return $event_date; + $eventdate .= date("M j", $startdate) . "-" . date("M j, Y", $enddate); + return $eventdate; } - $event_date .= date("M j, Y", $start_date) . "-" . date("M j, Y", $end_date); - return $event_date; + $eventdate .= date("M j, Y", $startdate) . "-" . date("M j, Y", $enddate); + return $eventdate; } } ?> diff --git a/wp-content/plugins/event-list/includes/filterbar.php b/wp-content/plugins/event-list/includes/filterbar.php index 8acb09cb36c0da3130259be4bf4ca159236caebf..d561e6d6b335d301c6c87441826f755f1169c8f3 100644 --- a/wp-content/plugins/event-list/includes/filterbar.php +++ b/wp-content/plugins/event-list/includes/filterbar.php @@ -1,29 +1,29 @@ <?php -if(!defined('ABSPATH')) { +if(!defined('WPINC')) { exit; } -require_once( EL_PATH.'includes/db.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 $db; - private $categories; + private $events; +// private $categories; public static function &get_instance() { // Create class instance if required if( !isset( self::$instance ) ) { - self::$instance = new EL_Filterbar(); + self::$instance = new self(); } // Return class instance return self::$instance; } private function __construct() { - $this->db = &EL_Db::get_instance(); - $this->categories = &EL_Categories::get_instance(); + $this->events = &EL_Events::get_instance(); +// $this->categories = &EL_Categories::get_instance(); } // main function to show the rendered HTML output @@ -63,16 +63,16 @@ class EL_Filterbar { $item_array = explode("_", $item_array[0]); switch($item_array[0]) { case 'years': - $out .= $this->show_years($url, $args, $item_array[1], 'std', $options); + $out .= $this->show_years($url, $args, $item_array[1], $options); break; case 'daterange': - $out .= $this->show_daterange($url, $args, $item_array[1], 'std', $options); + $out .= $this->show_daterange($url, $args, $item_array[1], $options); break; case 'cats': - $out .= $this->show_cats($url, $args, $item_array[1], 'std', $options); + $out .= $this->show_cats($url, $args, $item_array[1], $options); break; case 'months': - $out .= $this->show_months($url, $args, $item_array[1], 'std', $options); + $out .= $this->show_months($url, $args, $item_array[1], $options); break; case 'reset': $out .= $this->show_reset($url, $args, $options); @@ -86,14 +86,23 @@ class EL_Filterbar { return $out; } - public function show_years($url, &$args, $type='hlist', $subtype='std', $options=array()) { - $default_options = array ( - 'show_all' => 'true', - 'show_upcoming' => 'true', - 'show_past' => 'false', - 'years_order' => 'asc', + 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 + ); + $args = wp_parse_args($args, $default_args); + $default_options = array( + 'show_all' => 'true', + 'show_upcoming' => 'true', + 'show_past' => 'false', + 'years_order' => 'asc', ); $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']) { @@ -105,20 +114,20 @@ class EL_Filterbar { if('true' == $options['show_past']) { $elements[] = $this->past_element(); } - $event_years = $this->db->get_distinct_event_data('substr(`start_date`,1,4)', $args['date_filter'],$args['cat_filter'], $options['years_order']); + $event_years = $this->events->get_filter_list('years', $args); foreach($event_years as $entry) { - $elements[] = array('slug'=>$entry->data, 'name'=>$entry->data); + $elements[] = array('slug'=>$entry, 'name'=>$entry); } // display elements if('dropdown' === $type) { - return $this->show_dropdown($elements, 'date'.$args['sc_id_for_url'], $subtype, $args['actual_date'], $args['sc_id_for_url']); + 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['actual_date']); + return $this->show_hlist($elements, $url, 'date'.$args['sc_id_for_url'], $args['selected_date']); } } - public function show_months($url, &$args, $type='dropdown', $subtype='std', $options=array()) { + public function show_months($url, &$args, $type='dropdown', $options=array()) { $default_options = array ( 'show_all' => 'false', 'show_upcoming' => 'false', @@ -127,6 +136,8 @@ class EL_Filterbar { 'date_format' => 'Y-m', ); $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']) { @@ -138,21 +149,21 @@ class EL_Filterbar { if('true' == $options['show_past']) { $elements[] = $this->past_element(); } - $event_months = $this->db->get_distinct_event_data('substr(`start_date`,1,7)', $args['date_filter'],$args['cat_filter'], $options['months_order']); + $event_months = $this->events->get_filter_list('months', $args); foreach($event_months as $entry) { - list($year, $month) = explode('-', $entry->data); - $elements[] = array('slug' => $entry->data, 'name' => date($options['date_format'], mktime(0,0,0,$month,1,$year))); + 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['actual_date']); + 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'], $subtype, $args["actual_date"], $args['sc_id_for_url']); + 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', $subtype='std', $options) { + public function show_daterange($url, &$args, $type='hlist', $options) { // prepare displayed elements if(isset($options['item_order'])) { $items = explode('&', $options['item_order']); @@ -176,52 +187,37 @@ class EL_Filterbar { } // display elements if('dropdown' === $type) { - return $this->show_dropdown($elements, 'date'.$args['sc_id_for_url'], $subtype, $args['actual_date'], $args['sc_id_for_url']); + 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['actual_date']); + return $this->show_hlist($elements, $url, 'date'.$args['sc_id_for_url'], $args['selected_date']); } } - public function show_cats($url, &$args, $type='dropdown', $subtype='std', $options=array()) { + public function show_cats($url, &$args, $type='dropdown', $options=array()) { $default_options = array ( 'show_all' => 'true', ); $options = wp_parse_args($options, $default_options); + // add arg 'cat_data' to receive all required data + $args['cat_data'] = 'all'; + $args['hierarchical'] = true; // prepare displayed elements $elements = array(); if('true' == $options['show_all']) { $elements[] = $this->all_element('cat', $type); } - //prepare required arrays - $cat_array = $this->categories->get_cat_array(); - $events_cat_strings = $this->db->get_distinct_event_data('`categories`', $args['date_filter'],$args['cat_filter']); - $events_cat_array = array(); - foreach($events_cat_strings as $cat_string) { - $events_cat_array = array_merge($events_cat_array, $this->categories->convert_db_string($cat_string->data, 'slug_array')); - } - $events_cat_array = array_unique($events_cat_array); - //create filtered cat_array - $filtered_cat_array = array(); - $required_cats = array(); - for($i=count($cat_array)-1; 0<=$i; $i--) { // start from the end to have the childs first and be able to add the parent to the required_cats - if(in_array($cat_array[$i]['slug'], $events_cat_array) || in_array($cat_array[$i]['slug'], $required_cats)) { - array_unshift($filtered_cat_array, $cat_array[$i]); // add the new cat at the beginning (unshift) due to starting at the end in the loop - if('' != $cat_array[$i]['parent']) { // the parent is required to show the categories correctly - $required_cats[] = $cat_array[$i]['parent']; - } - } - } //create elements array - foreach($filtered_cat_array as $cat) { - $elements[] = array('slug' => $cat['slug'], 'name' => str_pad('', 12*$cat['level'], ' ', STR_PAD_LEFT).$cat['name']); + $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['actual_cat']); + 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'], $subtype, $args['actual_cat'], $args['sc_id_for_url']); + return $this->show_dropdown($elements, 'cat'.$args['sc_id_for_url'], $args['selected_cat'], $args['sc_id_for_url']); } } @@ -235,11 +231,11 @@ class EL_Filterbar { return $this->show_link(remove_query_arg($args_to_remove, $url), $options['caption'], 'link'); } - private function show_hlist($elements, $url, $name, $actual=null) { + private function show_hlist($elements, $url, $name, $selected=null) { $out = '<ul class="hlist">'; foreach($elements as $element) { $out .= '<li>'; - if($actual == $element['slug']) { + if($selected == $element['slug']) { $out .= '<strong>'.$element['name'].'</strong>'; } else { @@ -251,18 +247,18 @@ class EL_Filterbar { return $out; } - private function show_dropdown($elements, $name, $subtype='std', $actual=null, $sc_id='') { + private function show_dropdown($elements, $name, $selected=null, $sc_id='') { $onchange = ''; - if('admin' != $subtype) { + 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="eventlist_redirect(this.name,this.value,'.$sc_id.')"'; + $onchange = ' onchange="el_redirect(this.name,this.value,'.$sc_id.')"'; } $out = '<select class="dropdown" name="'.$name.'"'.$onchange.'>'; foreach($elements as $element) { $out .= ' <option'; - if($element['slug'] == $actual) { + if($element['slug'] == $selected) { $out .= ' selected="selected"'; } $out .= ' value="'.$element['slug'].'">'.esc_html($element['name']).'</option>'; @@ -282,7 +278,7 @@ class EL_Filterbar { $name = __('All','event-list'); } else { - $name = ('date' == $list_type) ? __('Show all dates','event-list') : __('Show all categories','event-list'); + $name = ('date' == $list_type) ? __('All Dates','event-list') : __('All Categories'); } return array('slug' => 'all', 'name' => $name); } @@ -297,15 +293,15 @@ class EL_Filterbar { private function parse_args(&$args) { $defaults = array('date' => null, - 'actual_date' => null, - 'actual_cat' => 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['actual_date'] = null; - $args['actual_cat'] = null; + $args['selected_date'] = null; + $args['selected_cat'] = null; }; } diff --git a/wp-content/plugins/event-list/includes/js/event-list.js b/wp-content/plugins/event-list/includes/js/event-list.js new file mode 100644 index 0000000000000000000000000000000000000000..7c955dcf1c1f06e8edf9250e36261a72b14b2405 --- /dev/null +++ b/wp-content/plugins/event-list/includes/js/event-list.js @@ -0,0 +1,13 @@ +function el_toggle_content(event_id) { + var content_div = document.getElementById('event-content-'.concat(event_id)); + var content_button = document.getElementById('event-content-a'.concat(event_id)); + if (content_div.style.display == 'block') { + content_div.style.display = 'none'; + content_button.innerHTML = el_content_show_text; + } + else { + content_div.style.display = 'block'; + content_button.innerHTML = el_content_hide_text; + } + return false; +} diff --git a/wp-content/plugins/event-list/includes/js/filterbar.js b/wp-content/plugins/event-list/includes/js/filterbar.js index 323f5405b5efe6a5b6a8c71b9d068b3ed8eb7f21..82875c16ce51c2b1f58824ef5e43e710cb7802eb 100644 --- a/wp-content/plugins/event-list/includes/js/filterbar.js +++ b/wp-content/plugins/event-list/includes/js/filterbar.js @@ -1,11 +1,11 @@ -// Javascript functions for event-list admin_main page +// Javascript functions for event-list filterbar // Confirmation for event deletion -function eventlist_redirect(name, value, sc_id) { - window.location.assign(updateUrlParameter(window.location.href, name, value, sc_id)); +function el_redirect(name, value, sc_id) { + window.location.assign(el_updateUrlParameter(window.location.href, name, value, sc_id)); } -function updateUrlParameter(url, paramName, paramVal, sc_id) { +function el_updateUrlParameter(url, paramName, paramVal, sc_id) { // extrude anchor var urlArray = url.split("#"); var anchor = urlArray[1] ? "#" + urlArray[1] : ""; diff --git a/wp-content/plugins/event-list/includes/options.php b/wp-content/plugins/event-list/includes/options.php index 598afe7432997a855d90d6b86048b02fce4c51bf..65dd413f483f812c9958ddc6afd600c0031427b9 100644 --- a/wp-content/plugins/event-list/includes/options.php +++ b/wp-content/plugins/event-list/includes/options.php @@ -25,36 +25,36 @@ class EL_Options { public function init_options() { $this->options = array( - 'el_db_version' => array('section' => 'system', 'std_val' => ''), + 'el_last_upgrade_version' => array('section' => 'system', 'std_val' => ''), - 'el_categories' => array('section' => 'categories', 'std_val' => null), - 'el_sync_cats' => array('section' => 'categories', 'std_val' => ''), + 'el_import_file' => array('section' => 'import', 'std_val' => ''), + 'el_import_date_format' => array('section' => 'import', 'std_val' => 'Y-m-d'), - '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_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_show_details_text' => array('section' => 'frontend', 'std_val' => __('Show details','event-list')), - 'el_hide_details_text' => array('section' => 'frontend', 'std_val' => __('Hide details','event-list')), - 'el_disable_css_file' => array('section' => 'frontend', 'std_val' => ''), + 'el_edit_dateformat' => array('section' => 'admin', '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_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' => ''), ); } diff --git a/wp-content/plugins/event-list/includes/options_helptexts.php b/wp-content/plugins/event-list/includes/options_helptexts.php index 7adf6cacedf85b7d25de466db988431ce2259031..50dc48b32f43ce958558d4de272503bf565a98d5 100644 --- a/wp-content/plugins/event-list/includes/options_helptexts.php +++ b/wp-content/plugins/event-list/includes/options_helptexts.php @@ -4,14 +4,6 @@ if(!defined('WPINC')) { } $options_helptexts = array( - // Section: "categories" -// 'el_categories' => This option specifies all event category data (category has seperate site --> no additional helptexts required) - - 'el_sync_cats' => array('type' => 'checkbox', - 'label' => __('Sync Categories','event-list'), - 'caption' => __('Keep event categories in sync with post categories automatically','event-list'), - 'desc' => '<table><tr style="vertical-align:top"><td><strong>'.__('Attention','event-list').':</strong></td> - <td>'.__('Please note that this option will delete all categories which are not available in the post categories! Existing Categories with the same slug will be updated.','event-list').'</td></tr></table>'), // Section: "import" 'el_import_file' => array('type' => 'file-upload', @@ -22,7 +14,19 @@ $options_helptexts = array( 'el_import_date_format' => array('type' => 'text', 'label' => __('Used date format','event-list'), 'caption' => '', - 'desc' => __('With this option the used date format for event start and end date given in the CSV file can be specified.','event-list')), + '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', @@ -60,13 +64,17 @@ $options_helptexts = array( '.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_show_details_text' => array('type' => 'text', - 'label' => __('Text for "Show details"','event-list'), - 'desc' => __('With this option the displayed text for the link to show the event details can be changed, when collapsing is enabled.','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_hide_details_text' => array('type' => 'text', - 'label' => __('Text for "Hide details"','event-list'), - 'desc' => __('With this option the displayed text for the link to hide the event details 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'), @@ -136,5 +144,14 @@ $options_helptexts = array( '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"')), + + // 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')), ); ?> 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 a05fc5a9991898fbe8e1b1116f3f14810f25e0b5..ae5ba137d46534dad243e8cc947924dc61394ca5 100644 --- a/wp-content/plugins/event-list/includes/sc_event-list.php +++ b/wp-content/plugins/event-list/includes/sc_event-list.php @@ -3,16 +3,17 @@ if(!defined('WPINC')) { exit; } -require_once(EL_PATH.'includes/db.php'); require_once(EL_PATH.'includes/options.php'); -require_once(EL_PATH.'includes/categories.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 $db; - private $categories; +// private $categories; private $atts; private $num_sc_loaded; private $single_event; @@ -28,8 +29,8 @@ class SC_Event_List { private function __construct() { $this->options = &EL_Options::get_instance(); - $this->db = &EL_Db::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( @@ -47,17 +48,17 @@ class SC_Event_List { 'show_location' => array('std_val' => 'true'), 'location_length' => array('std_val' => '0'), 'show_cat' => array('std_val' => 'false'), - 'show_details' => array('std_val' => 'true'), - 'details_length' => array('std_val' => '0'), - 'collapse_details' => 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' => ''), // Internal attributes: This parameters will be added by the script and are not available in the shortcode // 'sc_id' - // 'actual_date' - // 'actual_cat' + // 'selected_date' + // 'selected_cat' // 'event_id' ); $this->num_sc_loaded = 0; @@ -100,8 +101,8 @@ class SC_Event_List { $a = shortcode_atts($std_values, $atts); // add internal attributes $a['sc_id'] = $this->num_sc_loaded; - $a['actual_date'] = $this->get_actual_date($a); - $a['actual_cat'] = $this->get_actual_cat($a); + $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 @@ -113,9 +114,9 @@ class SC_Event_List { $out = ' <div class="event-list">'; if(!empty($a['event_id'])) { - // show events details if event_id is set + // show events content if event_id is set $this->single_event = true; - $out .= $this->html_event_details($a); + $out .= $this->html_event_content($a); } else { // show full event list @@ -127,13 +128,13 @@ class SC_Event_List { return $out; } - private function html_event_details(&$a) { - $event = $this->db->get_event($a['event_id']); + 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> <ul class="single-event-view">'; - $single_day_only = ($event->start_date == $event->end_date) ? true : false; + $single_day_only = ($event->startdate == $event->enddate) ? true : false; $out .= $this->html_event($event, $a, $single_day_only); $out .= '</ul>'; return $out; @@ -141,21 +142,22 @@ class SC_Event_List { private function html_events(&$a) { // specify to show all events if not upcoming is selected - if('upcoming' != $a['actual_date']) { + if('upcoming' != $a['selected_date']) { $a['num_events'] = 0; } - $date_filter = $this->get_date_filter($a['date_filter'], $a['actual_date']); - $cat_filter = $this->get_cat_filter($a['cat_filter'], $a['actual_cat']); + $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 - $sort_array = array('start_date '.$order, 'time ASC', 'end_date '.$order); + $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) - $sort_array = array('start_date '.$order, 'end_date '.$order, 'time ASC'); + $options['order'] = array('startdate '.$order, 'enddate '.$order, 'starttime ASC'); } - $events = $this->db->get_events($date_filter, $cat_filter, $a['num_events'], $sort_array); + $events = $this->events->get($options); // generate output $out = $this->html_feed_link($a, 'top'); @@ -179,15 +181,15 @@ class SC_Event_List { return $out; } - private function html_event( &$event, &$a, $single_day_only=false ) { + private function html_event(&$event, &$a, $single_day_only=false) { static $last_event_startdate=null, $last_event_enddate=null; - $cat_string = $this->categories->convert_db_string($event->categories, 'slug_string', ' '); + $cat_string = implode(' ', $event->get_category_slugs()); // add class with each category slug $out = ' <li class="event '.$cat_string.'">'; // event date - if( '1' !== $this->options->get( 'el_date_once_per_day' ) || $last_event_startdate !== $event->start_date || $last_event_enddate !== $event->end_date ) { - $out .= $this->html_fulldate( $event->start_date, $event->end_date, $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'; @@ -200,80 +202,80 @@ class SC_Event_List { $out .= '">'; // event title $out .= '<div class="event-title"><h3>'; - $title = $this->db->truncate(esc_attr($event->title), $a['title_length'], $this->single_event); + $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->id, $title); + $out .= $this->get_event_link($a, $event->post->ID, $title); } else { $out .= $title; } $out .= '</h3></div>'; - // event time - if('' != $event->time && $this->is_visible($a['show_starttime'])) { + // event starttime + if('' != $event->starttime && $this->is_visible($a['show_starttime'])) { if('' == $this->options->get('el_html_tags_in_time')) { - $event->time = esc_attr($event->time); + $event->starttime = esc_attr($event->starttime_i18n()); } - $out .= '<span class="event-time">'.$event->time.'</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 =$this->db->truncate(esc_attr($event->location), $a['location_length'], $this->single_event, false); + $location =$event->truncate(esc_attr($event->location), $a['location_length'], $this->single_event, false); } else { - $location = $this->db->truncate($event->location, $a['location_length'], $this->single_event); + $location = $event->truncate($event->location, $a['location_length'], $this->single_event); } $out .= '<span class="event-location">'.$location.'</span>'; } // event categories if( $this->is_visible( $a['show_cat'] ) ) { - $out .= '<div class="event-cat">'.esc_attr($this->categories->convert_db_string($event->categories)).'</div>'; + $out .= '<div class="event-cat">'.esc_attr(implode(', ', $event->get_category_names())).'</div>'; } - // event details - if( $this->is_visible( $a['show_details'] ) ) { - $out .= $this->get_details($event, $a); + // event content + if( $this->is_visible( $a['show_content'] ) ) { + $out .= $this->get_content($event, $a); } $out .= '</div> </li>'; - $last_event_startdate = $event->start_date; - $last_event_enddate = $event->end_date; + $last_event_startdate = $event->startdate; + $last_event_enddate = $event->enddate; return $out; } - private function html_fulldate( $start_date, $end_date, $single_day_only=false ) { + private function html_fulldate($startdate, $enddate, $single_day_only=false) { $out = ' '; - if( $start_date === $end_date ) { + if($startdate === $enddate) { // one day event $out .= '<div class="event-date">'; - if( $single_day_only ) { - $out .= '<div class="start-date">'; + if($single_day_only ) { + $out .= '<div class="startdate">'; } else { - $out .= '<div class="end-date">'; + $out .= '<div class="enddate">'; } - $out .= $this->html_date( $start_date ); + $out .= $this->html_date($startdate); $out .= '</div>'; } else { // multi day event $out .= '<div class="event-date multi-date">'; - $out .= '<div class="start-date">'; - $out .= $this->html_date( $start_date ); + $out .= '<div class="startdate">'; + $out .= $this->html_date($startdate); $out .= '</div>'; - $out .= '<div class="end-date">'; - $out .= $this->html_date( $end_date ); + $out .= '<div class="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; } @@ -312,11 +314,10 @@ class SC_Event_List { return $out; } - private function get_actual_date(&$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) { + if('all' === $date || 'upcoming' === $date || 'past' === $date) { return $date; } else if(preg_match('/^[0-9]{4}(-[0-9]{2})?(-[0-9]{2})?$/', $date)) { @@ -325,7 +326,7 @@ class SC_Event_List { return $a['initial_date']; } - private function get_actual_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']]) : ''; @@ -342,7 +343,7 @@ class SC_Event_List { if(0 < $event_id) { return $event_id; } - elseif('all' !== $a['initial_event_id'] && $a['actual_date'] === $a['initial_date'] && $a['actual_cat'] === $a['initial_cat']) { + 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 { @@ -350,61 +351,61 @@ class SC_Event_List { } } - private function get_date_filter($date_filter, $actual_date) { + private function get_date_filter($date_filter, $selected_date) { if('all' == $date_filter || '' == $date_filter) { - if('all' == $actual_date || '' == $actual_date) { + if('all' == $selected_date || '' == $selected_date) { return null; } else { - return $actual_date; + return $selected_date; } } else { // Convert html entities to correct characters, e.g. & to & $date_filter = html_entity_decode($date_filter); - if('all' == $actual_date || '' == $actual_date) { + if('all' == $selected_date || '' == $selected_date) { return $date_filter; } else { - return '('.$date_filter.')&('.$actual_date.')'; + return '('.$date_filter.')&('.$selected_date.')'; } } } - private function get_cat_filter($cat_filter, $actual_cat) { + private function get_cat_filter($cat_filter, $selected_cat) { if('all' == $cat_filter || '' == $cat_filter) { - if('all' == $actual_cat || '' == $actual_cat) { + if('all' == $selected_cat || '' == $selected_cat) { return null; } else { - return $actual_cat; + return $selected_cat; } } else { // Convert html entities to correct characters, e.g. & to & $cat_filter = html_entity_decode($cat_filter); - if('all' == $actual_cat || '' == $actual_cat) { + if('all' == $selected_cat || '' == $selected_cat) { return $cat_filter; } else { - return '('.$cat_filter.')&('.$actual_cat.')'; + return '('.$cat_filter.')&('.$selected_cat.')'; } } } - private function get_details(&$event, &$a) { - // check if details are available - if('' == $event->details) { + 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 details is set) - if(preg_match('/<!--more(.*?)?-->/', $event->details, $matches)) { - $part = explode($matches[0], $event->details, 2); - if(!$this->is_link_available($a, $event) || 0 < $a['details_length'] || $this->single_event) { - //details with removed more-tag - $details = $part[0].$part[1]; + //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 @@ -414,28 +415,28 @@ class SC_Event_List { else { $more_link_text = __('(more…)'); } - //details with more-link - $details = apply_filters('the_content_more_link', $part[0].$this->get_event_link($a, $event->id, $more_link_text)); + //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 details - $details = $event->details; + //normal content + $content = $event->content; if($this->is_link_available($a, $event)) { - $truncate_url = $this->get_event_url($a, $event->id); + $truncate_url = $this->get_event_url($a, $event->post->ID); } } - // last preparations of details - $details = $this->db->truncate(do_shortcode(wpautop($details)), $a['details_length'], $this->single_event, true, $truncate_url); - // preparations for collapsed details - if($this->is_visible($a['collapse_details'])) { - wp_register_script('el_collapse_details', EL_URL.'includes/js/collapse_details.js', null, true); - add_action('wp_footer', array(&$this, 'print_collapse_details_script')); - return '<div class="event-details"><div id="event-details-'.$event->id.'" class="el-hidden">'.$details. - '</div><a class="event-detail-link" id="event-detail-a'.$event->id.'" onclick="toggle_event_details('.$event->id.')" href="javascript:void(0)">'.$this->options->get('el_show_details_text').'</a></div>'; + // 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-details">'.$details.'</div>'; + return '<div class="event-content">'.$content.'</div>'; } private function get_event_link(&$a, $event_id, $title) { @@ -465,7 +466,7 @@ class SC_Event_List { private function is_single_day_only( &$events ) { foreach( $events as $event ) { - if( $event->start_date !== $event->end_date ) { + if( $event->startdate !== $event->enddate ) { return false; } } @@ -497,14 +498,14 @@ class SC_Event_List { } private function is_link_available(&$a, &$event) { - return $this->is_visible($a['link_to_event']) || ('events_with_details_only' == $a['link_to_event'] && !$this->single_event && !empty($event->details)); + 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_collapse_details_script() { + public function print_eventlist_script() { // print variables for script - echo('<script type="text/javascript">el_show_details_text = "'.$this->options->get('el_show_details_text').'"; el_hide_details_text = "'.$this->options->get('el_hide_details_text').'"</script>'); + 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_collapse_details'); + 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 b4ed10ae4fd225f01437187fb7df1b1011a1e1c9..c0636ed733f45adfefa6b8eeb2833bbbe5f43a4a 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 @@ -5,7 +5,7 @@ if(!defined('WPINC')) { $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-details view of this event is shown.','event-list'), '"13"')), + '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 />'. @@ -96,27 +96,27 @@ $sc_eventlist_helptexts = array( 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')), - 'show_details' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only'), - 'desc' => __('This attribute specifies if the details are displayed in the event list.<br /> - Choose "false" to always hide and "true" to always show the details.<br /> - With "event_list_only" the details 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 /> + 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')), - 'details_length' => array('val' => array(__('number','event-list')), - 'desc' => __('This attribute specifies if the details should be truncate to the given number of characters in the event list.','event-list').'<br />'. + '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_details' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only'), - 'desc' => __('This attribute specifies if the details should be collapsed initially.<br /> - Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br /> - Available option are "false" to always disable collapsing and "true" to always enable collapsing of the details.<br /> - With "event_list_only" the details are only collapsed in the event list view and with "single_event_only" only in single event view.','event-list')), + '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 /> + 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')), - 'link_to_event' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only', 'events_with_details_only'), + '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_details_only" the link is only added in the event list for events with event details.','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 /> diff --git a/wp-content/plugins/event-list/includes/widget.php b/wp-content/plugins/event-list/includes/widget.php index 89531e5315ea0c30f99690f5c1e95270f7a9a8d5..9e2d834b1240da10a8998263e49d6428f920765c 100644 --- a/wp-content/plugins/event-list/includes/widget.php +++ b/wp-content/plugins/event-list/includes/widget.php @@ -1,5 +1,5 @@ <?php -if(!defined('ABSPATH')) { +if(!defined('WPINC')) { exit; } @@ -29,8 +29,8 @@ class EL_Widget extends WP_Widget { 'show_starttime' => array('std_value' => 'true'), 'show_location' => array('std_value' => 'false'), 'location_length' => array('std_value' => '0'), - 'show_details' => array('std_value' => 'false'), - 'details_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'), @@ -62,8 +62,7 @@ class EL_Widget extends WP_Widget { // TODO: sanitize $instance items $title = apply_filters('widget_title', $instance['title']); echo $args['before_widget']; - if(!empty($title)) - { + if(!empty($title)) { echo $args['before_title'].$title.$args['after_title']; } $this->upgrade_widget($instance, true); @@ -76,8 +75,8 @@ class EL_Widget extends WP_Widget { $shortcode .= ' show_starttime='.$instance['show_starttime']; $shortcode .= ' show_location='.$instance['show_location']; $shortcode .= ' location_length='.$instance['location_length']; - $shortcode .= ' show_details='.$instance['show_details']; - $shortcode .= ' details_length='.$instance['details_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'].'"'; @@ -87,7 +86,7 @@ class EL_Widget extends WP_Widget { $shortcode .= ' link_to_event=false'; } $shortcode .= ']'; - echo do_shortcode($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>'; } @@ -102,7 +101,7 @@ class EL_Widget extends WP_Widget { * @param array $new_instance Values just sent to be saved. * @param array $old_instance Previously saved values from database. * - * @return array Updated safe values to be saved. + * @return array Updated values to be saved. */ public function update($new_instance, $old_instance) { $instance = array(); @@ -155,7 +154,7 @@ class EL_Widget extends WP_Widget { /** * Prepare the instance array and add not available items with std_value * - * This is required for a plugin upgrades: In existing widgets probably added widget options are not available. + * This is required for a plugin upgrades: In existing widgets laster added widget options are not available. * * @param array &$instance Previously saved values from database. */ @@ -167,19 +166,32 @@ class EL_Widget extends WP_Widget { } } + /** + * 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) { - // required change of cat_filter in version 0.6.0 (can be removed in 0.7.0) + $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($on_frontpage) { - if(current_user_can('edit_theme_options')) { - echo '<p style="color:red"><strong>Please visit widget admin page (Appearance -> Widgets) and press "Save" to perform the required widget updates (required due to changes in new plugin version) !</strong></p>'; - } - } - else { - echo '<p style="color:red"><strong>Press "Save" to perform the required widget updates (required due to changes in new plugin version) !</strong></p>'; - $instance['cat_filter'] = 'all'; - $this->update($instance, null); - } + $instance['cat_filter'] = 'all'; + $upgrade_required = true; + } + // renamed items "show_details" -> "show_content" + if(isset($instance['show_details']) && !isset($instance['show_content'])) { + $instance['show_content'] = $instance['show_details']; + $upgrade_required = true; + } + // renamed items "details_length" -> "content_length" + if(isset($instance['details_length']) && !isset($instance['content_length'])) { + $instance['content_length'] = $instance['details_length']; + $upgrade_required = true; + } + // Show info for the required update on admin page + 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 83a6e154b61f47be4a145dbc16c39f2370f44398..be118c9d8ce97b1fc4ab0dd09b9ce146d8a7c116 100644 --- a/wp-content/plugins/event-list/includes/widget_helptexts.php +++ b/wp-content/plugins/event-list/includes/widget_helptexts.php @@ -55,17 +55,17 @@ $widget_items_helptexts = array( 'form_style' => 'margin:0 0 0.6em 0.9em', 'form_width' => 40), - 'show_details' => array('type' => 'checkbox', - 'caption' => __('Show event details','event-list'), + 'show_content' => array('type' => 'checkbox', + 'caption' => __('Show event content','event-list'), 'caption_after' => null, - 'tooltip' => __('This option defines if the event details will be displayed.','event-list'), + 'tooltip' => __('This option defines if the event content will be displayed.','event-list'), 'form_style' => 'margin:0 0 0.2em 0', 'form_width' => null), - 'details_length' => array('type' => 'text', - 'caption' => __('Truncate details to','event-list'), + 'content_length' => array('type' => 'text', + 'caption' => __('Truncate content to','event-list'), 'caption_after' => __('characters','event-list'), - 'tooltip' => __('If the event details are diplayed this option defines the number of diplayed 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), 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 new file mode 100644 index 0000000000000000000000000000000000000000..4cb963068ffc650ca3d36e904ec79efd7651519b Binary files /dev/null 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 new file mode 100644 index 0000000000000000000000000000000000000000..5646bb00cedc80eb08a6f3ec5a2016507d0ae783 --- /dev/null +++ b/wp-content/plugins/event-list/languages/event-list-da_DK.po @@ -0,0 +1,1982 @@ +# Translation file for the 'Event List' WordPress plugin +# Copyright (C) 2018 by mibuthu +# This file is distributed under the same license as the corresponding wordpress plugin. +# +# Translators: +# Thea Straub <theastraub@hotmail.com>, 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" +"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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin/admin.php:57 +#, php-format +msgid "Errors during upgrade of plugin %1$s" +msgstr "" + +#: admin/admin.php:57 +#, php-format +msgid "Upgrade of plugin %1$s successful" +msgstr "" + +#: admin/admin.php:106 admin/includes/admin-settings.php:65 +msgid "Event List Settings" +msgstr "Event List indstillinger" + +#: admin/admin.php:106 +msgid "Settings" +msgstr "Indstillinger" + +#: admin/admin.php:110 admin/includes/admin-about.php:37 +msgid "About Event List" +msgstr "Om Event List" + +#: admin/admin.php:110 +msgid "About" +msgstr "Om" + +#: admin/admin.php:132 +#, 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 +msgid "General" +msgstr "Generelt" + +#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:105 +msgid "Shortcode Attributes" +msgstr "Shortcode attributter" + +#: admin/includes/admin-about.php:72 +msgid "Help and Instructions" +msgstr "Hjælp og instruktioner" + +#: admin/includes/admin-about.php:73 +#, php-format +msgid "You can manage the events %1$shere%2$s" +msgstr "" + +#: admin/includes/admin-about.php:74 +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 +#, 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 +#, 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 +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 +#, 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 +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 +#, 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 +msgid "Add links to the single events" +msgstr "Tilføj links til enkeltbegivenhederne" + +#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 +msgid "Add a link to the Event List page" +msgstr "Tilføj links til Event List-siden" + +#: admin/includes/admin-about.php:81 +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 +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 +#, 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 +#, 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 +#, 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 +msgid "Settings page" +msgstr "" + +#: admin/includes/admin-about.php:92 +msgid "About the plugin author" +msgstr "" + +#: admin/includes/admin-about.php:94 +#, 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" +msgstr "" + +#: admin/includes/admin-about.php:95 +#, 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" +msgstr "" + +#: admin/includes/admin-about.php:96 +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 +#, php-format +msgid "Donate with %1$s" +msgstr "" + +#: admin/includes/admin-about.php:107 +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 +#, 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 +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 +msgid "Attribute name" +msgstr "Attribut navn" + +#: admin/includes/admin-about.php:125 +msgid "Value options" +msgstr "Værdi-muligheder" + +#: admin/includes/admin-about.php:126 +msgid "Default value" +msgstr "Default værdi" + +#: admin/includes/admin-about.php:127 +msgid "Description" +msgstr "Beskrivelse" + +#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 +#: includes/sc_event-list_helptexts.php:31 +msgid "Filter Syntax" +msgstr "Filter syntax" + +#: admin/includes/admin-about.php:146 +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 +#, 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 +msgid "AND" +msgstr "AND" + +#: admin/includes/admin-about.php:147 +msgid "OR" +msgstr "OR" + +#: admin/includes/admin-about.php:147 +msgid "or" +msgstr "eller" + +#: admin/includes/admin-about.php:147 +msgid "and" +msgstr "og" + +#: admin/includes/admin-about.php:148 +msgid "Examples for cat filters:" +msgstr "Eksempler for kategori-filtre:" + +#: admin/includes/admin-about.php:149 +#, php-format +msgid "Show all events with category %1$s." +msgstr "Vis alle begivenheder i kategorien %1$s." + +#: admin/includes/admin-about.php:150 +#, 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 +#, 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 +msgid "Available Date Formats" +msgstr "Mulige dato-formater" + +#: admin/includes/admin-about.php:157 +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 +msgid "Available Date Range Formats" +msgstr "Tilgængelige dato-formater" + +#: admin/includes/admin-about.php:166 +msgid "For date filters you can use the following daterange formats:" +msgstr "" + +#: admin/includes/admin-about.php:178 +msgid "Value" +msgstr "Værdi" + +#: admin/includes/admin-about.php:182 +msgid "Example" +msgstr "Eksempel" + +#: admin/includes/admin-categories.php:38 +msgid "Synchronize with post categories" +msgstr "" + +#: admin/includes/admin-categories.php:46 +#, php-format +msgid "%1$s categories modified (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:47 +#, php-format +msgid "%1$s categories added (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:48 +#, php-format +msgid "%1$s categories deleted (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:50 +#, php-format +msgid "%1$s categories not modified (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:51 +#, php-format +msgid "%1$s categories not added (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:52 +#, php-format +msgid "%1$s categories not deleted (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:55 +msgid "An Error occured during the category sync" +msgstr "" + +#: admin/includes/admin-categories.php:59 +msgid "Category sync finished" +msgstr "" + +#: admin/includes/admin-category-sync.php:45 +msgid "Error: You are not allowed to view this page!" +msgstr "" + +#: admin/includes/admin-category-sync.php:62 +msgid "Affected Categories when switching to seperate Event Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:63 +msgid "Switch option to seperate Event Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:64 +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 +msgid "" +"Afterwards the event categories are independent of the post categories." +msgstr "" + +#: admin/includes/admin-category-sync.php:68 +msgid "Affected Categories when switching to use Post Categories for events" +msgstr "" + +#: admin/includes/admin-category-sync.php:69 +msgid "Switch option to use Post Categories for events" +msgstr "" + +#: admin/includes/admin-category-sync.php:70 +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 +msgid "Event Categories: Synchronise with Post Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:74 +msgid "Start synchronisation" +msgstr "" + +#: admin/includes/admin-category-sync.php:75 +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 +msgid "Categories to modify" +msgstr "" + +#: admin/includes/admin-category-sync.php:91 +msgid "Categories to add" +msgstr "" + +#: admin/includes/admin-category-sync.php:92 +msgid "Categories to delete (optional)" +msgstr "" + +#: admin/includes/admin-category-sync.php:93 +msgid "Delete not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:97 +msgid "Categories with differences" +msgstr "" + +#: admin/includes/admin-category-sync.php:98 +msgid "Categories to add (optional)" +msgstr "" + +#: admin/includes/admin-category-sync.php:99 +msgid "Add not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:117 +msgid "none" +msgstr "" + +#: admin/includes/admin-import.php:49 +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 +msgid "Step" +msgstr "Trin" + +#: admin/includes/admin-import.php:69 +msgid "Set import file and options" +msgstr "" + +#: admin/includes/admin-import.php:72 +#, php-format +msgid "Proceed with Step %1$s" +msgstr "" + +#: admin/includes/admin-import.php:75 +msgid "Example file" +msgstr "Eksempelfil" + +#: admin/includes/admin-import.php:76 +#, 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 +msgid "Note" +msgstr "Note" + +#: admin/includes/admin-import.php:77 +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 +msgid "Sorry, there has been an error." +msgstr "Beklager, der er sket en fejl." + +#: admin/includes/admin-import.php:85 +msgid "The file does not exist, please try again." +msgstr "Filen eksisterer ikke. Prøv venligst igen." + +#: admin/includes/admin-import.php:93 +msgid "The uploaded file does not have the required csv extension." +msgstr "" + +#: admin/includes/admin-import.php:105 +msgid "Events review and additonal category selection" +msgstr "" + +#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +msgid "Error" +msgstr "" + +#: admin/includes/admin-import.php:111 +msgid "This CSV file cannot be imported" +msgstr "" + +#: admin/includes/admin-import.php:122 +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 +msgid "Warning" +msgstr "" + +#: admin/includes/admin-import.php:126 +#, 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 +#, php-format +msgid "CSV line %1$s" +msgstr "" + +#: admin/includes/admin-import.php:144 +msgid "You can still import all other events listed below." +msgstr "" + +#: admin/includes/admin-import.php:163 +msgid "" +"The following category slugs are not available and will be removed from the " +"imported events" +msgstr "" + +#: admin/includes/admin-import.php:169 +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 +msgid "Import result" +msgstr "" + +#: admin/includes/admin-import.php:201 +#, php-format +msgid "Import of %1$s events successful!" +msgstr "" + +#: admin/includes/admin-import.php:202 +msgid "Go back to All Events" +msgstr "" + +#: admin/includes/admin-import.php:206 +msgid "Errors during Import" +msgstr "" + +#: admin/includes/admin-import.php:215 +msgid "Event from CSV-line" +msgstr "" + +#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 +#: includes/widget_helptexts.php:8 +msgid "Title" +msgstr "Titel" + +#: admin/includes/admin-import.php:227 +msgid "Start Date" +msgstr "Starter" + +#: admin/includes/admin-import.php:228 +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 +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 +msgid "Location" +msgstr "Lokalitet" + +#: admin/includes/admin-import.php:231 +msgid "Content" +msgstr "" + +#: admin/includes/admin-import.php:232 +msgid "Category slugs" +msgstr "" + +#: admin/includes/admin-import.php:274 +msgid "Header line is missing or not correct!" +msgstr "" + +#: admin/includes/admin-import.php:275 +#, 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 +#, php-format +msgid "Wrong number of items in line (%1$s items found, 6-7 required)" +msgstr "" + +#: admin/includes/admin-import.php:309 +msgid "Empty event title found" +msgstr "" + +#: admin/includes/admin-import.php:315 +msgid "Wrong date format for startdate" +msgstr "" + +#: admin/includes/admin-import.php:324 +msgid "Wrong date format for enddate" +msgstr "" + +#: admin/includes/admin-import.php:365 +msgid "Import events" +msgstr "" + +#: admin/includes/admin-import.php:366 +msgid "Add additional categories" +msgstr "" + +#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +msgid "Import" +msgstr "Importér" + +#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +msgid "No events found" +msgstr "" + +#: admin/includes/admin-import.php:432 +msgid "Saving of event failed!" +msgstr "" + +#: admin/includes/admin-main.php:60 +msgid "Event Date" +msgstr "" + +#: admin/includes/admin-main.php:64 +msgid "Author" +msgstr "Forfatter" + +#: admin/includes/admin-main.php:126 +#, php-format +msgid "Add a copy of %1$s" +msgstr "" + +#: admin/includes/admin-main.php:126 +msgid "Copy" +msgstr "" + +#: admin/includes/admin-new.php:51 +msgid "Event data" +msgstr "" + +#: admin/includes/admin-new.php:80 +msgid "Add Copy" +msgstr "" + +#: admin/includes/admin-new.php:84 +msgid "Date" +msgstr "Dato" + +#: admin/includes/admin-new.php:84 +msgid "required" +msgstr "" + +#: admin/includes/admin-new.php:87 +msgid "Multi-Day Event" +msgstr "" + +#: admin/includes/admin-new.php:106 +msgid "Event Title" +msgstr "" + +#: admin/includes/admin-new.php:121 +msgid "Event Content" +msgstr "" + +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +msgid "Event updated." +msgstr "" + +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +msgid "View event" +msgstr "" + +#: admin/includes/admin-new.php:184 +#, php-format +msgid "Event restored to revision from %1$s" +msgstr "" + +#: admin/includes/admin-new.php:185 +msgid "Event published." +msgstr "" + +#: admin/includes/admin-new.php:187 +msgid "Event submitted." +msgstr "" + +#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 +#: admin/includes/admin-new.php:190 +msgid "Preview event" +msgstr "" + +#: admin/includes/admin-new.php:188 +#, php-format +msgid "Event scheduled for: %1$s>" +msgstr "" + +#: admin/includes/admin-new.php:190 +msgid "Event draft updated." +msgstr "" + +#: admin/includes/admin-settings.php:71 +msgid "Go to Event Category switching page" +msgstr "" + +#: admin/includes/admin-settings.php:83 +msgid "Frontend Settings" +msgstr "Frontend-indstillinger" + +#: admin/includes/admin-settings.php:84 +msgid "Admin Page Settings" +msgstr "Admin Page-indstillinger" + +#: admin/includes/admin-settings.php:85 +msgid "Feed Settings" +msgstr "Feed-indstillinger" + +#: admin/includes/admin-settings.php:86 +msgid "Category Taxonomy" +msgstr "" + +#: includes/daterange_helptexts.php:7 +msgid "Year" +msgstr "År" + +#: includes/daterange_helptexts.php:8 +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 +#, 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 +msgid "the resulting year" +msgstr "" + +#: includes/daterange_helptexts.php:12 +msgid "Month" +msgstr "Måned" + +#: includes/daterange_helptexts.php:13 +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 +msgid "the resulting month" +msgstr "" + +#: includes/daterange_helptexts.php:17 +msgid "Day" +msgstr "Dag" + +#: includes/daterange_helptexts.php:18 +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 +msgid "Relative Year" +msgstr "" + +#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28 +#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42 +#, php-format +msgid "%1$s from now can be specified in the following notation: %2$s" +msgstr "" + +#: includes/daterange_helptexts.php:22 +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 +#, 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 +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 +#, php-format +msgid "Additionally the following values are available: %1$s" +msgstr "" + +#: includes/daterange_helptexts.php:27 +msgid "Relative Month" +msgstr "" + +#: includes/daterange_helptexts.php:28 +msgid "A relative month" +msgstr "" + +#: includes/daterange_helptexts.php:29 +msgid "number of months" +msgstr "Antal måneder" + +#: includes/daterange_helptexts.php:33 +msgid "Relative Week" +msgstr "" + +#: includes/daterange_helptexts.php:34 +msgid "A relative week" +msgstr "" + +#: includes/daterange_helptexts.php:35 +msgid "number of weeks" +msgstr "Antal uger" + +#: includes/daterange_helptexts.php:36 +msgid "the resulting week" +msgstr "" + +#: includes/daterange_helptexts.php:37 +#, 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 +msgid "Relative Day" +msgstr "" + +#: includes/daterange_helptexts.php:42 +msgid "A relative day" +msgstr "" + +#: includes/daterange_helptexts.php:43 +msgid "number of days" +msgstr "" + +#: includes/daterange_helptexts.php:49 +msgid "Date range" +msgstr "" + +#: includes/daterange_helptexts.php:50 +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 +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 +#, php-format +msgid "The corresponding date_range format is: %1$s" +msgstr "" + +#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 +msgid "Upcoming" +msgstr "Kommende" + +#: includes/daterange_helptexts.php:60 +msgid "This value defines a range from the actual day to the future." +msgstr "" + +#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 +msgid "Past" +msgstr "Tidligere" + +#: includes/daterange_helptexts.php:65 +msgid "This value defines a range from the past to the previous day." +msgstr "" + +#: includes/event.php:107 +msgid "No valid start date provided" +msgstr "" + +#: includes/events_post_type.php:60 +msgid "Events" +msgstr "Begivenheder" + +#: includes/events_post_type.php:61 +msgid "Event" +msgstr "" + +#: includes/events_post_type.php:62 +msgid "Add New" +msgstr "Tilføj ny" + +#: includes/events_post_type.php:63 +msgid "Add New Event" +msgstr "Tilføj ny begivenhed" + +#: includes/events_post_type.php:64 +msgid "Edit Event" +msgstr "Redigér begivenhed" + +#: includes/events_post_type.php:65 +msgid "New Event" +msgstr "" + +#: includes/events_post_type.php:66 +msgid "View Event" +msgstr "" + +#: includes/events_post_type.php:67 +msgid "View Events" +msgstr "" + +#: includes/events_post_type.php:68 +msgid "Search Events" +msgstr "" + +#: includes/events_post_type.php:70 +msgid "No events found in Trash" +msgstr "" + +#: includes/events_post_type.php:72 +msgid "All Events" +msgstr "Alle begivenheder" + +#: includes/events_post_type.php:73 +msgid "Event Archives" +msgstr "" + +#: includes/events_post_type.php:74 +msgid "Event Attributes" +msgstr "" + +#: includes/events_post_type.php:75 +msgid "Insert into event" +msgstr "" + +#: includes/events_post_type.php:76 +msgid "Uploaded to this event" +msgstr "" + +#: includes/events_post_type.php:77 +msgid "Event List" +msgstr "Event List" + +#: includes/events_post_type.php:78 +msgid "Filter events list" +msgstr "" + +#: includes/events_post_type.php:79 +msgid "Events list navigation" +msgstr "" + +#: includes/events_post_type.php:80 +msgid "Events list" +msgstr "" + +#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +msgid "Reset" +msgstr "" + +#: includes/filterbar.php:278 +msgid "All" +msgstr "Alle" + +#: includes/filterbar.php:281 +msgid "All Dates" +msgstr "" + +#: includes/options_helptexts.php:10 +msgid "CSV File to import" +msgstr "" + +#: includes/options_helptexts.php:12 +msgid "Please select the file which contains the event data in CSV format." +msgstr "" + +#: includes/options_helptexts.php:15 +msgid "Used date format" +msgstr "" + +#: includes/options_helptexts.php:17 +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 +#, 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 +msgid "full year representation, with 4 digits" +msgstr "" + +#: includes/options_helptexts.php:21 +msgid "numeric representation of a month, with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:22 +msgid "day of the month, 2 digits with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:24 +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 +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 +msgid "Examples" +msgstr "" + +#: includes/options_helptexts.php:33 +msgid "Text for no events" +msgstr "Tekst hvis ingen begivenheder" + +#: includes/options_helptexts.php:35 +msgid "" +"This option defines the displayed text when no events are available for the " +"selected view." +msgstr "" + +#: includes/options_helptexts.php:38 +msgid "Multiday filter range" +msgstr "" + +#: includes/options_helptexts.php:39 +msgid "Use the complete event range in the date filter" +msgstr "" + +#: includes/options_helptexts.php:40 +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 +msgid "" +"If disabled, only the start day of an event is considered in the filter." +msgstr "" + +#: includes/options_helptexts.php:42 +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 +msgid "Date display" +msgstr "" + +#: includes/options_helptexts.php:46 +msgid "Show the date only once per day" +msgstr "" + +#: includes/options_helptexts.php:47 +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 +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 +msgid "HTML tags" +msgstr "HTML tags" + +#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 +#, php-format +msgid "Allow HTML tags in the event field \"%1$s\"" +msgstr "" + +#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 +#, php-format +msgid "" +"This option specifies if HTML tags are allowed in the event field \"%1$s\"." +msgstr "" + +#: includes/options_helptexts.php:61 +msgid "Preferred language file" +msgstr "" + +#: includes/options_helptexts.php:62 +msgid "Load translations from general language directory first" +msgstr "" + +#: includes/options_helptexts.php:63 +#, 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 +#, 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 +msgid "Events permalink slug" +msgstr "" + +#: includes/options_helptexts.php:69 +msgid "" +"With this option the slug for the events permalink URLs can be defined." +msgstr "" + +#: includes/options_helptexts.php:72 +msgid "Text for \"Show content\"" +msgstr "" + +#: includes/options_helptexts.php:73 +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 +msgid "Text for \"Hide content\"" +msgstr "" + +#: includes/options_helptexts.php:77 +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 +msgid "Disable CSS file" +msgstr "Deaktiver CSS-fil" + +#: includes/options_helptexts.php:81 +#, php-format +msgid "Disable the %1$s file." +msgstr "" + +#: includes/options_helptexts.php:82 +#, php-format +msgid "With this option you can disable the inclusion of the %1$s file." +msgstr "" + +#: includes/options_helptexts.php:83 +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 +msgid "Date format in edit form" +msgstr "" + +#: includes/options_helptexts.php:88 +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 +msgid "The default is an empty string to use the Wordpress standard setting." +msgstr "" + +#: includes/options_helptexts.php:90 +#, 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 +msgid "Enable RSS feed" +msgstr "" + +#: includes/options_helptexts.php:95 +msgid "Enable support for an event RSS feed" +msgstr "" + +#: includes/options_helptexts.php:96 +msgid "This option activates a RSS feed for the events." +msgstr "" + +#: includes/options_helptexts.php:97 +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 "" + +#: includes/options_helptexts.php:101 +#, php-format +msgid "This option sets the feed name. The default value is %1$s." +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)." +msgstr "" + +#: includes/options_helptexts.php:105 +msgid "Feed Description" +msgstr "" + +#: includes/options_helptexts.php:106 +#, php-format +msgid "This options set the feed description. The default value is %1$s." +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." +msgstr "" + +#: includes/options_helptexts.php:110 +msgid "Listed events" +msgstr "" + +#: includes/options_helptexts.php:111 +msgid "Only show upcoming events in feed" +msgstr "" + +#: includes/options_helptexts.php:112 +msgid "" +"If this option is enabled only the upcoming events are listed in the feed." +msgstr "" + +#: includes/options_helptexts.php:113 +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 "" + +#: includes/options_helptexts.php:117 +msgid "Add RSS feed link in the html head" +msgstr "" + +#: includes/options_helptexts.php:118 +msgid "This option adds a RSS feed in the html head for the events." +msgstr "" + +#: includes/options_helptexts.php:119 +msgid "There are 2 alternatives to include the RSS 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 "" + +#: 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." +msgstr "" + +#: includes/options_helptexts.php:122 +#, php-format +msgid "This option is only valid if the setting %1$s is enabled." +msgstr "" + +#: includes/options_helptexts.php:125 +msgid "Position of the RSS feed link" +msgstr "" + +#: includes/options_helptexts.php:126 +msgid "at the top (above the navigation bar)" +msgstr "" + +#: includes/options_helptexts.php:126 +msgid "between navigation bar and events" +msgstr "" + +#: includes/options_helptexts.php:126 +msgid "at the bottom" +msgstr "" + +#: includes/options_helptexts.php:127 +msgid "" +"This option specifies the position of the RSS feed link in the event list." +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." +msgstr "" + +#: includes/options_helptexts.php:131 +msgid "Align of the RSS feed link" +msgstr "" + +#: includes/options_helptexts.php:132 +msgid "left" +msgstr "" + +#: includes/options_helptexts.php:132 +msgid "center" +msgstr "" + +#: includes/options_helptexts.php:132 +msgid "right" +msgstr "" + +#: includes/options_helptexts.php:133 +msgid "" +"This option specifies the align of the RSS feed link in the event list." +msgstr "" + +#: includes/options_helptexts.php:137 +msgid "Feed link text" +msgstr "" + +#: includes/options_helptexts.php:138 +msgid "" +"This option specifies the caption of the RSS feed link in the event list." +msgstr "" + +#: includes/options_helptexts.php:139 +msgid "" +"Insert an empty text to hide any text if you only want to show the rss " +"image." +msgstr "" + +#: includes/options_helptexts.php:143 +msgid "Feed link image" +msgstr "" + +#: includes/options_helptexts.php:144 +msgid "Show rss image in feed link" +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." +msgstr "" + +#: includes/options_helptexts.php:151 +msgid "Event Category handling" +msgstr "" + +#: includes/options_helptexts.php:152 +msgid "Use Post Categories" +msgstr "" + +#: includes/options_helptexts.php:153 +msgid "" +"Do not maintain seperate categories for the events, and use the existing " +"post categories instead." +msgstr "" + +#: includes/options_helptexts.php:154 +msgid "Attention" +msgstr "" + +#: includes/options_helptexts.php:155 +msgid "" +"This option cannot be changed directly, but you can go to the Event Category" +" switching page from here." +msgstr "" + +#: includes/options.php:40 +msgid "events" +msgstr "" + +#: includes/options.php:41 +msgid "Show content" +msgstr "" + +#: includes/options.php:42 +msgid "Hide content" +msgstr "" + +#: includes/sc_event-list_helptexts.php:7 +msgid "event-id" +msgstr "" + +#: includes/sc_event-list_helptexts.php:8 +#, 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 +msgid "year" +msgstr "" + +#: includes/sc_event-list_helptexts.php:11 +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 +#, 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 +msgid "category slug" +msgstr "" + +#: includes/sc_event-list_helptexts.php:15 +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 +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 +msgid "This attribute defines the initial order of the events." +msgstr "" + +#: includes/sc_event-list_helptexts.php:20 +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 +#, 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 +#, 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 +#, 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 +#, php-format +msgid "See %1$s description if you want to define complex filters." +msgstr "" + +#: includes/sc_event-list_helptexts.php:28 +msgid "category slugs" +msgstr "" + +#: includes/sc_event-list_helptexts.php:29 +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 +#, 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 +#, 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 +msgid "number" +msgstr "" + +#: includes/sc_event-list_helptexts.php:34 +#, 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 +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 +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 +#, 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 +#, 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 +#, 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 +msgid "" +"Find below an overview of the available filterbar items and their options:" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "filterbar item" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:63 +msgid "description" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "item options" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "option values" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "default value" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "option description" +msgstr "" + +#: includes/sc_event-list_helptexts.php:47 +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 +msgid "Add an entry to show all events." +msgstr "" + +#: includes/sc_event-list_helptexts.php:49 +#: includes/sc_event-list_helptexts.php:54 +msgid "Add an entry to show all upcoming events." +msgstr "" + +#: includes/sc_event-list_helptexts.php:50 +#: includes/sc_event-list_helptexts.php:55 +msgid "Add an entry to show events in the past." +msgstr "" + +#: includes/sc_event-list_helptexts.php:51 +msgid "Set descending or ascending order of year entries." +msgstr "" + +#: includes/sc_event-list_helptexts.php:52 +msgid "Show a list of all available months." +msgstr "" + +#: includes/sc_event-list_helptexts.php:56 +msgid "Set descending or ascending order of month entries." +msgstr "" + +#: includes/sc_event-list_helptexts.php:57 +msgid "php date-formats" +msgstr "" + +#: includes/sc_event-list_helptexts.php:57 +msgid "Set the displayed date format of the month entries." +msgstr "" + +#: includes/sc_event-list_helptexts.php:58 +#, 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 +#, 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 +msgid "Show a list of all available categories." +msgstr "" + +#: includes/sc_event-list_helptexts.php:59 +msgid "Add an entry to show events from all categories." +msgstr "" + +#: includes/sc_event-list_helptexts.php:60 +msgid "A link to reset the eventlist filter to standard." +msgstr "" + +#: includes/sc_event-list_helptexts.php:60 +msgid "any text" +msgstr "" + +#: includes/sc_event-list_helptexts.php:60 +msgid "Set the caption of the link." +msgstr "" + +#: includes/sc_event-list_helptexts.php:61 +msgid "Find below an overview of the available filterbar display options:" +msgstr "" + +#: includes/sc_event-list_helptexts.php:63 +msgid "display option" +msgstr "" + +#: includes/sc_event-list_helptexts.php:63 +msgid "available for" +msgstr "" + +#: includes/sc_event-list_helptexts.php:64 +#, 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 +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 +msgid "Shows a simple link which can be clicked." +msgstr "" + +#: includes/sc_event-list_helptexts.php:67 +msgid "Find below some declaration examples with descriptions:" +msgstr "" + +#: includes/sc_event-list_helptexts.php:69 +#, 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 +#, 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 +msgid "option_name" +msgstr "" + +#: includes/sc_event-list_helptexts.php:71 +msgid "value" +msgstr "" + +#: includes/sc_event-list_helptexts.php:72 +#, 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 +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 +#, 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 +msgid "This attribute has no influence if only a single event is shown." +msgstr "" + +#: includes/sc_event-list_helptexts.php:80 +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 +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 +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 +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 +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 +#, php-format +msgid "With the standard value %1$s the full text is displayed." +msgstr "" + +#: includes/sc_event-list_helptexts.php:110 +msgid "" +"This attribute specifies if the content 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 +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" +"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n" +"\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 +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" +"\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 />\n" +"\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 +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 +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 +msgid "Event Information:" +msgstr "" + +#: includes/widget_helptexts.php:10 +msgid "This option defines the displayed title for the widget." +msgstr "" + +#: includes/widget_helptexts.php:15 +msgid "Category Filter" +msgstr "" + +#: includes/widget_helptexts.php:17 +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 +msgid "Number of listed events" +msgstr "" + +#: includes/widget_helptexts.php:24 +msgid "The number of upcoming events to display" +msgstr "" + +#: includes/widget_helptexts.php:29 +msgid "Truncate event title to" +msgstr "" + +#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52 +#: includes/widget_helptexts.php:67 +msgid "characters" +msgstr "" + +#: includes/widget_helptexts.php:31 +msgid "" +"This option defines the number of displayed characters for the event title." +msgstr "" + +#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54 +#, 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 +msgid "Show event starttime" +msgstr "" + +#: includes/widget_helptexts.php:39 +msgid "This option defines if the event start time will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:44 +msgid "Show event location" +msgstr "" + +#: includes/widget_helptexts.php:46 +msgid "This option defines if the event location will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:51 +msgid "Truncate location to" +msgstr "" + +#: includes/widget_helptexts.php:53 +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" +msgstr "" + +#: includes/widget_helptexts.php:61 +msgid "This option defines if the event content will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:66 +msgid "Truncate content to" +msgstr "" + +#: includes/widget_helptexts.php:68 +msgid "" +"If the event content are diplayed this option defines the number of diplayed" +" characters." +msgstr "" + +#: includes/widget_helptexts.php:69 +#, php-format +msgid "Set this value to %1$s to view the full text." +msgstr "" + +#: includes/widget_helptexts.php:74 +msgid "URL to the linked Event List page" +msgstr "" + +#: includes/widget_helptexts.php:76 +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 +msgid "Shortcode ID on linked page" +msgstr "" + +#: includes/widget_helptexts.php:83 +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 +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 +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 +msgid "Caption for the link" +msgstr "" + +#: includes/widget_helptexts.php:104 +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 +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 +msgid "Upcoming events" +msgstr "Kommende begivenheder" + +#: includes/widget.php:38 +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 c4d204c16501772e5a849ed3ba27dc59178f3ddb..bcded04e4b6d5dea8f9f212fe0fe69004d853d71 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 907aae59fdc53f75ca8861ac99738e20377919a0..a552464785c46bed030bb57b73f729668ae703e1 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) 2017 by mibuthu +# Copyright (C) 2018 by mibuthu # This file is distributed under the same license as the corresponding wordpress plugin. # # Translators: @@ -7,13 +7,13 @@ # Lasse Schulz <lasse.schulz@netthelp.de>, 2016 # li rak <romankost@gmx.ch>, 2017 # Marco Schwarzenbach <sp1n@gmx.ch>, 2016 -# mibuthu, 2015,2017 +# 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: 2017-10-08 15:55+0200\n" -"PO-Revision-Date: 2017-10-08 13:59+0000\n" +"POT-Creation-Date: 2018-05-27 12:20+0200\n" +"PO-Revision-Date: 2018-05-27 10:20+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,137 +22,117 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: admin/admin.php:48 -msgid "Event List" -msgstr "Event List" - -#: admin/admin.php:51 admin/includes/admin-main.php:119 -#: admin/includes/category_table.php:113 -msgid "Events" -msgstr "Termine" - -#: admin/admin.php:51 -msgid "All Events" -msgstr "Alle Termine" - -#: admin/admin.php:55 admin/includes/admin-new.php:46 -msgid "Add New Event" -msgstr "Neuen Termin erstellen" - -#: admin/admin.php:55 admin/includes/admin-main.php:121 -msgid "Add New" -msgstr "Erstellen" - -#: admin/admin.php:59 admin/includes/admin-categories.php:48 -msgid "Event List Categories" -msgstr "Event List Kategorien" +#: admin/admin.php:57 +#, php-format +msgid "Errors during upgrade of plugin %1$s" +msgstr "Fehler während des %1$s Plugin Upgrades" -#: admin/admin.php:59 admin/includes/admin-new.php:150 -#: admin/includes/event_table.php:114 -msgid "Categories" -msgstr "Kategorien" +#: admin/admin.php:57 +#, php-format +msgid "Upgrade of plugin %1$s successful" +msgstr "Upgrade des Plugins %1$s erfolgreich" -#: admin/admin.php:63 admin/includes/admin-settings.php:54 +#: admin/admin.php:106 admin/includes/admin-settings.php:65 msgid "Event List Settings" msgstr "Event List Einstellungen" -#: admin/admin.php:63 +#: admin/admin.php:106 msgid "Settings" msgstr "Einstellungen" -#: admin/admin.php:67 admin/includes/admin-about.php:37 +#: admin/admin.php:110 admin/includes/admin-about.php:37 msgid "About Event List" msgstr "Informationen zu Event List" -#: admin/admin.php:67 +#: admin/admin.php:110 msgid "About" msgstr "Informationen" -#: admin/admin.php:87 +#: admin/admin.php:132 #, php-format msgid "%s Event" msgid_plural "%s Events" msgstr[0] "%s Termin" msgstr[1] "%s Termine" -#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:69 +#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 msgid "General" msgstr "Allgemein" -#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77 -#: admin/includes/admin-about.php:104 +#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:105 msgid "Shortcode Attributes" msgstr "Shortcode Attribute" -#: admin/includes/admin-about.php:71 +#: admin/includes/admin-about.php:72 msgid "Help and Instructions" msgstr "Hilfe und Anleitungen" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:73 #, 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:73 +#: admin/includes/admin-about.php:74 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:74 +#: admin/includes/admin-about.php:75 #, 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:75 +#: admin/includes/admin-about.php:76 #, 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:76 +#: admin/includes/admin-about.php:77 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:77 +#: admin/includes/admin-about.php:78 #, 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:78 +#: admin/includes/admin-about.php:79 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:79 +#: admin/includes/admin-about.php:80 #, 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:79 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 msgid "Add links to the single events" msgstr "Füge Links zu den einzelnen Terminen ein" -#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 msgid "Add a link to the Event List page" msgstr "Füge einen Link zur Event List Seite hinzu" -#: admin/includes/admin-about.php:80 +#: admin/includes/admin-about.php:81 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:81 +#: admin/includes/admin-about.php:82 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:82 +#: admin/includes/admin-about.php:83 #, php-format msgid "" "The default value %1$s is normally o.k. (for pages with 1 shortcode only), " @@ -160,506 +140,594 @@ 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:83 +#: admin/includes/admin-about.php:84 #, 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:85 +#: admin/includes/admin-about.php:86 #, 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:85 +#: admin/includes/admin-about.php:86 msgid "Settings page" msgstr "Einstellungs-Seite" -#: admin/includes/admin-about.php:91 +#: admin/includes/admin-about.php:92 msgid "About the plugin author" msgstr "Über den Autor des Plugins" -#: admin/includes/admin-about.php:93 +#: admin/includes/admin-about.php:94 #, 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:93 +#: admin/includes/admin-about.php:94 msgid "wordpress plugin site" msgstr "Wordpress Plugin Seite" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:95 #, 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:94 +#: admin/includes/admin-about.php:95 msgid "wordpress plugin review site" msgstr "Wordpress Plugin-Bewertungsseite" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:96 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:96 admin/includes/admin-about.php:97 -#: admin/includes/admin-about.php:98 +#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 +#: admin/includes/admin-about.php:99 #, php-format msgid "Donate with %1$s" msgstr "Spende über %1$s" -#: admin/includes/admin-about.php:106 +#: admin/includes/admin-about.php:107 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:107 +#: admin/includes/admin-about.php:108 #, 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:109 +#: admin/includes/admin-about.php:110 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:123 +#: admin/includes/admin-about.php:124 msgid "Attribute name" msgstr "Name" -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:125 msgid "Value options" msgstr "zulässige Werte" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:126 msgid "Default value" msgstr "Standard-Wert" -#: admin/includes/admin-about.php:126 admin/includes/admin-categories.php:194 -#: admin/includes/category_table.php:111 +#: admin/includes/admin-about.php:127 msgid "Description" msgstr "Beschreibung" -#: admin/includes/admin-about.php:144 includes/sc_event-list_helptexts.php:26 +#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 #: includes/sc_event-list_helptexts.php:31 msgid "Filter Syntax" msgstr "Filter Syntax" -#: admin/includes/admin-about.php:145 +#: admin/includes/admin-about.php:146 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:146 +#: admin/includes/admin-about.php:147 #, 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:146 +#: admin/includes/admin-about.php:147 msgid "AND" msgstr "UND" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "OR" msgstr "ODER" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "or" msgstr "oder" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "and" msgstr "und" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:148 msgid "Examples for cat filters:" msgstr "Beispiele für Kategorie-Filter:" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:149 #, php-format msgid "Show all events with category %1$s." msgstr "Zeige alle Termine mit der Kategorie %1$s." -#: admin/includes/admin-about.php:149 +#: admin/includes/admin-about.php:150 #, 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:150 +#: admin/includes/admin-about.php:151 #, 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:155 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 msgid "Available Date Formats" msgstr "Verfügbare Datumsformate" -#: admin/includes/admin-about.php:156 +#: admin/includes/admin-about.php:157 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:164 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 msgid "Available Date Range Formats" msgstr "Verfügbare Datumsbereichs-Formate" -#: admin/includes/admin-about.php:165 +#: admin/includes/admin-about.php:166 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:177 +#: admin/includes/admin-about.php:178 msgid "Value" msgstr "Wert" -#: admin/includes/admin-about.php:181 +#: admin/includes/admin-about.php:182 msgid "Example" msgstr "Beispiel" -#: admin/includes/admin-categories.php:51 -msgid "Edit Category" -msgstr "Kategorie bearbeiten" - -#: admin/includes/admin-categories.php:51 -msgid "Update Category" -msgstr "Kategorie aktualisieren" - -#: admin/includes/admin-categories.php:57 -msgid "Add New Category" -msgstr "Neue Kategorie erstellen" +#: admin/includes/admin-categories.php:38 +msgid "Synchronize with post categories" +msgstr "Synchronisation mit den Beitrags-Kategorien" -#: admin/includes/admin-categories.php:84 +#: admin/includes/admin-categories.php:46 #, php-format -msgid "Category \"%s\" deleted." -msgstr "Kategorie \"%s\" gelöscht." +msgid "%1$s categories modified (%2$s)" +msgstr "%1$s Kategorien geändert (%2$s)" -#: admin/includes/admin-categories.php:86 +#: admin/includes/admin-categories.php:47 #, php-format -msgid "This Category was also removed from %d events." -msgstr "Diese Kategorie wurde zudem aus %d Terminen gelöscht." +msgid "%1$s categories added (%2$s)" +msgstr "%1$s Kategorien erstellt (%2$s)" -#: admin/includes/admin-categories.php:92 +#: admin/includes/admin-categories.php:48 #, php-format -msgid "Error while deleting category \"%s\"" -msgstr "Fehler beim Löschen der Kategorie \"%s\"" +msgid "%1$s categories deleted (%2$s)" +msgstr "%1$s Kategorien gelöscht (%2$s)" -#: admin/includes/admin-categories.php:103 -msgid "Sync with post categories enabled." -msgstr "Synchronisation mit Artikel-Kategorien ist aktiviert." - -#: admin/includes/admin-categories.php:106 -msgid "Sync with post categories disabled." -msgstr "Synchronisation mit Artikel-Kategorien ist deaktiviert." - -#: admin/includes/admin-categories.php:112 -msgid "Manual sync with post categories sucessfully finished." -msgstr "Manuelle Synchronisation mit Artikelkategorien wurde erfolgreich durchgeführt." - -#: admin/includes/admin-categories.php:125 +#: admin/includes/admin-categories.php:50 #, php-format -msgid "New Category \"%s\" was added" -msgstr "Neue Kategorie \"%s\" wurde hinzugefügt" +msgid "%1$s categories not modified (%2$s)" +msgstr "%1$s Kategorien nicht geändert (%2$s)" -#: admin/includes/admin-categories.php:128 +#: admin/includes/admin-categories.php:51 #, php-format -msgid "Error: New Category \"%s\" could not be added" -msgstr "Fehler: Neue Kategorie \"%s\" konnte nicht hinzugefügt werden" +msgid "%1$s categories not added (%2$s)" +msgstr "%1$s Kategorien nicht erstellt (%2$s)" -#: admin/includes/admin-categories.php:134 +#: admin/includes/admin-categories.php:52 #, php-format -msgid "Category \"%s\" was modified" -msgstr "Kategorie \"%s\" wurde geändert" +msgid "%1$s categories not deleted (%2$s)" +msgstr "%1$s Kategorien nicht gelöscht (%2$s)" -#: admin/includes/admin-categories.php:137 -#, php-format -msgid "Error: Category \"%s\" could not be modified" -msgstr "Fehler: Kagegorie \"%s\" konnte nicht geändert werden" +#: admin/includes/admin-categories.php:55 +msgid "An Error occured during the category sync" +msgstr "Während der Kategorie-Synchronisation ist ein Fehler aufgetreten" -#: admin/includes/admin-categories.php:144 -msgid "Categories are automatically synced with the post categories." -msgstr "Die Kategorien werden automatisch mit den Beitrags-Kategorien synchronisiert." +#: admin/includes/admin-categories.php:59 +msgid "Category sync finished" +msgstr "Kategorie-Synchronisation abgeschlossen" -#: admin/includes/admin-categories.php:145 +#: admin/includes/admin-category-sync.php:45 +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 +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 +msgid "Switch option to seperate Event Categories" +msgstr "Ändere Einstellung zur Verwendung separater Termin-Kategorien" + +#: admin/includes/admin-category-sync.php:64 msgid "" -"Because of this all options to add new categories or editing existing " -"categories are disabled." -msgstr "Deshalb sind alle Einstellungen zum Hinzufügen neuer bzw. zum Editieren bestehender Kategorien deaktiviert." +"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-categories.php:146 +#: admin/includes/admin-category-sync.php:65 msgid "" -"If you want to manually edit the categories you have to disable this option." -msgstr "Wenn die Termin-Kategorien manuell angepasst werden sollen,dann muss diese Option deaktiviert werden." +"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-categories.php:173 -msgid "The name is how it appears on your site." -msgstr "Dieser Name wird dann auf der Webseite angezeigt." +#: admin/includes/admin-category-sync.php:68 +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-categories.php:178 +#: admin/includes/admin-category-sync.php:69 +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 msgid "" -"The “slug” is the URL-friendly version of the name. It is usually all " -"lowercase and contains only letters, numbers, and hyphens." -msgstr "Die \"Titelform (in URLs)\" ist die URL-Variante des Namens. Sie besteht normalerweise nur aus Kleinbuchstaben, Zahlen und Bindestrichen." +"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 +msgid "Event Categories: Synchronise with Post Categories" +msgstr "Termin-Kategorien: Synchronisiere mit Beitrags-Kategorien" -#: admin/includes/admin-categories.php:191 +#: admin/includes/admin-category-sync.php:74 +msgid "Start synchronisation" +msgstr "Starte Synchronisation" + +#: admin/includes/admin-category-sync.php:75 msgid "" -"Categories can have a hierarchy. You might have a Jazz category, and under " -"that have children categories for Bebop and Big Band. Totally optional." -msgstr "Kategorien können hierarchisch angeordnet werden. Du kannst z.Bsp. eine Kategorie Musik anlegen, welche die Unterkategorien Schlager und Jazz enthält." +"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 +msgid "Categories to modify" +msgstr "Kategorien, die geändert werden" + +#: admin/includes/admin-category-sync.php:91 +msgid "Categories to add" +msgstr "Kategorien, die hinzugefügt werden" + +#: admin/includes/admin-category-sync.php:92 +msgid "Categories to delete (optional)" +msgstr "Kategorien, die gelöscht werden (optional)" + +#: admin/includes/admin-category-sync.php:93 +msgid "Delete not available post categories" +msgstr "Lösche nicht verfügbare Beitrags-Kategorien" + +#: admin/includes/admin-category-sync.php:97 +msgid "Categories with differences" +msgstr "Kategorien, die unterschiedlich sind" -#: admin/includes/admin-categories.php:241 -msgid "Apply" -msgstr "Anwenden" +#: admin/includes/admin-category-sync.php:98 +msgid "Categories to add (optional)" +msgstr "Kategorien, die hinzugefügt werden (optional)" -#: admin/includes/admin-categories.php:251 -msgid "Do a manual sync with post categories" -msgstr "Führe eine manuelle Synchronisation mit den Beitragskategorien durch" +#: admin/includes/admin-category-sync.php:99 +msgid "Add not available post categories" +msgstr "Ergänze nicht verfügbare Beitrags-Kategorien" -#: admin/includes/admin-import.php:45 +#: admin/includes/admin-category-sync.php:117 +msgid "none" +msgstr "keine" + +#: admin/includes/admin-import.php:49 msgid "Import Events" msgstr "Importiere Termine" -#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:118 +#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:198 msgid "Step" msgstr "Schritt" -#: admin/includes/admin-import.php:65 +#: admin/includes/admin-import.php:69 msgid "Set import file and options" msgstr "Datei und Optionen zum Importieren wählen" -#: admin/includes/admin-import.php:68 +#: admin/includes/admin-import.php:72 #, php-format msgid "Proceed with Step %1$s" msgstr "Weiter zu Schritt %1$s" -#: admin/includes/admin-import.php:71 +#: admin/includes/admin-import.php:75 msgid "Example file" msgstr "Beispieldatei" -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:76 #, 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:73 +#: admin/includes/admin-import.php:77 msgid "Note" msgstr "Achtung" -#: admin/includes/admin-import.php:73 +#: admin/includes/admin-import.php:77 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:80 admin/includes/admin-import.php:88 -#: admin/includes/admin-import.php:101 +#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 msgid "Sorry, there has been an error." msgstr "Entschuldigung, ein Fehler ist aufgetreten." -#: admin/includes/admin-import.php:81 +#: admin/includes/admin-import.php:85 msgid "The file does not exist, please try again." msgstr "Die Datei existiert nicht, bitte erneut versuchen." -#: admin/includes/admin-import.php:89 -msgid "The file is not a CSV file." -msgstr "Bei dieser Datei handelt es sich nicht um eine gültige CSV-Datei." +#: admin/includes/admin-import.php:93 +msgid "The uploaded file does not have the required csv extension." +msgstr "" -#: admin/includes/admin-import.php:118 +#: admin/includes/admin-import.php:105 msgid "Events review and additonal category selection" msgstr "Eventüberprüfung und zusätzliche Kategorieauswahl" -#: admin/includes/admin-import.php:121 +#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +msgid "Error" +msgstr "" + +#: admin/includes/admin-import.php:111 +msgid "This CSV file cannot be imported" +msgstr "" + +#: admin/includes/admin-import.php:122 +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 +msgid "Warning" +msgstr "" + +#: admin/includes/admin-import.php:126 +#, 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 +#, php-format +msgid "CSV line %1$s" +msgstr "" + +#: admin/includes/admin-import.php:144 +msgid "You can still import all other events listed below." +msgstr "" + +#: admin/includes/admin-import.php:163 msgid "" -"Warning: The following category slugs are not available and will be removed " -"from the imported events:" -msgstr "Warning: Die folgenden Kategorie-Slugs sind nicht verfügbar und werden aus den importierten Terminen entfernt:" +"The following category slugs are not available and will be removed from the " +"imported events" +msgstr "" -#: admin/includes/admin-import.php:127 +#: admin/includes/admin-import.php:169 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:145 -msgid "Add additional categories" -msgstr "Kategorien ergänzen" - -#: admin/includes/admin-import.php:146 -msgid "Import events" -msgstr "Importiere die Termine" - -#: admin/includes/admin-import.php:160 -msgid "Import with errors!" -msgstr "Import mit Fehler!" - -#: admin/includes/admin-import.php:161 -msgid "Sorry, an error occurred during import!" -msgstr "Entschuldigung, während des Imports ist ein Fehler aufgetreten!" +#: admin/includes/admin-import.php:198 +msgid "Import result" +msgstr "" -#: admin/includes/admin-import.php:165 -msgid "Import successful!" -msgstr "Importieren erfolgreich abgeschlossen!" +#: admin/includes/admin-import.php:201 +#, php-format +msgid "Import of %1$s events successful!" +msgstr "" -#: admin/includes/admin-import.php:166 +#: admin/includes/admin-import.php:202 msgid "Go back to All Events" msgstr "Gehe zurück zu Alle Termine" -#: admin/includes/admin-import.php:173 admin/includes/admin-new.php:111 -#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:206 +msgid "Errors during Import" +msgstr "" + +#: admin/includes/admin-import.php:215 +msgid "Event from CSV-line" +msgstr "" + +#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 +#: includes/widget_helptexts.php:8 msgid "Title" msgstr "Titel" -#: admin/includes/admin-import.php:174 +#: admin/includes/admin-import.php:227 msgid "Start Date" msgstr "Start-Datum" -#: admin/includes/admin-import.php:175 +#: admin/includes/admin-import.php:228 msgid "End Date" msgstr "End-Datum" -#: admin/includes/admin-import.php:176 admin/includes/admin-new.php:124 -#: includes/options_helptexts.php:48 includes/options_helptexts.php:49 +#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 +#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 msgid "Time" msgstr "Uhrzeit" -#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:128 -#: admin/includes/event_table.php:112 includes/options_helptexts.php:53 -#: includes/options_helptexts.php:54 +#: 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 msgid "Location" msgstr "Ort" -#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:132 -#: admin/includes/event_table.php:113 -msgid "Details" -msgstr "Beschreibung" +#: admin/includes/admin-import.php:231 +msgid "Content" +msgstr "Inhalt" -#: admin/includes/admin-import.php:179 +#: admin/includes/admin-import.php:232 msgid "Category slugs" msgstr "Kategorie-Slugs" -#: admin/includes/admin-import.php:218 +#: admin/includes/admin-import.php:274 +msgid "Header line is missing or not correct!" +msgstr "" + +#: admin/includes/admin-import.php:275 #, php-format msgid "" -"There was an error at line %1$s when reading this CSV file: Header line is " -"missing or not correct!" -msgstr "Fehler beim Lesen der CSV-Datei in Zeile %1$s: Header-Zeile fehlt oder ist nicht korrekt!" +"Have a look at the %1$sexample file%2$s to see the correct header line " +"format." +msgstr "" + +#: admin/includes/admin-import.php:281 +#, php-format +msgid "Wrong number of items in line (%1$s items found, 6-7 required)" +msgstr "" + +#: admin/includes/admin-import.php:309 +msgid "Empty event title found" +msgstr "" + +#: admin/includes/admin-import.php:315 +msgid "Wrong date format for startdate" +msgstr "" + +#: admin/includes/admin-import.php:324 +msgid "Wrong date format for enddate" +msgstr "" -#: admin/includes/admin-import.php:253 admin/includes/admin-main.php:122 +#: admin/includes/admin-import.php:365 +msgid "Import events" +msgstr "Importiere die Termine" + +#: admin/includes/admin-import.php:366 +msgid "Add additional categories" +msgstr "Kategorien ergänzen" + +#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 msgid "Import" msgstr "Importieren" -#: admin/includes/admin-main.php:116 -msgid "Edit Event" -msgstr "Termin bearbeiten" +#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +msgid "No events found" +msgstr "Keine Termine gefunden" + +#: admin/includes/admin-import.php:432 +msgid "Saving of event failed!" +msgstr "" -#: admin/includes/admin-main.php:116 admin/includes/event_table.php:75 -msgid "Duplicate" -msgstr "Duplizieren" +#: admin/includes/admin-main.php:60 +msgid "Event Date" +msgstr "Termin-Datum" -#: admin/includes/admin-new.php:48 +#: admin/includes/admin-main.php:64 +msgid "Author" +msgstr "Autor" + +#: admin/includes/admin-main.php:126 #, php-format -msgid "Duplicate of event id:%d" -msgstr "Duplikat der Termin-ID: %d" +msgid "Add a copy of %1$s" +msgstr "Erstelle eine Kopie von %1$s" -#: admin/includes/admin-new.php:111 admin/includes/admin-new.php:115 -msgid "required" -msgstr "erforderlich" +#: admin/includes/admin-main.php:126 +msgid "Copy" +msgstr "Kopieren" + +#: admin/includes/admin-new.php:51 +msgid "Event data" +msgstr "Termin-Daten" -#: admin/includes/admin-new.php:115 admin/includes/event_table.php:110 +#: admin/includes/admin-new.php:80 +msgid "Add Copy" +msgstr "Kopie erstellen" + +#: admin/includes/admin-new.php:84 msgid "Date" msgstr "Datum" -#: admin/includes/admin-new.php:118 +#: admin/includes/admin-new.php:84 +msgid "required" +msgstr "erforderlich" + +#: admin/includes/admin-new.php:87 msgid "Multi-Day Event" msgstr "Mehrtägiger Termin" -#: admin/includes/admin-new.php:148 admin/includes/admin-new.php:165 -msgid "Publish" -msgstr "Veröffentlichen" +#: admin/includes/admin-new.php:106 +msgid "Event Title" +msgstr "Termin-Titel" -#: admin/includes/admin-new.php:165 -msgid "Update" -msgstr "Aktualisieren" +#: admin/includes/admin-new.php:121 +msgid "Event Content" +msgstr "Termin-Inhalt" -#: admin/includes/admin-new.php:167 -msgid "Cancel" -msgstr "Abbrechen" +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +msgid "Event updated." +msgstr "Termin aktualisiert." -#: admin/includes/admin-new.php:180 -msgid "No categories available." -msgstr "Keine Kategorien verfügbar." +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +msgid "View event" +msgstr "Termin anzeigen" -#: admin/includes/admin-new.php:226 -msgid "Goto Category Settings" -msgstr "Gehe zu Kategorie-Einstellungen" +#: admin/includes/admin-new.php:184 +#, php-format +msgid "Event restored to revision from %1$s" +msgstr "Termin wiederhergestellt mit Revision von %1$s" -#: admin/includes/admin-settings.php:42 -msgid "Settings saved." -msgstr "Einstellungen gespeichert." +#: admin/includes/admin-new.php:185 +msgid "Event published." +msgstr "Termin veröffentlicht." -#: admin/includes/admin-settings.php:70 +#: admin/includes/admin-new.php:187 +msgid "Event submitted." +msgstr "Termin eingereicht." + +#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 +#: admin/includes/admin-new.php:190 +msgid "Preview event" +msgstr "Termin-Vorschau anzeigen" + +#: admin/includes/admin-new.php:188 +#, php-format +msgid "Event scheduled for: %1$s>" +msgstr "Termin eingeplant für: %1$s" + +#: admin/includes/admin-new.php:190 +msgid "Event draft updated." +msgstr "Termin-Entwurf aktualisiert." + +#: admin/includes/admin-settings.php:71 +msgid "Go to Event Category switching page" +msgstr "Gehe zur Wechel-Seite für die Termin-Kategorien" + +#: admin/includes/admin-settings.php:83 msgid "Frontend Settings" msgstr "Frontend Einstellungen" -#: admin/includes/admin-settings.php:71 +#: admin/includes/admin-settings.php:84 msgid "Admin Page Settings" msgstr "Admin-Seiten Einstellungen" -#: admin/includes/admin-settings.php:72 +#: admin/includes/admin-settings.php:85 msgid "Feed Settings" msgstr "Feed Einstellungen" -#: admin/includes/category_table.php:27 admin/includes/event_table.php:29 -msgid "event" -msgstr "Termin" - -#: admin/includes/category_table.php:28 admin/includes/event_table.php:30 -msgid "events" -msgstr "Termine" - -#: admin/includes/category_table.php:73 admin/includes/event_table.php:74 -msgid "Edit" -msgstr "Bearbeiten" - -#: admin/includes/category_table.php:74 admin/includes/category_table.php:148 -#: admin/includes/event_table.php:76 admin/includes/event_table.php:149 -msgid "Delete" -msgstr "Löschen" - -#: admin/includes/category_table.php:110 -msgid "Name" -msgstr "Name" - -#: admin/includes/category_table.php:112 -msgid "Slug" -msgstr "Slug" - -#: admin/includes/event_table.php:115 -msgid "Author" -msgstr "Autor" - -#: admin/includes/event_table.php:116 -msgid "Published" -msgstr "Veröffentlicht" - -#: admin/includes/event_table.php:180 -msgid "Filter" -msgstr "Auswahl einschränken" - -#: admin/includes/event_table.php:300 -#, php-format -msgid "%s ago" -msgstr "vor %s" +#: admin/includes/admin-settings.php:86 +msgid "Category Taxonomy" +msgstr "Kategorie-Taxonomie" #: includes/daterange_helptexts.php:7 msgid "Year" @@ -804,7 +872,7 @@ msgstr "Dieser Wert definiert einen Datumsbereich ohne jede Grenze." msgid "The corresponding date_range format is: %1$s" msgstr "Der gleichbedeutende Datumsbereich lautet: %1$s" -#: includes/daterange_helptexts.php:59 includes/filterbar.php:291 +#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 msgid "Upcoming" msgstr "Anstehend" @@ -812,7 +880,7 @@ msgstr "Anstehend" 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:295 +#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 msgid "Past" msgstr "Beendet" @@ -820,146 +888,238 @@ msgstr "Beendet" 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/filterbar.php:233 includes/sc_event-list_helptexts.php:60 +#: includes/event.php:107 +msgid "No valid start date provided" +msgstr "Kein gültiges Start-Datum angegeben" + +#: includes/events_post_type.php:60 +msgid "Events" +msgstr "Termine" + +#: includes/events_post_type.php:61 +msgid "Event" +msgstr "Termin" + +#: includes/events_post_type.php:62 +msgid "Add New" +msgstr "Erstellen" + +#: includes/events_post_type.php:63 +msgid "Add New Event" +msgstr "Neuen Termin erstellen" + +#: includes/events_post_type.php:64 +msgid "Edit Event" +msgstr "Termin bearbeiten" + +#: includes/events_post_type.php:65 +msgid "New Event" +msgstr "Neuer Termin" + +#: includes/events_post_type.php:66 +msgid "View Event" +msgstr "Termin anzeigen" + +#: includes/events_post_type.php:67 +msgid "View Events" +msgstr "Termine anzeigen" + +#: includes/events_post_type.php:68 +msgid "Search Events" +msgstr "Termine durchsuchen" + +#: includes/events_post_type.php:70 +msgid "No events found in Trash" +msgstr "Keine Termine im Papierkorb gefunden" + +#: includes/events_post_type.php:72 +msgid "All Events" +msgstr "Alle Termine" + +#: includes/events_post_type.php:73 +msgid "Event Archives" +msgstr "Termin-Archiv" + +#: includes/events_post_type.php:74 +msgid "Event Attributes" +msgstr "Termin Attribute" + +#: includes/events_post_type.php:75 +msgid "Insert into event" +msgstr "Im Termin einfügen" + +#: includes/events_post_type.php:76 +msgid "Uploaded to this event" +msgstr "Zu diesem Termin hochgeladen" + +#: includes/events_post_type.php:77 +msgid "Event List" +msgstr "Event List" + +#: includes/events_post_type.php:78 +msgid "Filter events list" +msgstr "Termin-Liste filtern" + +#: includes/events_post_type.php:79 +msgid "Events list navigation" +msgstr "Termin-Listen-Navigation" + +#: includes/events_post_type.php:80 +msgid "Events list" +msgstr "Termin-Liste" + +#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 msgid "Reset" msgstr "Zurücksetzen" -#: includes/filterbar.php:282 +#: includes/filterbar.php:278 msgid "All" msgstr "Alle" -#: includes/filterbar.php:285 -msgid "Show all dates" -msgstr "Zeige alle Datumsbereiche" - -#: includes/filterbar.php:285 -msgid "Show all categories" -msgstr "Zeige alle Kategorien" +#: includes/filterbar.php:281 +msgid "All Dates" +msgstr "Alle Datumsbereiche" -#: includes/options_helptexts.php:11 -msgid "Sync Categories" -msgstr "Synchronisiere Kategorien" +#: includes/options_helptexts.php:10 +msgid "CSV File to import" +msgstr "Zu importierende CSV-Datei" #: includes/options_helptexts.php:12 -msgid "Keep event categories in sync with post categories automatically" -msgstr "Halte die Termin-Kategorien mit den Beitragskategorien automatisch synchron" +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:13 -msgid "Attention" -msgstr "Achtung" +#: includes/options_helptexts.php:15 +msgid "Used date format" +msgstr "Verwendetes Datumsformat" -#: includes/options_helptexts.php:14 +#: includes/options_helptexts.php:17 msgid "" -"Please note that this option will delete all categories which are not " -"available in the post categories! Existing Categories with the same slug " -"will be updated." -msgstr "Bitte beachte, dass diese Option alle Kategorien, welche nicht als Beitragskategorien verfügbar sind, gelöscht werden! Existierende Kategorien mit gleichem Permalink werden aktualisiert." +"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 -msgid "CSV File to import" -msgstr "Zu importierende CSV-Datei" +#, 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 -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." +msgid "full year representation, with 4 digits" +msgstr "" -#: includes/options_helptexts.php:23 -msgid "Used date format" -msgstr "Verwendetes Datumsformat" +#: includes/options_helptexts.php:21 +msgid "numeric representation of a month, with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:22 +msgid "day of the month, 2 digits with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:24 +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 msgid "" -"With this option the used date format for event start and end date given in " -"the CSV file can be specified." -msgstr "Mit dieser Option kann das in der CSV-Datei benutzte Datumsformat für das Termin-Start- und das Termin-End-Datum definiert werden." +"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:29 +#: includes/options_helptexts.php:26 +msgid "Examples" +msgstr "" + +#: includes/options_helptexts.php:33 msgid "Text for no events" msgstr "Text für keine Termine" -#: includes/options_helptexts.php:31 +#: includes/options_helptexts.php:35 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:34 +#: includes/options_helptexts.php:38 msgid "Multiday filter range" msgstr "Mehrtägiger Bereich für Filter" -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:39 msgid "Use the complete event range in the date filter" msgstr "Verwende den kompletten Terminbereich für den Datumsfilter" -#: includes/options_helptexts.php:36 +#: includes/options_helptexts.php:40 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:37 +#: includes/options_helptexts.php:41 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:38 +#: includes/options_helptexts.php:42 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:41 +#: includes/options_helptexts.php:45 msgid "Date display" msgstr "Datumsanzeige" -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:46 msgid "Show the date only once per day" msgstr "Zeige das Datum nur einmal pro Tag" -#: includes/options_helptexts.php:43 +#: includes/options_helptexts.php:47 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:44 +#: includes/options_helptexts.php:48 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:47 +#: includes/options_helptexts.php:51 msgid "HTML tags" msgstr "HTML-Tags" -#: includes/options_helptexts.php:48 includes/options_helptexts.php:53 +#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 #, 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:49 includes/options_helptexts.php:54 +#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 #, 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:57 +#: includes/options_helptexts.php:61 msgid "Preferred language file" msgstr "Bevorzugte Sprachdatei" -#: includes/options_helptexts.php:58 +#: includes/options_helptexts.php:62 msgid "Load translations from general language directory first" msgstr "Lade zuerst die Übersetzungen aus dem generellen Sprachverzeichnis" -#: includes/options_helptexts.php:59 +#: includes/options_helptexts.php:63 #, 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:60 +#: includes/options_helptexts.php:64 #, php-format msgid "" "If you want to load your own language file from the general language " @@ -967,252 +1127,289 @@ 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:64 -msgid "Text for \"Show details\"" -msgstr "Text für \"Zeige Beschreibung\"" +#: includes/options_helptexts.php:68 +msgid "Events permalink slug" +msgstr "" + +#: includes/options_helptexts.php:69 +msgid "" +"With this option the slug for the events permalink URLs can be defined." +msgstr "" + +#: includes/options_helptexts.php:72 +msgid "Text for \"Show content\"" +msgstr "" -#: includes/options_helptexts.php:65 +#: includes/options_helptexts.php:73 msgid "" -"With this option the displayed text for the link to show the event details " +"With this option the displayed text for the link to show the event content " "can be changed, when collapsing is enabled." -msgstr "Mit dieser Einstellung kann der angezeigte Text für den Link zum Anzeigen der Termin-Beschreibung geändert werden, wenn das Einklappen der Termin-Beschreibung aktiviert ist." +msgstr "" -#: includes/options_helptexts.php:68 -msgid "Text for \"Hide details\"" -msgstr "Text für \"Verstecke Beschreibung\"" +#: includes/options_helptexts.php:76 +msgid "Text for \"Hide content\"" +msgstr "" -#: includes/options_helptexts.php:69 +#: includes/options_helptexts.php:77 msgid "" -"With this option the displayed text for the link to hide the event details " +"With this option the displayed text for the link to hide the event content " "can be changed, when collapsing is enabled." -msgstr "Mit dieser Einstellung kann der angezeigte Text für den Link zum Verstecken der Termin-Beschreibung geändert werden, wenn das Einklappen der Termin-Beschreibung aktiviert ist." +msgstr "" -#: includes/options_helptexts.php:72 +#: includes/options_helptexts.php:80 msgid "Disable CSS file" msgstr "Deaktiviere die CSS-Datei" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:81 #, php-format msgid "Disable the %1$s file." msgstr "Deaktiviere die %1$s Datei." -#: includes/options_helptexts.php:74 +#: includes/options_helptexts.php:82 #, 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:75 +#: includes/options_helptexts.php:83 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:79 +#: includes/options_helptexts.php:87 msgid "Date format in edit form" msgstr "Datumsformat im Formular" -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:88 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:81 +#: includes/options_helptexts.php:89 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:82 +#: includes/options_helptexts.php:90 #, 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:86 includes/options_helptexts.php:114 +#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 msgid "Enable RSS feed" msgstr "RSS feed aktivieren" -#: includes/options_helptexts.php:87 +#: 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:88 +#: 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:89 +#: includes/options_helptexts.php:97 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:92 +#: includes/options_helptexts.php:100 msgid "Feed name" msgstr "Feed-Name" -#: includes/options_helptexts.php:93 +#: 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:94 +#: 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:97 +#: includes/options_helptexts.php:105 msgid "Feed Description" msgstr "Feed-Beschreibung" -#: includes/options_helptexts.php:98 +#: 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:99 +#: 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:102 +#: includes/options_helptexts.php:110 msgid "Listed events" msgstr "Anzuzeigende Termine" -#: includes/options_helptexts.php:103 +#: includes/options_helptexts.php:111 msgid "Only show upcoming events in feed" msgstr "Zeige nur anstehende Termine im Feed an" -#: includes/options_helptexts.php:104 +#: 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:105 +#: 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:108 +#: 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:109 +#: 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:110 +#: 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:111 +#: 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:112 +#: 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:113 +#: 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." 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:114 +#: 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." -#: includes/options_helptexts.php:117 +#: includes/options_helptexts.php:125 msgid "Position of the RSS feed link" msgstr "Position des RSS feed Links" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "at the top (above the navigation bar)" msgstr "oben (über der Navigationsleiste)" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "between navigation bar and events" msgstr "zwischen Navigationsleiste und Terminliste" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "at the bottom" msgstr "unterhalb der Terminliste" -#: includes/options_helptexts.php:119 +#: includes/options_helptexts.php:127 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:120 includes/options_helptexts.php:126 -#: includes/options_helptexts.php:132 includes/options_helptexts.php:138 +#: 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:123 +#: includes/options_helptexts.php:131 msgid "Align of the RSS feed link" msgstr "Ausrichtung des RSS-Feed-Links" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "left" msgstr "links" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "center" msgstr "mittig" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "right" msgstr "rechts" -#: includes/options_helptexts.php:125 +#: includes/options_helptexts.php:133 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:129 +#: includes/options_helptexts.php:137 msgid "Feed link text" msgstr "Feed Link Text" -#: includes/options_helptexts.php:130 +#: includes/options_helptexts.php:138 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." -#: includes/options_helptexts.php:131 +#: includes/options_helptexts.php:139 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." -#: includes/options_helptexts.php:135 +#: includes/options_helptexts.php:143 msgid "Feed link image" msgstr "Bild für den Feed-Link" -#: includes/options_helptexts.php:136 +#: 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:137 +#: 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." msgstr "Diese Einstellung definiert ein Bild, das im Feed-Link links von der Beschriftung angezeigt wird." -#: includes/options.php:43 -msgid "Show details" -msgstr "Zeige Beschreibung" +#: includes/options_helptexts.php:151 +msgid "Event Category handling" +msgstr "" + +#: includes/options_helptexts.php:152 +msgid "Use Post Categories" +msgstr "" + +#: includes/options_helptexts.php:153 +msgid "" +"Do not maintain seperate categories for the events, and use the existing " +"post categories instead." +msgstr "" + +#: includes/options_helptexts.php:154 +msgid "Attention" +msgstr "Achtung" -#: includes/options.php:44 -msgid "Hide details" -msgstr "Verstecke Beschreibung" +#: includes/options_helptexts.php:155 +msgid "" +"This option cannot be changed directly, but you can go to the Event Category" +" switching page from here." +msgstr "" + +#: includes/options.php:40 +msgid "events" +msgstr "" + +#: includes/options.php:41 +msgid "Show content" +msgstr "" + +#: includes/options.php:42 +msgid "Hide content" +msgstr "" #: includes/sc_event-list_helptexts.php:7 msgid "event-id" @@ -1222,9 +1419,9 @@ msgstr "Termin-ID" #, 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-details view of " +"%1$s) is provided for this attribute, directly the event-content view of " "this event is shown." -msgstr "Standardmäßig wird anfänglich die Termin-Liste angezeigt. Wenn bei diesem Parameter aber eine Termin-ID (z.B. %1$s) angegeben wird, dann wird direkt die Termin-Detailansicht dieses Termins angezeigt." +msgstr "" #: includes/sc_event-list_helptexts.php:10 #: includes/sc_event-list_helptexts.php:22 @@ -1578,16 +1775,16 @@ msgstr "" #: includes/sc_event-list_helptexts.php:100 msgid "" -"This attribute specifies if the details are displayed in the event list.<br />\n" -"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n" -"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event" +"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 msgid "" -"This attribute specifies if the details should be truncate to the given " +"This attribute specifies if the content should be truncate to the given " "number of characters in the event list." -msgstr "Dieses Attribut bestimmt, ob die Beschreibung in der Terminliste auf die angegebene Anzahl Zeichen gekürzt werden soll." +msgstr "" #: includes/sc_event-list_helptexts.php:106 #, php-format @@ -1596,10 +1793,10 @@ msgstr "Mit der Grundeinstellung %1$s wird der gesamte Text angezeigt." #: includes/sc_event-list_helptexts.php:110 msgid "" -"This attribute specifies if the details should be collapsed initially.<br />\n" -"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n" -"\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the details.<br />\n" -"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view." +"This attribute specifies if the content 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 @@ -1607,7 +1804,7 @@ 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" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n" -"\t With \"events_with_details_only\" the link is only added in the event list for events with event details." +"\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 @@ -1632,7 +1829,7 @@ msgid "" "\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:134 +#: includes/sc_event-list.php:135 msgid "Event Information:" msgstr "Termin Informationen:" @@ -1709,22 +1906,22 @@ msgid "" msgstr "Wenn die Termin-Ort angezeigt wird, dann legt diese Option die Anzahl der angezeigten Buchstaben fest." #: includes/widget_helptexts.php:59 -msgid "Show event details" -msgstr "Zeige die Termin-Beschreibung" +msgid "Show event content" +msgstr "" #: includes/widget_helptexts.php:61 -msgid "This option defines if the event details will be displayed." -msgstr "Diese Option definiert, ob die Beschreibung des Termins angezeigt wird." +msgid "This option defines if the event content will be displayed." +msgstr "" #: includes/widget_helptexts.php:66 -msgid "Truncate details to" -msgstr "Kürze Beschreibung auf" +msgid "Truncate content to" +msgstr "" #: includes/widget_helptexts.php:68 msgid "" -"If the event details are diplayed this option defines the number of diplayed" +"If the event content are diplayed this option defines the number of diplayed" " characters." -msgstr "Wenn die Termin-Beschreibung angezeigt wird, dann legt diese Option die Anzahl der angezeigten Buchstaben fest." +msgstr "" #: includes/widget_helptexts.php:69 #, php-format 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 054bb64a8ebb3c1dc4d28245bae0780a9fb6ff22..a24cdcd97e4521d39e3252a739671009b3b25cab 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 aa062d4cb571a59fa73fd16122742e540ee3cfd2..3f350f6ea9373bb02211440ab4917e62dcc806cc 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) 2017 by mibuthu +# Copyright (C) 2018 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: 2017-10-08 15:55+0200\n" -"PO-Revision-Date: 2017-10-08 13:55+0000\n" +"POT-Creation-Date: 2018-05-27 12:20+0200\n" +"PO-Revision-Date: 2018-05-27 10:20+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,137 +18,117 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: admin/admin.php:48 -msgid "Event List" -msgstr "Listado de Eventos" - -#: admin/admin.php:51 admin/includes/admin-main.php:119 -#: admin/includes/category_table.php:113 -msgid "Events" -msgstr "Eventos" - -#: admin/admin.php:51 -msgid "All Events" -msgstr "Todos los Eventos" - -#: admin/admin.php:55 admin/includes/admin-new.php:46 -msgid "Add New Event" -msgstr "Agregar un Nuevo Evento" - -#: admin/admin.php:55 admin/includes/admin-main.php:121 -msgid "Add New" -msgstr "Agregar Nuevo" - -#: admin/admin.php:59 admin/includes/admin-categories.php:48 -msgid "Event List Categories" -msgstr "Listado de Categorías de Eventos" +#: admin/admin.php:57 +#, php-format +msgid "Errors during upgrade of plugin %1$s" +msgstr "" -#: admin/admin.php:59 admin/includes/admin-new.php:150 -#: admin/includes/event_table.php:114 -msgid "Categories" -msgstr "Categorías" +#: admin/admin.php:57 +#, php-format +msgid "Upgrade of plugin %1$s successful" +msgstr "" -#: admin/admin.php:63 admin/includes/admin-settings.php:54 +#: admin/admin.php:106 admin/includes/admin-settings.php:65 msgid "Event List Settings" msgstr "Configuraciones del Listado de Eventos" -#: admin/admin.php:63 +#: admin/admin.php:106 msgid "Settings" msgstr "Configuraciones" -#: admin/admin.php:67 admin/includes/admin-about.php:37 +#: admin/admin.php:110 admin/includes/admin-about.php:37 msgid "About Event List" msgstr "Sobre Listado de Eventos" -#: admin/admin.php:67 +#: admin/admin.php:110 msgid "About" msgstr "Sobre" -#: admin/admin.php:87 +#: admin/admin.php:132 #, php-format msgid "%s Event" msgid_plural "%s Events" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:69 +#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 msgid "General" msgstr "" -#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77 -#: admin/includes/admin-about.php:104 +#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:105 msgid "Shortcode Attributes" msgstr "" -#: admin/includes/admin-about.php:71 +#: admin/includes/admin-about.php:72 msgid "Help and Instructions" msgstr "Ayuda e Instrucciones" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:73 #, php-format msgid "You can manage the events %1$shere%2$s" msgstr "" -#: admin/includes/admin-about.php:73 +#: admin/includes/admin-about.php:74 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:74 +#: admin/includes/admin-about.php:75 #, 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:75 +#: admin/includes/admin-about.php:76 #, 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:76 +#: admin/includes/admin-about.php:77 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:77 +#: admin/includes/admin-about.php:78 #, 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:78 +#: admin/includes/admin-about.php:79 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:79 +#: admin/includes/admin-about.php:80 #, 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:79 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 msgid "Add links to the single events" msgstr "" -#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 msgid "Add a link to the Event List page" msgstr "" -#: admin/includes/admin-about.php:80 +#: admin/includes/admin-about.php:81 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:81 +#: admin/includes/admin-about.php:82 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:82 +#: admin/includes/admin-about.php:83 #, php-format msgid "" "The default value %1$s is normally o.k. (for pages with 1 shortcode only), " @@ -156,505 +136,593 @@ msgid "" "link on your linked page or post." msgstr "" -#: admin/includes/admin-about.php:83 +#: admin/includes/admin-about.php:84 #, php-format msgid "The id is available at the end of the URL parameters (e.g. %1$s)." msgstr "" -#: admin/includes/admin-about.php:85 +#: admin/includes/admin-about.php:86 #, 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:85 +#: admin/includes/admin-about.php:86 msgid "Settings page" msgstr "" -#: admin/includes/admin-about.php:91 +#: admin/includes/admin-about.php:92 msgid "About the plugin author" msgstr "" -#: admin/includes/admin-about.php:93 +#: admin/includes/admin-about.php:94 #, 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:93 +#: admin/includes/admin-about.php:94 msgid "wordpress plugin site" msgstr "" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:95 #, php-format msgid "If you like the plugin please rate it on the %1$s." msgstr "" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:95 msgid "wordpress plugin review site" msgstr "" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:96 msgid "" "If you want to support the plugin I would be happy to get a small donation" msgstr "" -#: admin/includes/admin-about.php:96 admin/includes/admin-about.php:97 -#: admin/includes/admin-about.php:98 +#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 +#: admin/includes/admin-about.php:99 #, php-format msgid "Donate with %1$s" msgstr "" -#: admin/includes/admin-about.php:106 +#: admin/includes/admin-about.php:107 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:107 +#: admin/includes/admin-about.php:108 #, 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:109 +#: admin/includes/admin-about.php:110 msgid "" "Below you can find a list of all supported attributes with their " "descriptions and available options:" msgstr "" -#: admin/includes/admin-about.php:123 +#: admin/includes/admin-about.php:124 msgid "Attribute name" msgstr "" -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:125 msgid "Value options" msgstr "" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:126 msgid "Default value" msgstr "" -#: admin/includes/admin-about.php:126 admin/includes/admin-categories.php:194 -#: admin/includes/category_table.php:111 +#: admin/includes/admin-about.php:127 msgid "Description" msgstr "Descripción" -#: admin/includes/admin-about.php:144 includes/sc_event-list_helptexts.php:26 +#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 #: includes/sc_event-list_helptexts.php:31 msgid "Filter Syntax" msgstr "" -#: admin/includes/admin-about.php:145 +#: admin/includes/admin-about.php:146 msgid "" "For date and cat filters you can specify complex filters with the following " "syntax:" msgstr "" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 #, 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:146 +#: admin/includes/admin-about.php:147 msgid "AND" msgstr "" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "OR" msgstr "" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "or" msgstr "" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "and" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:148 msgid "Examples for cat filters:" msgstr "" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:149 #, php-format msgid "Show all events with category %1$s." msgstr "" -#: admin/includes/admin-about.php:149 +#: admin/includes/admin-about.php:150 #, php-format msgid "Show all events with category %1$s or %2$s." msgstr "" -#: admin/includes/admin-about.php:150 +#: admin/includes/admin-about.php:151 #, 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:155 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 msgid "Available Date Formats" msgstr "" -#: admin/includes/admin-about.php:156 +#: admin/includes/admin-about.php:157 msgid "For date filters you can use the following date formats:" msgstr "" -#: admin/includes/admin-about.php:164 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 msgid "Available Date Range Formats" msgstr "" -#: admin/includes/admin-about.php:165 +#: admin/includes/admin-about.php:166 msgid "For date filters you can use the following daterange formats:" msgstr "" -#: admin/includes/admin-about.php:177 +#: admin/includes/admin-about.php:178 msgid "Value" msgstr "" -#: admin/includes/admin-about.php:181 +#: admin/includes/admin-about.php:182 msgid "Example" msgstr "" -#: admin/includes/admin-categories.php:51 -msgid "Edit Category" +#: admin/includes/admin-categories.php:38 +msgid "Synchronize with post categories" msgstr "" -#: admin/includes/admin-categories.php:51 -msgid "Update Category" +#: admin/includes/admin-categories.php:46 +#, php-format +msgid "%1$s categories modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:57 -msgid "Add New Category" -msgstr "Agregar una nueva Categoría" - -#: admin/includes/admin-categories.php:84 +#: admin/includes/admin-categories.php:47 #, php-format -msgid "Category \"%s\" deleted." +msgid "%1$s categories added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:86 +#: admin/includes/admin-categories.php:48 #, php-format -msgid "This Category was also removed from %d events." +msgid "%1$s categories deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:92 +#: admin/includes/admin-categories.php:50 #, php-format -msgid "Error while deleting category \"%s\"" +msgid "%1$s categories not modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:103 -msgid "Sync with post categories enabled." +#: admin/includes/admin-categories.php:51 +#, php-format +msgid "%1$s categories not added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:106 -msgid "Sync with post categories disabled." +#: admin/includes/admin-categories.php:52 +#, php-format +msgid "%1$s categories not deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:112 -msgid "Manual sync with post categories sucessfully finished." +#: admin/includes/admin-categories.php:55 +msgid "An Error occured during the category sync" msgstr "" -#: admin/includes/admin-categories.php:125 -#, php-format -msgid "New Category \"%s\" was added" +#: admin/includes/admin-categories.php:59 +msgid "Category sync finished" msgstr "" -#: admin/includes/admin-categories.php:128 -#, php-format -msgid "Error: New Category \"%s\" could not be added" +#: admin/includes/admin-category-sync.php:45 +msgid "Error: You are not allowed to view this page!" msgstr "" -#: admin/includes/admin-categories.php:134 -#, php-format -msgid "Category \"%s\" was modified" +#: admin/includes/admin-category-sync.php:62 +msgid "Affected Categories when switching to seperate Event Categories" msgstr "" -#: admin/includes/admin-categories.php:137 -#, php-format -msgid "Error: Category \"%s\" could not be modified" +#: admin/includes/admin-category-sync.php:63 +msgid "Switch option to seperate Event Categories" msgstr "" -#: admin/includes/admin-categories.php:144 -msgid "Categories are automatically synced with the post categories." +#: admin/includes/admin-category-sync.php:64 +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-categories.php:145 +#: admin/includes/admin-category-sync.php:65 msgid "" -"Because of this all options to add new categories or editing existing " -"categories are disabled." +"Afterwards the event categories are independent of the post categories." msgstr "" -#: admin/includes/admin-categories.php:146 -msgid "" -"If you want to manually edit the categories you have to disable this option." +#: admin/includes/admin-category-sync.php:68 +msgid "Affected Categories when switching to use Post Categories for events" msgstr "" -#: admin/includes/admin-categories.php:173 -msgid "The name is how it appears on your site." +#: admin/includes/admin-category-sync.php:69 +msgid "Switch option to use Post Categories for events" msgstr "" -#: admin/includes/admin-categories.php:178 +#: admin/includes/admin-category-sync.php:70 msgid "" -"The “slug” is the URL-friendly version of the name. It is usually all " -"lowercase and contains only letters, numbers, and hyphens." +"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-categories.php:191 +#: admin/includes/admin-category-sync.php:73 +msgid "Event Categories: Synchronise with Post Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:74 +msgid "Start synchronisation" +msgstr "" + +#: admin/includes/admin-category-sync.php:75 msgid "" -"Categories can have a hierarchy. You might have a Jazz category, and under " -"that have children categories for Bebop and Big Band. Totally optional." +"If this option is enabled the above listed categories will be deleted and " +"removed from the existing events!" msgstr "" -#: admin/includes/admin-categories.php:241 -msgid "Apply" -msgstr "Aplicar" +#: admin/includes/admin-category-sync.php:90 +msgid "Categories to modify" +msgstr "" -#: admin/includes/admin-categories.php:251 -msgid "Do a manual sync with post categories" +#: admin/includes/admin-category-sync.php:91 +msgid "Categories to add" msgstr "" -#: admin/includes/admin-import.php:45 +#: admin/includes/admin-category-sync.php:92 +msgid "Categories to delete (optional)" +msgstr "" + +#: admin/includes/admin-category-sync.php:93 +msgid "Delete not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:97 +msgid "Categories with differences" +msgstr "" + +#: admin/includes/admin-category-sync.php:98 +msgid "Categories to add (optional)" +msgstr "" + +#: admin/includes/admin-category-sync.php:99 +msgid "Add not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:117 +msgid "none" +msgstr "" + +#: admin/includes/admin-import.php:49 msgid "Import Events" msgstr "Importar Eventos" -#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:118 +#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:198 msgid "Step" msgstr "" -#: admin/includes/admin-import.php:65 +#: admin/includes/admin-import.php:69 msgid "Set import file and options" msgstr "" -#: admin/includes/admin-import.php:68 +#: admin/includes/admin-import.php:72 #, php-format msgid "Proceed with Step %1$s" msgstr "" -#: admin/includes/admin-import.php:71 +#: admin/includes/admin-import.php:75 msgid "Example file" msgstr "" -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:76 #, php-format msgid "" "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)" msgstr "" -#: admin/includes/admin-import.php:73 +#: admin/includes/admin-import.php:77 msgid "Note" msgstr "" -#: admin/includes/admin-import.php:73 +#: admin/includes/admin-import.php:77 msgid "" "Do not change the column header and separator line (first two lines), " "otherwise the import will fail!" msgstr "" -#: admin/includes/admin-import.php:80 admin/includes/admin-import.php:88 -#: admin/includes/admin-import.php:101 +#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 msgid "Sorry, there has been an error." msgstr "" -#: admin/includes/admin-import.php:81 +#: admin/includes/admin-import.php:85 msgid "The file does not exist, please try again." msgstr "" -#: admin/includes/admin-import.php:89 -msgid "The file is not a CSV file." +#: admin/includes/admin-import.php:93 +msgid "The uploaded file does not have the required csv extension." msgstr "" -#: admin/includes/admin-import.php:118 +#: admin/includes/admin-import.php:105 msgid "Events review and additonal category selection" msgstr "" -#: admin/includes/admin-import.php:121 +#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +msgid "Error" +msgstr "" + +#: admin/includes/admin-import.php:111 +msgid "This CSV file cannot be imported" +msgstr "" + +#: admin/includes/admin-import.php:122 +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 +msgid "Warning" +msgstr "" + +#: admin/includes/admin-import.php:126 +#, 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 +#, php-format +msgid "CSV line %1$s" +msgstr "" + +#: admin/includes/admin-import.php:144 +msgid "You can still import all other events listed below." +msgstr "" + +#: admin/includes/admin-import.php:163 msgid "" -"Warning: The following category slugs are not available and will be removed " -"from the imported events:" +"The following category slugs are not available and will be removed from the " +"imported events" msgstr "" -#: admin/includes/admin-import.php:127 +#: admin/includes/admin-import.php:169 msgid "" "If you want to keep these categories, please create these Categories first " "and do the import afterwards." msgstr "" -#: admin/includes/admin-import.php:145 -msgid "Add additional categories" +#: admin/includes/admin-import.php:198 +msgid "Import result" msgstr "" -#: admin/includes/admin-import.php:146 -msgid "Import events" +#: admin/includes/admin-import.php:201 +#, php-format +msgid "Import of %1$s events successful!" msgstr "" -#: admin/includes/admin-import.php:160 -msgid "Import with errors!" +#: admin/includes/admin-import.php:202 +msgid "Go back to All Events" msgstr "" -#: admin/includes/admin-import.php:161 -msgid "Sorry, an error occurred during import!" +#: admin/includes/admin-import.php:206 +msgid "Errors during Import" msgstr "" -#: admin/includes/admin-import.php:165 -msgid "Import successful!" +#: admin/includes/admin-import.php:215 +msgid "Event from CSV-line" msgstr "" -#: admin/includes/admin-import.php:166 -msgid "Go back to All Events" -msgstr "" - -#: admin/includes/admin-import.php:173 admin/includes/admin-new.php:111 -#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 +#: includes/widget_helptexts.php:8 msgid "Title" msgstr "Título" -#: admin/includes/admin-import.php:174 +#: admin/includes/admin-import.php:227 msgid "Start Date" msgstr "" -#: admin/includes/admin-import.php:175 +#: admin/includes/admin-import.php:228 msgid "End Date" msgstr "" -#: admin/includes/admin-import.php:176 admin/includes/admin-new.php:124 -#: includes/options_helptexts.php:48 includes/options_helptexts.php:49 +#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 +#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 msgid "Time" msgstr "" -#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:128 -#: admin/includes/event_table.php:112 includes/options_helptexts.php:53 -#: includes/options_helptexts.php:54 +#: 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 msgid "Location" msgstr "" -#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:132 -#: admin/includes/event_table.php:113 -msgid "Details" -msgstr "Detalles" +#: admin/includes/admin-import.php:231 +msgid "Content" +msgstr "" -#: admin/includes/admin-import.php:179 +#: admin/includes/admin-import.php:232 msgid "Category slugs" msgstr "" -#: admin/includes/admin-import.php:218 +#: admin/includes/admin-import.php:274 +msgid "Header line is missing or not correct!" +msgstr "" + +#: admin/includes/admin-import.php:275 #, php-format msgid "" -"There was an error at line %1$s when reading this CSV file: Header line is " -"missing or not correct!" +"Have a look at the %1$sexample file%2$s to see the correct header line " +"format." msgstr "" -#: admin/includes/admin-import.php:253 admin/includes/admin-main.php:122 +#: admin/includes/admin-import.php:281 +#, php-format +msgid "Wrong number of items in line (%1$s items found, 6-7 required)" +msgstr "" + +#: admin/includes/admin-import.php:309 +msgid "Empty event title found" +msgstr "" + +#: admin/includes/admin-import.php:315 +msgid "Wrong date format for startdate" +msgstr "" + +#: admin/includes/admin-import.php:324 +msgid "Wrong date format for enddate" +msgstr "" + +#: admin/includes/admin-import.php:365 +msgid "Import events" +msgstr "" + +#: admin/includes/admin-import.php:366 +msgid "Add additional categories" +msgstr "" + +#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 msgid "Import" msgstr "Importar" -#: admin/includes/admin-main.php:116 -msgid "Edit Event" -msgstr "Editar Evento" +#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +msgid "No events found" +msgstr "" -#: admin/includes/admin-main.php:116 admin/includes/event_table.php:75 -msgid "Duplicate" -msgstr "Duplicar" +#: admin/includes/admin-import.php:432 +msgid "Saving of event failed!" +msgstr "" -#: admin/includes/admin-new.php:48 -#, php-format -msgid "Duplicate of event id:%d" +#: admin/includes/admin-main.php:60 +msgid "Event Date" msgstr "" -#: admin/includes/admin-new.php:111 admin/includes/admin-new.php:115 -msgid "required" +#: admin/includes/admin-main.php:64 +msgid "Author" msgstr "" -#: admin/includes/admin-new.php:115 admin/includes/event_table.php:110 -msgid "Date" +#: admin/includes/admin-main.php:126 +#, php-format +msgid "Add a copy of %1$s" msgstr "" -#: admin/includes/admin-new.php:118 -msgid "Multi-Day Event" +#: admin/includes/admin-main.php:126 +msgid "Copy" msgstr "" -#: admin/includes/admin-new.php:148 admin/includes/admin-new.php:165 -msgid "Publish" +#: admin/includes/admin-new.php:51 +msgid "Event data" msgstr "" -#: admin/includes/admin-new.php:165 -msgid "Update" +#: admin/includes/admin-new.php:80 +msgid "Add Copy" msgstr "" -#: admin/includes/admin-new.php:167 -msgid "Cancel" -msgstr "Cancelar" +#: admin/includes/admin-new.php:84 +msgid "Date" +msgstr "" -#: admin/includes/admin-new.php:180 -msgid "No categories available." +#: admin/includes/admin-new.php:84 +msgid "required" msgstr "" -#: admin/includes/admin-new.php:226 -msgid "Goto Category Settings" +#: admin/includes/admin-new.php:87 +msgid "Multi-Day Event" msgstr "" -#: admin/includes/admin-settings.php:42 -msgid "Settings saved." +#: admin/includes/admin-new.php:106 +msgid "Event Title" msgstr "" -#: admin/includes/admin-settings.php:70 -msgid "Frontend Settings" +#: admin/includes/admin-new.php:121 +msgid "Event Content" msgstr "" -#: admin/includes/admin-settings.php:71 -msgid "Admin Page Settings" +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +msgid "Event updated." msgstr "" -#: admin/includes/admin-settings.php:72 -msgid "Feed Settings" +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +msgid "View event" msgstr "" -#: admin/includes/category_table.php:27 admin/includes/event_table.php:29 -msgid "event" -msgstr "evento" +#: admin/includes/admin-new.php:184 +#, php-format +msgid "Event restored to revision from %1$s" +msgstr "" -#: admin/includes/category_table.php:28 admin/includes/event_table.php:30 -msgid "events" -msgstr "eventos" +#: admin/includes/admin-new.php:185 +msgid "Event published." +msgstr "" -#: admin/includes/category_table.php:73 admin/includes/event_table.php:74 -msgid "Edit" +#: admin/includes/admin-new.php:187 +msgid "Event submitted." msgstr "" -#: admin/includes/category_table.php:74 admin/includes/category_table.php:148 -#: admin/includes/event_table.php:76 admin/includes/event_table.php:149 -msgid "Delete" +#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 +#: admin/includes/admin-new.php:190 +msgid "Preview event" msgstr "" -#: admin/includes/category_table.php:110 -msgid "Name" -msgstr "Nombre" +#: admin/includes/admin-new.php:188 +#, php-format +msgid "Event scheduled for: %1$s>" +msgstr "" -#: admin/includes/category_table.php:112 -msgid "Slug" +#: admin/includes/admin-new.php:190 +msgid "Event draft updated." msgstr "" -#: admin/includes/event_table.php:115 -msgid "Author" +#: admin/includes/admin-settings.php:71 +msgid "Go to Event Category switching page" msgstr "" -#: admin/includes/event_table.php:116 -msgid "Published" +#: admin/includes/admin-settings.php:83 +msgid "Frontend Settings" msgstr "" -#: admin/includes/event_table.php:180 -msgid "Filter" +#: admin/includes/admin-settings.php:84 +msgid "Admin Page Settings" msgstr "" -#: admin/includes/event_table.php:300 -#, php-format -msgid "%s ago" +#: admin/includes/admin-settings.php:85 +msgid "Feed Settings" +msgstr "" + +#: admin/includes/admin-settings.php:86 +msgid "Category Taxonomy" msgstr "" #: includes/daterange_helptexts.php:7 @@ -800,7 +868,7 @@ msgstr "" msgid "The corresponding date_range format is: %1$s" msgstr "" -#: includes/daterange_helptexts.php:59 includes/filterbar.php:291 +#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 msgid "Upcoming" msgstr "Próximos" @@ -808,7 +876,7 @@ msgstr "Próximos" msgid "This value defines a range from the actual day to the future." msgstr "" -#: includes/daterange_helptexts.php:64 includes/filterbar.php:295 +#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 msgid "Past" msgstr "Pasado" @@ -816,146 +884,238 @@ msgstr "Pasado" msgid "This value defines a range from the past to the previous day." msgstr "" -#: includes/filterbar.php:233 includes/sc_event-list_helptexts.php:60 +#: includes/event.php:107 +msgid "No valid start date provided" +msgstr "" + +#: includes/events_post_type.php:60 +msgid "Events" +msgstr "Eventos" + +#: includes/events_post_type.php:61 +msgid "Event" +msgstr "" + +#: includes/events_post_type.php:62 +msgid "Add New" +msgstr "Agregar Nuevo" + +#: includes/events_post_type.php:63 +msgid "Add New Event" +msgstr "Agregar un Nuevo Evento" + +#: includes/events_post_type.php:64 +msgid "Edit Event" +msgstr "Editar Evento" + +#: includes/events_post_type.php:65 +msgid "New Event" +msgstr "" + +#: includes/events_post_type.php:66 +msgid "View Event" +msgstr "" + +#: includes/events_post_type.php:67 +msgid "View Events" +msgstr "" + +#: includes/events_post_type.php:68 +msgid "Search Events" +msgstr "" + +#: includes/events_post_type.php:70 +msgid "No events found in Trash" +msgstr "" + +#: includes/events_post_type.php:72 +msgid "All Events" +msgstr "Todos los Eventos" + +#: includes/events_post_type.php:73 +msgid "Event Archives" +msgstr "" + +#: includes/events_post_type.php:74 +msgid "Event Attributes" +msgstr "" + +#: includes/events_post_type.php:75 +msgid "Insert into event" +msgstr "" + +#: includes/events_post_type.php:76 +msgid "Uploaded to this event" +msgstr "" + +#: includes/events_post_type.php:77 +msgid "Event List" +msgstr "Listado de Eventos" + +#: includes/events_post_type.php:78 +msgid "Filter events list" +msgstr "" + +#: includes/events_post_type.php:79 +msgid "Events list navigation" +msgstr "" + +#: includes/events_post_type.php:80 +msgid "Events list" +msgstr "" + +#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 msgid "Reset" msgstr "" -#: includes/filterbar.php:282 +#: includes/filterbar.php:278 msgid "All" msgstr "Todos" -#: includes/filterbar.php:285 -msgid "Show all dates" -msgstr "" - -#: includes/filterbar.php:285 -msgid "Show all categories" +#: includes/filterbar.php:281 +msgid "All Dates" msgstr "" -#: includes/options_helptexts.php:11 -msgid "Sync Categories" +#: includes/options_helptexts.php:10 +msgid "CSV File to import" msgstr "" #: includes/options_helptexts.php:12 -msgid "Keep event categories in sync with post categories automatically" +msgid "Please select the file which contains the event data in CSV format." msgstr "" -#: includes/options_helptexts.php:13 -msgid "Attention" +#: includes/options_helptexts.php:15 +msgid "Used date format" msgstr "" -#: includes/options_helptexts.php:14 +#: includes/options_helptexts.php:17 msgid "" -"Please note that this option will delete all categories which are not " -"available in the post categories! Existing Categories with the same slug " -"will be updated." +"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 -msgid "CSV File to import" +#, 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 -msgid "Please select the file which contains the event data in CSV format." +msgid "full year representation, with 4 digits" msgstr "" -#: includes/options_helptexts.php:23 -msgid "Used date format" +#: includes/options_helptexts.php:21 +msgid "numeric representation of a month, with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:22 +msgid "day of the month, 2 digits with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:24 +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 msgid "" -"With this option the used date format for event start and end date given in " -"the CSV file can be specified." +"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:29 +#: includes/options_helptexts.php:26 +msgid "Examples" +msgstr "" + +#: includes/options_helptexts.php:33 msgid "Text for no events" msgstr "" -#: includes/options_helptexts.php:31 +#: includes/options_helptexts.php:35 msgid "" "This option defines the displayed text when no events are available for the " "selected view." msgstr "" -#: includes/options_helptexts.php:34 +#: includes/options_helptexts.php:38 msgid "Multiday filter range" msgstr "" -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:39 msgid "Use the complete event range in the date filter" msgstr "" -#: includes/options_helptexts.php:36 +#: includes/options_helptexts.php:40 msgid "" "This option defines if the complete range of a multiday event shall be " "considered in the date filter." msgstr "" -#: includes/options_helptexts.php:37 +#: includes/options_helptexts.php:41 msgid "" "If disabled, only the start day of an event is considered in the filter." msgstr "" -#: includes/options_helptexts.php:38 +#: includes/options_helptexts.php:42 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:41 +#: includes/options_helptexts.php:45 msgid "Date display" msgstr "" -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:46 msgid "Show the date only once per day" msgstr "" -#: includes/options_helptexts.php:43 +#: includes/options_helptexts.php:47 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:44 +#: includes/options_helptexts.php:48 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:47 +#: includes/options_helptexts.php:51 msgid "HTML tags" msgstr "" -#: includes/options_helptexts.php:48 includes/options_helptexts.php:53 +#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 #, php-format msgid "Allow HTML tags in the event field \"%1$s\"" msgstr "" -#: includes/options_helptexts.php:49 includes/options_helptexts.php:54 +#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 #, php-format msgid "" "This option specifies if HTML tags are allowed in the event field \"%1$s\"." msgstr "" -#: includes/options_helptexts.php:57 +#: includes/options_helptexts.php:61 msgid "Preferred language file" msgstr "" -#: includes/options_helptexts.php:58 +#: includes/options_helptexts.php:62 msgid "Load translations from general language directory first" msgstr "" -#: includes/options_helptexts.php:59 +#: includes/options_helptexts.php:63 #, 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:60 +#: includes/options_helptexts.php:64 #, php-format msgid "" "If you want to load your own language file from the general language " @@ -963,251 +1123,288 @@ msgid "" "language directory, you have to enable this option." msgstr "" -#: includes/options_helptexts.php:64 -msgid "Text for \"Show details\"" +#: includes/options_helptexts.php:68 +msgid "Events permalink slug" +msgstr "" + +#: includes/options_helptexts.php:69 +msgid "" +"With this option the slug for the events permalink URLs can be defined." msgstr "" -#: includes/options_helptexts.php:65 +#: includes/options_helptexts.php:72 +msgid "Text for \"Show content\"" +msgstr "" + +#: includes/options_helptexts.php:73 msgid "" -"With this option the displayed text for the link to show the event details " +"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:68 -msgid "Text for \"Hide details\"" +#: includes/options_helptexts.php:76 +msgid "Text for \"Hide content\"" msgstr "" -#: includes/options_helptexts.php:69 +#: includes/options_helptexts.php:77 msgid "" -"With this option the displayed text for the link to hide the event details " +"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:72 +#: includes/options_helptexts.php:80 msgid "Disable CSS file" msgstr "" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:81 #, php-format msgid "Disable the %1$s file." msgstr "" -#: includes/options_helptexts.php:74 +#: includes/options_helptexts.php:82 #, php-format msgid "With this option you can disable the inclusion of the %1$s file." msgstr "" -#: includes/options_helptexts.php:75 +#: includes/options_helptexts.php:83 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:79 +#: includes/options_helptexts.php:87 msgid "Date format in edit form" msgstr "" -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:88 msgid "" "This option sets the displayed date format for the event date fields in the " "event new / edit form." msgstr "" -#: includes/options_helptexts.php:81 +#: includes/options_helptexts.php:89 msgid "The default is an empty string to use the Wordpress standard setting." msgstr "" -#: includes/options_helptexts.php:82 +#: includes/options_helptexts.php:90 #, php-format msgid "" "All available options to specify the date format can be found %1$shere%2$s." msgstr "" -#: includes/options_helptexts.php:86 includes/options_helptexts.php:114 +#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 msgid "Enable RSS feed" msgstr "" -#: includes/options_helptexts.php:87 +#: includes/options_helptexts.php:95 msgid "Enable support for an event RSS feed" msgstr "" -#: includes/options_helptexts.php:88 +#: includes/options_helptexts.php:96 msgid "This option activates a RSS feed for the events." msgstr "" -#: includes/options_helptexts.php:89 +#: includes/options_helptexts.php:97 msgid "" "You have to enable this option if you want to use one of the RSS feed " "features." msgstr "" -#: includes/options_helptexts.php:92 +#: includes/options_helptexts.php:100 msgid "Feed name" msgstr "" -#: includes/options_helptexts.php:93 +#: includes/options_helptexts.php:101 #, php-format msgid "This option sets the feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:94 +#: 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 "" -#: includes/options_helptexts.php:97 +#: includes/options_helptexts.php:105 msgid "Feed Description" msgstr "" -#: includes/options_helptexts.php:98 +#: includes/options_helptexts.php:106 #, php-format msgid "This options set the feed description. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:99 +#: 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 "" -#: includes/options_helptexts.php:102 +#: includes/options_helptexts.php:110 msgid "Listed events" msgstr "Eventos Listados" -#: includes/options_helptexts.php:103 +#: includes/options_helptexts.php:111 msgid "Only show upcoming events in feed" msgstr "" -#: includes/options_helptexts.php:104 +#: includes/options_helptexts.php:112 msgid "" "If this option is enabled only the upcoming events are listed in the feed." msgstr "" -#: includes/options_helptexts.php:105 +#: includes/options_helptexts.php:113 msgid "If disabled all events (upcoming and past) will be listed." msgstr "" -#: includes/options_helptexts.php:108 +#: includes/options_helptexts.php:116 msgid "Add RSS feed link in head" msgstr "" -#: includes/options_helptexts.php:109 +#: includes/options_helptexts.php:117 msgid "Add RSS feed link in the html head" msgstr "" -#: includes/options_helptexts.php:110 +#: includes/options_helptexts.php:118 msgid "This option adds a RSS feed in the html head for the events." msgstr "" -#: includes/options_helptexts.php:111 +#: includes/options_helptexts.php:119 msgid "There are 2 alternatives to include the RSS feed" msgstr "" -#: includes/options_helptexts.php:112 +#: 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 "" -#: includes/options_helptexts.php:113 +#: 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." msgstr "" -#: includes/options_helptexts.php:114 +#: includes/options_helptexts.php:122 #, php-format msgid "This option is only valid if the setting %1$s is enabled." msgstr "" -#: includes/options_helptexts.php:117 +#: includes/options_helptexts.php:125 msgid "Position of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "at the top (above the navigation bar)" msgstr "" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "between navigation bar and events" msgstr "" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "at the bottom" msgstr "" -#: includes/options_helptexts.php:119 +#: includes/options_helptexts.php:127 msgid "" "This option specifies the position of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:120 includes/options_helptexts.php:126 -#: includes/options_helptexts.php:132 includes/options_helptexts.php:138 +#: 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 "" -#: includes/options_helptexts.php:123 +#: includes/options_helptexts.php:131 msgid "Align of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "left" msgstr "" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "center" msgstr "" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "right" msgstr "" -#: includes/options_helptexts.php:125 +#: includes/options_helptexts.php:133 msgid "" "This option specifies the align of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:129 +#: includes/options_helptexts.php:137 msgid "Feed link text" msgstr "" -#: includes/options_helptexts.php:130 +#: includes/options_helptexts.php:138 msgid "" "This option specifies the caption of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:131 +#: includes/options_helptexts.php:139 msgid "" "Insert an empty text to hide any text if you only want to show the rss " "image." msgstr "" -#: includes/options_helptexts.php:135 +#: includes/options_helptexts.php:143 msgid "Feed link image" msgstr "" -#: includes/options_helptexts.php:136 +#: includes/options_helptexts.php:144 msgid "Show rss image in feed link" msgstr "" -#: includes/options_helptexts.php:137 +#: 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." msgstr "" -#: includes/options.php:43 -msgid "Show details" +#: includes/options_helptexts.php:151 +msgid "Event Category handling" +msgstr "" + +#: includes/options_helptexts.php:152 +msgid "Use Post Categories" +msgstr "" + +#: includes/options_helptexts.php:153 +msgid "" +"Do not maintain seperate categories for the events, and use the existing " +"post categories instead." +msgstr "" + +#: includes/options_helptexts.php:154 +msgid "Attention" +msgstr "" + +#: includes/options_helptexts.php:155 +msgid "" +"This option cannot be changed directly, but you can go to the Event Category" +" switching page from here." +msgstr "" + +#: includes/options.php:40 +msgid "events" msgstr "" -#: includes/options.php:44 -msgid "Hide details" +#: includes/options.php:41 +msgid "Show content" +msgstr "" + +#: includes/options.php:42 +msgid "Hide content" msgstr "" #: includes/sc_event-list_helptexts.php:7 @@ -1218,7 +1415,7 @@ msgstr "" #, 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-details view of " +"%1$s) is provided for this attribute, directly the event-content view of " "this event is shown." msgstr "" @@ -1574,14 +1771,14 @@ msgstr "" #: includes/sc_event-list_helptexts.php:100 msgid "" -"This attribute specifies if the details are displayed in the event list.<br />\n" -"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n" -"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event" +"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 msgid "" -"This attribute specifies if the details should be truncate to the given " +"This attribute specifies if the content should be truncate to the given " "number of characters in the event list." msgstr "" @@ -1592,10 +1789,10 @@ msgstr "" #: includes/sc_event-list_helptexts.php:110 msgid "" -"This attribute specifies if the details should be collapsed initially.<br />\n" -"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n" -"\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the details.<br />\n" -"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view." +"This attribute specifies if the content 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 @@ -1603,7 +1800,7 @@ 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" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n" -"\t With \"events_with_details_only\" the link is only added in the event list for events with event details." +"\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 @@ -1628,7 +1825,7 @@ msgid "" "\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:134 +#: includes/sc_event-list.php:135 msgid "Event Information:" msgstr "Información del evento:" @@ -1705,20 +1902,20 @@ msgid "" msgstr "" #: includes/widget_helptexts.php:59 -msgid "Show event details" -msgstr "Mostrar detalles del evento" +msgid "Show event content" +msgstr "" #: includes/widget_helptexts.php:61 -msgid "This option defines if the event details will be displayed." +msgid "This option defines if the event content will be displayed." msgstr "" #: includes/widget_helptexts.php:66 -msgid "Truncate details to" +msgid "Truncate content to" msgstr "" #: includes/widget_helptexts.php:68 msgid "" -"If the event details are diplayed this option defines the number of diplayed" +"If the event content are diplayed this option defines the number of diplayed" " characters." msgstr "" 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 7047faeb38b28271b6758d3b520120fef433860d..cb5ac238d952df55e1bec42139a341141dd4c10e 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 5cd85bf2b0fd87b031253d9d934bf5fd540e64db..39209867bbc658ae4b9f760578e32128828c4104 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) 2017 by mibuthu +# Copyright (C) 2018 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: 2017-10-08 15:55+0200\n" -"PO-Revision-Date: 2017-10-08 13:55+0000\n" +"POT-Creation-Date: 2018-05-27 12:20+0200\n" +"PO-Revision-Date: 2018-05-27 10:20+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,137 +17,117 @@ msgstr "" "Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: admin/admin.php:48 -msgid "Event List" -msgstr "Listado Eventos" - -#: admin/admin.php:51 admin/includes/admin-main.php:119 -#: admin/includes/category_table.php:113 -msgid "Events" -msgstr "Eventos" - -#: admin/admin.php:51 -msgid "All Events" -msgstr "Añadir Eventos" - -#: admin/admin.php:55 admin/includes/admin-new.php:46 -msgid "Add New Event" -msgstr "Añadir Nuevo Evento" - -#: admin/admin.php:55 admin/includes/admin-main.php:121 -msgid "Add New" -msgstr "Añadir Nuevo" - -#: admin/admin.php:59 admin/includes/admin-categories.php:48 -msgid "Event List Categories" -msgstr "Categorías de Eventos" +#: admin/admin.php:57 +#, php-format +msgid "Errors during upgrade of plugin %1$s" +msgstr "" -#: admin/admin.php:59 admin/includes/admin-new.php:150 -#: admin/includes/event_table.php:114 -msgid "Categories" -msgstr "Categorías" +#: admin/admin.php:57 +#, php-format +msgid "Upgrade of plugin %1$s successful" +msgstr "" -#: admin/admin.php:63 admin/includes/admin-settings.php:54 +#: admin/admin.php:106 admin/includes/admin-settings.php:65 msgid "Event List Settings" msgstr "Ajustes de eventos" -#: admin/admin.php:63 +#: admin/admin.php:106 msgid "Settings" msgstr "Ajustes" -#: admin/admin.php:67 admin/includes/admin-about.php:37 +#: admin/admin.php:110 admin/includes/admin-about.php:37 msgid "About Event List" msgstr "Acerca de la lista de eventos" -#: admin/admin.php:67 +#: admin/admin.php:110 msgid "About" msgstr "Sobre" -#: admin/admin.php:87 +#: admin/admin.php:132 #, php-format msgid "%s Event" msgid_plural "%s Events" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:69 +#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 msgid "General" msgstr "General" -#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77 -#: admin/includes/admin-about.php:104 +#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:105 msgid "Shortcode Attributes" msgstr "" -#: admin/includes/admin-about.php:71 +#: admin/includes/admin-about.php:72 msgid "Help and Instructions" msgstr "Ayuda e instrucciones" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:73 #, php-format msgid "You can manage the events %1$shere%2$s" msgstr "" -#: admin/includes/admin-about.php:73 +#: admin/includes/admin-about.php:74 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:74 +#: admin/includes/admin-about.php:75 #, php-format msgid "you can place the <strong>shortcode</strong> %1$s on any page or post" msgstr "" -#: admin/includes/admin-about.php:75 +#: admin/includes/admin-about.php:76 #, php-format msgid "you can add the <strong>widget</strong> %1$s in your sidebars" msgstr "" -#: admin/includes/admin-about.php:76 +#: admin/includes/admin-about.php:77 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:77 +#: admin/includes/admin-about.php:78 #, 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:78 +#: admin/includes/admin-about.php:79 msgid "The available widget options are described in their tooltip text." msgstr "" -#: admin/includes/admin-about.php:79 +#: admin/includes/admin-about.php:80 #, 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:79 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 msgid "Add links to the single events" msgstr "" -#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 msgid "Add a link to the Event List page" msgstr "" -#: admin/includes/admin-about.php:80 +#: admin/includes/admin-about.php:81 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:81 +#: admin/includes/admin-about.php:82 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:82 +#: admin/includes/admin-about.php:83 #, php-format msgid "" "The default value %1$s is normally o.k. (for pages with 1 shortcode only), " @@ -155,506 +135,594 @@ msgid "" "link on your linked page or post." msgstr "" -#: admin/includes/admin-about.php:83 +#: admin/includes/admin-about.php:84 #, php-format msgid "The id is available at the end of the URL parameters (e.g. %1$s)." msgstr "" -#: admin/includes/admin-about.php:85 +#: admin/includes/admin-about.php:86 #, 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:85 +#: admin/includes/admin-about.php:86 msgid "Settings page" msgstr "" -#: admin/includes/admin-about.php:91 +#: admin/includes/admin-about.php:92 msgid "About the plugin author" msgstr "" -#: admin/includes/admin-about.php:93 +#: admin/includes/admin-about.php:94 #, 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:93 +#: admin/includes/admin-about.php:94 msgid "wordpress plugin site" msgstr "" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:95 #, php-format msgid "If you like the plugin please rate it on the %1$s." msgstr "" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:95 msgid "wordpress plugin review site" msgstr "" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:96 msgid "" "If you want to support the plugin I would be happy to get a small donation" msgstr "" -#: admin/includes/admin-about.php:96 admin/includes/admin-about.php:97 -#: admin/includes/admin-about.php:98 +#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 +#: admin/includes/admin-about.php:99 #, php-format msgid "Donate with %1$s" msgstr "" -#: admin/includes/admin-about.php:106 +#: admin/includes/admin-about.php:107 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:107 +#: admin/includes/admin-about.php:108 #, 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:109 +#: admin/includes/admin-about.php:110 msgid "" "Below you can find a list of all supported attributes with their " "descriptions and available options:" msgstr "" -#: admin/includes/admin-about.php:123 +#: admin/includes/admin-about.php:124 msgid "Attribute name" msgstr "Nombre de atributo" -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:125 msgid "Value options" msgstr "Opciones de valor" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:126 msgid "Default value" msgstr "Valor por defecto" -#: admin/includes/admin-about.php:126 admin/includes/admin-categories.php:194 -#: admin/includes/category_table.php:111 +#: admin/includes/admin-about.php:127 msgid "Description" msgstr "Descripción" -#: admin/includes/admin-about.php:144 includes/sc_event-list_helptexts.php:26 +#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 #: includes/sc_event-list_helptexts.php:31 msgid "Filter Syntax" msgstr "Sintaxis de filtro" -#: admin/includes/admin-about.php:145 +#: admin/includes/admin-about.php:146 msgid "" "For date and cat filters you can specify complex filters with the following " "syntax:" msgstr "" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 #, 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:146 +#: admin/includes/admin-about.php:147 msgid "AND" msgstr "Y" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "OR" msgstr "O" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "or" msgstr "o" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "and" msgstr "y" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:148 msgid "Examples for cat filters:" msgstr "Ejemplos de filtros cat:" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:149 #, php-format msgid "Show all events with category %1$s." msgstr "" -#: admin/includes/admin-about.php:149 +#: admin/includes/admin-about.php:150 #, php-format msgid "Show all events with category %1$s or %2$s." msgstr "" -#: admin/includes/admin-about.php:150 +#: admin/includes/admin-about.php:151 #, 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:155 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 msgid "Available Date Formats" msgstr "Formatos de fecha disponibles" -#: admin/includes/admin-about.php:156 +#: admin/includes/admin-about.php:157 msgid "For date filters you can use the following date formats:" msgstr "" -#: admin/includes/admin-about.php:164 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 msgid "Available Date Range Formats" msgstr "Formatos Rango Fecha Disponible" -#: admin/includes/admin-about.php:165 +#: admin/includes/admin-about.php:166 msgid "For date filters you can use the following daterange formats:" msgstr "" -#: admin/includes/admin-about.php:177 +#: admin/includes/admin-about.php:178 msgid "Value" msgstr "Valor" -#: admin/includes/admin-about.php:181 +#: admin/includes/admin-about.php:182 msgid "Example" msgstr "Ejemplo" -#: admin/includes/admin-categories.php:51 -msgid "Edit Category" -msgstr "Editar categoría" - -#: admin/includes/admin-categories.php:51 -msgid "Update Category" -msgstr "Actualizar Categoría" - -#: admin/includes/admin-categories.php:57 -msgid "Add New Category" -msgstr "Agregar nueva categoría" +#: admin/includes/admin-categories.php:38 +msgid "Synchronize with post categories" +msgstr "" -#: admin/includes/admin-categories.php:84 +#: admin/includes/admin-categories.php:46 #, php-format -msgid "Category \"%s\" deleted." -msgstr "Categoría “%s” eliminada." +msgid "%1$s categories modified (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:86 +#: admin/includes/admin-categories.php:47 #, php-format -msgid "This Category was also removed from %d events." +msgid "%1$s categories added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:92 +#: admin/includes/admin-categories.php:48 #, php-format -msgid "Error while deleting category \"%s\"" +msgid "%1$s categories deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:103 -msgid "Sync with post categories enabled." +#: admin/includes/admin-categories.php:50 +#, php-format +msgid "%1$s categories not modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:106 -msgid "Sync with post categories disabled." +#: admin/includes/admin-categories.php:51 +#, php-format +msgid "%1$s categories not added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:112 -msgid "Manual sync with post categories sucessfully finished." +#: admin/includes/admin-categories.php:52 +#, php-format +msgid "%1$s categories not deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:125 -#, php-format -msgid "New Category \"%s\" was added" +#: admin/includes/admin-categories.php:55 +msgid "An Error occured during the category sync" msgstr "" -#: admin/includes/admin-categories.php:128 -#, php-format -msgid "Error: New Category \"%s\" could not be added" +#: admin/includes/admin-categories.php:59 +msgid "Category sync finished" msgstr "" -#: admin/includes/admin-categories.php:134 -#, php-format -msgid "Category \"%s\" was modified" +#: admin/includes/admin-category-sync.php:45 +msgid "Error: You are not allowed to view this page!" msgstr "" -#: admin/includes/admin-categories.php:137 -#, php-format -msgid "Error: Category \"%s\" could not be modified" +#: admin/includes/admin-category-sync.php:62 +msgid "Affected Categories when switching to seperate Event Categories" msgstr "" -#: admin/includes/admin-categories.php:144 -msgid "Categories are automatically synced with the post categories." +#: admin/includes/admin-category-sync.php:63 +msgid "Switch option to seperate Event Categories" msgstr "" -#: admin/includes/admin-categories.php:145 +#: admin/includes/admin-category-sync.php:64 msgid "" -"Because of this all options to add new categories or editing existing " -"categories are disabled." +"If you proceed, all post categories will be copied and all events will be " +"re-assigned to this new categories." msgstr "" -#: admin/includes/admin-categories.php:146 +#: admin/includes/admin-category-sync.php:65 msgid "" -"If you want to manually edit the categories you have to disable this option." +"Afterwards the event categories are independent of the post categories." msgstr "" -#: admin/includes/admin-categories.php:173 -msgid "The name is how it appears on your site." +#: admin/includes/admin-category-sync.php:68 +msgid "Affected Categories when switching to use Post Categories for events" msgstr "" -#: admin/includes/admin-categories.php:178 +#: admin/includes/admin-category-sync.php:69 +msgid "Switch option to use Post Categories for events" +msgstr "" + +#: admin/includes/admin-category-sync.php:70 msgid "" -"The “slug” is the URL-friendly version of the name. It is usually all " -"lowercase and contains only letters, numbers, and hyphens." +"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-categories.php:191 +#: admin/includes/admin-category-sync.php:73 +msgid "Event Categories: Synchronise with Post Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:74 +msgid "Start synchronisation" +msgstr "" + +#: admin/includes/admin-category-sync.php:75 msgid "" -"Categories can have a hierarchy. You might have a Jazz category, and under " -"that have children categories for Bebop and Big Band. Totally optional." +"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 +msgid "Categories to modify" +msgstr "" + +#: admin/includes/admin-category-sync.php:91 +msgid "Categories to add" +msgstr "" + +#: admin/includes/admin-category-sync.php:92 +msgid "Categories to delete (optional)" msgstr "" -#: admin/includes/admin-categories.php:241 -msgid "Apply" -msgstr "Aplicar" +#: admin/includes/admin-category-sync.php:93 +msgid "Delete not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:97 +msgid "Categories with differences" +msgstr "" -#: admin/includes/admin-categories.php:251 -msgid "Do a manual sync with post categories" +#: admin/includes/admin-category-sync.php:98 +msgid "Categories to add (optional)" msgstr "" -#: admin/includes/admin-import.php:45 +#: admin/includes/admin-category-sync.php:99 +msgid "Add not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:117 +msgid "none" +msgstr "" + +#: admin/includes/admin-import.php:49 msgid "Import Events" msgstr "Importar Eventos" -#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:118 +#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:198 msgid "Step" msgstr "Paso" -#: admin/includes/admin-import.php:65 +#: admin/includes/admin-import.php:69 msgid "Set import file and options" msgstr "" -#: admin/includes/admin-import.php:68 +#: admin/includes/admin-import.php:72 #, php-format msgid "Proceed with Step %1$s" msgstr "" -#: admin/includes/admin-import.php:71 +#: admin/includes/admin-import.php:75 msgid "Example file" msgstr "Archivo de ejemplo" -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:76 #, php-format msgid "" "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)" msgstr "" -#: admin/includes/admin-import.php:73 +#: admin/includes/admin-import.php:77 msgid "Note" msgstr "Nota" -#: admin/includes/admin-import.php:73 +#: admin/includes/admin-import.php:77 msgid "" "Do not change the column header and separator line (first two lines), " "otherwise the import will fail!" msgstr "" -#: admin/includes/admin-import.php:80 admin/includes/admin-import.php:88 -#: admin/includes/admin-import.php:101 +#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 msgid "Sorry, there has been an error." msgstr "" -#: admin/includes/admin-import.php:81 +#: admin/includes/admin-import.php:85 msgid "The file does not exist, please try again." msgstr "" -#: admin/includes/admin-import.php:89 -msgid "The file is not a CSV file." +#: admin/includes/admin-import.php:93 +msgid "The uploaded file does not have the required csv extension." msgstr "" -#: admin/includes/admin-import.php:118 +#: admin/includes/admin-import.php:105 msgid "Events review and additonal category selection" msgstr "" -#: admin/includes/admin-import.php:121 +#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +msgid "Error" +msgstr "" + +#: admin/includes/admin-import.php:111 +msgid "This CSV file cannot be imported" +msgstr "" + +#: admin/includes/admin-import.php:122 +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 +msgid "Warning" +msgstr "" + +#: admin/includes/admin-import.php:126 +#, 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 +#, php-format +msgid "CSV line %1$s" +msgstr "" + +#: admin/includes/admin-import.php:144 +msgid "You can still import all other events listed below." +msgstr "" + +#: admin/includes/admin-import.php:163 msgid "" -"Warning: The following category slugs are not available and will be removed " -"from the imported events:" +"The following category slugs are not available and will be removed from the " +"imported events" msgstr "" -#: admin/includes/admin-import.php:127 +#: admin/includes/admin-import.php:169 msgid "" "If you want to keep these categories, please create these Categories first " "and do the import afterwards." msgstr "" -#: admin/includes/admin-import.php:145 -msgid "Add additional categories" -msgstr "" - -#: admin/includes/admin-import.php:146 -msgid "Import events" +#: admin/includes/admin-import.php:198 +msgid "Import result" msgstr "" -#: admin/includes/admin-import.php:160 -msgid "Import with errors!" +#: admin/includes/admin-import.php:201 +#, php-format +msgid "Import of %1$s events successful!" msgstr "" -#: admin/includes/admin-import.php:161 -msgid "Sorry, an error occurred during import!" +#: admin/includes/admin-import.php:202 +msgid "Go back to All Events" msgstr "" -#: admin/includes/admin-import.php:165 -msgid "Import successful!" +#: admin/includes/admin-import.php:206 +msgid "Errors during Import" msgstr "" -#: admin/includes/admin-import.php:166 -msgid "Go back to All Events" +#: admin/includes/admin-import.php:215 +msgid "Event from CSV-line" msgstr "" -#: admin/includes/admin-import.php:173 admin/includes/admin-new.php:111 -#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 +#: includes/widget_helptexts.php:8 msgid "Title" msgstr "Título" -#: admin/includes/admin-import.php:174 +#: admin/includes/admin-import.php:227 msgid "Start Date" msgstr "Fecha Inicio" -#: admin/includes/admin-import.php:175 +#: admin/includes/admin-import.php:228 msgid "End Date" msgstr "Fecha Final" -#: admin/includes/admin-import.php:176 admin/includes/admin-new.php:124 -#: includes/options_helptexts.php:48 includes/options_helptexts.php:49 +#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 +#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 msgid "Time" msgstr "Hora" -#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:128 -#: admin/includes/event_table.php:112 includes/options_helptexts.php:53 -#: includes/options_helptexts.php:54 +#: 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 msgid "Location" msgstr "Ubicación" -#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:132 -#: admin/includes/event_table.php:113 -msgid "Details" -msgstr "Detalles" +#: admin/includes/admin-import.php:231 +msgid "Content" +msgstr "" -#: admin/includes/admin-import.php:179 +#: admin/includes/admin-import.php:232 msgid "Category slugs" msgstr "" -#: admin/includes/admin-import.php:218 +#: admin/includes/admin-import.php:274 +msgid "Header line is missing or not correct!" +msgstr "" + +#: admin/includes/admin-import.php:275 #, php-format msgid "" -"There was an error at line %1$s when reading this CSV file: Header line is " -"missing or not correct!" +"Have a look at the %1$sexample file%2$s to see the correct header line " +"format." +msgstr "" + +#: admin/includes/admin-import.php:281 +#, php-format +msgid "Wrong number of items in line (%1$s items found, 6-7 required)" +msgstr "" + +#: admin/includes/admin-import.php:309 +msgid "Empty event title found" msgstr "" -#: admin/includes/admin-import.php:253 admin/includes/admin-main.php:122 +#: admin/includes/admin-import.php:315 +msgid "Wrong date format for startdate" +msgstr "" + +#: admin/includes/admin-import.php:324 +msgid "Wrong date format for enddate" +msgstr "" + +#: admin/includes/admin-import.php:365 +msgid "Import events" +msgstr "" + +#: admin/includes/admin-import.php:366 +msgid "Add additional categories" +msgstr "" + +#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 msgid "Import" msgstr "Importar" -#: admin/includes/admin-main.php:116 -msgid "Edit Event" -msgstr "Editar Evento" +#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +msgid "No events found" +msgstr "" -#: admin/includes/admin-main.php:116 admin/includes/event_table.php:75 -msgid "Duplicate" -msgstr "Duplicar" +#: admin/includes/admin-import.php:432 +msgid "Saving of event failed!" +msgstr "" -#: admin/includes/admin-new.php:48 +#: admin/includes/admin-main.php:60 +msgid "Event Date" +msgstr "" + +#: admin/includes/admin-main.php:64 +msgid "Author" +msgstr "Autor" + +#: admin/includes/admin-main.php:126 #, php-format -msgid "Duplicate of event id:%d" -msgstr "Duplicado de evento id: % d" +msgid "Add a copy of %1$s" +msgstr "" -#: admin/includes/admin-new.php:111 admin/includes/admin-new.php:115 -msgid "required" -msgstr "obligatorio" +#: admin/includes/admin-main.php:126 +msgid "Copy" +msgstr "" -#: admin/includes/admin-new.php:115 admin/includes/event_table.php:110 +#: admin/includes/admin-new.php:51 +msgid "Event data" +msgstr "" + +#: admin/includes/admin-new.php:80 +msgid "Add Copy" +msgstr "" + +#: admin/includes/admin-new.php:84 msgid "Date" msgstr "Fecha" -#: admin/includes/admin-new.php:118 +#: admin/includes/admin-new.php:84 +msgid "required" +msgstr "obligatorio" + +#: admin/includes/admin-new.php:87 msgid "Multi-Day Event" msgstr "Evento de varios días" -#: admin/includes/admin-new.php:148 admin/includes/admin-new.php:165 -msgid "Publish" -msgstr "Publicar" +#: admin/includes/admin-new.php:106 +msgid "Event Title" +msgstr "" -#: admin/includes/admin-new.php:165 -msgid "Update" -msgstr "Actualizar" +#: admin/includes/admin-new.php:121 +msgid "Event Content" +msgstr "" -#: admin/includes/admin-new.php:167 -msgid "Cancel" -msgstr "Cancelar" +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +msgid "Event updated." +msgstr "" -#: admin/includes/admin-new.php:180 -msgid "No categories available." -msgstr "No hay categorías disponibles" +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +msgid "View event" +msgstr "" -#: admin/includes/admin-new.php:226 -msgid "Goto Category Settings" -msgstr "Ir a Ajustes de Categorías" +#: admin/includes/admin-new.php:184 +#, php-format +msgid "Event restored to revision from %1$s" +msgstr "" -#: admin/includes/admin-settings.php:42 -msgid "Settings saved." -msgstr "Configuración guardada." +#: admin/includes/admin-new.php:185 +msgid "Event published." +msgstr "" + +#: admin/includes/admin-new.php:187 +msgid "Event submitted." +msgstr "" -#: admin/includes/admin-settings.php:70 +#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 +#: admin/includes/admin-new.php:190 +msgid "Preview event" +msgstr "" + +#: admin/includes/admin-new.php:188 +#, php-format +msgid "Event scheduled for: %1$s>" +msgstr "" + +#: admin/includes/admin-new.php:190 +msgid "Event draft updated." +msgstr "" + +#: admin/includes/admin-settings.php:71 +msgid "Go to Event Category switching page" +msgstr "" + +#: admin/includes/admin-settings.php:83 msgid "Frontend Settings" msgstr "Configuración de interfaz" -#: admin/includes/admin-settings.php:71 +#: admin/includes/admin-settings.php:84 msgid "Admin Page Settings" msgstr "Configuración de página de administrador" -#: admin/includes/admin-settings.php:72 +#: admin/includes/admin-settings.php:85 msgid "Feed Settings" msgstr "Configuración Conectores" -#: admin/includes/category_table.php:27 admin/includes/event_table.php:29 -msgid "event" -msgstr "evento" - -#: admin/includes/category_table.php:28 admin/includes/event_table.php:30 -msgid "events" -msgstr "eventos" - -#: admin/includes/category_table.php:73 admin/includes/event_table.php:74 -msgid "Edit" -msgstr "Editar" - -#: admin/includes/category_table.php:74 admin/includes/category_table.php:148 -#: admin/includes/event_table.php:76 admin/includes/event_table.php:149 -msgid "Delete" -msgstr "Borrar" - -#: admin/includes/category_table.php:110 -msgid "Name" -msgstr "Nombre" - -#: admin/includes/category_table.php:112 -msgid "Slug" -msgstr "Enlace permanente" - -#: admin/includes/event_table.php:115 -msgid "Author" -msgstr "Autor" - -#: admin/includes/event_table.php:116 -msgid "Published" -msgstr "Publicado" - -#: admin/includes/event_table.php:180 -msgid "Filter" -msgstr "Filtro" - -#: admin/includes/event_table.php:300 -#, php-format -msgid "%s ago" -msgstr "hace %s" +#: admin/includes/admin-settings.php:86 +msgid "Category Taxonomy" +msgstr "" #: includes/daterange_helptexts.php:7 msgid "Year" @@ -799,7 +867,7 @@ msgstr "" msgid "The corresponding date_range format is: %1$s" msgstr "" -#: includes/daterange_helptexts.php:59 includes/filterbar.php:291 +#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 msgid "Upcoming" msgstr "Próximamente" @@ -807,7 +875,7 @@ msgstr "Próximamente" msgid "This value defines a range from the actual day to the future." msgstr "" -#: includes/daterange_helptexts.php:64 includes/filterbar.php:295 +#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 msgid "Past" msgstr "Pasado" @@ -815,146 +883,238 @@ msgstr "Pasado" msgid "This value defines a range from the past to the previous day." msgstr "" -#: includes/filterbar.php:233 includes/sc_event-list_helptexts.php:60 +#: includes/event.php:107 +msgid "No valid start date provided" +msgstr "" + +#: includes/events_post_type.php:60 +msgid "Events" +msgstr "Eventos" + +#: includes/events_post_type.php:61 +msgid "Event" +msgstr "" + +#: includes/events_post_type.php:62 +msgid "Add New" +msgstr "Añadir Nuevo" + +#: includes/events_post_type.php:63 +msgid "Add New Event" +msgstr "Añadir Nuevo Evento" + +#: includes/events_post_type.php:64 +msgid "Edit Event" +msgstr "Editar Evento" + +#: includes/events_post_type.php:65 +msgid "New Event" +msgstr "" + +#: includes/events_post_type.php:66 +msgid "View Event" +msgstr "" + +#: includes/events_post_type.php:67 +msgid "View Events" +msgstr "" + +#: includes/events_post_type.php:68 +msgid "Search Events" +msgstr "" + +#: includes/events_post_type.php:70 +msgid "No events found in Trash" +msgstr "" + +#: includes/events_post_type.php:72 +msgid "All Events" +msgstr "Añadir Eventos" + +#: includes/events_post_type.php:73 +msgid "Event Archives" +msgstr "" + +#: includes/events_post_type.php:74 +msgid "Event Attributes" +msgstr "" + +#: includes/events_post_type.php:75 +msgid "Insert into event" +msgstr "" + +#: includes/events_post_type.php:76 +msgid "Uploaded to this event" +msgstr "" + +#: includes/events_post_type.php:77 +msgid "Event List" +msgstr "Listado Eventos" + +#: includes/events_post_type.php:78 +msgid "Filter events list" +msgstr "" + +#: includes/events_post_type.php:79 +msgid "Events list navigation" +msgstr "" + +#: includes/events_post_type.php:80 +msgid "Events list" +msgstr "" + +#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 msgid "Reset" msgstr "" -#: includes/filterbar.php:282 +#: includes/filterbar.php:278 msgid "All" msgstr "Todos" -#: includes/filterbar.php:285 -msgid "Show all dates" -msgstr "Mostrar todas las fechas" - -#: includes/filterbar.php:285 -msgid "Show all categories" -msgstr "Mostrar todas las categorías" +#: includes/filterbar.php:281 +msgid "All Dates" +msgstr "" -#: includes/options_helptexts.php:11 -msgid "Sync Categories" -msgstr "Sincronizar Categorías" +#: includes/options_helptexts.php:10 +msgid "CSV File to import" +msgstr "Importar vía archivo CSV" #: includes/options_helptexts.php:12 -msgid "Keep event categories in sync with post categories automatically" +msgid "Please select the file which contains the event data in CSV format." msgstr "" -#: includes/options_helptexts.php:13 -msgid "Attention" -msgstr "Atención" +#: includes/options_helptexts.php:15 +msgid "Used date format" +msgstr "Formato de Fecha utilizado" -#: includes/options_helptexts.php:14 +#: includes/options_helptexts.php:17 msgid "" -"Please note that this option will delete all categories which are not " -"available in the post categories! Existing Categories with the same slug " -"will be updated." +"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 -msgid "CSV File to import" -msgstr "Importar vía archivo CSV" +#, 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 -msgid "Please select the file which contains the event data in CSV format." +msgid "full year representation, with 4 digits" msgstr "" -#: includes/options_helptexts.php:23 -msgid "Used date format" -msgstr "Formato de Fecha utilizado" +#: includes/options_helptexts.php:21 +msgid "numeric representation of a month, with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:22 +msgid "day of the month, 2 digits with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:24 +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 msgid "" -"With this option the used date format for event start and end date given in " -"the CSV file can be specified." +"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 +msgid "Examples" msgstr "" -#: includes/options_helptexts.php:29 +#: includes/options_helptexts.php:33 msgid "Text for no events" msgstr "Texto para ningún evento" -#: includes/options_helptexts.php:31 +#: includes/options_helptexts.php:35 msgid "" "This option defines the displayed text when no events are available for the " "selected view." msgstr "" -#: includes/options_helptexts.php:34 +#: includes/options_helptexts.php:38 msgid "Multiday filter range" msgstr "" -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:39 msgid "Use the complete event range in the date filter" msgstr "" -#: includes/options_helptexts.php:36 +#: includes/options_helptexts.php:40 msgid "" "This option defines if the complete range of a multiday event shall be " "considered in the date filter." msgstr "" -#: includes/options_helptexts.php:37 +#: includes/options_helptexts.php:41 msgid "" "If disabled, only the start day of an event is considered in the filter." msgstr "" -#: includes/options_helptexts.php:38 +#: includes/options_helptexts.php:42 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:41 +#: includes/options_helptexts.php:45 msgid "Date display" msgstr "Indicación de la fecha" -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:46 msgid "Show the date only once per day" msgstr "" -#: includes/options_helptexts.php:43 +#: includes/options_helptexts.php:47 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:44 +#: includes/options_helptexts.php:48 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:47 +#: includes/options_helptexts.php:51 msgid "HTML tags" msgstr "Etiquetas HTML" -#: includes/options_helptexts.php:48 includes/options_helptexts.php:53 +#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 #, php-format msgid "Allow HTML tags in the event field \"%1$s\"" msgstr "" -#: includes/options_helptexts.php:49 includes/options_helptexts.php:54 +#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 #, php-format msgid "" "This option specifies if HTML tags are allowed in the event field \"%1$s\"." msgstr "" -#: includes/options_helptexts.php:57 +#: includes/options_helptexts.php:61 msgid "Preferred language file" msgstr "" -#: includes/options_helptexts.php:58 +#: includes/options_helptexts.php:62 msgid "Load translations from general language directory first" msgstr "" -#: includes/options_helptexts.php:59 +#: includes/options_helptexts.php:63 #, 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:60 +#: includes/options_helptexts.php:64 #, php-format msgid "" "If you want to load your own language file from the general language " @@ -962,251 +1122,288 @@ msgid "" "language directory, you have to enable this option." msgstr "" -#: includes/options_helptexts.php:64 -msgid "Text for \"Show details\"" +#: includes/options_helptexts.php:68 +msgid "Events permalink slug" msgstr "" -#: includes/options_helptexts.php:65 +#: includes/options_helptexts.php:69 msgid "" -"With this option the displayed text for the link to show the event details " +"With this option the slug for the events permalink URLs can be defined." +msgstr "" + +#: includes/options_helptexts.php:72 +msgid "Text for \"Show content\"" +msgstr "" + +#: includes/options_helptexts.php:73 +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:68 -msgid "Text for \"Hide details\"" +#: includes/options_helptexts.php:76 +msgid "Text for \"Hide content\"" msgstr "" -#: includes/options_helptexts.php:69 +#: includes/options_helptexts.php:77 msgid "" -"With this option the displayed text for the link to hide the event details " +"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:72 +#: includes/options_helptexts.php:80 msgid "Disable CSS file" msgstr "Deshabitar CSS" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:81 #, php-format msgid "Disable the %1$s file." msgstr "" -#: includes/options_helptexts.php:74 +#: includes/options_helptexts.php:82 #, php-format msgid "With this option you can disable the inclusion of the %1$s file." msgstr "" -#: includes/options_helptexts.php:75 +#: includes/options_helptexts.php:83 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:79 +#: includes/options_helptexts.php:87 msgid "Date format in edit form" msgstr "" -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:88 msgid "" "This option sets the displayed date format for the event date fields in the " "event new / edit form." msgstr "" -#: includes/options_helptexts.php:81 +#: includes/options_helptexts.php:89 msgid "The default is an empty string to use the Wordpress standard setting." msgstr "" -#: includes/options_helptexts.php:82 +#: includes/options_helptexts.php:90 #, php-format msgid "" "All available options to specify the date format can be found %1$shere%2$s." msgstr "" -#: includes/options_helptexts.php:86 includes/options_helptexts.php:114 +#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 msgid "Enable RSS feed" msgstr "" -#: includes/options_helptexts.php:87 +#: includes/options_helptexts.php:95 msgid "Enable support for an event RSS feed" msgstr "" -#: includes/options_helptexts.php:88 +#: includes/options_helptexts.php:96 msgid "This option activates a RSS feed for the events." msgstr "" -#: includes/options_helptexts.php:89 +#: includes/options_helptexts.php:97 msgid "" "You have to enable this option if you want to use one of the RSS feed " "features." msgstr "" -#: includes/options_helptexts.php:92 +#: includes/options_helptexts.php:100 msgid "Feed name" msgstr "" -#: includes/options_helptexts.php:93 +#: includes/options_helptexts.php:101 #, php-format msgid "This option sets the feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:94 +#: 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 "" -#: includes/options_helptexts.php:97 +#: includes/options_helptexts.php:105 msgid "Feed Description" msgstr "" -#: includes/options_helptexts.php:98 +#: includes/options_helptexts.php:106 #, php-format msgid "This options set the feed description. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:99 +#: 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 "" -#: includes/options_helptexts.php:102 +#: includes/options_helptexts.php:110 msgid "Listed events" msgstr "" -#: includes/options_helptexts.php:103 +#: includes/options_helptexts.php:111 msgid "Only show upcoming events in feed" msgstr "" -#: includes/options_helptexts.php:104 +#: includes/options_helptexts.php:112 msgid "" "If this option is enabled only the upcoming events are listed in the feed." msgstr "" -#: includes/options_helptexts.php:105 +#: includes/options_helptexts.php:113 msgid "If disabled all events (upcoming and past) will be listed." msgstr "" -#: includes/options_helptexts.php:108 +#: includes/options_helptexts.php:116 msgid "Add RSS feed link in head" msgstr "" -#: includes/options_helptexts.php:109 +#: includes/options_helptexts.php:117 msgid "Add RSS feed link in the html head" msgstr "" -#: includes/options_helptexts.php:110 +#: includes/options_helptexts.php:118 msgid "This option adds a RSS feed in the html head for the events." msgstr "" -#: includes/options_helptexts.php:111 +#: includes/options_helptexts.php:119 msgid "There are 2 alternatives to include the RSS feed" msgstr "" -#: includes/options_helptexts.php:112 +#: 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 "" -#: includes/options_helptexts.php:113 +#: 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." msgstr "" -#: includes/options_helptexts.php:114 +#: includes/options_helptexts.php:122 #, php-format msgid "This option is only valid if the setting %1$s is enabled." msgstr "" -#: includes/options_helptexts.php:117 +#: includes/options_helptexts.php:125 msgid "Position of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "at the top (above the navigation bar)" msgstr "" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "between navigation bar and events" msgstr "" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "at the bottom" msgstr "" -#: includes/options_helptexts.php:119 +#: includes/options_helptexts.php:127 msgid "" "This option specifies the position of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:120 includes/options_helptexts.php:126 -#: includes/options_helptexts.php:132 includes/options_helptexts.php:138 +#: 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 "" -#: includes/options_helptexts.php:123 +#: includes/options_helptexts.php:131 msgid "Align of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "left" msgstr "" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "center" msgstr "" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "right" msgstr "" -#: includes/options_helptexts.php:125 +#: includes/options_helptexts.php:133 msgid "" "This option specifies the align of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:129 +#: includes/options_helptexts.php:137 msgid "Feed link text" msgstr "" -#: includes/options_helptexts.php:130 +#: includes/options_helptexts.php:138 msgid "" "This option specifies the caption of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:131 +#: includes/options_helptexts.php:139 msgid "" "Insert an empty text to hide any text if you only want to show the rss " "image." msgstr "" -#: includes/options_helptexts.php:135 +#: includes/options_helptexts.php:143 msgid "Feed link image" msgstr "" -#: includes/options_helptexts.php:136 +#: includes/options_helptexts.php:144 msgid "Show rss image in feed link" msgstr "" -#: includes/options_helptexts.php:137 +#: 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." msgstr "" -#: includes/options.php:43 -msgid "Show details" +#: includes/options_helptexts.php:151 +msgid "Event Category handling" +msgstr "" + +#: includes/options_helptexts.php:152 +msgid "Use Post Categories" +msgstr "" + +#: includes/options_helptexts.php:153 +msgid "" +"Do not maintain seperate categories for the events, and use the existing " +"post categories instead." +msgstr "" + +#: includes/options_helptexts.php:154 +msgid "Attention" +msgstr "Atención" + +#: includes/options_helptexts.php:155 +msgid "" +"This option cannot be changed directly, but you can go to the Event Category" +" switching page from here." msgstr "" -#: includes/options.php:44 -msgid "Hide details" +#: includes/options.php:40 +msgid "events" +msgstr "" + +#: includes/options.php:41 +msgid "Show content" +msgstr "" + +#: includes/options.php:42 +msgid "Hide content" msgstr "" #: includes/sc_event-list_helptexts.php:7 @@ -1217,7 +1414,7 @@ msgstr "" #, 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-details view of " +"%1$s) is provided for this attribute, directly the event-content view of " "this event is shown." msgstr "" @@ -1573,14 +1770,14 @@ msgstr "" #: includes/sc_event-list_helptexts.php:100 msgid "" -"This attribute specifies if the details are displayed in the event list.<br />\n" -"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n" -"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event" +"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 msgid "" -"This attribute specifies if the details should be truncate to the given " +"This attribute specifies if the content should be truncate to the given " "number of characters in the event list." msgstr "" @@ -1591,10 +1788,10 @@ msgstr "" #: includes/sc_event-list_helptexts.php:110 msgid "" -"This attribute specifies if the details should be collapsed initially.<br />\n" -"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n" -"\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the details.<br />\n" -"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view." +"This attribute specifies if the content 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 @@ -1602,7 +1799,7 @@ 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" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n" -"\t With \"events_with_details_only\" the link is only added in the event list for events with event details." +"\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 @@ -1627,7 +1824,7 @@ msgid "" "\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:134 +#: includes/sc_event-list.php:135 msgid "Event Information:" msgstr "Información del evento:" @@ -1704,20 +1901,20 @@ msgid "" msgstr "" #: includes/widget_helptexts.php:59 -msgid "Show event details" -msgstr "Ver detalles del evento" +msgid "Show event content" +msgstr "" #: includes/widget_helptexts.php:61 -msgid "This option defines if the event details will be displayed." +msgid "This option defines if the event content will be displayed." msgstr "" #: includes/widget_helptexts.php:66 -msgid "Truncate details to" -msgstr "Truncar los datos para" +msgid "Truncate content to" +msgstr "" #: includes/widget_helptexts.php:68 msgid "" -"If the event details are diplayed this option defines the number of diplayed" +"If the event content are diplayed this option defines the number of diplayed" " characters." 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 new file mode 100644 index 0000000000000000000000000000000000000000..e0178cdcb958f7af7a8356f91633a33137eb8dc6 Binary files /dev/null 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 new file mode 100644 index 0000000000000000000000000000000000000000..cb05b3a9055a7c78e0f2cbf5d44babd1241e7e3e --- /dev/null +++ b/wp-content/plugins/event-list/languages/event-list-et_EE.po @@ -0,0 +1,1982 @@ +# Translation file for the 'Event List' WordPress plugin +# Copyright (C) 2018 by mibuthu +# This file is distributed under the same license as the corresponding wordpress plugin. +# +# Translators: +# Annika Kreitsman <annikamai@inarmonia.ee>, 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" +"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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: et_EE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin/admin.php:57 +#, php-format +msgid "Errors during upgrade of plugin %1$s" +msgstr "" + +#: admin/admin.php:57 +#, php-format +msgid "Upgrade of plugin %1$s successful" +msgstr "" + +#: admin/admin.php:106 admin/includes/admin-settings.php:65 +msgid "Event List Settings" +msgstr "Sündmuste loendi seaded" + +#: admin/admin.php:106 +msgid "Settings" +msgstr "Seaded" + +#: admin/admin.php:110 admin/includes/admin-about.php:37 +msgid "About Event List" +msgstr "Sündmuste loendist" + +#: admin/admin.php:110 +msgid "About" +msgstr "" + +#: admin/admin.php:132 +#, 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 +msgid "General" +msgstr "" + +#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:105 +msgid "Shortcode Attributes" +msgstr "" + +#: admin/includes/admin-about.php:72 +msgid "Help and Instructions" +msgstr "Abi ja juhised" + +#: admin/includes/admin-about.php:73 +#, php-format +msgid "You can manage the events %1$shere%2$s" +msgstr "" + +#: admin/includes/admin-about.php:74 +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 +#, 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 +#, 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 +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 +#, 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 +msgid "The available widget options are described in their tooltip text." +msgstr "" + +#: admin/includes/admin-about.php:80 +#, 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 +msgid "Add links to the single events" +msgstr "Lisa link sündmuse juurde" + +#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 +msgid "Add a link to the Event List page" +msgstr "Lisa link lehe sündmuste loendisse" + +#: admin/includes/admin-about.php:81 +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 +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 +#, 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 +#, 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 +#, 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 +msgid "Settings page" +msgstr "Seadete leht" + +#: admin/includes/admin-about.php:92 +msgid "About the plugin author" +msgstr "Plugina autorist" + +#: admin/includes/admin-about.php:94 +#, 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" +msgstr "" + +#: admin/includes/admin-about.php:95 +#, 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" +msgstr "" + +#: admin/includes/admin-about.php:96 +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 +#, php-format +msgid "Donate with %1$s" +msgstr "" + +#: admin/includes/admin-about.php:107 +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 +#, 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 +msgid "" +"Below you can find a list of all supported attributes with their " +"descriptions and available options:" +msgstr "" + +#: admin/includes/admin-about.php:124 +msgid "Attribute name" +msgstr "Atribuudi nimi" + +#: admin/includes/admin-about.php:125 +msgid "Value options" +msgstr "" + +#: admin/includes/admin-about.php:126 +msgid "Default value" +msgstr "" + +#: admin/includes/admin-about.php:127 +msgid "Description" +msgstr "Kirjeldus" + +#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 +#: includes/sc_event-list_helptexts.php:31 +msgid "Filter Syntax" +msgstr "" + +#: admin/includes/admin-about.php:146 +msgid "" +"For date and cat filters you can specify complex filters with the following " +"syntax:" +msgstr "" + +#: admin/includes/admin-about.php:147 +#, 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 +msgid "AND" +msgstr "JA" + +#: admin/includes/admin-about.php:147 +msgid "OR" +msgstr "VÕI" + +#: admin/includes/admin-about.php:147 +msgid "or" +msgstr "või" + +#: admin/includes/admin-about.php:147 +msgid "and" +msgstr "ja" + +#: admin/includes/admin-about.php:148 +msgid "Examples for cat filters:" +msgstr "" + +#: admin/includes/admin-about.php:149 +#, 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 +#, 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 +#, 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 +msgid "Available Date Formats" +msgstr "Saadaolevad kuupäeva vormingud" + +#: admin/includes/admin-about.php:157 +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 +msgid "Available Date Range Formats" +msgstr "Saadaolevad kuupäevavahemiku formaadid" + +#: admin/includes/admin-about.php:166 +msgid "For date filters you can use the following daterange formats:" +msgstr "" + +#: admin/includes/admin-about.php:178 +msgid "Value" +msgstr "Väärtus" + +#: admin/includes/admin-about.php:182 +msgid "Example" +msgstr "Näide" + +#: admin/includes/admin-categories.php:38 +msgid "Synchronize with post categories" +msgstr "Sünkrooni postituste kategooriatega" + +#: admin/includes/admin-categories.php:46 +#, php-format +msgid "%1$s categories modified (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:47 +#, php-format +msgid "%1$s categories added (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:48 +#, php-format +msgid "%1$s categories deleted (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:50 +#, php-format +msgid "%1$s categories not modified (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:51 +#, php-format +msgid "%1$s categories not added (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:52 +#, php-format +msgid "%1$s categories not deleted (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:55 +msgid "An Error occured during the category sync" +msgstr "Kategooria sünkroonimisel tekkis viga" + +#: admin/includes/admin-categories.php:59 +msgid "Category sync finished" +msgstr "Kategooria sünkroonimine on lõpetatud" + +#: admin/includes/admin-category-sync.php:45 +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 +msgid "Affected Categories when switching to seperate Event Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:63 +msgid "Switch option to seperate Event Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:64 +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 +msgid "" +"Afterwards the event categories are independent of the post categories." +msgstr "" + +#: admin/includes/admin-category-sync.php:68 +msgid "Affected Categories when switching to use Post Categories for events" +msgstr "" + +#: admin/includes/admin-category-sync.php:69 +msgid "Switch option to use Post Categories for events" +msgstr "" + +#: admin/includes/admin-category-sync.php:70 +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 +msgid "Event Categories: Synchronise with Post Categories" +msgstr "Sündmuste kategooriate sünkroonimine postituskategooriatega" + +#: admin/includes/admin-category-sync.php:74 +msgid "Start synchronisation" +msgstr "Käivitage sünkroonimine" + +#: admin/includes/admin-category-sync.php:75 +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 +msgid "Categories to modify" +msgstr "" + +#: admin/includes/admin-category-sync.php:91 +msgid "Categories to add" +msgstr "" + +#: admin/includes/admin-category-sync.php:92 +msgid "Categories to delete (optional)" +msgstr "" + +#: admin/includes/admin-category-sync.php:93 +msgid "Delete not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:97 +msgid "Categories with differences" +msgstr "" + +#: admin/includes/admin-category-sync.php:98 +msgid "Categories to add (optional)" +msgstr "" + +#: admin/includes/admin-category-sync.php:99 +msgid "Add not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:117 +msgid "none" +msgstr "pole ühtegi" + +#: admin/includes/admin-import.php:49 +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 +msgid "Step" +msgstr "Samm" + +#: admin/includes/admin-import.php:69 +msgid "Set import file and options" +msgstr "Määrake impordifail ja valikud" + +#: admin/includes/admin-import.php:72 +#, php-format +msgid "Proceed with Step %1$s" +msgstr "" + +#: admin/includes/admin-import.php:75 +msgid "Example file" +msgstr "Näidisfail" + +#: admin/includes/admin-import.php:76 +#, 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 +msgid "Note" +msgstr "Märge" + +#: admin/includes/admin-import.php:77 +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 +msgid "Sorry, there has been an error." +msgstr "Vabandage, tekkis viga." + +#: admin/includes/admin-import.php:85 +msgid "The file does not exist, please try again." +msgstr "Sellist faili ei eksisteeri, palun proovi uuesti." + +#: admin/includes/admin-import.php:93 +msgid "The uploaded file does not have the required csv extension." +msgstr "" + +#: admin/includes/admin-import.php:105 +msgid "Events review and additonal category selection" +msgstr "" + +#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +msgid "Error" +msgstr "" + +#: admin/includes/admin-import.php:111 +msgid "This CSV file cannot be imported" +msgstr "" + +#: admin/includes/admin-import.php:122 +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 +msgid "Warning" +msgstr "" + +#: admin/includes/admin-import.php:126 +#, 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 +#, php-format +msgid "CSV line %1$s" +msgstr "" + +#: admin/includes/admin-import.php:144 +msgid "You can still import all other events listed below." +msgstr "" + +#: admin/includes/admin-import.php:163 +msgid "" +"The following category slugs are not available and will be removed from the " +"imported events" +msgstr "" + +#: admin/includes/admin-import.php:169 +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 +msgid "Import result" +msgstr "" + +#: admin/includes/admin-import.php:201 +#, php-format +msgid "Import of %1$s events successful!" +msgstr "" + +#: admin/includes/admin-import.php:202 +msgid "Go back to All Events" +msgstr "Mine tagasi \"Kõik sündmused\" juurde" + +#: admin/includes/admin-import.php:206 +msgid "Errors during Import" +msgstr "" + +#: admin/includes/admin-import.php:215 +msgid "Event from CSV-line" +msgstr "" + +#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 +#: includes/widget_helptexts.php:8 +msgid "Title" +msgstr "Pealkiri" + +#: admin/includes/admin-import.php:227 +msgid "Start Date" +msgstr "Alguskuupäev" + +#: admin/includes/admin-import.php:228 +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 +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 +msgid "Location" +msgstr "Koht" + +#: admin/includes/admin-import.php:231 +msgid "Content" +msgstr "Sisu" + +#: admin/includes/admin-import.php:232 +msgid "Category slugs" +msgstr "" + +#: admin/includes/admin-import.php:274 +msgid "Header line is missing or not correct!" +msgstr "" + +#: admin/includes/admin-import.php:275 +#, 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 +#, php-format +msgid "Wrong number of items in line (%1$s items found, 6-7 required)" +msgstr "" + +#: admin/includes/admin-import.php:309 +msgid "Empty event title found" +msgstr "" + +#: admin/includes/admin-import.php:315 +msgid "Wrong date format for startdate" +msgstr "" + +#: admin/includes/admin-import.php:324 +msgid "Wrong date format for enddate" +msgstr "" + +#: admin/includes/admin-import.php:365 +msgid "Import events" +msgstr "Impordi sündmused" + +#: admin/includes/admin-import.php:366 +msgid "Add additional categories" +msgstr "Lisage täiendavaid kategooriaid" + +#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +msgid "Import" +msgstr "Impordi" + +#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +msgid "No events found" +msgstr "Ühtegi sündmust ei leitud" + +#: admin/includes/admin-import.php:432 +msgid "Saving of event failed!" +msgstr "" + +#: admin/includes/admin-main.php:60 +msgid "Event Date" +msgstr "Sündmuse kuupäev" + +#: admin/includes/admin-main.php:64 +msgid "Author" +msgstr "Autor" + +#: admin/includes/admin-main.php:126 +#, php-format +msgid "Add a copy of %1$s" +msgstr "" + +#: admin/includes/admin-main.php:126 +msgid "Copy" +msgstr "Kopeeri" + +#: admin/includes/admin-new.php:51 +msgid "Event data" +msgstr "Sündmuse andmed" + +#: admin/includes/admin-new.php:80 +msgid "Add Copy" +msgstr "Lisa koopia" + +#: admin/includes/admin-new.php:84 +msgid "Date" +msgstr "Kuupäev" + +#: admin/includes/admin-new.php:84 +msgid "required" +msgstr "nõutud" + +#: admin/includes/admin-new.php:87 +msgid "Multi-Day Event" +msgstr "Mitmepäevane sündmus" + +#: admin/includes/admin-new.php:106 +msgid "Event Title" +msgstr "Sündmuse pealkiri" + +#: admin/includes/admin-new.php:121 +msgid "Event Content" +msgstr "Sündmuse sisu" + +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +msgid "Event updated." +msgstr "Sündmus uuendatud." + +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +msgid "View event" +msgstr "Vaata sündmust" + +#: admin/includes/admin-new.php:184 +#, php-format +msgid "Event restored to revision from %1$s" +msgstr "" + +#: admin/includes/admin-new.php:185 +msgid "Event published." +msgstr "Sündmus avaldatud." + +#: admin/includes/admin-new.php:187 +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 +msgid "Preview event" +msgstr "Sündmuse eelvaade" + +#: admin/includes/admin-new.php:188 +#, php-format +msgid "Event scheduled for: %1$s>" +msgstr "" + +#: admin/includes/admin-new.php:190 +msgid "Event draft updated." +msgstr "Sündmuse visand uuendatud." + +#: admin/includes/admin-settings.php:71 +msgid "Go to Event Category switching page" +msgstr "" + +#: admin/includes/admin-settings.php:83 +msgid "Frontend Settings" +msgstr "" + +#: admin/includes/admin-settings.php:84 +msgid "Admin Page Settings" +msgstr "" + +#: admin/includes/admin-settings.php:85 +msgid "Feed Settings" +msgstr "" + +#: admin/includes/admin-settings.php:86 +msgid "Category Taxonomy" +msgstr "" + +#: includes/daterange_helptexts.php:7 +msgid "Year" +msgstr "Aasta" + +#: includes/daterange_helptexts.php:8 +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 +#, 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 +msgid "the resulting year" +msgstr "" + +#: includes/daterange_helptexts.php:12 +msgid "Month" +msgstr "Kuu" + +#: includes/daterange_helptexts.php:13 +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 +msgid "the resulting month" +msgstr "" + +#: includes/daterange_helptexts.php:17 +msgid "Day" +msgstr "Päev" + +#: includes/daterange_helptexts.php:18 +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 +msgid "Relative Year" +msgstr "" + +#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28 +#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42 +#, php-format +msgid "%1$s from now can be specified in the following notation: %2$s" +msgstr "" + +#: includes/daterange_helptexts.php:22 +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 +#, 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 +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 +#, php-format +msgid "Additionally the following values are available: %1$s" +msgstr "" + +#: includes/daterange_helptexts.php:27 +msgid "Relative Month" +msgstr "" + +#: includes/daterange_helptexts.php:28 +msgid "A relative month" +msgstr "" + +#: includes/daterange_helptexts.php:29 +msgid "number of months" +msgstr "" + +#: includes/daterange_helptexts.php:33 +msgid "Relative Week" +msgstr "" + +#: includes/daterange_helptexts.php:34 +msgid "A relative week" +msgstr "" + +#: includes/daterange_helptexts.php:35 +msgid "number of weeks" +msgstr "" + +#: includes/daterange_helptexts.php:36 +msgid "the resulting week" +msgstr "" + +#: includes/daterange_helptexts.php:37 +#, 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 +msgid "Relative Day" +msgstr "" + +#: includes/daterange_helptexts.php:42 +msgid "A relative day" +msgstr "" + +#: includes/daterange_helptexts.php:43 +msgid "number of days" +msgstr "" + +#: includes/daterange_helptexts.php:49 +msgid "Date range" +msgstr "Kuupäevavahemik" + +#: includes/daterange_helptexts.php:50 +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 +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 +#, php-format +msgid "The corresponding date_range format is: %1$s" +msgstr "" + +#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 +msgid "Upcoming" +msgstr "Tulemas" + +#: includes/daterange_helptexts.php:60 +msgid "This value defines a range from the actual day to the future." +msgstr "" + +#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 +msgid "Past" +msgstr "Toimunud" + +#: includes/daterange_helptexts.php:65 +msgid "This value defines a range from the past to the previous day." +msgstr "" + +#: includes/event.php:107 +msgid "No valid start date provided" +msgstr "" + +#: includes/events_post_type.php:60 +msgid "Events" +msgstr "Sündmused" + +#: includes/events_post_type.php:61 +msgid "Event" +msgstr "Sündmus" + +#: includes/events_post_type.php:62 +msgid "Add New" +msgstr "Lisa uus" + +#: includes/events_post_type.php:63 +msgid "Add New Event" +msgstr "Lisa uus sündmus" + +#: includes/events_post_type.php:64 +msgid "Edit Event" +msgstr "Muuda sündmust" + +#: includes/events_post_type.php:65 +msgid "New Event" +msgstr "Uus sündmus" + +#: includes/events_post_type.php:66 +msgid "View Event" +msgstr "Vaata sündmust" + +#: includes/events_post_type.php:67 +msgid "View Events" +msgstr "Vaata sündmusi" + +#: includes/events_post_type.php:68 +msgid "Search Events" +msgstr "Otsi sündmusi" + +#: includes/events_post_type.php:70 +msgid "No events found in Trash" +msgstr "Prügikastist ei leitud ühtegi sündmust" + +#: includes/events_post_type.php:72 +msgid "All Events" +msgstr "Kõik sündmused" + +#: includes/events_post_type.php:73 +msgid "Event Archives" +msgstr "Sündmuste arhiiv" + +#: includes/events_post_type.php:74 +msgid "Event Attributes" +msgstr "Sündmuse atribuudid" + +#: includes/events_post_type.php:75 +msgid "Insert into event" +msgstr "" + +#: includes/events_post_type.php:76 +msgid "Uploaded to this event" +msgstr "" + +#: includes/events_post_type.php:77 +msgid "Event List" +msgstr "Sündmuse loend" + +#: includes/events_post_type.php:78 +msgid "Filter events list" +msgstr "Filtreeri sündmuste loendit" + +#: includes/events_post_type.php:79 +msgid "Events list navigation" +msgstr "Sündmuste loendi navigeerimine" + +#: includes/events_post_type.php:80 +msgid "Events list" +msgstr "Sündmuste loend" + +#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +msgid "Reset" +msgstr "Lähtesta" + +#: includes/filterbar.php:278 +msgid "All" +msgstr "Kõik" + +#: includes/filterbar.php:281 +msgid "All Dates" +msgstr "Kõik kuupäevad" + +#: includes/options_helptexts.php:10 +msgid "CSV File to import" +msgstr "" + +#: includes/options_helptexts.php:12 +msgid "Please select the file which contains the event data in CSV format." +msgstr "" + +#: includes/options_helptexts.php:15 +msgid "Used date format" +msgstr "Kasutatud kuupäevavorming" + +#: includes/options_helptexts.php:17 +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 +#, 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 +msgid "full year representation, with 4 digits" +msgstr "" + +#: includes/options_helptexts.php:21 +msgid "numeric representation of a month, with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:22 +msgid "day of the month, 2 digits with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:24 +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 +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 +msgid "Examples" +msgstr "" + +#: includes/options_helptexts.php:33 +msgid "Text for no events" +msgstr "Tekst sündmuste puudumisel" + +#: includes/options_helptexts.php:35 +msgid "" +"This option defines the displayed text when no events are available for the " +"selected view." +msgstr "" + +#: includes/options_helptexts.php:38 +msgid "Multiday filter range" +msgstr "Mitmepäevase filtri vahemik" + +#: includes/options_helptexts.php:39 +msgid "Use the complete event range in the date filter" +msgstr "" + +#: includes/options_helptexts.php:40 +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 +msgid "" +"If disabled, only the start day of an event is considered in the filter." +msgstr "" + +#: includes/options_helptexts.php:42 +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 +msgid "Date display" +msgstr "Kuupäeva kuvamine" + +#: includes/options_helptexts.php:46 +msgid "Show the date only once per day" +msgstr "Kuva kuupäeva ainult ühe korra päeva kohta" + +#: includes/options_helptexts.php:47 +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 +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 +msgid "HTML tags" +msgstr "" + +#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 +#, php-format +msgid "Allow HTML tags in the event field \"%1$s\"" +msgstr "" + +#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 +#, php-format +msgid "" +"This option specifies if HTML tags are allowed in the event field \"%1$s\"." +msgstr "" + +#: includes/options_helptexts.php:61 +msgid "Preferred language file" +msgstr "" + +#: includes/options_helptexts.php:62 +msgid "Load translations from general language directory first" +msgstr "" + +#: includes/options_helptexts.php:63 +#, 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 +#, 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 +msgid "Events permalink slug" +msgstr "" + +#: includes/options_helptexts.php:69 +msgid "" +"With this option the slug for the events permalink URLs can be defined." +msgstr "" + +#: includes/options_helptexts.php:72 +msgid "Text for \"Show content\"" +msgstr "Tekst \"Näita sisu\" jaoks" + +#: includes/options_helptexts.php:73 +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 +msgid "Text for \"Hide content\"" +msgstr "Tekst \"Peida sisu\" jaoks" + +#: includes/options_helptexts.php:77 +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 +msgid "Disable CSS file" +msgstr "Keela CSS-fail" + +#: includes/options_helptexts.php:81 +#, php-format +msgid "Disable the %1$s file." +msgstr "Keela %1$s fail." + +#: includes/options_helptexts.php:82 +#, php-format +msgid "With this option you can disable the inclusion of the %1$s file." +msgstr "" + +#: includes/options_helptexts.php:83 +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 +msgid "Date format in edit form" +msgstr "Kuupäevavorming muutmisvormis" + +#: includes/options_helptexts.php:88 +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 +msgid "The default is an empty string to use the Wordpress standard setting." +msgstr "" + +#: includes/options_helptexts.php:90 +#, 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 +msgid "Enable RSS feed" +msgstr "Luba RSS-voog" + +#: includes/options_helptexts.php:95 +msgid "Enable support for an 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:97 +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 "" + +#: includes/options_helptexts.php:101 +#, php-format +msgid "This option sets the feed name. The default value is %1$s." +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)." +msgstr "" + +#: includes/options_helptexts.php:105 +msgid "Feed Description" +msgstr "" + +#: includes/options_helptexts.php:106 +#, php-format +msgid "This options set the feed description. The default value is %1$s." +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." +msgstr "" + +#: includes/options_helptexts.php:110 +msgid "Listed events" +msgstr "Loetletud sündmused" + +#: 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:112 +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" +msgstr "" + +#: includes/options_helptexts.php:117 +msgid "Add RSS feed link in the html head" +msgstr "" + +#: includes/options_helptexts.php:118 +msgid "This option adds a RSS feed in the html head for the events." +msgstr "" + +#: includes/options_helptexts.php:119 +msgid "There are 2 alternatives to include the RSS 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 "" + +#: 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." +msgstr "" + +#: includes/options_helptexts.php:122 +#, php-format +msgid "This option is only valid if the setting %1$s is enabled." +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: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 "" + +#: 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:137 +msgid "Feed link text" +msgstr "" + +#: includes/options_helptexts.php:138 +msgid "" +"This option specifies the caption of the RSS feed link in the event list." +msgstr "" + +#: includes/options_helptexts.php:139 +msgid "" +"Insert an empty text to hide any text if you only want to show the rss " +"image." +msgstr "" + +#: includes/options_helptexts.php:143 +msgid "Feed link image" +msgstr "" + +#: includes/options_helptexts.php:144 +msgid "Show rss image in feed link" +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." +msgstr "" + +#: includes/options_helptexts.php:151 +msgid "Event Category handling" +msgstr "" + +#: includes/options_helptexts.php:152 +msgid "Use Post Categories" +msgstr "Kasuta postituste kategooriaid" + +#: includes/options_helptexts.php:153 +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 +msgid "Attention" +msgstr "Tähelepanu" + +#: includes/options_helptexts.php:155 +msgid "" +"This option cannot be changed directly, but you can go to the Event Category" +" switching page from here." +msgstr "" + +#: includes/options.php:40 +msgid "events" +msgstr "" + +#: includes/options.php:41 +msgid "Show content" +msgstr "Näita sisu" + +#: includes/options.php:42 +msgid "Hide content" +msgstr "Peida sisu" + +#: includes/sc_event-list_helptexts.php:7 +msgid "event-id" +msgstr "" + +#: includes/sc_event-list_helptexts.php:8 +#, 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 +msgid "year" +msgstr "aasta" + +#: includes/sc_event-list_helptexts.php:11 +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 +#, 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 +msgid "category slug" +msgstr "" + +#: includes/sc_event-list_helptexts.php:15 +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 +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 +msgid "This attribute defines the initial order of the events." +msgstr "" + +#: includes/sc_event-list_helptexts.php:20 +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 +#, 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 +#, 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 +#, 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 +#, php-format +msgid "See %1$s description if you want to define complex filters." +msgstr "" + +#: includes/sc_event-list_helptexts.php:28 +msgid "category slugs" +msgstr "" + +#: includes/sc_event-list_helptexts.php:29 +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 +#, 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 +#, 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 +msgid "number" +msgstr "number" + +#: includes/sc_event-list_helptexts.php:34 +#, 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 +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 +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 +#, 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 +#, 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 +#, 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 +msgid "" +"Find below an overview of the available filterbar items and their options:" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "filterbar item" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:63 +msgid "description" +msgstr "kirjeldus" + +#: includes/sc_event-list_helptexts.php:46 +msgid "item options" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "option values" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "default value" +msgstr "vaikeväärtus" + +#: includes/sc_event-list_helptexts.php:46 +msgid "option description" +msgstr "" + +#: includes/sc_event-list_helptexts.php:47 +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 +msgid "Add an entry to show all events." +msgstr "" + +#: includes/sc_event-list_helptexts.php:49 +#: includes/sc_event-list_helptexts.php:54 +msgid "Add an entry to show all upcoming events." +msgstr "" + +#: includes/sc_event-list_helptexts.php:50 +#: includes/sc_event-list_helptexts.php:55 +msgid "Add an entry to show events in the past." +msgstr "" + +#: includes/sc_event-list_helptexts.php:51 +msgid "Set descending or ascending order of year entries." +msgstr "" + +#: includes/sc_event-list_helptexts.php:52 +msgid "Show a list of all available months." +msgstr "" + +#: includes/sc_event-list_helptexts.php:56 +msgid "Set descending or ascending order of month entries." +msgstr "" + +#: includes/sc_event-list_helptexts.php:57 +msgid "php date-formats" +msgstr "" + +#: includes/sc_event-list_helptexts.php:57 +msgid "Set the displayed date format of the month entries." +msgstr "" + +#: includes/sc_event-list_helptexts.php:58 +#, 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 +#, 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 +msgid "Show a list of all available categories." +msgstr "" + +#: includes/sc_event-list_helptexts.php:59 +msgid "Add an entry to show events from all categories." +msgstr "" + +#: includes/sc_event-list_helptexts.php:60 +msgid "A link to reset the eventlist filter to standard." +msgstr "" + +#: includes/sc_event-list_helptexts.php:60 +msgid "any text" +msgstr "" + +#: includes/sc_event-list_helptexts.php:60 +msgid "Set the caption of the link." +msgstr "" + +#: includes/sc_event-list_helptexts.php:61 +msgid "Find below an overview of the available filterbar display options:" +msgstr "" + +#: includes/sc_event-list_helptexts.php:63 +msgid "display option" +msgstr "" + +#: includes/sc_event-list_helptexts.php:63 +msgid "available for" +msgstr "" + +#: includes/sc_event-list_helptexts.php:64 +#, 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 +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 +msgid "Shows a simple link which can be clicked." +msgstr "" + +#: includes/sc_event-list_helptexts.php:67 +msgid "Find below some declaration examples with descriptions:" +msgstr "" + +#: includes/sc_event-list_helptexts.php:69 +#, 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 +#, 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 +msgid "option_name" +msgstr "" + +#: includes/sc_event-list_helptexts.php:71 +msgid "value" +msgstr "" + +#: includes/sc_event-list_helptexts.php:72 +#, 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 +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 +#, 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 +msgid "This attribute has no influence if only a single event is shown." +msgstr "" + +#: includes/sc_event-list_helptexts.php:80 +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 +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 +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 +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 +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 +#, php-format +msgid "With the standard value %1$s the full text is displayed." +msgstr "" + +#: includes/sc_event-list_helptexts.php:110 +msgid "" +"This attribute specifies if the content 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 +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" +"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n" +"\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 +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" +"\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 />\n" +"\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 +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 +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 +msgid "Event Information:" +msgstr "Sündmuse info:" + +#: includes/widget_helptexts.php:10 +msgid "This option defines the displayed title for the widget." +msgstr "" + +#: includes/widget_helptexts.php:15 +msgid "Category Filter" +msgstr "Kategooria filter" + +#: includes/widget_helptexts.php:17 +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 +msgid "Number of listed events" +msgstr "Määra, mitu sündmust kuvatakse" + +#: includes/widget_helptexts.php:24 +msgid "The number of upcoming events to display" +msgstr "Määra, mitu eelseisvat sündmust kuvatakse" + +#: includes/widget_helptexts.php:29 +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 +msgid "characters" +msgstr "tähemärgini" + +#: includes/widget_helptexts.php:31 +msgid "" +"This option defines the number of displayed characters for the event title." +msgstr "" + +#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54 +#, 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 +msgid "Show event starttime" +msgstr "Kuva sündmuse algusaeg" + +#: includes/widget_helptexts.php:39 +msgid "This option defines if the event start time will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:44 +msgid "Show event location" +msgstr "Kuva sündmuse koht" + +#: includes/widget_helptexts.php:46 +msgid "This option defines if the event location will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:51 +msgid "Truncate location to" +msgstr "Kärbi sündmuse koht" + +#: includes/widget_helptexts.php:53 +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" +msgstr "Kuva sündmuse sisu" + +#: includes/widget_helptexts.php:61 +msgid "This option defines if the event content will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:66 +msgid "Truncate content to" +msgstr "Kärbi sündmuse sisu" + +#: includes/widget_helptexts.php:68 +msgid "" +"If the event content are diplayed this option defines the number of diplayed" +" characters." +msgstr "" + +#: includes/widget_helptexts.php:69 +#, php-format +msgid "Set this value to %1$s to view the full text." +msgstr "" + +#: includes/widget_helptexts.php:74 +msgid "URL to the linked Event List page" +msgstr "" + +#: includes/widget_helptexts.php:76 +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 +msgid "Shortcode ID on linked page" +msgstr "" + +#: includes/widget_helptexts.php:83 +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 +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 +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 +msgid "Caption for the link" +msgstr "Lingi pealkiri" + +#: includes/widget_helptexts.php:104 +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 +msgid "With this widget a list of upcoming events can be displayed." +msgstr "" + +#: includes/widget.php:25 +msgid "Upcoming events" +msgstr "Eesseisvad sündmused" + +#: includes/widget.php:38 +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 c212f04072307f0174c9afb374c01bd71338b029..89a870424890d5650f8ed1a77bf334640eb808df 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 ee47696a1f8dd68d9dbdc4f6adb06500dcd027ee..6439939d383ab8b61e67f85fc1d76e4aa75a4a53 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) 2017 by mibuthu +# Copyright (C) 2018 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: 2017-10-08 15:55+0200\n" -"PO-Revision-Date: 2017-10-08 13:55+0000\n" +"POT-Creation-Date: 2018-05-27 12:20+0200\n" +"PO-Revision-Date: 2018-05-27 10:20+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,137 +20,117 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: admin/admin.php:48 -msgid "Event List" -msgstr "Tapahtuma lista" - -#: admin/admin.php:51 admin/includes/admin-main.php:119 -#: admin/includes/category_table.php:113 -msgid "Events" -msgstr "Tapahtumat" - -#: admin/admin.php:51 -msgid "All Events" -msgstr "Kaikki tapahtumat" - -#: admin/admin.php:55 admin/includes/admin-new.php:46 -msgid "Add New Event" -msgstr "Lisää uusi tapahtuma" - -#: admin/admin.php:55 admin/includes/admin-main.php:121 -msgid "Add New" -msgstr "Lisää uusi" - -#: admin/admin.php:59 admin/includes/admin-categories.php:48 -msgid "Event List Categories" -msgstr "Tapahtuma listan gategoriat" +#: admin/admin.php:57 +#, php-format +msgid "Errors during upgrade of plugin %1$s" +msgstr "" -#: admin/admin.php:59 admin/includes/admin-new.php:150 -#: admin/includes/event_table.php:114 -msgid "Categories" -msgstr "Kategoriat" +#: admin/admin.php:57 +#, php-format +msgid "Upgrade of plugin %1$s successful" +msgstr "" -#: admin/admin.php:63 admin/includes/admin-settings.php:54 +#: admin/admin.php:106 admin/includes/admin-settings.php:65 msgid "Event List Settings" msgstr "Tapahtuma listan asetukset" -#: admin/admin.php:63 +#: admin/admin.php:106 msgid "Settings" msgstr "Asetukset" -#: admin/admin.php:67 admin/includes/admin-about.php:37 +#: admin/admin.php:110 admin/includes/admin-about.php:37 msgid "About Event List" msgstr "Lisätietoa Tapahtumalistasta" -#: admin/admin.php:67 +#: admin/admin.php:110 msgid "About" msgstr "Lisätietoa" -#: admin/admin.php:87 +#: admin/admin.php:132 #, php-format msgid "%s Event" msgid_plural "%s Events" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:69 +#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 msgid "General" msgstr "Yleinen" -#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77 -#: admin/includes/admin-about.php:104 +#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:105 msgid "Shortcode Attributes" msgstr "" -#: admin/includes/admin-about.php:71 +#: admin/includes/admin-about.php:72 msgid "Help and Instructions" msgstr "Apu ja ohjeet" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:73 #, php-format msgid "You can manage the events %1$shere%2$s" msgstr "" -#: admin/includes/admin-about.php:73 +#: admin/includes/admin-about.php:74 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:74 +#: admin/includes/admin-about.php:75 #, 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:75 +#: admin/includes/admin-about.php:76 #, 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:76 +#: admin/includes/admin-about.php:77 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:77 +#: admin/includes/admin-about.php:78 #, 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:78 +#: admin/includes/admin-about.php:79 msgid "The available widget options are described in their tooltip text." msgstr "Saatavilla olevat widget-asetukset on kuvattu tooltipissä." -#: admin/includes/admin-about.php:79 +#: admin/includes/admin-about.php:80 #, 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:79 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 msgid "Add links to the single events" msgstr "Lisää linkkejä yksittäisiin tapahtumiin" -#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 msgid "Add a link to the Event List page" msgstr "Lisää linkki Tapahtumalistan sivulle" -#: admin/includes/admin-about.php:80 +#: admin/includes/admin-about.php:81 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:81 +#: admin/includes/admin-about.php:82 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:82 +#: admin/includes/admin-about.php:83 #, php-format msgid "" "The default value %1$s is normally o.k. (for pages with 1 shortcode only), " @@ -158,505 +138,593 @@ msgid "" "link on your linked page or post." msgstr "" -#: admin/includes/admin-about.php:83 +#: admin/includes/admin-about.php:84 #, php-format msgid "The id is available at the end of the URL parameters (e.g. %1$s)." msgstr "" -#: admin/includes/admin-about.php:85 +#: admin/includes/admin-about.php:86 #, 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:85 +#: admin/includes/admin-about.php:86 msgid "Settings page" msgstr "Asetukset-sivu" -#: admin/includes/admin-about.php:91 +#: admin/includes/admin-about.php:92 msgid "About the plugin author" msgstr "" -#: admin/includes/admin-about.php:93 +#: admin/includes/admin-about.php:94 #, 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:93 +#: admin/includes/admin-about.php:94 msgid "wordpress plugin site" msgstr "" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:95 #, php-format msgid "If you like the plugin please rate it on the %1$s." msgstr "" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:95 msgid "wordpress plugin review site" msgstr "" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:96 msgid "" "If you want to support the plugin I would be happy to get a small donation" msgstr "" -#: admin/includes/admin-about.php:96 admin/includes/admin-about.php:97 -#: admin/includes/admin-about.php:98 +#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 +#: admin/includes/admin-about.php:99 #, php-format msgid "Donate with %1$s" msgstr "" -#: admin/includes/admin-about.php:106 +#: admin/includes/admin-about.php:107 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:107 +#: admin/includes/admin-about.php:108 #, 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:109 +#: admin/includes/admin-about.php:110 msgid "" "Below you can find a list of all supported attributes with their " "descriptions and available options:" msgstr "" -#: admin/includes/admin-about.php:123 +#: admin/includes/admin-about.php:124 msgid "Attribute name" msgstr "Atribuutin nimi" -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:125 msgid "Value options" msgstr "Arvon vaihtoehdot" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:126 msgid "Default value" msgstr "Oletus arvo" -#: admin/includes/admin-about.php:126 admin/includes/admin-categories.php:194 -#: admin/includes/category_table.php:111 +#: admin/includes/admin-about.php:127 msgid "Description" msgstr "Kuvaus" -#: admin/includes/admin-about.php:144 includes/sc_event-list_helptexts.php:26 +#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 #: includes/sc_event-list_helptexts.php:31 msgid "Filter Syntax" msgstr "" -#: admin/includes/admin-about.php:145 +#: admin/includes/admin-about.php:146 msgid "" "For date and cat filters you can specify complex filters with the following " "syntax:" msgstr "" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 #, 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:146 +#: admin/includes/admin-about.php:147 msgid "AND" msgstr "JA" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "OR" msgstr "TAI" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "or" msgstr "tai" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "and" msgstr "ja" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:148 msgid "Examples for cat filters:" msgstr "" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:149 #, php-format msgid "Show all events with category %1$s." msgstr "" -#: admin/includes/admin-about.php:149 +#: admin/includes/admin-about.php:150 #, php-format msgid "Show all events with category %1$s or %2$s." msgstr "" -#: admin/includes/admin-about.php:150 +#: admin/includes/admin-about.php:151 #, 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:155 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 msgid "Available Date Formats" msgstr "Käytettävissä olevat päivämäärän muotoilut" -#: admin/includes/admin-about.php:156 +#: admin/includes/admin-about.php:157 msgid "For date filters you can use the following date formats:" msgstr "" -#: admin/includes/admin-about.php:164 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 msgid "Available Date Range Formats" msgstr "" -#: admin/includes/admin-about.php:165 +#: admin/includes/admin-about.php:166 msgid "For date filters you can use the following daterange formats:" msgstr "" -#: admin/includes/admin-about.php:177 +#: admin/includes/admin-about.php:178 msgid "Value" msgstr "Arvo" -#: admin/includes/admin-about.php:181 +#: admin/includes/admin-about.php:182 msgid "Example" msgstr "Esimerkki" -#: admin/includes/admin-categories.php:51 -msgid "Edit Category" -msgstr "Muokkaa kategoriaa" - -#: admin/includes/admin-categories.php:51 -msgid "Update Category" -msgstr "Päivitä kategoria" - -#: admin/includes/admin-categories.php:57 -msgid "Add New Category" -msgstr "Lisää uusi kategoria" +#: admin/includes/admin-categories.php:38 +msgid "Synchronize with post categories" +msgstr "" -#: admin/includes/admin-categories.php:84 +#: admin/includes/admin-categories.php:46 #, php-format -msgid "Category \"%s\" deleted." -msgstr "Kategoria \"%s\" on poistettu." +msgid "%1$s categories modified (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:86 +#: admin/includes/admin-categories.php:47 #, php-format -msgid "This Category was also removed from %d events." +msgid "%1$s categories added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:92 +#: admin/includes/admin-categories.php:48 #, php-format -msgid "Error while deleting category \"%s\"" +msgid "%1$s categories deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:103 -msgid "Sync with post categories enabled." +#: admin/includes/admin-categories.php:50 +#, php-format +msgid "%1$s categories not modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:106 -msgid "Sync with post categories disabled." +#: admin/includes/admin-categories.php:51 +#, php-format +msgid "%1$s categories not added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:112 -msgid "Manual sync with post categories sucessfully finished." +#: admin/includes/admin-categories.php:52 +#, php-format +msgid "%1$s categories not deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:125 -#, php-format -msgid "New Category \"%s\" was added" +#: admin/includes/admin-categories.php:55 +msgid "An Error occured during the category sync" msgstr "" -#: admin/includes/admin-categories.php:128 -#, php-format -msgid "Error: New Category \"%s\" could not be added" +#: admin/includes/admin-categories.php:59 +msgid "Category sync finished" msgstr "" -#: admin/includes/admin-categories.php:134 -#, php-format -msgid "Category \"%s\" was modified" +#: admin/includes/admin-category-sync.php:45 +msgid "Error: You are not allowed to view this page!" msgstr "" -#: admin/includes/admin-categories.php:137 -#, php-format -msgid "Error: Category \"%s\" could not be modified" +#: admin/includes/admin-category-sync.php:62 +msgid "Affected Categories when switching to seperate Event Categories" msgstr "" -#: admin/includes/admin-categories.php:144 -msgid "Categories are automatically synced with the post categories." +#: admin/includes/admin-category-sync.php:63 +msgid "Switch option to seperate Event Categories" msgstr "" -#: admin/includes/admin-categories.php:145 +#: admin/includes/admin-category-sync.php:64 msgid "" -"Because of this all options to add new categories or editing existing " -"categories are disabled." +"If you proceed, all post categories will be copied and all events will be " +"re-assigned to this new categories." msgstr "" -#: admin/includes/admin-categories.php:146 +#: admin/includes/admin-category-sync.php:65 msgid "" -"If you want to manually edit the categories you have to disable this option." -msgstr "Jos haluat manuaalisesti muokata kategorioita, sinun täytyy kytkeä pois päältä tämä asetus." +"Afterwards the event categories are independent of the post categories." +msgstr "" + +#: admin/includes/admin-category-sync.php:68 +msgid "Affected Categories when switching to use Post Categories for events" +msgstr "" -#: admin/includes/admin-categories.php:173 -msgid "The name is how it appears on your site." +#: admin/includes/admin-category-sync.php:69 +msgid "Switch option to use Post Categories for events" msgstr "" -#: admin/includes/admin-categories.php:178 +#: admin/includes/admin-category-sync.php:70 msgid "" -"The “slug” is the URL-friendly version of the name. It is usually all " -"lowercase and contains only letters, numbers, and hyphens." +"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 +msgid "Event Categories: Synchronise with Post Categories" msgstr "" -#: admin/includes/admin-categories.php:191 +#: admin/includes/admin-category-sync.php:74 +msgid "Start synchronisation" +msgstr "" + +#: admin/includes/admin-category-sync.php:75 msgid "" -"Categories can have a hierarchy. You might have a Jazz category, and under " -"that have children categories for Bebop and Big Band. Totally optional." -msgstr "Kategorioilla voi olla hierarkia. Esimerkiksi Jazz-kategorialla voi olla alikategorioita kuten Bebop ja Big Band. Valinnainen." +"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 +msgid "Categories to modify" +msgstr "" + +#: admin/includes/admin-category-sync.php:91 +msgid "Categories to add" +msgstr "" + +#: admin/includes/admin-category-sync.php:92 +msgid "Categories to delete (optional)" +msgstr "" -#: admin/includes/admin-categories.php:241 -msgid "Apply" -msgstr "Aseta" +#: admin/includes/admin-category-sync.php:93 +msgid "Delete not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:97 +msgid "Categories with differences" +msgstr "" -#: admin/includes/admin-categories.php:251 -msgid "Do a manual sync with post categories" +#: admin/includes/admin-category-sync.php:98 +msgid "Categories to add (optional)" msgstr "" -#: admin/includes/admin-import.php:45 +#: admin/includes/admin-category-sync.php:99 +msgid "Add not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:117 +msgid "none" +msgstr "" + +#: admin/includes/admin-import.php:49 msgid "Import Events" msgstr "Tuo tapahtumia" -#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:118 +#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:198 msgid "Step" msgstr "Vaihe" -#: admin/includes/admin-import.php:65 +#: admin/includes/admin-import.php:69 msgid "Set import file and options" msgstr "" -#: admin/includes/admin-import.php:68 +#: admin/includes/admin-import.php:72 #, php-format msgid "Proceed with Step %1$s" msgstr "" -#: admin/includes/admin-import.php:71 +#: admin/includes/admin-import.php:75 msgid "Example file" msgstr "Esimerkki tiedosto" -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:76 #, php-format msgid "" "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)" msgstr "" -#: admin/includes/admin-import.php:73 +#: admin/includes/admin-import.php:77 msgid "Note" msgstr "" -#: admin/includes/admin-import.php:73 +#: admin/includes/admin-import.php:77 msgid "" "Do not change the column header and separator line (first two lines), " "otherwise the import will fail!" msgstr "" -#: admin/includes/admin-import.php:80 admin/includes/admin-import.php:88 -#: admin/includes/admin-import.php:101 +#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 msgid "Sorry, there has been an error." msgstr "" -#: admin/includes/admin-import.php:81 +#: admin/includes/admin-import.php:85 msgid "The file does not exist, please try again." msgstr "Tiedosto ei ole olemassa, yritä uudelleen." -#: admin/includes/admin-import.php:89 -msgid "The file is not a CSV file." -msgstr "Tiedosto ei ole CSV-tiedosto." +#: admin/includes/admin-import.php:93 +msgid "The uploaded file does not have the required csv extension." +msgstr "" -#: admin/includes/admin-import.php:118 +#: admin/includes/admin-import.php:105 msgid "Events review and additonal category selection" msgstr "" -#: admin/includes/admin-import.php:121 +#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +msgid "Error" +msgstr "" + +#: admin/includes/admin-import.php:111 +msgid "This CSV file cannot be imported" +msgstr "" + +#: admin/includes/admin-import.php:122 +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 +msgid "Warning" +msgstr "" + +#: admin/includes/admin-import.php:126 +#, 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 +#, php-format +msgid "CSV line %1$s" +msgstr "" + +#: admin/includes/admin-import.php:144 +msgid "You can still import all other events listed below." +msgstr "" + +#: admin/includes/admin-import.php:163 msgid "" -"Warning: The following category slugs are not available and will be removed " -"from the imported events:" +"The following category slugs are not available and will be removed from the " +"imported events" msgstr "" -#: admin/includes/admin-import.php:127 +#: admin/includes/admin-import.php:169 msgid "" "If you want to keep these categories, please create these Categories first " "and do the import afterwards." msgstr "" -#: admin/includes/admin-import.php:145 -msgid "Add additional categories" -msgstr "Lisää kategorioita" - -#: admin/includes/admin-import.php:146 -msgid "Import events" -msgstr "Tuo tapahtumia" +#: admin/includes/admin-import.php:198 +msgid "Import result" +msgstr "" -#: admin/includes/admin-import.php:160 -msgid "Import with errors!" +#: admin/includes/admin-import.php:201 +#, php-format +msgid "Import of %1$s events successful!" msgstr "" -#: admin/includes/admin-import.php:161 -msgid "Sorry, an error occurred during import!" +#: admin/includes/admin-import.php:202 +msgid "Go back to All Events" msgstr "" -#: admin/includes/admin-import.php:165 -msgid "Import successful!" -msgstr "Lisääminen onnistui!" +#: admin/includes/admin-import.php:206 +msgid "Errors during Import" +msgstr "" -#: admin/includes/admin-import.php:166 -msgid "Go back to All Events" +#: admin/includes/admin-import.php:215 +msgid "Event from CSV-line" msgstr "" -#: admin/includes/admin-import.php:173 admin/includes/admin-new.php:111 -#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 +#: includes/widget_helptexts.php:8 msgid "Title" msgstr "Otsikko" -#: admin/includes/admin-import.php:174 +#: admin/includes/admin-import.php:227 msgid "Start Date" msgstr "Alku päivämäärä" -#: admin/includes/admin-import.php:175 +#: admin/includes/admin-import.php:228 msgid "End Date" msgstr "Loppu päivämäärä" -#: admin/includes/admin-import.php:176 admin/includes/admin-new.php:124 -#: includes/options_helptexts.php:48 includes/options_helptexts.php:49 +#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 +#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 msgid "Time" msgstr "Aika" -#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:128 -#: admin/includes/event_table.php:112 includes/options_helptexts.php:53 -#: includes/options_helptexts.php:54 +#: 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 msgid "Location" msgstr "Sijainti" -#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:132 -#: admin/includes/event_table.php:113 -msgid "Details" -msgstr "Yksityiskohdat" +#: admin/includes/admin-import.php:231 +msgid "Content" +msgstr "" -#: admin/includes/admin-import.php:179 +#: admin/includes/admin-import.php:232 msgid "Category slugs" msgstr "" -#: admin/includes/admin-import.php:218 +#: admin/includes/admin-import.php:274 +msgid "Header line is missing or not correct!" +msgstr "" + +#: admin/includes/admin-import.php:275 #, php-format msgid "" -"There was an error at line %1$s when reading this CSV file: Header line is " -"missing or not correct!" +"Have a look at the %1$sexample file%2$s to see the correct header line " +"format." +msgstr "" + +#: admin/includes/admin-import.php:281 +#, php-format +msgid "Wrong number of items in line (%1$s items found, 6-7 required)" +msgstr "" + +#: admin/includes/admin-import.php:309 +msgid "Empty event title found" msgstr "" -#: admin/includes/admin-import.php:253 admin/includes/admin-main.php:122 +#: admin/includes/admin-import.php:315 +msgid "Wrong date format for startdate" +msgstr "" + +#: admin/includes/admin-import.php:324 +msgid "Wrong date format for enddate" +msgstr "" + +#: admin/includes/admin-import.php:365 +msgid "Import events" +msgstr "Tuo tapahtumia" + +#: admin/includes/admin-import.php:366 +msgid "Add additional categories" +msgstr "Lisää kategorioita" + +#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 msgid "Import" msgstr "Tuo" -#: admin/includes/admin-main.php:116 -msgid "Edit Event" -msgstr "Muokkaa tapahtumaa" +#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +msgid "No events found" +msgstr "" + +#: admin/includes/admin-import.php:432 +msgid "Saving of event failed!" +msgstr "" + +#: admin/includes/admin-main.php:60 +msgid "Event Date" +msgstr "" -#: admin/includes/admin-main.php:116 admin/includes/event_table.php:75 -msgid "Duplicate" -msgstr "Duplikaatti" +#: admin/includes/admin-main.php:64 +msgid "Author" +msgstr "Kirjoittaja" -#: admin/includes/admin-new.php:48 +#: admin/includes/admin-main.php:126 #, php-format -msgid "Duplicate of event id:%d" -msgstr "Tapahtuman id: %d duplikaatti" +msgid "Add a copy of %1$s" +msgstr "" -#: admin/includes/admin-new.php:111 admin/includes/admin-new.php:115 -msgid "required" -msgstr "tarpeellinen" +#: admin/includes/admin-main.php:126 +msgid "Copy" +msgstr "" -#: admin/includes/admin-new.php:115 admin/includes/event_table.php:110 +#: admin/includes/admin-new.php:51 +msgid "Event data" +msgstr "" + +#: admin/includes/admin-new.php:80 +msgid "Add Copy" +msgstr "" + +#: admin/includes/admin-new.php:84 msgid "Date" msgstr "Päiväys" -#: admin/includes/admin-new.php:118 +#: admin/includes/admin-new.php:84 +msgid "required" +msgstr "tarpeellinen" + +#: admin/includes/admin-new.php:87 msgid "Multi-Day Event" msgstr "Monipäiväinen tapahtuma" -#: admin/includes/admin-new.php:148 admin/includes/admin-new.php:165 -msgid "Publish" -msgstr "Julkaise" - -#: admin/includes/admin-new.php:165 -msgid "Update" -msgstr "Päivitä" - -#: admin/includes/admin-new.php:167 -msgid "Cancel" -msgstr "Peruuta" - -#: admin/includes/admin-new.php:180 -msgid "No categories available." -msgstr "Kategorioita ei saatavilla" - -#: admin/includes/admin-new.php:226 -msgid "Goto Category Settings" -msgstr "Mene kategorioiden asetuksiin" +#: admin/includes/admin-new.php:106 +msgid "Event Title" +msgstr "" -#: admin/includes/admin-settings.php:42 -msgid "Settings saved." -msgstr "Asetukset tallennettu." +#: admin/includes/admin-new.php:121 +msgid "Event Content" +msgstr "" -#: admin/includes/admin-settings.php:70 -msgid "Frontend Settings" +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +msgid "Event updated." msgstr "" -#: admin/includes/admin-settings.php:71 -msgid "Admin Page Settings" -msgstr "Hallinnointisivun asetukset" +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +msgid "View event" +msgstr "" -#: admin/includes/admin-settings.php:72 -msgid "Feed Settings" -msgstr "Syöte asetukset" +#: admin/includes/admin-new.php:184 +#, php-format +msgid "Event restored to revision from %1$s" +msgstr "" -#: admin/includes/category_table.php:27 admin/includes/event_table.php:29 -msgid "event" -msgstr "tapahtuma" +#: admin/includes/admin-new.php:185 +msgid "Event published." +msgstr "" -#: admin/includes/category_table.php:28 admin/includes/event_table.php:30 -msgid "events" -msgstr "Tapahtumat" +#: admin/includes/admin-new.php:187 +msgid "Event submitted." +msgstr "" -#: admin/includes/category_table.php:73 admin/includes/event_table.php:74 -msgid "Edit" -msgstr "Muokkaa" +#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 +#: admin/includes/admin-new.php:190 +msgid "Preview event" +msgstr "" -#: admin/includes/category_table.php:74 admin/includes/category_table.php:148 -#: admin/includes/event_table.php:76 admin/includes/event_table.php:149 -msgid "Delete" -msgstr "Poista" +#: admin/includes/admin-new.php:188 +#, php-format +msgid "Event scheduled for: %1$s>" +msgstr "" -#: admin/includes/category_table.php:110 -msgid "Name" -msgstr "Nimi" +#: admin/includes/admin-new.php:190 +msgid "Event draft updated." +msgstr "" -#: admin/includes/category_table.php:112 -msgid "Slug" +#: admin/includes/admin-settings.php:71 +msgid "Go to Event Category switching page" msgstr "" -#: admin/includes/event_table.php:115 -msgid "Author" -msgstr "Kirjoittaja" +#: admin/includes/admin-settings.php:83 +msgid "Frontend Settings" +msgstr "" -#: admin/includes/event_table.php:116 -msgid "Published" -msgstr "Julkaistu" +#: admin/includes/admin-settings.php:84 +msgid "Admin Page Settings" +msgstr "Hallinnointisivun asetukset" -#: admin/includes/event_table.php:180 -msgid "Filter" -msgstr "Suodatin" +#: admin/includes/admin-settings.php:85 +msgid "Feed Settings" +msgstr "Syöte asetukset" -#: admin/includes/event_table.php:300 -#, php-format -msgid "%s ago" +#: admin/includes/admin-settings.php:86 +msgid "Category Taxonomy" msgstr "" #: includes/daterange_helptexts.php:7 @@ -802,7 +870,7 @@ msgstr "" msgid "The corresponding date_range format is: %1$s" msgstr "" -#: includes/daterange_helptexts.php:59 includes/filterbar.php:291 +#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 msgid "Upcoming" msgstr "Tulevat" @@ -810,7 +878,7 @@ msgstr "Tulevat" msgid "This value defines a range from the actual day to the future." msgstr "" -#: includes/daterange_helptexts.php:64 includes/filterbar.php:295 +#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 msgid "Past" msgstr "Menneet" @@ -818,146 +886,238 @@ msgstr "Menneet" msgid "This value defines a range from the past to the previous day." msgstr "" -#: includes/filterbar.php:233 includes/sc_event-list_helptexts.php:60 -msgid "Reset" +#: includes/event.php:107 +msgid "No valid start date provided" msgstr "" -#: includes/filterbar.php:282 -msgid "All" -msgstr "Kaikki" +#: includes/events_post_type.php:60 +msgid "Events" +msgstr "Tapahtumat" -#: includes/filterbar.php:285 -msgid "Show all dates" -msgstr "Näytä kaikki päiväykset" +#: includes/events_post_type.php:61 +msgid "Event" +msgstr "" -#: includes/filterbar.php:285 -msgid "Show all categories" -msgstr "Näytä kaikki kategoriat" +#: includes/events_post_type.php:62 +msgid "Add New" +msgstr "Lisää uusi" -#: includes/options_helptexts.php:11 -msgid "Sync Categories" -msgstr "Synkronoi kategoriat" +#: includes/events_post_type.php:63 +msgid "Add New Event" +msgstr "Lisää uusi tapahtuma" -#: includes/options_helptexts.php:12 -msgid "Keep event categories in sync with post categories automatically" +#: includes/events_post_type.php:64 +msgid "Edit Event" +msgstr "Muokkaa tapahtumaa" + +#: includes/events_post_type.php:65 +msgid "New Event" msgstr "" -#: includes/options_helptexts.php:13 -msgid "Attention" -msgstr "Huomio" +#: includes/events_post_type.php:66 +msgid "View Event" +msgstr "" -#: includes/options_helptexts.php:14 -msgid "" -"Please note that this option will delete all categories which are not " -"available in the post categories! Existing Categories with the same slug " -"will be updated." +#: includes/events_post_type.php:67 +msgid "View Events" msgstr "" -#: includes/options_helptexts.php:18 +#: includes/events_post_type.php:68 +msgid "Search Events" +msgstr "" + +#: includes/events_post_type.php:70 +msgid "No events found in Trash" +msgstr "" + +#: includes/events_post_type.php:72 +msgid "All Events" +msgstr "Kaikki tapahtumat" + +#: includes/events_post_type.php:73 +msgid "Event Archives" +msgstr "" + +#: includes/events_post_type.php:74 +msgid "Event Attributes" +msgstr "" + +#: includes/events_post_type.php:75 +msgid "Insert into event" +msgstr "" + +#: includes/events_post_type.php:76 +msgid "Uploaded to this event" +msgstr "" + +#: includes/events_post_type.php:77 +msgid "Event List" +msgstr "Tapahtuma lista" + +#: includes/events_post_type.php:78 +msgid "Filter events list" +msgstr "" + +#: includes/events_post_type.php:79 +msgid "Events list navigation" +msgstr "" + +#: includes/events_post_type.php:80 +msgid "Events list" +msgstr "" + +#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +msgid "Reset" +msgstr "" + +#: includes/filterbar.php:278 +msgid "All" +msgstr "Kaikki" + +#: includes/filterbar.php:281 +msgid "All Dates" +msgstr "" + +#: includes/options_helptexts.php:10 msgid "CSV File to import" msgstr "Lisättävä CSV-tiedosto" -#: includes/options_helptexts.php:20 +#: includes/options_helptexts.php:12 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:23 +#: includes/options_helptexts.php:15 msgid "Used date format" msgstr "" +#: includes/options_helptexts.php:17 +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 +#, 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 +msgid "full year representation, with 4 digits" +msgstr "" + +#: includes/options_helptexts.php:21 +msgid "numeric representation of a month, with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:22 +msgid "day of the month, 2 digits with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:24 +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 msgid "" -"With this option the used date format for event start and end date given in " -"the CSV file can be specified." +"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 +msgid "Examples" msgstr "" -#: includes/options_helptexts.php:29 +#: includes/options_helptexts.php:33 msgid "Text for no events" msgstr "Ei tapahtumia teksti" -#: includes/options_helptexts.php:31 +#: includes/options_helptexts.php:35 msgid "" "This option defines the displayed text when no events are available for the " "selected view." msgstr "" -#: includes/options_helptexts.php:34 +#: includes/options_helptexts.php:38 msgid "Multiday filter range" msgstr "" -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:39 msgid "Use the complete event range in the date filter" msgstr "" -#: includes/options_helptexts.php:36 +#: includes/options_helptexts.php:40 msgid "" "This option defines if the complete range of a multiday event shall be " "considered in the date filter." msgstr "" -#: includes/options_helptexts.php:37 +#: includes/options_helptexts.php:41 msgid "" "If disabled, only the start day of an event is considered in the filter." msgstr "" -#: includes/options_helptexts.php:38 +#: includes/options_helptexts.php:42 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:41 +#: includes/options_helptexts.php:45 msgid "Date display" msgstr "Päivä näyttö" -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:46 msgid "Show the date only once per day" msgstr "" -#: includes/options_helptexts.php:43 +#: includes/options_helptexts.php:47 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:44 +#: includes/options_helptexts.php:48 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:47 +#: includes/options_helptexts.php:51 msgid "HTML tags" msgstr "HTML merkit" -#: includes/options_helptexts.php:48 includes/options_helptexts.php:53 +#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 #, php-format msgid "Allow HTML tags in the event field \"%1$s\"" msgstr "" -#: includes/options_helptexts.php:49 includes/options_helptexts.php:54 +#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 #, php-format msgid "" "This option specifies if HTML tags are allowed in the event field \"%1$s\"." msgstr "" -#: includes/options_helptexts.php:57 +#: includes/options_helptexts.php:61 msgid "Preferred language file" msgstr "" -#: includes/options_helptexts.php:58 +#: includes/options_helptexts.php:62 msgid "Load translations from general language directory first" msgstr "" -#: includes/options_helptexts.php:59 +#: includes/options_helptexts.php:63 #, 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:60 +#: includes/options_helptexts.php:64 #, php-format msgid "" "If you want to load your own language file from the general language " @@ -965,252 +1125,289 @@ msgid "" "language directory, you have to enable this option." msgstr "" -#: includes/options_helptexts.php:64 -msgid "Text for \"Show details\"" +#: includes/options_helptexts.php:68 +msgid "Events permalink slug" +msgstr "" + +#: includes/options_helptexts.php:69 +msgid "" +"With this option the slug for the events permalink URLs can be defined." +msgstr "" + +#: includes/options_helptexts.php:72 +msgid "Text for \"Show content\"" msgstr "" -#: includes/options_helptexts.php:65 +#: includes/options_helptexts.php:73 msgid "" -"With this option the displayed text for the link to show the event details " +"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:68 -msgid "Text for \"Hide details\"" +#: includes/options_helptexts.php:76 +msgid "Text for \"Hide content\"" msgstr "" -#: includes/options_helptexts.php:69 +#: includes/options_helptexts.php:77 msgid "" -"With this option the displayed text for the link to hide the event details " +"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:72 +#: includes/options_helptexts.php:80 msgid "Disable CSS file" msgstr "Estä CSS tiedosto" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:81 #, php-format msgid "Disable the %1$s file." msgstr "" -#: includes/options_helptexts.php:74 +#: includes/options_helptexts.php:82 #, php-format msgid "With this option you can disable the inclusion of the %1$s file." msgstr "" -#: includes/options_helptexts.php:75 +#: includes/options_helptexts.php:83 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:79 +#: includes/options_helptexts.php:87 msgid "Date format in edit form" msgstr "Päivämäärän muotoilu muokkaus lomakkeella" -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:88 msgid "" "This option sets the displayed date format for the event date fields in the " "event new / edit form." msgstr "" -#: includes/options_helptexts.php:81 +#: includes/options_helptexts.php:89 msgid "The default is an empty string to use the Wordpress standard setting." msgstr "" -#: includes/options_helptexts.php:82 +#: includes/options_helptexts.php:90 #, php-format msgid "" "All available options to specify the date format can be found %1$shere%2$s." msgstr "" -#: includes/options_helptexts.php:86 includes/options_helptexts.php:114 +#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 msgid "Enable RSS feed" msgstr "Salli RSS syöte" -#: includes/options_helptexts.php:87 +#: includes/options_helptexts.php:95 msgid "Enable support for an event RSS feed" msgstr "" -#: includes/options_helptexts.php:88 +#: includes/options_helptexts.php:96 msgid "This option activates a RSS feed for the events." msgstr "" -#: includes/options_helptexts.php:89 +#: includes/options_helptexts.php:97 msgid "" "You have to enable this option if you want to use one of the RSS feed " "features." msgstr "" -#: includes/options_helptexts.php:92 +#: includes/options_helptexts.php:100 msgid "Feed name" msgstr "Syötteen nimi" -#: includes/options_helptexts.php:93 +#: includes/options_helptexts.php:101 #, php-format msgid "This option sets the feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:94 +#: 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 "" -#: includes/options_helptexts.php:97 +#: includes/options_helptexts.php:105 msgid "Feed Description" msgstr "Syötteen kuvaus" -#: includes/options_helptexts.php:98 +#: includes/options_helptexts.php:106 #, php-format msgid "This options set the feed description. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:99 +#: 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 "" -#: includes/options_helptexts.php:102 +#: includes/options_helptexts.php:110 msgid "Listed events" msgstr "Listatut tapahtumat" -#: includes/options_helptexts.php:103 +#: includes/options_helptexts.php:111 msgid "Only show upcoming events in feed" msgstr "" -#: includes/options_helptexts.php:104 +#: includes/options_helptexts.php:112 msgid "" "If this option is enabled only the upcoming events are listed in the feed." msgstr "" -#: includes/options_helptexts.php:105 +#: includes/options_helptexts.php:113 msgid "If disabled all events (upcoming and past) will be listed." msgstr "" -#: includes/options_helptexts.php:108 +#: includes/options_helptexts.php:116 msgid "Add RSS feed link in head" msgstr "" -#: includes/options_helptexts.php:109 +#: includes/options_helptexts.php:117 msgid "Add RSS feed link in the html head" msgstr "" -#: includes/options_helptexts.php:110 +#: includes/options_helptexts.php:118 msgid "This option adds a RSS feed in the html head for the events." msgstr "" -#: includes/options_helptexts.php:111 +#: includes/options_helptexts.php:119 msgid "There are 2 alternatives to include the RSS feed" msgstr "" -#: includes/options_helptexts.php:112 +#: 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 "" -#: includes/options_helptexts.php:113 +#: 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." msgstr "" -#: includes/options_helptexts.php:114 +#: includes/options_helptexts.php:122 #, php-format msgid "This option is only valid if the setting %1$s is enabled." msgstr "" -#: includes/options_helptexts.php:117 +#: includes/options_helptexts.php:125 msgid "Position of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "at the top (above the navigation bar)" msgstr "" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "between navigation bar and events" msgstr "" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "at the bottom" msgstr "" -#: includes/options_helptexts.php:119 +#: includes/options_helptexts.php:127 msgid "" "This option specifies the position of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:120 includes/options_helptexts.php:126 -#: includes/options_helptexts.php:132 includes/options_helptexts.php:138 +#: 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 "" -#: includes/options_helptexts.php:123 +#: includes/options_helptexts.php:131 msgid "Align of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "left" msgstr "vasen" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "center" msgstr "keskitetty" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "right" msgstr "oikea" -#: includes/options_helptexts.php:125 +#: includes/options_helptexts.php:133 msgid "" "This option specifies the align of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:129 +#: includes/options_helptexts.php:137 msgid "Feed link text" msgstr "" -#: includes/options_helptexts.php:130 +#: includes/options_helptexts.php:138 msgid "" "This option specifies the caption of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:131 +#: includes/options_helptexts.php:139 msgid "" "Insert an empty text to hide any text if you only want to show the rss " "image." msgstr "" -#: includes/options_helptexts.php:135 +#: includes/options_helptexts.php:143 msgid "Feed link image" msgstr "" -#: includes/options_helptexts.php:136 +#: includes/options_helptexts.php:144 msgid "Show rss image in feed link" msgstr "" -#: includes/options_helptexts.php:137 +#: 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." msgstr "" -#: includes/options.php:43 -msgid "Show details" -msgstr "Näytä yksityiskohdat" +#: includes/options_helptexts.php:151 +msgid "Event Category handling" +msgstr "" + +#: includes/options_helptexts.php:152 +msgid "Use Post Categories" +msgstr "" + +#: includes/options_helptexts.php:153 +msgid "" +"Do not maintain seperate categories for the events, and use the existing " +"post categories instead." +msgstr "" -#: includes/options.php:44 -msgid "Hide details" -msgstr "Piilota yksityiskohdat" +#: includes/options_helptexts.php:154 +msgid "Attention" +msgstr "Huomio" + +#: includes/options_helptexts.php:155 +msgid "" +"This option cannot be changed directly, but you can go to the Event Category" +" switching page from here." +msgstr "" + +#: includes/options.php:40 +msgid "events" +msgstr "" + +#: includes/options.php:41 +msgid "Show content" +msgstr "" + +#: includes/options.php:42 +msgid "Hide content" +msgstr "" #: includes/sc_event-list_helptexts.php:7 msgid "event-id" @@ -1220,7 +1417,7 @@ msgstr "" #, 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-details view of " +"%1$s) is provided for this attribute, directly the event-content view of " "this event is shown." msgstr "" @@ -1576,14 +1773,14 @@ msgstr "" #: includes/sc_event-list_helptexts.php:100 msgid "" -"This attribute specifies if the details are displayed in the event list.<br />\n" -"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n" -"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event" +"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 msgid "" -"This attribute specifies if the details should be truncate to the given " +"This attribute specifies if the content should be truncate to the given " "number of characters in the event list." msgstr "" @@ -1594,10 +1791,10 @@ msgstr "" #: includes/sc_event-list_helptexts.php:110 msgid "" -"This attribute specifies if the details should be collapsed initially.<br />\n" -"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n" -"\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the details.<br />\n" -"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view." +"This attribute specifies if the content 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 @@ -1605,7 +1802,7 @@ 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" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n" -"\t With \"events_with_details_only\" the link is only added in the event list for events with event details." +"\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 @@ -1630,7 +1827,7 @@ msgid "" "\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:134 +#: includes/sc_event-list.php:135 msgid "Event Information:" msgstr "Tapahtuman tiedot:" @@ -1707,20 +1904,20 @@ msgid "" msgstr "" #: includes/widget_helptexts.php:59 -msgid "Show event details" -msgstr "Näytä tapahtuman tiedot" +msgid "Show event content" +msgstr "" #: includes/widget_helptexts.php:61 -msgid "This option defines if the event details will be displayed." +msgid "This option defines if the event content will be displayed." msgstr "" #: includes/widget_helptexts.php:66 -msgid "Truncate details to" -msgstr "Yksityiskohtien lyhenne" +msgid "Truncate content to" +msgstr "" #: includes/widget_helptexts.php:68 msgid "" -"If the event details are diplayed this option defines the number of diplayed" +"If the event content are diplayed this option defines the number of diplayed" " characters." msgstr "" 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 c54f81526df53158441db7c0bf81fd0102fd0e9a..b0a7afb826ec7ebea64382046c13fef22120df2b 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 9826f8935c10c7e500cedda800d906458d9c0d24..37d9a03cd49f3f2b081209d172c46034fe927b32 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,5 +1,5 @@ # Translation file for the 'Event List' WordPress plugin -# Copyright (C) 2017 by mibuthu +# Copyright (C) 2018 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: 2017-10-08 15:55+0200\n" -"PO-Revision-Date: 2017-10-08 13:55+0000\n" +"POT-Creation-Date: 2018-05-27 12:20+0200\n" +"PO-Revision-Date: 2018-05-27 10:20+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,137 +20,117 @@ msgstr "" "Language: fr_FR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: admin/admin.php:48 -msgid "Event List" -msgstr "Liste des événements" - -#: admin/admin.php:51 admin/includes/admin-main.php:119 -#: admin/includes/category_table.php:113 -msgid "Events" -msgstr "Evénements" - -#: admin/admin.php:51 -msgid "All Events" -msgstr "Tous les évènements" - -#: admin/admin.php:55 admin/includes/admin-new.php:46 -msgid "Add New Event" -msgstr "Ajouter un nouvel évènement" - -#: admin/admin.php:55 admin/includes/admin-main.php:121 -msgid "Add New" -msgstr "Ajouter" - -#: admin/admin.php:59 admin/includes/admin-categories.php:48 -msgid "Event List Categories" -msgstr "Liste des catégories d'évènements" +#: admin/admin.php:57 +#, php-format +msgid "Errors during upgrade of plugin %1$s" +msgstr "" -#: admin/admin.php:59 admin/includes/admin-new.php:150 -#: admin/includes/event_table.php:114 -msgid "Categories" -msgstr "Catégories" +#: admin/admin.php:57 +#, php-format +msgid "Upgrade of plugin %1$s successful" +msgstr "" -#: admin/admin.php:63 admin/includes/admin-settings.php:54 +#: admin/admin.php:106 admin/includes/admin-settings.php:65 msgid "Event List Settings" msgstr "Préférences" -#: admin/admin.php:63 +#: admin/admin.php:106 msgid "Settings" msgstr "Préférences" -#: admin/admin.php:67 admin/includes/admin-about.php:37 +#: admin/admin.php:110 admin/includes/admin-about.php:37 msgid "About Event List" msgstr "A propos de la liste d'évènement" -#: admin/admin.php:67 +#: admin/admin.php:110 msgid "About" msgstr "A propos" -#: admin/admin.php:87 +#: admin/admin.php:132 #, php-format msgid "%s Event" msgid_plural "%s Events" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:69 +#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 msgid "General" msgstr "Général" -#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77 -#: admin/includes/admin-about.php:104 +#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:105 msgid "Shortcode Attributes" msgstr "Attributs du shortcode" -#: admin/includes/admin-about.php:71 +#: admin/includes/admin-about.php:72 msgid "Help and Instructions" msgstr "Aide et instructions" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:73 #, 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:73 +#: admin/includes/admin-about.php:74 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:74 +#: admin/includes/admin-about.php:75 #, 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:75 +#: admin/includes/admin-about.php:76 #, 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:76 +#: admin/includes/admin-about.php:77 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:77 +#: admin/includes/admin-about.php:78 #, 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:78 +#: admin/includes/admin-about.php:79 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:79 +#: admin/includes/admin-about.php:80 #, 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:79 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 msgid "Add links to the single events" msgstr "Ajoute un lien vers le détail de l'évènement." -#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 msgid "Add a link to the Event List page" msgstr "Ajoute un liens vers la page des évènements." -#: admin/includes/admin-about.php:80 +#: admin/includes/admin-about.php:81 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:81 +#: admin/includes/admin-about.php:82 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:82 +#: admin/includes/admin-about.php:83 #, php-format msgid "" "The default value %1$s is normally o.k. (for pages with 1 shortcode only), " @@ -158,506 +138,594 @@ msgid "" "link on your linked page or post." msgstr "" -#: admin/includes/admin-about.php:83 +#: admin/includes/admin-about.php:84 #, 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:85 +#: admin/includes/admin-about.php:86 #, 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:85 +#: admin/includes/admin-about.php:86 msgid "Settings page" msgstr "Page des paramètres" -#: admin/includes/admin-about.php:91 +#: admin/includes/admin-about.php:92 msgid "About the plugin author" msgstr "Au sujet de l'auteur du plugin" -#: admin/includes/admin-about.php:93 +#: admin/includes/admin-about.php:94 #, 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:93 +#: admin/includes/admin-about.php:94 msgid "wordpress plugin site" msgstr "Site du plugin Wordpress" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:95 #, 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:94 +#: admin/includes/admin-about.php:95 msgid "wordpress plugin review site" msgstr "" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:96 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:96 admin/includes/admin-about.php:97 -#: admin/includes/admin-about.php:98 +#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 +#: admin/includes/admin-about.php:99 #, php-format msgid "Donate with %1$s" msgstr "" -#: admin/includes/admin-about.php:106 +#: admin/includes/admin-about.php:107 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:107 +#: admin/includes/admin-about.php:108 #, 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:109 +#: admin/includes/admin-about.php:110 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:123 +#: admin/includes/admin-about.php:124 msgid "Attribute name" msgstr "Nom de l'attribut" -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:125 msgid "Value options" msgstr "Valeurs possibles" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:126 msgid "Default value" msgstr "Valeur par défaut" -#: admin/includes/admin-about.php:126 admin/includes/admin-categories.php:194 -#: admin/includes/category_table.php:111 +#: admin/includes/admin-about.php:127 msgid "Description" msgstr "Description" -#: admin/includes/admin-about.php:144 includes/sc_event-list_helptexts.php:26 +#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 #: includes/sc_event-list_helptexts.php:31 msgid "Filter Syntax" msgstr "Syntaxe des filtres" -#: admin/includes/admin-about.php:145 +#: admin/includes/admin-about.php:146 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:146 +#: admin/includes/admin-about.php:147 #, 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:146 +#: admin/includes/admin-about.php:147 msgid "AND" msgstr "ET" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "OR" msgstr "OU" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "or" msgstr "ou" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "and" msgstr "et" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:148 msgid "Examples for cat filters:" msgstr "Exemple de filtre de catégorie :" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:149 #, 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:149 +#: admin/includes/admin-about.php:150 #, 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:150 +#: admin/includes/admin-about.php:151 #, 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:155 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 msgid "Available Date Formats" msgstr "Formats de date disponible" -#: admin/includes/admin-about.php:156 +#: admin/includes/admin-about.php:157 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:164 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 msgid "Available Date Range Formats" msgstr "Formats de d'intervalle de date disponible" -#: admin/includes/admin-about.php:165 +#: admin/includes/admin-about.php:166 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:177 +#: admin/includes/admin-about.php:178 msgid "Value" msgstr "Valeur" -#: admin/includes/admin-about.php:181 +#: admin/includes/admin-about.php:182 msgid "Example" msgstr "Exemple" -#: admin/includes/admin-categories.php:51 -msgid "Edit Category" -msgstr "Modifier catégorie" - -#: admin/includes/admin-categories.php:51 -msgid "Update Category" -msgstr "Mettre à jour catégorie" - -#: admin/includes/admin-categories.php:57 -msgid "Add New Category" -msgstr "Ajouter une nouvelle catégorie" +#: admin/includes/admin-categories.php:38 +msgid "Synchronize with post categories" +msgstr "" -#: admin/includes/admin-categories.php:84 +#: admin/includes/admin-categories.php:46 #, php-format -msgid "Category \"%s\" deleted." -msgstr "Catégorie \"%s\" supprimé." +msgid "%1$s categories modified (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:86 +#: admin/includes/admin-categories.php:47 #, php-format -msgid "This Category was also removed from %d events." -msgstr "Cette catégorie a aussi été supprimé de %d évènements." +msgid "%1$s categories added (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:92 +#: admin/includes/admin-categories.php:48 #, php-format -msgid "Error while deleting category \"%s\"" -msgstr "Erreur lors de la suppression de la catégorie \"%s\"" - -#: admin/includes/admin-categories.php:103 -msgid "Sync with post categories enabled." -msgstr "Synchronisation avec les catégories d'articles activé" - -#: admin/includes/admin-categories.php:106 -msgid "Sync with post categories disabled." -msgstr "Synchronisation avec les catégories d'articles désactivé." - -#: admin/includes/admin-categories.php:112 -msgid "Manual sync with post categories sucessfully finished." -msgstr "Synchronisation manuel avec les catégories d'article achevé avec sucés." +msgid "%1$s categories deleted (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:125 +#: admin/includes/admin-categories.php:50 #, php-format -msgid "New Category \"%s\" was added" -msgstr "Nouvelle catégorie \"%s\" ajouté." +msgid "%1$s categories not modified (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:128 +#: admin/includes/admin-categories.php:51 #, php-format -msgid "Error: New Category \"%s\" could not be added" -msgstr "Erreur: la nouvelle catégorie \"%s\" ne peut pas être ajoutée." +msgid "%1$s categories not added (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:134 +#: admin/includes/admin-categories.php:52 #, php-format -msgid "Category \"%s\" was modified" -msgstr "La catégorie \"%s\" a été modifié." +msgid "%1$s categories not deleted (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:137 -#, php-format -msgid "Error: Category \"%s\" could not be modified" -msgstr "Erreur: La catégorie \"%s\" ne peut pas être modifié." +#: admin/includes/admin-categories.php:55 +msgid "An Error occured during the category sync" +msgstr "" + +#: admin/includes/admin-categories.php:59 +msgid "Category sync finished" +msgstr "" + +#: admin/includes/admin-category-sync.php:45 +msgid "Error: You are not allowed to view this page!" +msgstr "" + +#: admin/includes/admin-category-sync.php:62 +msgid "Affected Categories when switching to seperate Event Categories" +msgstr "" -#: admin/includes/admin-categories.php:144 -msgid "Categories are automatically synced with the post categories." -msgstr "Les catégories sont synchronisées automatiquement avec les catégories des posts." +#: admin/includes/admin-category-sync.php:63 +msgid "Switch option to seperate Event Categories" +msgstr "" -#: admin/includes/admin-categories.php:145 +#: admin/includes/admin-category-sync.php:64 msgid "" -"Because of this all options to add new categories or editing existing " -"categories are disabled." +"If you proceed, all post categories will be copied and all events will be " +"re-assigned to this new categories." msgstr "" -#: admin/includes/admin-categories.php:146 +#: admin/includes/admin-category-sync.php:65 msgid "" -"If you want to manually edit the categories you have to disable this option." -msgstr "Si vous voulez modifier manuellement les catégories, décocher cette option" +"Afterwards the event categories are independent of the post categories." +msgstr "" + +#: admin/includes/admin-category-sync.php:68 +msgid "Affected Categories when switching to use Post Categories for events" +msgstr "" -#: admin/includes/admin-categories.php:173 -msgid "The name is how it appears on your site." -msgstr "Le nom est la façon dont il apparaît sur votre site." +#: admin/includes/admin-category-sync.php:69 +msgid "Switch option to use Post Categories for events" +msgstr "" -#: admin/includes/admin-categories.php:178 +#: admin/includes/admin-category-sync.php:70 msgid "" -"The “slug” is the URL-friendly version of the name. It is usually all " -"lowercase and contains only letters, numbers, and hyphens." -msgstr "Le \"slug\" est la version du nom dans l'URL, c'est la version du nom ne contenant que des lettres minuscules (sans accents), des chiffres et des tirets." +"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 +msgid "Event Categories: Synchronise with Post Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:74 +msgid "Start synchronisation" +msgstr "" -#: admin/includes/admin-categories.php:191 +#: admin/includes/admin-category-sync.php:75 msgid "" -"Categories can have a hierarchy. You might have a Jazz category, and under " -"that have children categories for Bebop and Big Band. Totally optional." -msgstr "Les catégories peuvent avoir une hierarchie. Vous pouvez avoir une catégorie Jazz et avoir en dessous les catégories enfants Bebop et Big Band. Totalement optionnel." +"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 +msgid "Categories to modify" +msgstr "" -#: admin/includes/admin-categories.php:241 -msgid "Apply" -msgstr "Appliquer" +#: admin/includes/admin-category-sync.php:91 +msgid "Categories to add" +msgstr "" -#: admin/includes/admin-categories.php:251 -msgid "Do a manual sync with post categories" -msgstr "Faire une synchronisation manuel avec les catégories d'articles." +#: admin/includes/admin-category-sync.php:92 +msgid "Categories to delete (optional)" +msgstr "" -#: admin/includes/admin-import.php:45 +#: admin/includes/admin-category-sync.php:93 +msgid "Delete not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:97 +msgid "Categories with differences" +msgstr "" + +#: admin/includes/admin-category-sync.php:98 +msgid "Categories to add (optional)" +msgstr "" + +#: admin/includes/admin-category-sync.php:99 +msgid "Add not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:117 +msgid "none" +msgstr "" + +#: admin/includes/admin-import.php:49 msgid "Import Events" msgstr "Importer évènements." -#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:118 +#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:198 msgid "Step" msgstr "Etape" -#: admin/includes/admin-import.php:65 +#: admin/includes/admin-import.php:69 msgid "Set import file and options" msgstr "Sélection du fichier à importer et des options." -#: admin/includes/admin-import.php:68 +#: admin/includes/admin-import.php:72 #, php-format msgid "Proceed with Step %1$s" msgstr "" -#: admin/includes/admin-import.php:71 +#: admin/includes/admin-import.php:75 msgid "Example file" msgstr "Fichier d'exemple" -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:76 #, 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:73 +#: admin/includes/admin-import.php:77 msgid "Note" msgstr "Remarque" -#: admin/includes/admin-import.php:73 +#: admin/includes/admin-import.php:77 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:80 admin/includes/admin-import.php:88 -#: admin/includes/admin-import.php:101 +#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 msgid "Sorry, there has been an error." msgstr "Désolé, il y a eu une erreur." -#: admin/includes/admin-import.php:81 +#: admin/includes/admin-import.php:85 msgid "The file does not exist, please try again." msgstr "Le fichier n'existe pas, essayez encore." -#: admin/includes/admin-import.php:89 -msgid "The file is not a CSV file." -msgstr "Le fichier n'est pas un fichier CSV valide." +#: admin/includes/admin-import.php:93 +msgid "The uploaded file does not have the required csv extension." +msgstr "" -#: admin/includes/admin-import.php:118 +#: admin/includes/admin-import.php:105 msgid "Events review and additonal category selection" msgstr "" -#: admin/includes/admin-import.php:121 +#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +msgid "Error" +msgstr "" + +#: admin/includes/admin-import.php:111 +msgid "This CSV file cannot be imported" +msgstr "" + +#: admin/includes/admin-import.php:122 +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 +msgid "Warning" +msgstr "" + +#: admin/includes/admin-import.php:126 +#, 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 +#, php-format +msgid "CSV line %1$s" +msgstr "" + +#: admin/includes/admin-import.php:144 +msgid "You can still import all other events listed below." +msgstr "" + +#: admin/includes/admin-import.php:163 msgid "" -"Warning: The following category slugs are not available and will be removed " -"from the imported events:" +"The following category slugs are not available and will be removed from the " +"imported events" msgstr "" -#: admin/includes/admin-import.php:127 +#: admin/includes/admin-import.php:169 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:145 -msgid "Add additional categories" -msgstr "Ajouter plus de catégories" - -#: admin/includes/admin-import.php:146 -msgid "Import events" -msgstr "Importer des événements" - -#: admin/includes/admin-import.php:160 -msgid "Import with errors!" -msgstr "Importé avec des erreurs!" - -#: admin/includes/admin-import.php:161 -msgid "Sorry, an error occurred during import!" +#: admin/includes/admin-import.php:198 +msgid "Import result" msgstr "" -#: admin/includes/admin-import.php:165 -msgid "Import successful!" -msgstr "Importation réussis!" +#: admin/includes/admin-import.php:201 +#, php-format +msgid "Import of %1$s events successful!" +msgstr "" -#: admin/includes/admin-import.php:166 +#: admin/includes/admin-import.php:202 msgid "Go back to All Events" msgstr "Retour à la liste des évènements" -#: admin/includes/admin-import.php:173 admin/includes/admin-new.php:111 -#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:206 +msgid "Errors during Import" +msgstr "" + +#: admin/includes/admin-import.php:215 +msgid "Event from CSV-line" +msgstr "" + +#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 +#: includes/widget_helptexts.php:8 msgid "Title" msgstr "Titre" -#: admin/includes/admin-import.php:174 +#: admin/includes/admin-import.php:227 msgid "Start Date" msgstr "Date de début" -#: admin/includes/admin-import.php:175 +#: admin/includes/admin-import.php:228 msgid "End Date" msgstr "Date de fin" -#: admin/includes/admin-import.php:176 admin/includes/admin-new.php:124 -#: includes/options_helptexts.php:48 includes/options_helptexts.php:49 +#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 +#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 msgid "Time" msgstr "Heure" -#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:128 -#: admin/includes/event_table.php:112 includes/options_helptexts.php:53 -#: includes/options_helptexts.php:54 +#: 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 msgid "Location" msgstr "Lieu" -#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:132 -#: admin/includes/event_table.php:113 -msgid "Details" -msgstr "Détails" +#: admin/includes/admin-import.php:231 +msgid "Content" +msgstr "" -#: admin/includes/admin-import.php:179 +#: admin/includes/admin-import.php:232 msgid "Category slugs" msgstr "" -#: admin/includes/admin-import.php:218 +#: admin/includes/admin-import.php:274 +msgid "Header line is missing or not correct!" +msgstr "" + +#: admin/includes/admin-import.php:275 #, php-format msgid "" -"There was an error at line %1$s when reading this CSV file: Header line is " -"missing or not correct!" -msgstr "Une erreur s'est produite à la ligne %1$s lors de la lecture du fichier CSV : la ligne d'entête est manquante ou incorrecte." +"Have a look at the %1$sexample file%2$s to see the correct header line " +"format." +msgstr "" + +#: admin/includes/admin-import.php:281 +#, php-format +msgid "Wrong number of items in line (%1$s items found, 6-7 required)" +msgstr "" + +#: admin/includes/admin-import.php:309 +msgid "Empty event title found" +msgstr "" + +#: admin/includes/admin-import.php:315 +msgid "Wrong date format for startdate" +msgstr "" + +#: admin/includes/admin-import.php:324 +msgid "Wrong date format for enddate" +msgstr "" + +#: admin/includes/admin-import.php:365 +msgid "Import events" +msgstr "Importer des événements" + +#: admin/includes/admin-import.php:366 +msgid "Add additional categories" +msgstr "Ajouter plus de catégories" -#: admin/includes/admin-import.php:253 admin/includes/admin-main.php:122 +#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 msgid "Import" msgstr "Importer" -#: admin/includes/admin-main.php:116 -msgid "Edit Event" -msgstr "Modifier évènement" +#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +msgid "No events found" +msgstr "" -#: admin/includes/admin-main.php:116 admin/includes/event_table.php:75 -msgid "Duplicate" -msgstr "Dupliquer" +#: admin/includes/admin-import.php:432 +msgid "Saving of event failed!" +msgstr "" -#: admin/includes/admin-new.php:48 +#: admin/includes/admin-main.php:60 +msgid "Event Date" +msgstr "" + +#: admin/includes/admin-main.php:64 +msgid "Author" +msgstr "Auteur" + +#: admin/includes/admin-main.php:126 #, php-format -msgid "Duplicate of event id:%d" -msgstr "Duplication de l'évènement: %d" +msgid "Add a copy of %1$s" +msgstr "" -#: admin/includes/admin-new.php:111 admin/includes/admin-new.php:115 -msgid "required" -msgstr "Requis" +#: admin/includes/admin-main.php:126 +msgid "Copy" +msgstr "" -#: admin/includes/admin-new.php:115 admin/includes/event_table.php:110 +#: admin/includes/admin-new.php:51 +msgid "Event data" +msgstr "" + +#: admin/includes/admin-new.php:80 +msgid "Add Copy" +msgstr "" + +#: admin/includes/admin-new.php:84 msgid "Date" msgstr "Date" -#: admin/includes/admin-new.php:118 +#: admin/includes/admin-new.php:84 +msgid "required" +msgstr "Requis" + +#: admin/includes/admin-new.php:87 msgid "Multi-Day Event" msgstr "Evènement sur plusieurs jours" -#: admin/includes/admin-new.php:148 admin/includes/admin-new.php:165 -msgid "Publish" -msgstr "Publier" +#: admin/includes/admin-new.php:106 +msgid "Event Title" +msgstr "" -#: admin/includes/admin-new.php:165 -msgid "Update" -msgstr "Modifier" +#: admin/includes/admin-new.php:121 +msgid "Event Content" +msgstr "" -#: admin/includes/admin-new.php:167 -msgid "Cancel" -msgstr "Annuler" +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +msgid "Event updated." +msgstr "" -#: admin/includes/admin-new.php:180 -msgid "No categories available." -msgstr "Pas de catégories disponible." +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +msgid "View event" +msgstr "" -#: admin/includes/admin-new.php:226 -msgid "Goto Category Settings" -msgstr "Aller sur les paramètres des catégories" +#: admin/includes/admin-new.php:184 +#, php-format +msgid "Event restored to revision from %1$s" +msgstr "" + +#: admin/includes/admin-new.php:185 +msgid "Event published." +msgstr "" -#: admin/includes/admin-settings.php:42 -msgid "Settings saved." -msgstr "Paramètres sauvegardé." +#: admin/includes/admin-new.php:187 +msgid "Event submitted." +msgstr "" -#: admin/includes/admin-settings.php:70 +#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 +#: admin/includes/admin-new.php:190 +msgid "Preview event" +msgstr "" + +#: admin/includes/admin-new.php:188 +#, php-format +msgid "Event scheduled for: %1$s>" +msgstr "" + +#: admin/includes/admin-new.php:190 +msgid "Event draft updated." +msgstr "" + +#: admin/includes/admin-settings.php:71 +msgid "Go to Event Category switching page" +msgstr "" + +#: admin/includes/admin-settings.php:83 msgid "Frontend Settings" msgstr "Frontend Préférences" -#: admin/includes/admin-settings.php:71 +#: admin/includes/admin-settings.php:84 msgid "Admin Page Settings" msgstr "Administration Préférences" -#: admin/includes/admin-settings.php:72 +#: admin/includes/admin-settings.php:85 msgid "Feed Settings" msgstr "Flux RSS Préférences" -#: admin/includes/category_table.php:27 admin/includes/event_table.php:29 -msgid "event" -msgstr "évènement" - -#: admin/includes/category_table.php:28 admin/includes/event_table.php:30 -msgid "events" -msgstr "évènements" - -#: admin/includes/category_table.php:73 admin/includes/event_table.php:74 -msgid "Edit" -msgstr "Modifier" - -#: admin/includes/category_table.php:74 admin/includes/category_table.php:148 -#: admin/includes/event_table.php:76 admin/includes/event_table.php:149 -msgid "Delete" -msgstr "Supprimer" - -#: admin/includes/category_table.php:110 -msgid "Name" -msgstr "Nom" - -#: admin/includes/category_table.php:112 -msgid "Slug" -msgstr "Slug" - -#: admin/includes/event_table.php:115 -msgid "Author" -msgstr "Auteur" - -#: admin/includes/event_table.php:116 -msgid "Published" -msgstr "Publié" - -#: admin/includes/event_table.php:180 -msgid "Filter" -msgstr "Filtrer" - -#: admin/includes/event_table.php:300 -#, php-format -msgid "%s ago" -msgstr "depuis %s" +#: admin/includes/admin-settings.php:86 +msgid "Category Taxonomy" +msgstr "" #: includes/daterange_helptexts.php:7 msgid "Year" @@ -802,7 +870,7 @@ msgstr "Cette valeur définie une période sans aucune limites" 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:291 +#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 msgid "Upcoming" msgstr "A venir" @@ -810,7 +878,7 @@ msgstr "A venir" 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:295 +#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 msgid "Past" msgstr "Passé" @@ -818,146 +886,238 @@ msgstr "Passé" 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/filterbar.php:233 includes/sc_event-list_helptexts.php:60 -msgid "Reset" +#: includes/event.php:107 +msgid "No valid start date provided" msgstr "" -#: includes/filterbar.php:282 -msgid "All" -msgstr "Tous" +#: includes/events_post_type.php:60 +msgid "Events" +msgstr "Evénements" -#: includes/filterbar.php:285 -msgid "Show all dates" -msgstr "Voir toutes les dates" +#: includes/events_post_type.php:61 +msgid "Event" +msgstr "" -#: includes/filterbar.php:285 -msgid "Show all categories" -msgstr "Voir toutes les catégories" +#: includes/events_post_type.php:62 +msgid "Add New" +msgstr "Ajouter" -#: includes/options_helptexts.php:11 -msgid "Sync Categories" -msgstr "Synchroniser les catégories" +#: includes/events_post_type.php:63 +msgid "Add New Event" +msgstr "Ajouter un nouvel évènement" -#: includes/options_helptexts.php:12 -msgid "Keep event categories in sync with post categories automatically" -msgstr "Garder automatiquement synchronisé les catégories d'évènements avec les catégories d'articles." +#: includes/events_post_type.php:64 +msgid "Edit Event" +msgstr "Modifier évènement" -#: includes/options_helptexts.php:13 -msgid "Attention" -msgstr "Attention" +#: includes/events_post_type.php:65 +msgid "New Event" +msgstr "" -#: includes/options_helptexts.php:14 -msgid "" -"Please note that this option will delete all categories which are not " -"available in the post categories! Existing Categories with the same slug " -"will be updated." -msgstr "Veuillez notez que cette option va supprimer toutes les catégories qui ne sont pas disponibles dans les catégories d'articles!" +#: includes/events_post_type.php:66 +msgid "View Event" +msgstr "" -#: includes/options_helptexts.php:18 +#: includes/events_post_type.php:67 +msgid "View Events" +msgstr "" + +#: includes/events_post_type.php:68 +msgid "Search Events" +msgstr "" + +#: includes/events_post_type.php:70 +msgid "No events found in Trash" +msgstr "" + +#: includes/events_post_type.php:72 +msgid "All Events" +msgstr "Tous les évènements" + +#: includes/events_post_type.php:73 +msgid "Event Archives" +msgstr "" + +#: includes/events_post_type.php:74 +msgid "Event Attributes" +msgstr "" + +#: includes/events_post_type.php:75 +msgid "Insert into event" +msgstr "" + +#: includes/events_post_type.php:76 +msgid "Uploaded to this event" +msgstr "" + +#: includes/events_post_type.php:77 +msgid "Event List" +msgstr "Liste des événements" + +#: includes/events_post_type.php:78 +msgid "Filter events list" +msgstr "" + +#: includes/events_post_type.php:79 +msgid "Events list navigation" +msgstr "" + +#: includes/events_post_type.php:80 +msgid "Events list" +msgstr "" + +#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +msgid "Reset" +msgstr "" + +#: includes/filterbar.php:278 +msgid "All" +msgstr "Tous" + +#: includes/filterbar.php:281 +msgid "All Dates" +msgstr "" + +#: includes/options_helptexts.php:10 msgid "CSV File to import" msgstr "Fichier CSV à importer" -#: includes/options_helptexts.php:20 +#: includes/options_helptexts.php:12 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:23 +#: includes/options_helptexts.php:15 msgid "Used date format" msgstr "Utilise le format de date suivant" +#: includes/options_helptexts.php:17 +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 +#, 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 +msgid "full year representation, with 4 digits" +msgstr "" + +#: includes/options_helptexts.php:21 +msgid "numeric representation of a month, with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:22 +msgid "day of the month, 2 digits with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:24 +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 msgid "" -"With this option the used date format for event start and end date given in " -"the CSV file can be specified." -msgstr "Avec cette option le format de la date de début et de fin peut être spécifié pour le fichier CSV importé." +"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:29 +#: includes/options_helptexts.php:26 +msgid "Examples" +msgstr "" + +#: includes/options_helptexts.php:33 msgid "Text for no events" msgstr "Texte si pas d'événements." -#: includes/options_helptexts.php:31 +#: includes/options_helptexts.php:35 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:34 +#: includes/options_helptexts.php:38 msgid "Multiday filter range" msgstr "Filtre sur plusieurs jours" -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:39 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:36 +#: includes/options_helptexts.php:40 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:37 +#: includes/options_helptexts.php:41 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:38 +#: includes/options_helptexts.php:42 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:41 +#: includes/options_helptexts.php:45 msgid "Date display" msgstr "Affichage de la date" -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:46 msgid "Show the date only once per day" msgstr "Afficher la date seulement une fois par jour." -#: includes/options_helptexts.php:43 +#: includes/options_helptexts.php:47 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:44 +#: includes/options_helptexts.php:48 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:47 +#: includes/options_helptexts.php:51 msgid "HTML tags" msgstr "Tags HTML" -#: includes/options_helptexts.php:48 includes/options_helptexts.php:53 +#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 #, 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:49 includes/options_helptexts.php:54 +#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 #, 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:57 +#: includes/options_helptexts.php:61 msgid "Preferred language file" msgstr "Langue choisie pour le fichier" -#: includes/options_helptexts.php:58 +#: includes/options_helptexts.php:62 msgid "Load translations from general language directory first" msgstr "" -#: includes/options_helptexts.php:59 +#: includes/options_helptexts.php:63 #, 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:60 +#: includes/options_helptexts.php:64 #, php-format msgid "" "If you want to load your own language file from the general language " @@ -965,252 +1125,289 @@ msgid "" "language directory, you have to enable this option." msgstr "" -#: includes/options_helptexts.php:64 -msgid "Text for \"Show details\"" -msgstr "Texte pour \"Afficher détails\"" +#: includes/options_helptexts.php:68 +msgid "Events permalink slug" +msgstr "" + +#: includes/options_helptexts.php:69 +msgid "" +"With this option the slug for the events permalink URLs can be defined." +msgstr "" + +#: includes/options_helptexts.php:72 +msgid "Text for \"Show content\"" +msgstr "" -#: includes/options_helptexts.php:65 +#: includes/options_helptexts.php:73 msgid "" -"With this option the displayed text for the link to show the event details " +"With this option the displayed text for the link to show the event content " "can be changed, when collapsing is enabled." -msgstr "Avec cette option, le texte affiché pour le lien qui permet de lire le texte d'un évènement peut être changé, lorsque l'option Replier est activé." +msgstr "" -#: includes/options_helptexts.php:68 -msgid "Text for \"Hide details\"" -msgstr "Texte pour \"Cacher les détails\"" +#: includes/options_helptexts.php:76 +msgid "Text for \"Hide content\"" +msgstr "" -#: includes/options_helptexts.php:69 +#: includes/options_helptexts.php:77 msgid "" -"With this option the displayed text for the link to hide the event details " +"With this option the displayed text for the link to hide the event content " "can be changed, when collapsing is enabled." -msgstr "Avec cette option, le texte affiché pour le lien qui permet de cacher le texte d'un évènement peut être changé, lorsque l'option Replier est activé." +msgstr "" -#: includes/options_helptexts.php:72 +#: includes/options_helptexts.php:80 msgid "Disable CSS file" msgstr "Désactiver le fichier CSS" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:81 #, php-format msgid "Disable the %1$s file." msgstr "Désactiver le fichier %1$s." -#: includes/options_helptexts.php:74 +#: includes/options_helptexts.php:82 #, 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:75 +#: includes/options_helptexts.php:83 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:79 +#: includes/options_helptexts.php:87 msgid "Date format in edit form" msgstr "Format de la date dans le formulaire d'édition." -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:88 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:81 +#: includes/options_helptexts.php:89 msgid "The default is an empty string to use the Wordpress standard setting." msgstr "" -#: includes/options_helptexts.php:82 +#: includes/options_helptexts.php:90 #, 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:86 includes/options_helptexts.php:114 +#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 msgid "Enable RSS feed" msgstr "Activer flux RSS" -#: includes/options_helptexts.php:87 +#: 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:88 +#: 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:89 +#: includes/options_helptexts.php:97 msgid "" "You have to enable this option if you want to use one of the RSS feed " "features." msgstr "" -#: includes/options_helptexts.php:92 +#: includes/options_helptexts.php:100 msgid "Feed name" msgstr "Nom du flux" -#: includes/options_helptexts.php:93 +#: includes/options_helptexts.php:101 #, php-format msgid "This option sets the feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:94 +#: 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 "" -#: includes/options_helptexts.php:97 +#: includes/options_helptexts.php:105 msgid "Feed Description" msgstr "Description du Flux" -#: includes/options_helptexts.php:98 +#: includes/options_helptexts.php:106 #, php-format msgid "This options set the feed description. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:99 +#: 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 "" -#: includes/options_helptexts.php:102 +#: includes/options_helptexts.php:110 msgid "Listed events" msgstr "Evènements listés" -#: includes/options_helptexts.php:103 +#: 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:104 +#: includes/options_helptexts.php:112 msgid "" "If this option is enabled only the upcoming events are listed in the feed." msgstr "" -#: includes/options_helptexts.php:105 +#: includes/options_helptexts.php:113 msgid "If disabled all events (upcoming and past) will be listed." msgstr "" -#: includes/options_helptexts.php:108 +#: 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:109 +#: 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:110 +#: includes/options_helptexts.php:118 msgid "This option adds a RSS feed in the html head for the events." msgstr "" -#: includes/options_helptexts.php:111 +#: includes/options_helptexts.php:119 msgid "There are 2 alternatives to include the RSS feed" msgstr "" -#: includes/options_helptexts.php:112 +#: 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 "" -#: includes/options_helptexts.php:113 +#: 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." msgstr "" -#: includes/options_helptexts.php:114 +#: includes/options_helptexts.php:122 #, php-format msgid "This option is only valid if the setting %1$s is enabled." msgstr "" -#: includes/options_helptexts.php:117 +#: includes/options_helptexts.php:125 msgid "Position of the RSS feed link" msgstr "Position du flux RSS" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "at the top (above the navigation bar)" msgstr "En haut (au dessus du menu)" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "between navigation bar and events" msgstr "Entre le menu et les événements" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "at the bottom" msgstr "En bas" -#: includes/options_helptexts.php:119 +#: includes/options_helptexts.php:127 msgid "" "This option specifies the position of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:120 includes/options_helptexts.php:126 -#: includes/options_helptexts.php:132 includes/options_helptexts.php:138 +#: 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 "" -#: includes/options_helptexts.php:123 +#: includes/options_helptexts.php:131 msgid "Align of the RSS feed link" msgstr "Alignement du lien RSS" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "left" msgstr "gauche" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "center" msgstr "centré" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "right" msgstr "droite" -#: includes/options_helptexts.php:125 +#: includes/options_helptexts.php:133 msgid "" "This option specifies the align of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:129 +#: includes/options_helptexts.php:137 msgid "Feed link text" msgstr "Text du lien du flux" -#: includes/options_helptexts.php:130 +#: includes/options_helptexts.php:138 msgid "" "This option specifies the caption of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:131 +#: includes/options_helptexts.php:139 msgid "" "Insert an empty text to hide any text if you only want to show the rss " "image." msgstr "" -#: includes/options_helptexts.php:135 +#: includes/options_helptexts.php:143 msgid "Feed link image" msgstr "Image du flux RSS" -#: includes/options_helptexts.php:136 +#: 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:137 +#: 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." msgstr "" -#: includes/options.php:43 -msgid "Show details" -msgstr "Afficher les détails" +#: includes/options_helptexts.php:151 +msgid "Event Category handling" +msgstr "" + +#: includes/options_helptexts.php:152 +msgid "Use Post Categories" +msgstr "" + +#: includes/options_helptexts.php:153 +msgid "" +"Do not maintain seperate categories for the events, and use the existing " +"post categories instead." +msgstr "" + +#: includes/options_helptexts.php:154 +msgid "Attention" +msgstr "Attention" + +#: includes/options_helptexts.php:155 +msgid "" +"This option cannot be changed directly, but you can go to the Event Category" +" switching page from here." +msgstr "" -#: includes/options.php:44 -msgid "Hide details" -msgstr "Cacher les détails" +#: includes/options.php:40 +msgid "events" +msgstr "" + +#: includes/options.php:41 +msgid "Show content" +msgstr "" + +#: includes/options.php:42 +msgid "Hide content" +msgstr "" #: includes/sc_event-list_helptexts.php:7 msgid "event-id" @@ -1220,7 +1417,7 @@ msgstr "Id de l'événement" #, 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-details view of " +"%1$s) is provided for this attribute, directly the event-content view of " "this event is shown." msgstr "" @@ -1576,14 +1773,14 @@ msgstr "Cet attribut spécifie si la catégorie doit être affiché.<br/>\n⇥ C #: includes/sc_event-list_helptexts.php:100 msgid "" -"This attribute specifies if the details are displayed in the event list.<br />\n" -"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n" -"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event" -msgstr "Cet attribut spécifie si le détail doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher le détail.<br/>\n⇥ Avec la valeur \"event_list_only\" le détail est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" le détail est visible seulement sur l'affichage d'un évènement simple." +"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 msgid "" -"This attribute specifies if the details should be truncate to the given " +"This attribute specifies if the content should be truncate to the given " "number of characters in the event list." msgstr "" @@ -1594,19 +1791,19 @@ msgstr "Avec la valeur par défaut %1$s , le texte dans son intégralité est af #: includes/sc_event-list_helptexts.php:110 msgid "" -"This attribute specifies if the details should be collapsed initially.<br />\n" -"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n" -"\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the details.<br />\n" -"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view." -msgstr "Cet attribut spécifie si le détail doit être initialement replier.<br/>\n⇥ Alors un lien apparaitra à la place du détail. En cliquant sur le lien le détails sera visible.<br/>\n⇥ Choisissez \"false\" pour désactiver et \"true\" pour activer l'option pour replier le détail.<br/>\n⇥ Avec la valeur \"event_list_only\" le détail est seulement replié sur la liste des évènements, avec la valeur \"single_event_only\" le détail est replié seulement sur l'affichage d'un évènement simple." +"This attribute specifies if the content 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 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" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n" -"\t With \"events_with_details_only\" the link is only added in the event list for events with event details." -msgstr "Cet attribut spécifie si un lien vers l'évènement simple doit être ajouté sur le nom de l'évènement dans la liste des évènements.<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." +"\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 msgid "" @@ -1630,7 +1827,7 @@ msgid "" "\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:134 +#: includes/sc_event-list.php:135 msgid "Event Information:" msgstr "Information sur l'évènement" @@ -1707,20 +1904,20 @@ msgid "" msgstr "" #: includes/widget_helptexts.php:59 -msgid "Show event details" -msgstr "Afficher les détails de l'évènements" +msgid "Show event content" +msgstr "" #: includes/widget_helptexts.php:61 -msgid "This option defines if the event details will be displayed." -msgstr "Cette option définie si les détails des évènements doit être affiché." +msgid "This option defines if the event content will be displayed." +msgstr "" #: includes/widget_helptexts.php:66 -msgid "Truncate details to" -msgstr "Tronquer les détails à " +msgid "Truncate content to" +msgstr "" #: includes/widget_helptexts.php:68 msgid "" -"If the event details are diplayed this option defines the number of diplayed" +"If the event content are diplayed this option defines the number of diplayed" " characters." msgstr "" 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 new file mode 100644 index 0000000000000000000000000000000000000000..5b1a9ded5fc3c96a3034efdc5389078b080e87d6 Binary files /dev/null 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 new file mode 100644 index 0000000000000000000000000000000000000000..0a59af386fabef3b5678521a0eb4d2c6310d6916 --- /dev/null +++ b/wp-content/plugins/event-list/languages/event-list-id_ID.po @@ -0,0 +1,1980 @@ +# Translation file for the 'Event List' WordPress plugin +# Copyright (C) 2018 by mibuthu +# This file is distributed under the same license as the corresponding wordpress plugin. +# +# Translators: +# Mohammad Rizki <mohammadrizki.md@gmail.com>, 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" +"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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: admin/admin.php:57 +#, php-format +msgid "Errors during upgrade of plugin %1$s" +msgstr "" + +#: admin/admin.php:57 +#, php-format +msgid "Upgrade of plugin %1$s successful" +msgstr "" + +#: admin/admin.php:106 admin/includes/admin-settings.php:65 +msgid "Event List Settings" +msgstr "Pengaturan Daftar Acara" + +#: admin/admin.php:106 +msgid "Settings" +msgstr "Pengaturan" + +#: admin/admin.php:110 admin/includes/admin-about.php:37 +msgid "About Event List" +msgstr "Tentang Daftar Acara" + +#: admin/admin.php:110 +msgid "About" +msgstr "Tentang" + +#: admin/admin.php:132 +#, php-format +msgid "%s Event" +msgid_plural "%s Events" +msgstr[0] "" + +#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 +msgid "General" +msgstr "Umum" + +#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:105 +msgid "Shortcode Attributes" +msgstr "Atribut Kode Singkat" + +#: admin/includes/admin-about.php:72 +msgid "Help and Instructions" +msgstr "Bantuan dan Petunjuk" + +#: admin/includes/admin-about.php:73 +#, 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 +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 +#, 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 +#, 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 +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 +#, 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 +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 +#, 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 +msgid "Add links to the single events" +msgstr "Tambah tautan ke satu acara" + +#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 +msgid "Add a link to the Event List page" +msgstr "Tambah tautan ke laman Daftar Acara" + +#: admin/includes/admin-about.php:81 +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 +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 +#, 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 +#, 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 +#, 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 +msgid "Settings page" +msgstr "" + +#: admin/includes/admin-about.php:92 +msgid "About the plugin author" +msgstr "" + +#: admin/includes/admin-about.php:94 +#, 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" +msgstr "" + +#: admin/includes/admin-about.php:95 +#, 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" +msgstr "" + +#: admin/includes/admin-about.php:96 +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 +#, php-format +msgid "Donate with %1$s" +msgstr "" + +#: admin/includes/admin-about.php:107 +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 +#, 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 +msgid "" +"Below you can find a list of all supported attributes with their " +"descriptions and available options:" +msgstr "" + +#: admin/includes/admin-about.php:124 +msgid "Attribute name" +msgstr "" + +#: admin/includes/admin-about.php:125 +msgid "Value options" +msgstr "" + +#: admin/includes/admin-about.php:126 +msgid "Default value" +msgstr "" + +#: admin/includes/admin-about.php:127 +msgid "Description" +msgstr "" + +#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 +#: includes/sc_event-list_helptexts.php:31 +msgid "Filter Syntax" +msgstr "" + +#: admin/includes/admin-about.php:146 +msgid "" +"For date and cat filters you can specify complex filters with the following " +"syntax:" +msgstr "" + +#: admin/includes/admin-about.php:147 +#, 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 +msgid "AND" +msgstr "" + +#: admin/includes/admin-about.php:147 +msgid "OR" +msgstr "" + +#: admin/includes/admin-about.php:147 +msgid "or" +msgstr "" + +#: admin/includes/admin-about.php:147 +msgid "and" +msgstr "" + +#: admin/includes/admin-about.php:148 +msgid "Examples for cat filters:" +msgstr "" + +#: admin/includes/admin-about.php:149 +#, php-format +msgid "Show all events with category %1$s." +msgstr "" + +#: admin/includes/admin-about.php:150 +#, php-format +msgid "Show all events with category %1$s or %2$s." +msgstr "" + +#: admin/includes/admin-about.php:151 +#, 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 +msgid "Available Date Formats" +msgstr "" + +#: admin/includes/admin-about.php:157 +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 +msgid "Available Date Range Formats" +msgstr "" + +#: admin/includes/admin-about.php:166 +msgid "For date filters you can use the following daterange formats:" +msgstr "" + +#: admin/includes/admin-about.php:178 +msgid "Value" +msgstr "" + +#: admin/includes/admin-about.php:182 +msgid "Example" +msgstr "" + +#: admin/includes/admin-categories.php:38 +msgid "Synchronize with post categories" +msgstr "" + +#: admin/includes/admin-categories.php:46 +#, php-format +msgid "%1$s categories modified (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:47 +#, php-format +msgid "%1$s categories added (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:48 +#, php-format +msgid "%1$s categories deleted (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:50 +#, php-format +msgid "%1$s categories not modified (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:51 +#, php-format +msgid "%1$s categories not added (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:52 +#, php-format +msgid "%1$s categories not deleted (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:55 +msgid "An Error occured during the category sync" +msgstr "" + +#: admin/includes/admin-categories.php:59 +msgid "Category sync finished" +msgstr "" + +#: admin/includes/admin-category-sync.php:45 +msgid "Error: You are not allowed to view this page!" +msgstr "" + +#: admin/includes/admin-category-sync.php:62 +msgid "Affected Categories when switching to seperate Event Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:63 +msgid "Switch option to seperate Event Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:64 +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 +msgid "" +"Afterwards the event categories are independent of the post categories." +msgstr "" + +#: admin/includes/admin-category-sync.php:68 +msgid "Affected Categories when switching to use Post Categories for events" +msgstr "" + +#: admin/includes/admin-category-sync.php:69 +msgid "Switch option to use Post Categories for events" +msgstr "" + +#: admin/includes/admin-category-sync.php:70 +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 +msgid "Event Categories: Synchronise with Post Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:74 +msgid "Start synchronisation" +msgstr "" + +#: admin/includes/admin-category-sync.php:75 +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 +msgid "Categories to modify" +msgstr "" + +#: admin/includes/admin-category-sync.php:91 +msgid "Categories to add" +msgstr "" + +#: admin/includes/admin-category-sync.php:92 +msgid "Categories to delete (optional)" +msgstr "" + +#: admin/includes/admin-category-sync.php:93 +msgid "Delete not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:97 +msgid "Categories with differences" +msgstr "" + +#: admin/includes/admin-category-sync.php:98 +msgid "Categories to add (optional)" +msgstr "" + +#: admin/includes/admin-category-sync.php:99 +msgid "Add not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:117 +msgid "none" +msgstr "" + +#: admin/includes/admin-import.php:49 +msgid "Import Events" +msgstr "" + +#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:198 +msgid "Step" +msgstr "" + +#: admin/includes/admin-import.php:69 +msgid "Set import file and options" +msgstr "" + +#: admin/includes/admin-import.php:72 +#, php-format +msgid "Proceed with Step %1$s" +msgstr "" + +#: admin/includes/admin-import.php:75 +msgid "Example file" +msgstr "" + +#: admin/includes/admin-import.php:76 +#, 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 +msgid "Note" +msgstr "" + +#: admin/includes/admin-import.php:77 +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 +msgid "Sorry, there has been an error." +msgstr "" + +#: admin/includes/admin-import.php:85 +msgid "The file does not exist, please try again." +msgstr "" + +#: admin/includes/admin-import.php:93 +msgid "The uploaded file does not have the required csv extension." +msgstr "" + +#: admin/includes/admin-import.php:105 +msgid "Events review and additonal category selection" +msgstr "" + +#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +msgid "Error" +msgstr "" + +#: admin/includes/admin-import.php:111 +msgid "This CSV file cannot be imported" +msgstr "" + +#: admin/includes/admin-import.php:122 +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 +msgid "Warning" +msgstr "" + +#: admin/includes/admin-import.php:126 +#, 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 +#, php-format +msgid "CSV line %1$s" +msgstr "" + +#: admin/includes/admin-import.php:144 +msgid "You can still import all other events listed below." +msgstr "" + +#: admin/includes/admin-import.php:163 +msgid "" +"The following category slugs are not available and will be removed from the " +"imported events" +msgstr "" + +#: admin/includes/admin-import.php:169 +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 +msgid "Import result" +msgstr "" + +#: admin/includes/admin-import.php:201 +#, php-format +msgid "Import of %1$s events successful!" +msgstr "" + +#: admin/includes/admin-import.php:202 +msgid "Go back to All Events" +msgstr "" + +#: admin/includes/admin-import.php:206 +msgid "Errors during Import" +msgstr "" + +#: admin/includes/admin-import.php:215 +msgid "Event from CSV-line" +msgstr "" + +#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 +#: includes/widget_helptexts.php:8 +msgid "Title" +msgstr "" + +#: admin/includes/admin-import.php:227 +msgid "Start Date" +msgstr "" + +#: admin/includes/admin-import.php:228 +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 +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 +msgid "Location" +msgstr "" + +#: admin/includes/admin-import.php:231 +msgid "Content" +msgstr "" + +#: admin/includes/admin-import.php:232 +msgid "Category slugs" +msgstr "" + +#: admin/includes/admin-import.php:274 +msgid "Header line is missing or not correct!" +msgstr "" + +#: admin/includes/admin-import.php:275 +#, 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 +#, php-format +msgid "Wrong number of items in line (%1$s items found, 6-7 required)" +msgstr "" + +#: admin/includes/admin-import.php:309 +msgid "Empty event title found" +msgstr "" + +#: admin/includes/admin-import.php:315 +msgid "Wrong date format for startdate" +msgstr "" + +#: admin/includes/admin-import.php:324 +msgid "Wrong date format for enddate" +msgstr "" + +#: admin/includes/admin-import.php:365 +msgid "Import events" +msgstr "" + +#: admin/includes/admin-import.php:366 +msgid "Add additional categories" +msgstr "" + +#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +msgid "Import" +msgstr "" + +#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +msgid "No events found" +msgstr "" + +#: admin/includes/admin-import.php:432 +msgid "Saving of event failed!" +msgstr "" + +#: admin/includes/admin-main.php:60 +msgid "Event Date" +msgstr "" + +#: admin/includes/admin-main.php:64 +msgid "Author" +msgstr "" + +#: admin/includes/admin-main.php:126 +#, php-format +msgid "Add a copy of %1$s" +msgstr "" + +#: admin/includes/admin-main.php:126 +msgid "Copy" +msgstr "" + +#: admin/includes/admin-new.php:51 +msgid "Event data" +msgstr "" + +#: admin/includes/admin-new.php:80 +msgid "Add Copy" +msgstr "" + +#: admin/includes/admin-new.php:84 +msgid "Date" +msgstr "" + +#: admin/includes/admin-new.php:84 +msgid "required" +msgstr "" + +#: admin/includes/admin-new.php:87 +msgid "Multi-Day Event" +msgstr "" + +#: admin/includes/admin-new.php:106 +msgid "Event Title" +msgstr "" + +#: admin/includes/admin-new.php:121 +msgid "Event Content" +msgstr "" + +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +msgid "Event updated." +msgstr "" + +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +msgid "View event" +msgstr "" + +#: admin/includes/admin-new.php:184 +#, php-format +msgid "Event restored to revision from %1$s" +msgstr "" + +#: admin/includes/admin-new.php:185 +msgid "Event published." +msgstr "" + +#: admin/includes/admin-new.php:187 +msgid "Event submitted." +msgstr "" + +#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 +#: admin/includes/admin-new.php:190 +msgid "Preview event" +msgstr "" + +#: admin/includes/admin-new.php:188 +#, php-format +msgid "Event scheduled for: %1$s>" +msgstr "" + +#: admin/includes/admin-new.php:190 +msgid "Event draft updated." +msgstr "" + +#: admin/includes/admin-settings.php:71 +msgid "Go to Event Category switching page" +msgstr "" + +#: admin/includes/admin-settings.php:83 +msgid "Frontend Settings" +msgstr "" + +#: admin/includes/admin-settings.php:84 +msgid "Admin Page Settings" +msgstr "" + +#: admin/includes/admin-settings.php:85 +msgid "Feed Settings" +msgstr "" + +#: admin/includes/admin-settings.php:86 +msgid "Category Taxonomy" +msgstr "" + +#: includes/daterange_helptexts.php:7 +msgid "Year" +msgstr "" + +#: includes/daterange_helptexts.php:8 +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 +#, 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 +msgid "the resulting year" +msgstr "" + +#: includes/daterange_helptexts.php:12 +msgid "Month" +msgstr "" + +#: includes/daterange_helptexts.php:13 +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 +msgid "the resulting month" +msgstr "" + +#: includes/daterange_helptexts.php:17 +msgid "Day" +msgstr "" + +#: includes/daterange_helptexts.php:18 +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 +msgid "Relative Year" +msgstr "" + +#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28 +#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42 +#, php-format +msgid "%1$s from now can be specified in the following notation: %2$s" +msgstr "" + +#: includes/daterange_helptexts.php:22 +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 +#, 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 +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 +#, php-format +msgid "Additionally the following values are available: %1$s" +msgstr "" + +#: includes/daterange_helptexts.php:27 +msgid "Relative Month" +msgstr "" + +#: includes/daterange_helptexts.php:28 +msgid "A relative month" +msgstr "" + +#: includes/daterange_helptexts.php:29 +msgid "number of months" +msgstr "" + +#: includes/daterange_helptexts.php:33 +msgid "Relative Week" +msgstr "" + +#: includes/daterange_helptexts.php:34 +msgid "A relative week" +msgstr "" + +#: includes/daterange_helptexts.php:35 +msgid "number of weeks" +msgstr "" + +#: includes/daterange_helptexts.php:36 +msgid "the resulting week" +msgstr "" + +#: includes/daterange_helptexts.php:37 +#, 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 +msgid "Relative Day" +msgstr "" + +#: includes/daterange_helptexts.php:42 +msgid "A relative day" +msgstr "" + +#: includes/daterange_helptexts.php:43 +msgid "number of days" +msgstr "" + +#: includes/daterange_helptexts.php:49 +msgid "Date range" +msgstr "" + +#: includes/daterange_helptexts.php:50 +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 +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 +#, php-format +msgid "The corresponding date_range format is: %1$s" +msgstr "" + +#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 +msgid "Upcoming" +msgstr "" + +#: includes/daterange_helptexts.php:60 +msgid "This value defines a range from the actual day to the future." +msgstr "" + +#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 +msgid "Past" +msgstr "" + +#: includes/daterange_helptexts.php:65 +msgid "This value defines a range from the past to the previous day." +msgstr "" + +#: includes/event.php:107 +msgid "No valid start date provided" +msgstr "" + +#: includes/events_post_type.php:60 +msgid "Events" +msgstr "Acara" + +#: includes/events_post_type.php:61 +msgid "Event" +msgstr "" + +#: includes/events_post_type.php:62 +msgid "Add New" +msgstr "Tambah Baru" + +#: includes/events_post_type.php:63 +msgid "Add New Event" +msgstr "Tambah Acara Baru" + +#: includes/events_post_type.php:64 +msgid "Edit Event" +msgstr "" + +#: includes/events_post_type.php:65 +msgid "New Event" +msgstr "" + +#: includes/events_post_type.php:66 +msgid "View Event" +msgstr "" + +#: includes/events_post_type.php:67 +msgid "View Events" +msgstr "" + +#: includes/events_post_type.php:68 +msgid "Search Events" +msgstr "" + +#: includes/events_post_type.php:70 +msgid "No events found in Trash" +msgstr "" + +#: includes/events_post_type.php:72 +msgid "All Events" +msgstr "Semua Acara" + +#: includes/events_post_type.php:73 +msgid "Event Archives" +msgstr "" + +#: includes/events_post_type.php:74 +msgid "Event Attributes" +msgstr "" + +#: includes/events_post_type.php:75 +msgid "Insert into event" +msgstr "" + +#: includes/events_post_type.php:76 +msgid "Uploaded to this event" +msgstr "" + +#: includes/events_post_type.php:77 +msgid "Event List" +msgstr "Daftar Acara" + +#: includes/events_post_type.php:78 +msgid "Filter events list" +msgstr "" + +#: includes/events_post_type.php:79 +msgid "Events list navigation" +msgstr "" + +#: includes/events_post_type.php:80 +msgid "Events list" +msgstr "" + +#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +msgid "Reset" +msgstr "" + +#: includes/filterbar.php:278 +msgid "All" +msgstr "" + +#: includes/filterbar.php:281 +msgid "All Dates" +msgstr "" + +#: includes/options_helptexts.php:10 +msgid "CSV File to import" +msgstr "" + +#: includes/options_helptexts.php:12 +msgid "Please select the file which contains the event data in CSV format." +msgstr "" + +#: includes/options_helptexts.php:15 +msgid "Used date format" +msgstr "" + +#: includes/options_helptexts.php:17 +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 +#, 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 +msgid "full year representation, with 4 digits" +msgstr "" + +#: includes/options_helptexts.php:21 +msgid "numeric representation of a month, with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:22 +msgid "day of the month, 2 digits with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:24 +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 +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 +msgid "Examples" +msgstr "" + +#: includes/options_helptexts.php:33 +msgid "Text for no events" +msgstr "" + +#: includes/options_helptexts.php:35 +msgid "" +"This option defines the displayed text when no events are available for the " +"selected view." +msgstr "" + +#: includes/options_helptexts.php:38 +msgid "Multiday filter range" +msgstr "" + +#: includes/options_helptexts.php:39 +msgid "Use the complete event range in the date filter" +msgstr "" + +#: includes/options_helptexts.php:40 +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 +msgid "" +"If disabled, only the start day of an event is considered in the filter." +msgstr "" + +#: includes/options_helptexts.php:42 +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 +msgid "Date display" +msgstr "" + +#: includes/options_helptexts.php:46 +msgid "Show the date only once per day" +msgstr "" + +#: includes/options_helptexts.php:47 +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 +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 +msgid "HTML tags" +msgstr "" + +#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 +#, php-format +msgid "Allow HTML tags in the event field \"%1$s\"" +msgstr "" + +#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 +#, php-format +msgid "" +"This option specifies if HTML tags are allowed in the event field \"%1$s\"." +msgstr "" + +#: includes/options_helptexts.php:61 +msgid "Preferred language file" +msgstr "" + +#: includes/options_helptexts.php:62 +msgid "Load translations from general language directory first" +msgstr "" + +#: includes/options_helptexts.php:63 +#, 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 +#, 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 +msgid "Events permalink slug" +msgstr "" + +#: includes/options_helptexts.php:69 +msgid "" +"With this option the slug for the events permalink URLs can be defined." +msgstr "" + +#: includes/options_helptexts.php:72 +msgid "Text for \"Show content\"" +msgstr "" + +#: includes/options_helptexts.php:73 +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 +msgid "Text for \"Hide content\"" +msgstr "" + +#: includes/options_helptexts.php:77 +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 +msgid "Disable CSS file" +msgstr "" + +#: includes/options_helptexts.php:81 +#, php-format +msgid "Disable the %1$s file." +msgstr "" + +#: includes/options_helptexts.php:82 +#, php-format +msgid "With this option you can disable the inclusion of the %1$s file." +msgstr "" + +#: includes/options_helptexts.php:83 +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 +msgid "Date format in edit form" +msgstr "" + +#: includes/options_helptexts.php:88 +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 +msgid "The default is an empty string to use the Wordpress standard setting." +msgstr "" + +#: includes/options_helptexts.php:90 +#, 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 +msgid "Enable RSS feed" +msgstr "" + +#: includes/options_helptexts.php:95 +msgid "Enable support for an event RSS feed" +msgstr "" + +#: includes/options_helptexts.php:96 +msgid "This option activates a RSS feed for the events." +msgstr "" + +#: includes/options_helptexts.php:97 +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 "" + +#: includes/options_helptexts.php:101 +#, php-format +msgid "This option sets the feed name. The default value is %1$s." +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)." +msgstr "" + +#: includes/options_helptexts.php:105 +msgid "Feed Description" +msgstr "" + +#: includes/options_helptexts.php:106 +#, php-format +msgid "This options set the feed description. The default value is %1$s." +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." +msgstr "" + +#: includes/options_helptexts.php:110 +msgid "Listed events" +msgstr "" + +#: includes/options_helptexts.php:111 +msgid "Only show upcoming events in feed" +msgstr "" + +#: includes/options_helptexts.php:112 +msgid "" +"If this option is enabled only the upcoming events are listed in the feed." +msgstr "" + +#: includes/options_helptexts.php:113 +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 "" + +#: includes/options_helptexts.php:117 +msgid "Add RSS feed link in the html head" +msgstr "" + +#: includes/options_helptexts.php:118 +msgid "This option adds a RSS feed in the html head for the events." +msgstr "" + +#: includes/options_helptexts.php:119 +msgid "There are 2 alternatives to include the RSS 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 "" + +#: 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." +msgstr "" + +#: includes/options_helptexts.php:122 +#, php-format +msgid "This option is only valid if the setting %1$s is enabled." +msgstr "" + +#: includes/options_helptexts.php:125 +msgid "Position of the RSS feed link" +msgstr "" + +#: includes/options_helptexts.php:126 +msgid "at the top (above the navigation bar)" +msgstr "" + +#: includes/options_helptexts.php:126 +msgid "between navigation bar and events" +msgstr "" + +#: includes/options_helptexts.php:126 +msgid "at the bottom" +msgstr "" + +#: includes/options_helptexts.php:127 +msgid "" +"This option specifies the position of the RSS feed link in the event list." +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." +msgstr "" + +#: includes/options_helptexts.php:131 +msgid "Align of the RSS feed link" +msgstr "" + +#: includes/options_helptexts.php:132 +msgid "left" +msgstr "" + +#: includes/options_helptexts.php:132 +msgid "center" +msgstr "" + +#: includes/options_helptexts.php:132 +msgid "right" +msgstr "" + +#: includes/options_helptexts.php:133 +msgid "" +"This option specifies the align of the RSS feed link in the event list." +msgstr "" + +#: includes/options_helptexts.php:137 +msgid "Feed link text" +msgstr "" + +#: includes/options_helptexts.php:138 +msgid "" +"This option specifies the caption of the RSS feed link in the event list." +msgstr "" + +#: includes/options_helptexts.php:139 +msgid "" +"Insert an empty text to hide any text if you only want to show the rss " +"image." +msgstr "" + +#: includes/options_helptexts.php:143 +msgid "Feed link image" +msgstr "" + +#: includes/options_helptexts.php:144 +msgid "Show rss image in feed link" +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." +msgstr "" + +#: includes/options_helptexts.php:151 +msgid "Event Category handling" +msgstr "" + +#: includes/options_helptexts.php:152 +msgid "Use Post Categories" +msgstr "" + +#: includes/options_helptexts.php:153 +msgid "" +"Do not maintain seperate categories for the events, and use the existing " +"post categories instead." +msgstr "" + +#: includes/options_helptexts.php:154 +msgid "Attention" +msgstr "" + +#: includes/options_helptexts.php:155 +msgid "" +"This option cannot be changed directly, but you can go to the Event Category" +" switching page from here." +msgstr "" + +#: includes/options.php:40 +msgid "events" +msgstr "" + +#: includes/options.php:41 +msgid "Show content" +msgstr "" + +#: includes/options.php:42 +msgid "Hide content" +msgstr "" + +#: includes/sc_event-list_helptexts.php:7 +msgid "event-id" +msgstr "" + +#: includes/sc_event-list_helptexts.php:8 +#, 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 +msgid "year" +msgstr "" + +#: includes/sc_event-list_helptexts.php:11 +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 +#, 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 +msgid "category slug" +msgstr "" + +#: includes/sc_event-list_helptexts.php:15 +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 +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 +msgid "This attribute defines the initial order of the events." +msgstr "" + +#: includes/sc_event-list_helptexts.php:20 +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 +#, 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 +#, 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 +#, 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 +#, php-format +msgid "See %1$s description if you want to define complex filters." +msgstr "" + +#: includes/sc_event-list_helptexts.php:28 +msgid "category slugs" +msgstr "" + +#: includes/sc_event-list_helptexts.php:29 +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 +#, 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 +#, 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 +msgid "number" +msgstr "" + +#: includes/sc_event-list_helptexts.php:34 +#, 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 +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 +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 +#, 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 +#, 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 +#, 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 +msgid "" +"Find below an overview of the available filterbar items and their options:" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "filterbar item" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:63 +msgid "description" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "item options" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "option values" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "default value" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "option description" +msgstr "" + +#: includes/sc_event-list_helptexts.php:47 +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 +msgid "Add an entry to show all events." +msgstr "" + +#: includes/sc_event-list_helptexts.php:49 +#: includes/sc_event-list_helptexts.php:54 +msgid "Add an entry to show all upcoming events." +msgstr "" + +#: includes/sc_event-list_helptexts.php:50 +#: includes/sc_event-list_helptexts.php:55 +msgid "Add an entry to show events in the past." +msgstr "" + +#: includes/sc_event-list_helptexts.php:51 +msgid "Set descending or ascending order of year entries." +msgstr "" + +#: includes/sc_event-list_helptexts.php:52 +msgid "Show a list of all available months." +msgstr "" + +#: includes/sc_event-list_helptexts.php:56 +msgid "Set descending or ascending order of month entries." +msgstr "" + +#: includes/sc_event-list_helptexts.php:57 +msgid "php date-formats" +msgstr "" + +#: includes/sc_event-list_helptexts.php:57 +msgid "Set the displayed date format of the month entries." +msgstr "" + +#: includes/sc_event-list_helptexts.php:58 +#, 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 +#, 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 +msgid "Show a list of all available categories." +msgstr "" + +#: includes/sc_event-list_helptexts.php:59 +msgid "Add an entry to show events from all categories." +msgstr "" + +#: includes/sc_event-list_helptexts.php:60 +msgid "A link to reset the eventlist filter to standard." +msgstr "" + +#: includes/sc_event-list_helptexts.php:60 +msgid "any text" +msgstr "" + +#: includes/sc_event-list_helptexts.php:60 +msgid "Set the caption of the link." +msgstr "" + +#: includes/sc_event-list_helptexts.php:61 +msgid "Find below an overview of the available filterbar display options:" +msgstr "" + +#: includes/sc_event-list_helptexts.php:63 +msgid "display option" +msgstr "" + +#: includes/sc_event-list_helptexts.php:63 +msgid "available for" +msgstr "" + +#: includes/sc_event-list_helptexts.php:64 +#, 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 +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 +msgid "Shows a simple link which can be clicked." +msgstr "" + +#: includes/sc_event-list_helptexts.php:67 +msgid "Find below some declaration examples with descriptions:" +msgstr "" + +#: includes/sc_event-list_helptexts.php:69 +#, 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 +#, 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 +msgid "option_name" +msgstr "" + +#: includes/sc_event-list_helptexts.php:71 +msgid "value" +msgstr "" + +#: includes/sc_event-list_helptexts.php:72 +#, 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 +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 +#, 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 +msgid "This attribute has no influence if only a single event is shown." +msgstr "" + +#: includes/sc_event-list_helptexts.php:80 +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 +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 +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 +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 +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 +#, php-format +msgid "With the standard value %1$s the full text is displayed." +msgstr "" + +#: includes/sc_event-list_helptexts.php:110 +msgid "" +"This attribute specifies if the content 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 +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" +"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n" +"\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 +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" +"\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 />\n" +"\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 +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 +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 +msgid "Event Information:" +msgstr "" + +#: includes/widget_helptexts.php:10 +msgid "This option defines the displayed title for the widget." +msgstr "" + +#: includes/widget_helptexts.php:15 +msgid "Category Filter" +msgstr "" + +#: includes/widget_helptexts.php:17 +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 +msgid "Number of listed events" +msgstr "" + +#: includes/widget_helptexts.php:24 +msgid "The number of upcoming events to display" +msgstr "" + +#: includes/widget_helptexts.php:29 +msgid "Truncate event title to" +msgstr "" + +#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52 +#: includes/widget_helptexts.php:67 +msgid "characters" +msgstr "" + +#: includes/widget_helptexts.php:31 +msgid "" +"This option defines the number of displayed characters for the event title." +msgstr "" + +#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54 +#, 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 +msgid "Show event starttime" +msgstr "" + +#: includes/widget_helptexts.php:39 +msgid "This option defines if the event start time will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:44 +msgid "Show event location" +msgstr "" + +#: includes/widget_helptexts.php:46 +msgid "This option defines if the event location will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:51 +msgid "Truncate location to" +msgstr "" + +#: includes/widget_helptexts.php:53 +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" +msgstr "" + +#: includes/widget_helptexts.php:61 +msgid "This option defines if the event content will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:66 +msgid "Truncate content to" +msgstr "" + +#: includes/widget_helptexts.php:68 +msgid "" +"If the event content are diplayed this option defines the number of diplayed" +" characters." +msgstr "" + +#: includes/widget_helptexts.php:69 +#, php-format +msgid "Set this value to %1$s to view the full text." +msgstr "" + +#: includes/widget_helptexts.php:74 +msgid "URL to the linked Event List page" +msgstr "" + +#: includes/widget_helptexts.php:76 +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 +msgid "Shortcode ID on linked page" +msgstr "" + +#: includes/widget_helptexts.php:83 +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 +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 +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 +msgid "Caption for the link" +msgstr "" + +#: includes/widget_helptexts.php:104 +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 +msgid "With this widget a list of upcoming events can be displayed." +msgstr "" + +#: includes/widget.php:25 +msgid "Upcoming events" +msgstr "" + +#: includes/widget.php:38 +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 0c45b7a5f8e384de3aeffbf4aec68338e9b5ef45..0ecdf8d0dfdd86e173b9629f09feaba439cefec3 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 c2ad10de94dda5ba48fbb475a91cc2e243787e91..bac6146f44d2e196cc0d1e5ba105e734328f0417 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) 2017 by mibuthu +# Copyright (C) 2018 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: 2017-10-08 15:55+0200\n" -"PO-Revision-Date: 2017-10-08 13:55+0000\n" +"POT-Creation-Date: 2018-05-27 12:20+0200\n" +"PO-Revision-Date: 2018-05-27 10:20+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,137 +18,117 @@ msgstr "" "Language: it_IT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: admin/admin.php:48 -msgid "Event List" -msgstr "Lista Eventi" - -#: admin/admin.php:51 admin/includes/admin-main.php:119 -#: admin/includes/category_table.php:113 -msgid "Events" -msgstr "Eventi" - -#: admin/admin.php:51 -msgid "All Events" -msgstr "Tutti gli eventi" - -#: admin/admin.php:55 admin/includes/admin-new.php:46 -msgid "Add New Event" -msgstr "Aggiungi un nuovo evento" - -#: admin/admin.php:55 admin/includes/admin-main.php:121 -msgid "Add New" -msgstr "Aggiungi nuovo" - -#: admin/admin.php:59 admin/includes/admin-categories.php:48 -msgid "Event List Categories" -msgstr "Categorie Lista Eventi" +#: admin/admin.php:57 +#, php-format +msgid "Errors during upgrade of plugin %1$s" +msgstr "" -#: admin/admin.php:59 admin/includes/admin-new.php:150 -#: admin/includes/event_table.php:114 -msgid "Categories" -msgstr "Categorie" +#: admin/admin.php:57 +#, php-format +msgid "Upgrade of plugin %1$s successful" +msgstr "" -#: admin/admin.php:63 admin/includes/admin-settings.php:54 +#: admin/admin.php:106 admin/includes/admin-settings.php:65 msgid "Event List Settings" msgstr "Impostazioni Eventi Lista" -#: admin/admin.php:63 +#: admin/admin.php:106 msgid "Settings" msgstr "Impostazioni" -#: admin/admin.php:67 admin/includes/admin-about.php:37 +#: admin/admin.php:110 admin/includes/admin-about.php:37 msgid "About Event List" msgstr "Informazioni su Lista Eventi" -#: admin/admin.php:67 +#: admin/admin.php:110 msgid "About" msgstr "Informazioni su" -#: admin/admin.php:87 +#: admin/admin.php:132 #, php-format msgid "%s Event" msgid_plural "%s Events" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:69 +#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 msgid "General" msgstr "Generico" -#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77 -#: admin/includes/admin-about.php:104 +#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:105 msgid "Shortcode Attributes" msgstr "Attributi dello Shortcode" -#: admin/includes/admin-about.php:71 +#: admin/includes/admin-about.php:72 msgid "Help and Instructions" msgstr "Aiuto e Istruzioni" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:73 #, php-format msgid "You can manage the events %1$shere%2$s" msgstr "" -#: admin/includes/admin-about.php:73 +#: admin/includes/admin-about.php:74 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:74 +#: admin/includes/admin-about.php:75 #, 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:75 +#: admin/includes/admin-about.php:76 #, 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:76 +#: admin/includes/admin-about.php:77 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:77 +#: admin/includes/admin-about.php:78 #, 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:78 +#: admin/includes/admin-about.php:79 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:79 +#: admin/includes/admin-about.php:80 #, 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:79 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 msgid "Add links to the single events" msgstr "Aggiungi link ai singoli eventi" -#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 msgid "Add a link to the Event List page" msgstr "Aggiungi un link alla pagina Elenco eventi" -#: admin/includes/admin-about.php:80 +#: admin/includes/admin-about.php:81 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:81 +#: admin/includes/admin-about.php:82 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:82 +#: admin/includes/admin-about.php:83 #, php-format msgid "" "The default value %1$s is normally o.k. (for pages with 1 shortcode only), " @@ -156,506 +136,594 @@ msgid "" "link on your linked page or post." msgstr "" -#: admin/includes/admin-about.php:83 +#: admin/includes/admin-about.php:84 #, php-format msgid "The id is available at the end of the URL parameters (e.g. %1$s)." msgstr "" -#: admin/includes/admin-about.php:85 +#: admin/includes/admin-about.php:86 #, 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:85 +#: admin/includes/admin-about.php:86 msgid "Settings page" msgstr "" -#: admin/includes/admin-about.php:91 +#: admin/includes/admin-about.php:92 msgid "About the plugin author" msgstr "" -#: admin/includes/admin-about.php:93 +#: admin/includes/admin-about.php:94 #, 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:93 +#: admin/includes/admin-about.php:94 msgid "wordpress plugin site" msgstr "" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:95 #, php-format msgid "If you like the plugin please rate it on the %1$s." msgstr "" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:95 msgid "wordpress plugin review site" msgstr "" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:96 msgid "" "If you want to support the plugin I would be happy to get a small donation" msgstr "" -#: admin/includes/admin-about.php:96 admin/includes/admin-about.php:97 -#: admin/includes/admin-about.php:98 +#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 +#: admin/includes/admin-about.php:99 #, php-format msgid "Donate with %1$s" msgstr "" -#: admin/includes/admin-about.php:106 +#: admin/includes/admin-about.php:107 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:107 +#: admin/includes/admin-about.php:108 #, 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:109 +#: admin/includes/admin-about.php:110 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:123 +#: admin/includes/admin-about.php:124 msgid "Attribute name" msgstr "Nome attributo" -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:125 msgid "Value options" msgstr "Valore opzioni" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:126 msgid "Default value" msgstr "Valore di default" -#: admin/includes/admin-about.php:126 admin/includes/admin-categories.php:194 -#: admin/includes/category_table.php:111 +#: admin/includes/admin-about.php:127 msgid "Description" msgstr "Descrizione" -#: admin/includes/admin-about.php:144 includes/sc_event-list_helptexts.php:26 +#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 #: includes/sc_event-list_helptexts.php:31 msgid "Filter Syntax" msgstr "Sintassi del filtro" -#: admin/includes/admin-about.php:145 +#: admin/includes/admin-about.php:146 msgid "" "For date and cat filters you can specify complex filters with the following " "syntax:" msgstr "" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 #, 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:146 +#: admin/includes/admin-about.php:147 msgid "AND" msgstr "E" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "OR" msgstr "O" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "or" msgstr "o" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "and" msgstr "e" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:148 msgid "Examples for cat filters:" msgstr "Esempio per il filtro di categorie:" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:149 #, php-format msgid "Show all events with category %1$s." msgstr "Mostra tutti gli eventi aventi categoria %1$s." -#: admin/includes/admin-about.php:149 +#: admin/includes/admin-about.php:150 #, 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:150 +#: admin/includes/admin-about.php:151 #, 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:155 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 msgid "Available Date Formats" msgstr "Formati data disponibili" -#: admin/includes/admin-about.php:156 +#: admin/includes/admin-about.php:157 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:164 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 msgid "Available Date Range Formats" msgstr "Formati intervallo date disponibili" -#: admin/includes/admin-about.php:165 +#: admin/includes/admin-about.php:166 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:177 +#: admin/includes/admin-about.php:178 msgid "Value" msgstr "Valore" -#: admin/includes/admin-about.php:181 +#: admin/includes/admin-about.php:182 msgid "Example" msgstr "Esempio" -#: admin/includes/admin-categories.php:51 -msgid "Edit Category" -msgstr "Modifica categoria" - -#: admin/includes/admin-categories.php:51 -msgid "Update Category" -msgstr "Categoria aggiornata" - -#: admin/includes/admin-categories.php:57 -msgid "Add New Category" -msgstr "Aggiunta nuova categoria" +#: admin/includes/admin-categories.php:38 +msgid "Synchronize with post categories" +msgstr "" -#: admin/includes/admin-categories.php:84 +#: admin/includes/admin-categories.php:46 #, php-format -msgid "Category \"%s\" deleted." -msgstr "Categoria \"%s\" cancellata." +msgid "%1$s categories modified (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:86 +#: admin/includes/admin-categories.php:47 #, php-format -msgid "This Category was also removed from %d events." -msgstr "Questa categoria è stato rimossa anche da %d eventi." +msgid "%1$s categories added (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:92 +#: admin/includes/admin-categories.php:48 #, php-format -msgid "Error while deleting category \"%s\"" -msgstr "Errore durante la cancellazione della categoria \"%s\"" - -#: admin/includes/admin-categories.php:103 -msgid "Sync with post categories enabled." -msgstr "La sincronizzazione con le categorie degli articoli è abilitata." - -#: admin/includes/admin-categories.php:106 -msgid "Sync with post categories disabled." -msgstr "Sincronizzazione con le categorie dei post abilitata" - -#: admin/includes/admin-categories.php:112 -msgid "Manual sync with post categories sucessfully finished." -msgstr "Sincronizzazione manuale con le categorie dei post terminata con successo." +msgid "%1$s categories deleted (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:125 +#: admin/includes/admin-categories.php:50 #, php-format -msgid "New Category \"%s\" was added" -msgstr "La nuova categoria \"%s\" è stata aggiunta" +msgid "%1$s categories not modified (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:128 +#: admin/includes/admin-categories.php:51 #, php-format -msgid "Error: New Category \"%s\" could not be added" -msgstr "Errore: la nuova categoria \"%s\" non può essere aggiunta" +msgid "%1$s categories not added (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:134 +#: admin/includes/admin-categories.php:52 #, php-format -msgid "Category \"%s\" was modified" -msgstr "Categoria \"%s\" è stata modificata" +msgid "%1$s categories not deleted (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:137 -#, php-format -msgid "Error: Category \"%s\" could not be modified" -msgstr "Errore: Categoria \"%s\" non può essere modificata" +#: admin/includes/admin-categories.php:55 +msgid "An Error occured during the category sync" +msgstr "" + +#: admin/includes/admin-categories.php:59 +msgid "Category sync finished" +msgstr "" + +#: admin/includes/admin-category-sync.php:45 +msgid "Error: You are not allowed to view this page!" +msgstr "" -#: admin/includes/admin-categories.php:144 -msgid "Categories are automatically synced with the post categories." +#: admin/includes/admin-category-sync.php:62 +msgid "Affected Categories when switching to seperate Event Categories" msgstr "" -#: admin/includes/admin-categories.php:145 +#: admin/includes/admin-category-sync.php:63 +msgid "Switch option to seperate Event Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:64 msgid "" -"Because of this all options to add new categories or editing existing " -"categories are disabled." +"If you proceed, all post categories will be copied and all events will be " +"re-assigned to this new categories." msgstr "" -#: admin/includes/admin-categories.php:146 +#: admin/includes/admin-category-sync.php:65 msgid "" -"If you want to manually edit the categories you have to disable this option." +"Afterwards the event categories are independent of the post categories." +msgstr "" + +#: admin/includes/admin-category-sync.php:68 +msgid "Affected Categories when switching to use Post Categories for events" msgstr "" -#: admin/includes/admin-categories.php:173 -msgid "The name is how it appears on your site." -msgstr "Il nome è come appare sul tuo sito." +#: admin/includes/admin-category-sync.php:69 +msgid "Switch option to use Post Categories for events" +msgstr "" -#: admin/includes/admin-categories.php:178 +#: admin/includes/admin-category-sync.php:70 msgid "" -"The “slug” is the URL-friendly version of the name. It is usually all " -"lowercase and contains only letters, numbers, and hyphens." -msgstr "Lo \"slug\" è la versione amichevole del nome adatto ad una URL . Di solito è tutto minuscolo e contiene solo lettere, numeri e trattini." +"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-categories.php:191 +#: admin/includes/admin-category-sync.php:73 +msgid "Event Categories: Synchronise with Post Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:74 +msgid "Start synchronisation" +msgstr "" + +#: admin/includes/admin-category-sync.php:75 msgid "" -"Categories can have a hierarchy. You might have a Jazz category, and under " -"that have children categories for Bebop and Big Band. Totally optional." -msgstr "Le categorie possono avere una gerarchia. Si potrebbe avere una categoria Jazz, e due sotto-categorie figlie Bebop e Big Band. Totalmente opzionale." +"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 +msgid "Categories to modify" +msgstr "" + +#: admin/includes/admin-category-sync.php:91 +msgid "Categories to add" +msgstr "" + +#: admin/includes/admin-category-sync.php:92 +msgid "Categories to delete (optional)" +msgstr "" + +#: admin/includes/admin-category-sync.php:93 +msgid "Delete not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:97 +msgid "Categories with differences" +msgstr "" -#: admin/includes/admin-categories.php:241 -msgid "Apply" -msgstr "Applica" +#: admin/includes/admin-category-sync.php:98 +msgid "Categories to add (optional)" +msgstr "" + +#: admin/includes/admin-category-sync.php:99 +msgid "Add not available post categories" +msgstr "" -#: admin/includes/admin-categories.php:251 -msgid "Do a manual sync with post categories" -msgstr "Eseguire una sincronizzazione manuale con le categorie degli articoli" +#: admin/includes/admin-category-sync.php:117 +msgid "none" +msgstr "" -#: admin/includes/admin-import.php:45 +#: admin/includes/admin-import.php:49 msgid "Import Events" msgstr "Importazione Eventi" -#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:118 +#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:198 msgid "Step" msgstr "Passo" -#: admin/includes/admin-import.php:65 +#: admin/includes/admin-import.php:69 msgid "Set import file and options" msgstr "Insieme dei file e delle opzioni di importazione" -#: admin/includes/admin-import.php:68 +#: admin/includes/admin-import.php:72 #, php-format msgid "Proceed with Step %1$s" msgstr "" -#: admin/includes/admin-import.php:71 +#: admin/includes/admin-import.php:75 msgid "Example file" msgstr "File di esempio" -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:76 #, 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:73 +#: admin/includes/admin-import.php:77 msgid "Note" msgstr "Nota" -#: admin/includes/admin-import.php:73 +#: admin/includes/admin-import.php:77 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:80 admin/includes/admin-import.php:88 -#: admin/includes/admin-import.php:101 +#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 msgid "Sorry, there has been an error." msgstr "Siamo spiacenti, si è verificato un errore." -#: admin/includes/admin-import.php:81 +#: admin/includes/admin-import.php:85 msgid "The file does not exist, please try again." msgstr "Il file non esiste, riprova." -#: admin/includes/admin-import.php:89 -msgid "The file is not a CSV file." -msgstr "Il file non è un file CSV." +#: admin/includes/admin-import.php:93 +msgid "The uploaded file does not have the required csv extension." +msgstr "" -#: admin/includes/admin-import.php:118 +#: admin/includes/admin-import.php:105 msgid "Events review and additonal category selection" msgstr "" -#: admin/includes/admin-import.php:121 +#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +msgid "Error" +msgstr "" + +#: admin/includes/admin-import.php:111 +msgid "This CSV file cannot be imported" +msgstr "" + +#: admin/includes/admin-import.php:122 +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 +msgid "Warning" +msgstr "" + +#: admin/includes/admin-import.php:126 +#, 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 +#, php-format +msgid "CSV line %1$s" +msgstr "" + +#: admin/includes/admin-import.php:144 +msgid "You can still import all other events listed below." +msgstr "" + +#: admin/includes/admin-import.php:163 msgid "" -"Warning: The following category slugs are not available and will be removed " -"from the imported events:" +"The following category slugs are not available and will be removed from the " +"imported events" msgstr "" -#: admin/includes/admin-import.php:127 +#: admin/includes/admin-import.php:169 msgid "" "If you want to keep these categories, please create these Categories first " "and do the import afterwards." msgstr "" -#: admin/includes/admin-import.php:145 -msgid "Add additional categories" +#: admin/includes/admin-import.php:198 +msgid "Import result" msgstr "" -#: admin/includes/admin-import.php:146 -msgid "Import events" +#: admin/includes/admin-import.php:201 +#, php-format +msgid "Import of %1$s events successful!" msgstr "" -#: admin/includes/admin-import.php:160 -msgid "Import with errors!" -msgstr "Importazione avvenuta con errori!" +#: admin/includes/admin-import.php:202 +msgid "Go back to All Events" +msgstr "Torna a Tutti gli Eventi" -#: admin/includes/admin-import.php:161 -msgid "Sorry, an error occurred during import!" +#: admin/includes/admin-import.php:206 +msgid "Errors during Import" msgstr "" -#: admin/includes/admin-import.php:165 -msgid "Import successful!" -msgstr "Importazione avvenuta con successo" - -#: admin/includes/admin-import.php:166 -msgid "Go back to All Events" -msgstr "Torna a Tutti gli Eventi" +#: admin/includes/admin-import.php:215 +msgid "Event from CSV-line" +msgstr "" -#: admin/includes/admin-import.php:173 admin/includes/admin-new.php:111 -#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 +#: includes/widget_helptexts.php:8 msgid "Title" msgstr "Titolo" -#: admin/includes/admin-import.php:174 +#: admin/includes/admin-import.php:227 msgid "Start Date" msgstr "Data di inizio" -#: admin/includes/admin-import.php:175 +#: admin/includes/admin-import.php:228 msgid "End Date" msgstr "Data di fine" -#: admin/includes/admin-import.php:176 admin/includes/admin-new.php:124 -#: includes/options_helptexts.php:48 includes/options_helptexts.php:49 +#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 +#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 msgid "Time" msgstr "Ora" -#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:128 -#: admin/includes/event_table.php:112 includes/options_helptexts.php:53 -#: includes/options_helptexts.php:54 +#: 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 msgid "Location" msgstr "Ubicazione" -#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:132 -#: admin/includes/event_table.php:113 -msgid "Details" -msgstr "Dettagli" +#: admin/includes/admin-import.php:231 +msgid "Content" +msgstr "" -#: admin/includes/admin-import.php:179 +#: admin/includes/admin-import.php:232 msgid "Category slugs" msgstr "" -#: admin/includes/admin-import.php:218 +#: admin/includes/admin-import.php:274 +msgid "Header line is missing or not correct!" +msgstr "" + +#: admin/includes/admin-import.php:275 #, php-format msgid "" -"There was an error at line %1$s when reading this CSV file: Header line is " -"missing or not correct!" +"Have a look at the %1$sexample file%2$s to see the correct header line " +"format." +msgstr "" + +#: admin/includes/admin-import.php:281 +#, php-format +msgid "Wrong number of items in line (%1$s items found, 6-7 required)" +msgstr "" + +#: admin/includes/admin-import.php:309 +msgid "Empty event title found" +msgstr "" + +#: admin/includes/admin-import.php:315 +msgid "Wrong date format for startdate" +msgstr "" + +#: admin/includes/admin-import.php:324 +msgid "Wrong date format for enddate" +msgstr "" + +#: admin/includes/admin-import.php:365 +msgid "Import events" msgstr "" -#: admin/includes/admin-import.php:253 admin/includes/admin-main.php:122 +#: admin/includes/admin-import.php:366 +msgid "Add additional categories" +msgstr "" + +#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 msgid "Import" msgstr "Importazione" -#: admin/includes/admin-main.php:116 -msgid "Edit Event" -msgstr "Modifica Evento" +#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +msgid "No events found" +msgstr "" + +#: admin/includes/admin-import.php:432 +msgid "Saving of event failed!" +msgstr "" -#: admin/includes/admin-main.php:116 admin/includes/event_table.php:75 -msgid "Duplicate" -msgstr "Duplica" +#: admin/includes/admin-main.php:60 +msgid "Event Date" +msgstr "" + +#: admin/includes/admin-main.php:64 +msgid "Author" +msgstr "Autore" -#: admin/includes/admin-new.php:48 +#: admin/includes/admin-main.php:126 #, php-format -msgid "Duplicate of event id:%d" -msgstr "Duplicazione di evento avente id: %d" +msgid "Add a copy of %1$s" +msgstr "" -#: admin/includes/admin-new.php:111 admin/includes/admin-new.php:115 -msgid "required" -msgstr "richiesto" +#: admin/includes/admin-main.php:126 +msgid "Copy" +msgstr "" + +#: admin/includes/admin-new.php:51 +msgid "Event data" +msgstr "" + +#: admin/includes/admin-new.php:80 +msgid "Add Copy" +msgstr "" -#: admin/includes/admin-new.php:115 admin/includes/event_table.php:110 +#: admin/includes/admin-new.php:84 msgid "Date" msgstr "Data" -#: admin/includes/admin-new.php:118 +#: admin/includes/admin-new.php:84 +msgid "required" +msgstr "richiesto" + +#: admin/includes/admin-new.php:87 msgid "Multi-Day Event" msgstr "Evento multi giornaliero" -#: admin/includes/admin-new.php:148 admin/includes/admin-new.php:165 -msgid "Publish" -msgstr "Pubblica" +#: admin/includes/admin-new.php:106 +msgid "Event Title" +msgstr "" + +#: admin/includes/admin-new.php:121 +msgid "Event Content" +msgstr "" + +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +msgid "Event updated." +msgstr "" + +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +msgid "View event" +msgstr "" + +#: admin/includes/admin-new.php:184 +#, php-format +msgid "Event restored to revision from %1$s" +msgstr "" + +#: admin/includes/admin-new.php:185 +msgid "Event published." +msgstr "" -#: admin/includes/admin-new.php:165 -msgid "Update" -msgstr "Aggiorna" +#: admin/includes/admin-new.php:187 +msgid "Event submitted." +msgstr "" -#: admin/includes/admin-new.php:167 -msgid "Cancel" -msgstr "Annulla" +#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 +#: admin/includes/admin-new.php:190 +msgid "Preview event" +msgstr "" -#: admin/includes/admin-new.php:180 -msgid "No categories available." -msgstr "Nessuna categoria disponibile" +#: admin/includes/admin-new.php:188 +#, php-format +msgid "Event scheduled for: %1$s>" +msgstr "" -#: admin/includes/admin-new.php:226 -msgid "Goto Category Settings" -msgstr "Vai alle impostazioni delle categorie" +#: admin/includes/admin-new.php:190 +msgid "Event draft updated." +msgstr "" -#: admin/includes/admin-settings.php:42 -msgid "Settings saved." -msgstr "Impostazioni salvate." +#: admin/includes/admin-settings.php:71 +msgid "Go to Event Category switching page" +msgstr "" -#: admin/includes/admin-settings.php:70 +#: admin/includes/admin-settings.php:83 msgid "Frontend Settings" msgstr "Impostazioni interfaccia grafica" -#: admin/includes/admin-settings.php:71 +#: admin/includes/admin-settings.php:84 msgid "Admin Page Settings" msgstr "Impostazioni di amministrazione" -#: admin/includes/admin-settings.php:72 +#: admin/includes/admin-settings.php:85 msgid "Feed Settings" msgstr "Impostazioni Feed" -#: admin/includes/category_table.php:27 admin/includes/event_table.php:29 -msgid "event" -msgstr "evento" - -#: admin/includes/category_table.php:28 admin/includes/event_table.php:30 -msgid "events" -msgstr "eventi" - -#: admin/includes/category_table.php:73 admin/includes/event_table.php:74 -msgid "Edit" -msgstr "Modifica" - -#: admin/includes/category_table.php:74 admin/includes/category_table.php:148 -#: admin/includes/event_table.php:76 admin/includes/event_table.php:149 -msgid "Delete" -msgstr "Cancella" - -#: admin/includes/category_table.php:110 -msgid "Name" -msgstr "Nome" - -#: admin/includes/category_table.php:112 -msgid "Slug" -msgstr "Slug" - -#: admin/includes/event_table.php:115 -msgid "Author" -msgstr "Autore" - -#: admin/includes/event_table.php:116 -msgid "Published" -msgstr "Pubblicato" - -#: admin/includes/event_table.php:180 -msgid "Filter" -msgstr "Filtro" - -#: admin/includes/event_table.php:300 -#, php-format -msgid "%s ago" -msgstr "%s fa" +#: admin/includes/admin-settings.php:86 +msgid "Category Taxonomy" +msgstr "" #: includes/daterange_helptexts.php:7 msgid "Year" @@ -800,7 +868,7 @@ msgstr "" 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:291 +#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 msgid "Upcoming" msgstr "Prossimi" @@ -808,7 +876,7 @@ msgstr "Prossimi" msgid "This value defines a range from the actual day to the future." msgstr "" -#: includes/daterange_helptexts.php:64 includes/filterbar.php:295 +#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 msgid "Past" msgstr "Passati" @@ -816,146 +884,238 @@ msgstr "Passati" msgid "This value defines a range from the past to the previous day." msgstr "" -#: includes/filterbar.php:233 includes/sc_event-list_helptexts.php:60 -msgid "Reset" +#: includes/event.php:107 +msgid "No valid start date provided" msgstr "" -#: includes/filterbar.php:282 -msgid "All" -msgstr "Tutti" +#: includes/events_post_type.php:60 +msgid "Events" +msgstr "Eventi" + +#: includes/events_post_type.php:61 +msgid "Event" +msgstr "" -#: includes/filterbar.php:285 -msgid "Show all dates" -msgstr "Visualizza tutte le date" +#: includes/events_post_type.php:62 +msgid "Add New" +msgstr "Aggiungi nuovo" -#: includes/filterbar.php:285 -msgid "Show all categories" -msgstr "Visualizza tutte le categorie" +#: includes/events_post_type.php:63 +msgid "Add New Event" +msgstr "Aggiungi un nuovo evento" -#: includes/options_helptexts.php:11 -msgid "Sync Categories" -msgstr "Sincronizza categorie" +#: includes/events_post_type.php:64 +msgid "Edit Event" +msgstr "Modifica Evento" -#: includes/options_helptexts.php:12 -msgid "Keep event categories in sync with post categories automatically" +#: includes/events_post_type.php:65 +msgid "New Event" msgstr "" -#: includes/options_helptexts.php:13 -msgid "Attention" -msgstr "Attenzione" +#: includes/events_post_type.php:66 +msgid "View Event" +msgstr "" -#: includes/options_helptexts.php:14 -msgid "" -"Please note that this option will delete all categories which are not " -"available in the post categories! Existing Categories with the same slug " -"will be updated." +#: includes/events_post_type.php:67 +msgid "View Events" msgstr "" -#: includes/options_helptexts.php:18 +#: includes/events_post_type.php:68 +msgid "Search Events" +msgstr "" + +#: includes/events_post_type.php:70 +msgid "No events found in Trash" +msgstr "" + +#: includes/events_post_type.php:72 +msgid "All Events" +msgstr "Tutti gli eventi" + +#: includes/events_post_type.php:73 +msgid "Event Archives" +msgstr "" + +#: includes/events_post_type.php:74 +msgid "Event Attributes" +msgstr "" + +#: includes/events_post_type.php:75 +msgid "Insert into event" +msgstr "" + +#: includes/events_post_type.php:76 +msgid "Uploaded to this event" +msgstr "" + +#: includes/events_post_type.php:77 +msgid "Event List" +msgstr "Lista Eventi" + +#: includes/events_post_type.php:78 +msgid "Filter events list" +msgstr "" + +#: includes/events_post_type.php:79 +msgid "Events list navigation" +msgstr "" + +#: includes/events_post_type.php:80 +msgid "Events list" +msgstr "" + +#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +msgid "Reset" +msgstr "" + +#: includes/filterbar.php:278 +msgid "All" +msgstr "Tutti" + +#: includes/filterbar.php:281 +msgid "All Dates" +msgstr "" + +#: includes/options_helptexts.php:10 msgid "CSV File to import" msgstr "File CSV da importare" -#: includes/options_helptexts.php:20 +#: includes/options_helptexts.php:12 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:23 +#: includes/options_helptexts.php:15 msgid "Used date format" msgstr "Formato data utilizzato" +#: includes/options_helptexts.php:17 +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 +#, 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 +msgid "full year representation, with 4 digits" +msgstr "" + +#: includes/options_helptexts.php:21 +msgid "numeric representation of a month, with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:22 +msgid "day of the month, 2 digits with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:24 +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 msgid "" -"With this option the used date format for event start and end date given in " -"the CSV file can be specified." +"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 +msgid "Examples" msgstr "" -#: includes/options_helptexts.php:29 +#: includes/options_helptexts.php:33 msgid "Text for no events" msgstr "Testo per assenza di eventi" -#: includes/options_helptexts.php:31 +#: includes/options_helptexts.php:35 msgid "" "This option defines the displayed text when no events are available for the " "selected view." msgstr "" -#: includes/options_helptexts.php:34 +#: includes/options_helptexts.php:38 msgid "Multiday filter range" msgstr "Filtro intervallo multi giornaliero" -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:39 msgid "Use the complete event range in the date filter" msgstr "" -#: includes/options_helptexts.php:36 +#: includes/options_helptexts.php:40 msgid "" "This option defines if the complete range of a multiday event shall be " "considered in the date filter." msgstr "" -#: includes/options_helptexts.php:37 +#: includes/options_helptexts.php:41 msgid "" "If disabled, only the start day of an event is considered in the filter." msgstr "" -#: includes/options_helptexts.php:38 +#: includes/options_helptexts.php:42 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:41 +#: includes/options_helptexts.php:45 msgid "Date display" msgstr "Visualizza data" -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:46 msgid "Show the date only once per day" msgstr "" -#: includes/options_helptexts.php:43 +#: includes/options_helptexts.php:47 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:44 +#: includes/options_helptexts.php:48 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:47 +#: includes/options_helptexts.php:51 msgid "HTML tags" msgstr "HTML tags" -#: includes/options_helptexts.php:48 includes/options_helptexts.php:53 +#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 #, php-format msgid "Allow HTML tags in the event field \"%1$s\"" msgstr "" -#: includes/options_helptexts.php:49 includes/options_helptexts.php:54 +#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 #, php-format msgid "" "This option specifies if HTML tags are allowed in the event field \"%1$s\"." msgstr "" -#: includes/options_helptexts.php:57 +#: includes/options_helptexts.php:61 msgid "Preferred language file" msgstr "" -#: includes/options_helptexts.php:58 +#: includes/options_helptexts.php:62 msgid "Load translations from general language directory first" msgstr "" -#: includes/options_helptexts.php:59 +#: includes/options_helptexts.php:63 #, 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:60 +#: includes/options_helptexts.php:64 #, php-format msgid "" "If you want to load your own language file from the general language " @@ -963,251 +1123,288 @@ msgid "" "language directory, you have to enable this option." msgstr "" -#: includes/options_helptexts.php:64 -msgid "Text for \"Show details\"" +#: includes/options_helptexts.php:68 +msgid "Events permalink slug" msgstr "" -#: includes/options_helptexts.php:65 +#: includes/options_helptexts.php:69 +msgid "" +"With this option the slug for the events permalink URLs can be defined." +msgstr "" + +#: includes/options_helptexts.php:72 +msgid "Text for \"Show content\"" +msgstr "" + +#: includes/options_helptexts.php:73 msgid "" -"With this option the displayed text for the link to show the event details " +"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:68 -msgid "Text for \"Hide details\"" +#: includes/options_helptexts.php:76 +msgid "Text for \"Hide content\"" msgstr "" -#: includes/options_helptexts.php:69 +#: includes/options_helptexts.php:77 msgid "" -"With this option the displayed text for the link to hide the event details " +"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:72 +#: includes/options_helptexts.php:80 msgid "Disable CSS file" msgstr "Disabilita file CSS" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:81 #, php-format msgid "Disable the %1$s file." msgstr "" -#: includes/options_helptexts.php:74 +#: includes/options_helptexts.php:82 #, php-format msgid "With this option you can disable the inclusion of the %1$s file." msgstr "" -#: includes/options_helptexts.php:75 +#: includes/options_helptexts.php:83 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:79 +#: includes/options_helptexts.php:87 msgid "Date format in edit form" msgstr "" -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:88 msgid "" "This option sets the displayed date format for the event date fields in the " "event new / edit form." msgstr "" -#: includes/options_helptexts.php:81 +#: includes/options_helptexts.php:89 msgid "The default is an empty string to use the Wordpress standard setting." msgstr "" -#: includes/options_helptexts.php:82 +#: includes/options_helptexts.php:90 #, php-format msgid "" "All available options to specify the date format can be found %1$shere%2$s." msgstr "" -#: includes/options_helptexts.php:86 includes/options_helptexts.php:114 +#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 msgid "Enable RSS feed" msgstr "Abilita feed RSS" -#: includes/options_helptexts.php:87 +#: includes/options_helptexts.php:95 msgid "Enable support for an event RSS feed" msgstr "" -#: includes/options_helptexts.php:88 +#: includes/options_helptexts.php:96 msgid "This option activates a RSS feed for the events." msgstr "" -#: includes/options_helptexts.php:89 +#: includes/options_helptexts.php:97 msgid "" "You have to enable this option if you want to use one of the RSS feed " "features." msgstr "" -#: includes/options_helptexts.php:92 +#: includes/options_helptexts.php:100 msgid "Feed name" msgstr "Nome del Feed" -#: includes/options_helptexts.php:93 +#: includes/options_helptexts.php:101 #, php-format msgid "This option sets the feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:94 +#: 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 "" -#: includes/options_helptexts.php:97 +#: includes/options_helptexts.php:105 msgid "Feed Description" msgstr "Descrizione del Feed" -#: includes/options_helptexts.php:98 +#: includes/options_helptexts.php:106 #, php-format msgid "This options set the feed description. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:99 +#: 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 "" -#: includes/options_helptexts.php:102 +#: includes/options_helptexts.php:110 msgid "Listed events" msgstr "Eventi elencati" -#: includes/options_helptexts.php:103 +#: includes/options_helptexts.php:111 msgid "Only show upcoming events in feed" msgstr "Mostra solo i prossimi eventi nel Feed" -#: includes/options_helptexts.php:104 +#: includes/options_helptexts.php:112 msgid "" "If this option is enabled only the upcoming events are listed in the feed." msgstr "" -#: includes/options_helptexts.php:105 +#: includes/options_helptexts.php:113 msgid "If disabled all events (upcoming and past) will be listed." msgstr "" -#: includes/options_helptexts.php:108 +#: includes/options_helptexts.php:116 msgid "Add RSS feed link in head" msgstr "" -#: includes/options_helptexts.php:109 +#: includes/options_helptexts.php:117 msgid "Add RSS feed link in the html head" msgstr "" -#: includes/options_helptexts.php:110 +#: includes/options_helptexts.php:118 msgid "This option adds a RSS feed in the html head for the events." msgstr "" -#: includes/options_helptexts.php:111 +#: includes/options_helptexts.php:119 msgid "There are 2 alternatives to include the RSS feed" msgstr "" -#: includes/options_helptexts.php:112 +#: 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 "" -#: includes/options_helptexts.php:113 +#: 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." msgstr "" -#: includes/options_helptexts.php:114 +#: includes/options_helptexts.php:122 #, php-format msgid "This option is only valid if the setting %1$s is enabled." msgstr "" -#: includes/options_helptexts.php:117 +#: includes/options_helptexts.php:125 msgid "Position of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "at the top (above the navigation bar)" msgstr "" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "between navigation bar and events" msgstr "" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "at the bottom" msgstr "" -#: includes/options_helptexts.php:119 +#: includes/options_helptexts.php:127 msgid "" "This option specifies the position of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:120 includes/options_helptexts.php:126 -#: includes/options_helptexts.php:132 includes/options_helptexts.php:138 +#: 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 "" -#: includes/options_helptexts.php:123 +#: includes/options_helptexts.php:131 msgid "Align of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "left" msgstr "" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "center" msgstr "" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "right" msgstr "" -#: includes/options_helptexts.php:125 +#: includes/options_helptexts.php:133 msgid "" "This option specifies the align of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:129 +#: includes/options_helptexts.php:137 msgid "Feed link text" msgstr "" -#: includes/options_helptexts.php:130 +#: includes/options_helptexts.php:138 msgid "" "This option specifies the caption of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:131 +#: includes/options_helptexts.php:139 msgid "" "Insert an empty text to hide any text if you only want to show the rss " "image." msgstr "" -#: includes/options_helptexts.php:135 +#: includes/options_helptexts.php:143 msgid "Feed link image" msgstr "" -#: includes/options_helptexts.php:136 +#: includes/options_helptexts.php:144 msgid "Show rss image in feed link" msgstr "" -#: includes/options_helptexts.php:137 +#: 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." msgstr "" -#: includes/options.php:43 -msgid "Show details" +#: includes/options_helptexts.php:151 +msgid "Event Category handling" +msgstr "" + +#: includes/options_helptexts.php:152 +msgid "Use Post Categories" msgstr "" -#: includes/options.php:44 -msgid "Hide details" +#: includes/options_helptexts.php:153 +msgid "" +"Do not maintain seperate categories for the events, and use the existing " +"post categories instead." +msgstr "" + +#: includes/options_helptexts.php:154 +msgid "Attention" +msgstr "Attenzione" + +#: includes/options_helptexts.php:155 +msgid "" +"This option cannot be changed directly, but you can go to the Event Category" +" switching page from here." +msgstr "" + +#: includes/options.php:40 +msgid "events" +msgstr "" + +#: includes/options.php:41 +msgid "Show content" +msgstr "" + +#: includes/options.php:42 +msgid "Hide content" msgstr "" #: includes/sc_event-list_helptexts.php:7 @@ -1218,7 +1415,7 @@ msgstr "" #, 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-details view of " +"%1$s) is provided for this attribute, directly the event-content view of " "this event is shown." msgstr "" @@ -1574,14 +1771,14 @@ msgstr "" #: includes/sc_event-list_helptexts.php:100 msgid "" -"This attribute specifies if the details are displayed in the event list.<br />\n" -"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n" -"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event" +"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 msgid "" -"This attribute specifies if the details should be truncate to the given " +"This attribute specifies if the content should be truncate to the given " "number of characters in the event list." msgstr "" @@ -1592,10 +1789,10 @@ msgstr "" #: includes/sc_event-list_helptexts.php:110 msgid "" -"This attribute specifies if the details should be collapsed initially.<br />\n" -"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n" -"\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the details.<br />\n" -"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view." +"This attribute specifies if the content 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 @@ -1603,7 +1800,7 @@ 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" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n" -"\t With \"events_with_details_only\" the link is only added in the event list for events with event details." +"\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 @@ -1628,7 +1825,7 @@ msgid "" "\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:134 +#: includes/sc_event-list.php:135 msgid "Event Information:" msgstr "Informazioni Evento" @@ -1705,20 +1902,20 @@ msgid "" msgstr "" #: includes/widget_helptexts.php:59 -msgid "Show event details" -msgstr "Mostra i dettagli dell'evento" +msgid "Show event content" +msgstr "" #: includes/widget_helptexts.php:61 -msgid "This option defines if the event details will be displayed." -msgstr "Questa opzione definisce se i dettagli dell'evento saranno visualizzati." +msgid "This option defines if the event content will be displayed." +msgstr "" #: includes/widget_helptexts.php:66 -msgid "Truncate details to" -msgstr "Tronca i dettagli al" +msgid "Truncate content to" +msgstr "" #: includes/widget_helptexts.php:68 msgid "" -"If the event details are diplayed this option defines the number of diplayed" +"If the event content are diplayed this option defines the number of diplayed" " characters." msgstr "" 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 f0c32233ccec133074b715f9fe30fcf1fddffbc5..9498656732f29698588fee90b97fae3aa0992e3b 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 79afaa324ac463825241b9f3f3ba14fa1884720f..fc75d5bd346c6b7f754df486a18eddc447122bae 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,17 +1,18 @@ # Translation file for the 'Event List' WordPress plugin -# Copyright (C) 2017 by mibuthu +# Copyright (C) 2018 by mibuthu # This file is distributed under the same license as the corresponding wordpress plugin. # # Translators: # Buggi, 2016 # Niels Aust <nielsaust@gmail.com>, 2015 # Rick Morsink <rick@laanve.eu>, 2015 +# Rob Engels <robjc@home.nl>, 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: 2017-10-08 15:55+0200\n" -"PO-Revision-Date: 2017-10-08 13:55+0000\n" +"POT-Creation-Date: 2018-05-27 12:20+0200\n" +"PO-Revision-Date: 2018-05-27 10:20+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" @@ -20,137 +21,117 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: admin/admin.php:48 -msgid "Event List" -msgstr "Gebeurtenislijst" - -#: admin/admin.php:51 admin/includes/admin-main.php:119 -#: admin/includes/category_table.php:113 -msgid "Events" -msgstr "Gebeurtenissen" - -#: admin/admin.php:51 -msgid "All Events" -msgstr "Alle gebeurtenissen" - -#: admin/admin.php:55 admin/includes/admin-new.php:46 -msgid "Add New Event" -msgstr "Maak een nieuwe gebeurtenis" - -#: admin/admin.php:55 admin/includes/admin-main.php:121 -msgid "Add New" -msgstr "Nieuwe toevoegen" - -#: admin/admin.php:59 admin/includes/admin-categories.php:48 -msgid "Event List Categories" -msgstr "Gebeurtenislijst Categorieën " +#: admin/admin.php:57 +#, php-format +msgid "Errors during upgrade of plugin %1$s" +msgstr "" -#: admin/admin.php:59 admin/includes/admin-new.php:150 -#: admin/includes/event_table.php:114 -msgid "Categories" -msgstr "Categorieën" +#: admin/admin.php:57 +#, php-format +msgid "Upgrade of plugin %1$s successful" +msgstr "" -#: admin/admin.php:63 admin/includes/admin-settings.php:54 +#: admin/admin.php:106 admin/includes/admin-settings.php:65 msgid "Event List Settings" msgstr "Gebeurtenislijst Instellingen" -#: admin/admin.php:63 +#: admin/admin.php:106 msgid "Settings" msgstr "Instellingen" -#: admin/admin.php:67 admin/includes/admin-about.php:37 +#: admin/admin.php:110 admin/includes/admin-about.php:37 msgid "About Event List" msgstr "Over Gebeurtenislijst" -#: admin/admin.php:67 +#: admin/admin.php:110 msgid "About" msgstr "Over" -#: admin/admin.php:87 +#: admin/admin.php:132 #, php-format msgid "%s Event" msgid_plural "%s Events" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:69 +#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 msgid "General" msgstr "Algemeen" -#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77 -#: admin/includes/admin-about.php:104 +#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:105 msgid "Shortcode Attributes" msgstr "Shortcode Attributen" -#: admin/includes/admin-about.php:71 +#: admin/includes/admin-about.php:72 msgid "Help and Instructions" msgstr "Hulp en instructies" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:73 #, php-format msgid "You can manage the events %1$shere%2$s" msgstr "" -#: admin/includes/admin-about.php:73 +#: admin/includes/admin-about.php:74 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:74 +#: admin/includes/admin-about.php:75 #, 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:75 +#: admin/includes/admin-about.php:76 #, 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:76 +#: admin/includes/admin-about.php:77 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:77 +#: admin/includes/admin-about.php:78 #, 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:78 +#: admin/includes/admin-about.php:79 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:79 +#: admin/includes/admin-about.php:80 #, 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:79 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 msgid "Add links to the single events" msgstr "Voeg links toe aan de enkele gebeurtenis" -#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 msgid "Add a link to the Event List page" msgstr "Voeg een link to aan de Gebeurtenislijst pagina" -#: admin/includes/admin-about.php:80 +#: admin/includes/admin-about.php:81 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:81 +#: admin/includes/admin-about.php:82 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:82 +#: admin/includes/admin-about.php:83 #, php-format msgid "" "The default value %1$s is normally o.k. (for pages with 1 shortcode only), " @@ -158,506 +139,594 @@ msgid "" "link on your linked page or post." msgstr "" -#: admin/includes/admin-about.php:83 +#: admin/includes/admin-about.php:84 #, php-format msgid "The id is available at the end of the URL parameters (e.g. %1$s)." msgstr "" -#: admin/includes/admin-about.php:85 +#: admin/includes/admin-about.php:86 #, 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:85 +#: admin/includes/admin-about.php:86 msgid "Settings page" -msgstr "" +msgstr "Pagina instellingen" -#: admin/includes/admin-about.php:91 +#: admin/includes/admin-about.php:92 msgid "About the plugin author" -msgstr "" +msgstr "Over de plugin ontwikkelaar" -#: admin/includes/admin-about.php:93 +#: admin/includes/admin-about.php:94 #, php-format msgid "" "This plugin is developed by %1$s, you can find more information about the " "plugin on the %2$s." -msgstr "" +msgstr "Deze plugin is ontwikkeld door %1$s, meer informatie over de plugin vind je hier %2$s." -#: admin/includes/admin-about.php:93 +#: admin/includes/admin-about.php:94 msgid "wordpress plugin site" -msgstr "" +msgstr "Wordpress plugin pagina" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:95 #, php-format msgid "If you like the plugin please rate it on the %1$s." msgstr "" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:95 msgid "wordpress plugin review site" msgstr "" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:96 msgid "" "If you want to support the plugin I would be happy to get a small donation" msgstr "" -#: admin/includes/admin-about.php:96 admin/includes/admin-about.php:97 -#: admin/includes/admin-about.php:98 +#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 +#: admin/includes/admin-about.php:99 #, php-format msgid "Donate with %1$s" msgstr "" -#: admin/includes/admin-about.php:106 +#: admin/includes/admin-about.php:107 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:107 +#: admin/includes/admin-about.php:108 #, 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:109 +#: admin/includes/admin-about.php:110 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:123 +#: admin/includes/admin-about.php:124 msgid "Attribute name" msgstr "Attribuut naam" -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:125 msgid "Value options" msgstr "Waarde opties" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:126 msgid "Default value" msgstr "Standaard waarde" -#: admin/includes/admin-about.php:126 admin/includes/admin-categories.php:194 -#: admin/includes/category_table.php:111 +#: admin/includes/admin-about.php:127 msgid "Description" msgstr "Omschrijving" -#: admin/includes/admin-about.php:144 includes/sc_event-list_helptexts.php:26 +#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 #: includes/sc_event-list_helptexts.php:31 msgid "Filter Syntax" msgstr "Filter Syntax" -#: admin/includes/admin-about.php:145 +#: admin/includes/admin-about.php:146 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:146 +#: admin/includes/admin-about.php:147 #, 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:146 +#: admin/includes/admin-about.php:147 msgid "AND" msgstr "EN" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "OR" msgstr "OF" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "or" msgstr "of" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "and" msgstr "en" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:148 msgid "Examples for cat filters:" msgstr "Voorbeelden voor categorie filters:" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:149 #, php-format msgid "Show all events with category %1$s." msgstr "Laat alle gebeurtenissen zien met categorie %1$s." -#: admin/includes/admin-about.php:149 +#: admin/includes/admin-about.php:150 #, 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:150 +#: admin/includes/admin-about.php:151 #, 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:155 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 msgid "Available Date Formats" msgstr "Beschikbare Datum Notaties" -#: admin/includes/admin-about.php:156 +#: admin/includes/admin-about.php:157 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:164 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 msgid "Available Date Range Formats" msgstr "Beschikbare Datum Bereik Notaties" -#: admin/includes/admin-about.php:165 +#: admin/includes/admin-about.php:166 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:177 +#: admin/includes/admin-about.php:178 msgid "Value" msgstr "Waarde" -#: admin/includes/admin-about.php:181 +#: admin/includes/admin-about.php:182 msgid "Example" msgstr "Voorbeeld" -#: admin/includes/admin-categories.php:51 -msgid "Edit Category" -msgstr "Bewerk Categorie" - -#: admin/includes/admin-categories.php:51 -msgid "Update Category" -msgstr "Pas Categorie aan" - -#: admin/includes/admin-categories.php:57 -msgid "Add New Category" -msgstr "Voeg Nieuwe Categorie toe" +#: admin/includes/admin-categories.php:38 +msgid "Synchronize with post categories" +msgstr "" -#: admin/includes/admin-categories.php:84 +#: admin/includes/admin-categories.php:46 #, php-format -msgid "Category \"%s\" deleted." -msgstr "Categorie \"%s\" verwijderd." +msgid "%1$s categories modified (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:86 +#: admin/includes/admin-categories.php:47 #, php-format -msgid "This Category was also removed from %d events." -msgstr "Deze Categorie was ook verwijderd uit %d gebeurtenissen." +msgid "%1$s categories added (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:92 +#: admin/includes/admin-categories.php:48 #, php-format -msgid "Error while deleting category \"%s\"" -msgstr "Fout bij het verwijderen van categorie \"%s\"" - -#: admin/includes/admin-categories.php:103 -msgid "Sync with post categories enabled." -msgstr "Synchronisatie met bericht categorieën ingeschakeld." - -#: admin/includes/admin-categories.php:106 -msgid "Sync with post categories disabled." -msgstr "Synchronisatie met bericht categorieen uitgeschakeld." - -#: admin/includes/admin-categories.php:112 -msgid "Manual sync with post categories sucessfully finished." -msgstr "Handmatige synchronisatie met berichtcategorieën succesvol afgerond." +msgid "%1$s categories deleted (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:125 +#: admin/includes/admin-categories.php:50 #, php-format -msgid "New Category \"%s\" was added" -msgstr "Nieuwe Categorie \"%s\" is toegevoegd" +msgid "%1$s categories not modified (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:128 +#: admin/includes/admin-categories.php:51 #, php-format -msgid "Error: New Category \"%s\" could not be added" -msgstr "Fout: Nieuwe Categorie \"%s\" kon niet worden toegevoegd" +msgid "%1$s categories not added (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:134 +#: admin/includes/admin-categories.php:52 #, php-format -msgid "Category \"%s\" was modified" -msgstr "Categorie \"%s\" is aangepast" +msgid "%1$s categories not deleted (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:137 -#, php-format -msgid "Error: Category \"%s\" could not be modified" -msgstr "Fout: Categorie \"%s\" kon niet worden aangepast" +#: admin/includes/admin-categories.php:55 +msgid "An Error occured during the category sync" +msgstr "" -#: admin/includes/admin-categories.php:144 -msgid "Categories are automatically synced with the post categories." +#: admin/includes/admin-categories.php:59 +msgid "Category sync finished" msgstr "" -#: admin/includes/admin-categories.php:145 +#: admin/includes/admin-category-sync.php:45 +msgid "Error: You are not allowed to view this page!" +msgstr "" + +#: admin/includes/admin-category-sync.php:62 +msgid "Affected Categories when switching to seperate Event Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:63 +msgid "Switch option to seperate Event Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:64 msgid "" -"Because of this all options to add new categories or editing existing " -"categories are disabled." +"If you proceed, all post categories will be copied and all events will be " +"re-assigned to this new categories." msgstr "" -#: admin/includes/admin-categories.php:146 +#: admin/includes/admin-category-sync.php:65 msgid "" -"If you want to manually edit the categories you have to disable this option." +"Afterwards the event categories are independent of the post categories." msgstr "" -#: admin/includes/admin-categories.php:173 -msgid "The name is how it appears on your site." -msgstr "De naam zoals deze verschijnt op de site" +#: admin/includes/admin-category-sync.php:68 +msgid "Affected Categories when switching to use Post Categories for events" +msgstr "" + +#: admin/includes/admin-category-sync.php:69 +msgid "Switch option to use Post Categories for events" +msgstr "" -#: admin/includes/admin-categories.php:178 +#: admin/includes/admin-category-sync.php:70 msgid "" -"The “slug” is the URL-friendly version of the name. It is usually all " -"lowercase and contains only letters, numbers, and hyphens." -msgstr "De \"slug\" is de URL-veindelijke versie van de naam. Gebruikelijk zijn dit kleine letters en bevat het alleen letters, nummers en verbindingsstreepjes." +"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 +msgid "Event Categories: Synchronise with Post Categories" +msgstr "" -#: admin/includes/admin-categories.php:191 +#: admin/includes/admin-category-sync.php:74 +msgid "Start synchronisation" +msgstr "" + +#: admin/includes/admin-category-sync.php:75 msgid "" -"Categories can have a hierarchy. You might have a Jazz category, and under " -"that have children categories for Bebop and Big Band. Totally optional." -msgstr "Categorieën kunnen een hiërarchie hebben. Misschien heb je wel een Jazz categorie, waaronder de 'kinder' categorieën Bebop en Big Band zitten. Helemaal optioneel." +"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 +msgid "Categories to modify" +msgstr "" + +#: admin/includes/admin-category-sync.php:91 +msgid "Categories to add" +msgstr "" + +#: admin/includes/admin-category-sync.php:92 +msgid "Categories to delete (optional)" +msgstr "" + +#: admin/includes/admin-category-sync.php:93 +msgid "Delete not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:97 +msgid "Categories with differences" +msgstr "" -#: admin/includes/admin-categories.php:241 -msgid "Apply" -msgstr "Toepassen" +#: admin/includes/admin-category-sync.php:98 +msgid "Categories to add (optional)" +msgstr "" -#: admin/includes/admin-categories.php:251 -msgid "Do a manual sync with post categories" -msgstr "Doe een handmatige synchronisatie met bericht categorieen" +#: admin/includes/admin-category-sync.php:99 +msgid "Add not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:117 +msgid "none" +msgstr "" -#: admin/includes/admin-import.php:45 +#: admin/includes/admin-import.php:49 msgid "Import Events" msgstr "Importeer Gebeurtenissen" -#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:118 +#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:198 msgid "Step" msgstr "Stap" -#: admin/includes/admin-import.php:65 +#: admin/includes/admin-import.php:69 msgid "Set import file and options" msgstr "Stel het import bestand en opties in" -#: admin/includes/admin-import.php:68 +#: admin/includes/admin-import.php:72 #, php-format msgid "Proceed with Step %1$s" -msgstr "" +msgstr "Ga door naar stap %1$s" -#: admin/includes/admin-import.php:71 +#: admin/includes/admin-import.php:75 msgid "Example file" msgstr "Voorbeeld bestand" -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:76 #, 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:73 +#: admin/includes/admin-import.php:77 msgid "Note" msgstr "Aantekening" -#: admin/includes/admin-import.php:73 +#: admin/includes/admin-import.php:77 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:80 admin/includes/admin-import.php:88 -#: admin/includes/admin-import.php:101 +#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 msgid "Sorry, there has been an error." msgstr "Sorry, er ging iets fout." -#: admin/includes/admin-import.php:81 +#: admin/includes/admin-import.php:85 msgid "The file does not exist, please try again." msgstr "Het bestand bestaat niet, probeer het nog eens." -#: admin/includes/admin-import.php:89 -msgid "The file is not a CSV file." -msgstr "Het bestand is geen CSV bestand." +#: admin/includes/admin-import.php:93 +msgid "The uploaded file does not have the required csv extension." +msgstr "" -#: admin/includes/admin-import.php:118 +#: admin/includes/admin-import.php:105 msgid "Events review and additonal category selection" msgstr "" -#: admin/includes/admin-import.php:121 +#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +msgid "Error" +msgstr "" + +#: admin/includes/admin-import.php:111 +msgid "This CSV file cannot be imported" +msgstr "" + +#: admin/includes/admin-import.php:122 +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 +msgid "Warning" +msgstr "" + +#: admin/includes/admin-import.php:126 +#, 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 +#, php-format +msgid "CSV line %1$s" +msgstr "" + +#: admin/includes/admin-import.php:144 +msgid "You can still import all other events listed below." +msgstr "" + +#: admin/includes/admin-import.php:163 msgid "" -"Warning: The following category slugs are not available and will be removed " -"from the imported events:" +"The following category slugs are not available and will be removed from the " +"imported events" msgstr "" -#: admin/includes/admin-import.php:127 +#: admin/includes/admin-import.php:169 msgid "" "If you want to keep these categories, please create these Categories first " "and do the import afterwards." msgstr "" -#: admin/includes/admin-import.php:145 -msgid "Add additional categories" +#: admin/includes/admin-import.php:198 +msgid "Import result" msgstr "" -#: admin/includes/admin-import.php:146 -msgid "Import events" +#: admin/includes/admin-import.php:201 +#, php-format +msgid "Import of %1$s events successful!" msgstr "" -#: admin/includes/admin-import.php:160 -msgid "Import with errors!" -msgstr "Import met fouten!" +#: admin/includes/admin-import.php:202 +msgid "Go back to All Events" +msgstr "Ga terug naar Alle Gebeurtenissen" -#: admin/includes/admin-import.php:161 -msgid "Sorry, an error occurred during import!" +#: admin/includes/admin-import.php:206 +msgid "Errors during Import" msgstr "" -#: admin/includes/admin-import.php:165 -msgid "Import successful!" -msgstr "Import succesvol!" - -#: admin/includes/admin-import.php:166 -msgid "Go back to All Events" -msgstr "Ga terug naar Alle Gebeurtenissen" +#: admin/includes/admin-import.php:215 +msgid "Event from CSV-line" +msgstr "" -#: admin/includes/admin-import.php:173 admin/includes/admin-new.php:111 -#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 +#: includes/widget_helptexts.php:8 msgid "Title" msgstr "Titel" -#: admin/includes/admin-import.php:174 +#: admin/includes/admin-import.php:227 msgid "Start Date" msgstr "Start Datum" -#: admin/includes/admin-import.php:175 +#: admin/includes/admin-import.php:228 msgid "End Date" msgstr "Eind Datum" -#: admin/includes/admin-import.php:176 admin/includes/admin-new.php:124 -#: includes/options_helptexts.php:48 includes/options_helptexts.php:49 +#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 +#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 msgid "Time" msgstr "Tijd" -#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:128 -#: admin/includes/event_table.php:112 includes/options_helptexts.php:53 -#: includes/options_helptexts.php:54 +#: 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 msgid "Location" msgstr "Locatie" -#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:132 -#: admin/includes/event_table.php:113 -msgid "Details" -msgstr "Details" +#: admin/includes/admin-import.php:231 +msgid "Content" +msgstr "" -#: admin/includes/admin-import.php:179 +#: admin/includes/admin-import.php:232 msgid "Category slugs" msgstr "" -#: admin/includes/admin-import.php:218 +#: admin/includes/admin-import.php:274 +msgid "Header line is missing or not correct!" +msgstr "" + +#: admin/includes/admin-import.php:275 #, php-format msgid "" -"There was an error at line %1$s when reading this CSV file: Header line is " -"missing or not correct!" +"Have a look at the %1$sexample file%2$s to see the correct header line " +"format." +msgstr "" + +#: admin/includes/admin-import.php:281 +#, php-format +msgid "Wrong number of items in line (%1$s items found, 6-7 required)" +msgstr "" + +#: admin/includes/admin-import.php:309 +msgid "Empty event title found" msgstr "" -#: admin/includes/admin-import.php:253 admin/includes/admin-main.php:122 +#: admin/includes/admin-import.php:315 +msgid "Wrong date format for startdate" +msgstr "" + +#: admin/includes/admin-import.php:324 +msgid "Wrong date format for enddate" +msgstr "" + +#: admin/includes/admin-import.php:365 +msgid "Import events" +msgstr "Importeer gebeurtenis" + +#: admin/includes/admin-import.php:366 +msgid "Add additional categories" +msgstr "Voeg extra categorieën toe" + +#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 msgid "Import" msgstr "Importeer" -#: admin/includes/admin-main.php:116 -msgid "Edit Event" -msgstr "Gebeurtenis Aanpassen" +#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +msgid "No events found" +msgstr "" -#: admin/includes/admin-main.php:116 admin/includes/event_table.php:75 -msgid "Duplicate" -msgstr "Maak een kopie" +#: admin/includes/admin-import.php:432 +msgid "Saving of event failed!" +msgstr "" -#: admin/includes/admin-new.php:48 +#: admin/includes/admin-main.php:60 +msgid "Event Date" +msgstr "" + +#: admin/includes/admin-main.php:64 +msgid "Author" +msgstr "Auteur" + +#: admin/includes/admin-main.php:126 #, php-format -msgid "Duplicate of event id:%d" -msgstr "Kopie van gebeurtenis id:%d" +msgid "Add a copy of %1$s" +msgstr "" -#: admin/includes/admin-new.php:111 admin/includes/admin-new.php:115 -msgid "required" -msgstr "vereist" +#: admin/includes/admin-main.php:126 +msgid "Copy" +msgstr "" + +#: admin/includes/admin-new.php:51 +msgid "Event data" +msgstr "" -#: admin/includes/admin-new.php:115 admin/includes/event_table.php:110 +#: admin/includes/admin-new.php:80 +msgid "Add Copy" +msgstr "" + +#: admin/includes/admin-new.php:84 msgid "Date" msgstr "Datum" -#: admin/includes/admin-new.php:118 +#: admin/includes/admin-new.php:84 +msgid "required" +msgstr "vereist" + +#: admin/includes/admin-new.php:87 msgid "Multi-Day Event" msgstr "Meerdaagse gebeurtenis" -#: admin/includes/admin-new.php:148 admin/includes/admin-new.php:165 -msgid "Publish" -msgstr "Publiceer" +#: admin/includes/admin-new.php:106 +msgid "Event Title" +msgstr "" -#: admin/includes/admin-new.php:165 -msgid "Update" -msgstr "Bijwerken" +#: admin/includes/admin-new.php:121 +msgid "Event Content" +msgstr "" -#: admin/includes/admin-new.php:167 -msgid "Cancel" -msgstr "Annuleer" +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +msgid "Event updated." +msgstr "" -#: admin/includes/admin-new.php:180 -msgid "No categories available." -msgstr "Geen categorieen beschikbaar." +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +msgid "View event" +msgstr "" + +#: admin/includes/admin-new.php:184 +#, php-format +msgid "Event restored to revision from %1$s" +msgstr "" + +#: admin/includes/admin-new.php:185 +msgid "Event published." +msgstr "" + +#: admin/includes/admin-new.php:187 +msgid "Event submitted." +msgstr "" + +#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 +#: admin/includes/admin-new.php:190 +msgid "Preview event" +msgstr "" + +#: admin/includes/admin-new.php:188 +#, php-format +msgid "Event scheduled for: %1$s>" +msgstr "" -#: admin/includes/admin-new.php:226 -msgid "Goto Category Settings" -msgstr "Ga naar Categorie Instellingen" +#: admin/includes/admin-new.php:190 +msgid "Event draft updated." +msgstr "" -#: admin/includes/admin-settings.php:42 -msgid "Settings saved." -msgstr "Instellingen bewaard." +#: admin/includes/admin-settings.php:71 +msgid "Go to Event Category switching page" +msgstr "" -#: admin/includes/admin-settings.php:70 +#: admin/includes/admin-settings.php:83 msgid "Frontend Settings" msgstr "Frontend Instellingen" -#: admin/includes/admin-settings.php:71 +#: admin/includes/admin-settings.php:84 msgid "Admin Page Settings" msgstr "Admin Pagina Instellingen" -#: admin/includes/admin-settings.php:72 +#: admin/includes/admin-settings.php:85 msgid "Feed Settings" msgstr "Feed Instellingen" -#: admin/includes/category_table.php:27 admin/includes/event_table.php:29 -msgid "event" -msgstr "gebeurtenis" - -#: admin/includes/category_table.php:28 admin/includes/event_table.php:30 -msgid "events" -msgstr "gebeurtenissen" - -#: admin/includes/category_table.php:73 admin/includes/event_table.php:74 -msgid "Edit" -msgstr "Aanpassen" - -#: admin/includes/category_table.php:74 admin/includes/category_table.php:148 -#: admin/includes/event_table.php:76 admin/includes/event_table.php:149 -msgid "Delete" -msgstr "Verwijderen" - -#: admin/includes/category_table.php:110 -msgid "Name" -msgstr "Naam" - -#: admin/includes/category_table.php:112 -msgid "Slug" -msgstr "Slug" - -#: admin/includes/event_table.php:115 -msgid "Author" -msgstr "Auteur" - -#: admin/includes/event_table.php:116 -msgid "Published" -msgstr "Gepubliceerd" - -#: admin/includes/event_table.php:180 -msgid "Filter" -msgstr "Filter" - -#: admin/includes/event_table.php:300 -#, php-format -msgid "%s ago" -msgstr "%s geleden" +#: admin/includes/admin-settings.php:86 +msgid "Category Taxonomy" +msgstr "" #: includes/daterange_helptexts.php:7 msgid "Year" @@ -802,7 +871,7 @@ msgstr "Deze waarde geeft een bereik zonder einde aan." 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:291 +#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 msgid "Upcoming" msgstr "Komende" @@ -810,7 +879,7 @@ msgstr "Komende" 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:295 +#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 msgid "Past" msgstr "Eerdere" @@ -818,146 +887,238 @@ msgstr "Eerdere" 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/filterbar.php:233 includes/sc_event-list_helptexts.php:60 -msgid "Reset" +#: includes/event.php:107 +msgid "No valid start date provided" msgstr "" -#: includes/filterbar.php:282 -msgid "All" -msgstr "Alles" +#: includes/events_post_type.php:60 +msgid "Events" +msgstr "Gebeurtenissen" + +#: includes/events_post_type.php:61 +msgid "Event" +msgstr "" + +#: includes/events_post_type.php:62 +msgid "Add New" +msgstr "Nieuwe toevoegen" -#: includes/filterbar.php:285 -msgid "Show all dates" -msgstr "Toon alle data" +#: includes/events_post_type.php:63 +msgid "Add New Event" +msgstr "Maak een nieuwe gebeurtenis" -#: includes/filterbar.php:285 -msgid "Show all categories" -msgstr "Toon alle categoriën" +#: includes/events_post_type.php:64 +msgid "Edit Event" +msgstr "Gebeurtenis Aanpassen" -#: includes/options_helptexts.php:11 -msgid "Sync Categories" -msgstr "Synchroniseer categoriën" +#: includes/events_post_type.php:65 +msgid "New Event" +msgstr "" -#: includes/options_helptexts.php:12 -msgid "Keep event categories in sync with post categories automatically" -msgstr "Houd evenementen categoriën gelijk met bericht categorieën" +#: includes/events_post_type.php:66 +msgid "View Event" +msgstr "" -#: includes/options_helptexts.php:13 -msgid "Attention" -msgstr "Let op" +#: includes/events_post_type.php:67 +msgid "View Events" +msgstr "" -#: includes/options_helptexts.php:14 -msgid "" -"Please note that this option will delete all categories which are not " -"available in the post categories! Existing Categories with the same slug " -"will be updated." -msgstr "Let op dat deze optie alle categorieën verwijdert die niet bestaan bij de bericht categorieën! Bestaande categorieën met dezelfde slug worden geüpdatet." +#: includes/events_post_type.php:68 +msgid "Search Events" +msgstr "" -#: includes/options_helptexts.php:18 +#: includes/events_post_type.php:70 +msgid "No events found in Trash" +msgstr "" + +#: includes/events_post_type.php:72 +msgid "All Events" +msgstr "Alle gebeurtenissen" + +#: includes/events_post_type.php:73 +msgid "Event Archives" +msgstr "" + +#: includes/events_post_type.php:74 +msgid "Event Attributes" +msgstr "" + +#: includes/events_post_type.php:75 +msgid "Insert into event" +msgstr "" + +#: includes/events_post_type.php:76 +msgid "Uploaded to this event" +msgstr "" + +#: includes/events_post_type.php:77 +msgid "Event List" +msgstr "Gebeurtenislijst" + +#: includes/events_post_type.php:78 +msgid "Filter events list" +msgstr "" + +#: includes/events_post_type.php:79 +msgid "Events list navigation" +msgstr "" + +#: includes/events_post_type.php:80 +msgid "Events list" +msgstr "" + +#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +msgid "Reset" +msgstr "Herstel naar beginwaardes" + +#: includes/filterbar.php:278 +msgid "All" +msgstr "Alles" + +#: includes/filterbar.php:281 +msgid "All Dates" +msgstr "" + +#: includes/options_helptexts.php:10 msgid "CSV File to import" msgstr "CSV-bestand om te importeren" -#: includes/options_helptexts.php:20 +#: includes/options_helptexts.php:12 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:23 +#: includes/options_helptexts.php:15 msgid "Used date format" msgstr "Gebruikte datumweergave" +#: includes/options_helptexts.php:17 +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 +#, 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 +msgid "full year representation, with 4 digits" +msgstr "" + +#: includes/options_helptexts.php:21 +msgid "numeric representation of a month, with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:22 +msgid "day of the month, 2 digits with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:24 +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 msgid "" -"With this option the used date format for event start and end date given in " -"the CSV file can be specified." -msgstr "Met deze optie wordt de gebruikte datumnotatie voor de start- en einddatum van een evenement in het CSV-bestand bepaald." +"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:29 +#: includes/options_helptexts.php:26 +msgid "Examples" +msgstr "" + +#: includes/options_helptexts.php:33 msgid "Text for no events" msgstr "Tekst indien geen evenementen" -#: includes/options_helptexts.php:31 +#: includes/options_helptexts.php:35 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:34 +#: includes/options_helptexts.php:38 msgid "Multiday filter range" msgstr "Meerdaags filter bereik" -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:39 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:36 +#: includes/options_helptexts.php:40 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:37 +#: includes/options_helptexts.php:41 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:38 +#: includes/options_helptexts.php:42 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:41 +#: includes/options_helptexts.php:45 msgid "Date display" msgstr "Datumweergave" -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:46 msgid "Show the date only once per day" msgstr "Toon de datum slechts één keer per dag" -#: includes/options_helptexts.php:43 +#: includes/options_helptexts.php:47 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:44 +#: includes/options_helptexts.php:48 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:47 +#: includes/options_helptexts.php:51 msgid "HTML tags" msgstr "HTML-elementen" -#: includes/options_helptexts.php:48 includes/options_helptexts.php:53 +#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 #, 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:49 includes/options_helptexts.php:54 +#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 #, 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:57 +#: includes/options_helptexts.php:61 msgid "Preferred language file" -msgstr "" +msgstr "Voorkeurs taal bestand" -#: includes/options_helptexts.php:58 +#: includes/options_helptexts.php:62 msgid "Load translations from general language directory first" -msgstr "" +msgstr "Laad de vertalingen eerst in de directory van de algemene taal" -#: includes/options_helptexts.php:59 +#: includes/options_helptexts.php:63 #, 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:60 +#: includes/options_helptexts.php:64 #, php-format msgid "" "If you want to load your own language file from the general language " @@ -965,269 +1126,306 @@ msgid "" "language directory, you have to enable this option." msgstr "" -#: includes/options_helptexts.php:64 -msgid "Text for \"Show details\"" -msgstr "Tekst voor \"Toon details\"" +#: includes/options_helptexts.php:68 +msgid "Events permalink slug" +msgstr "" + +#: includes/options_helptexts.php:69 +msgid "" +"With this option the slug for the events permalink URLs can be defined." +msgstr "" + +#: includes/options_helptexts.php:72 +msgid "Text for \"Show content\"" +msgstr "" -#: includes/options_helptexts.php:65 +#: includes/options_helptexts.php:73 msgid "" -"With this option the displayed text for the link to show the event details " +"With this option the displayed text for the link to show the event content " "can be changed, when collapsing is enabled." -msgstr "Met deze optie kan de weergegeven tekst voor de link naar de evenement details worden aangepast, als uitklappen is ingeschakeld." +msgstr "" -#: includes/options_helptexts.php:68 -msgid "Text for \"Hide details\"" -msgstr "Tekst voor \"Verberg details\"" +#: includes/options_helptexts.php:76 +msgid "Text for \"Hide content\"" +msgstr "" -#: includes/options_helptexts.php:69 +#: includes/options_helptexts.php:77 msgid "" -"With this option the displayed text for the link to hide the event details " +"With this option the displayed text for the link to hide the event content " "can be changed, when collapsing is enabled." -msgstr "Met deze optie kan de weergegeven tekst voor de link om de evenement details te verbergen worden aangepast, als uitklappen is ingeschakeld." +msgstr "" -#: includes/options_helptexts.php:72 +#: includes/options_helptexts.php:80 msgid "Disable CSS file" msgstr "CSS-bestand uitschakelen" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:81 #, php-format msgid "Disable the %1$s file." msgstr "Schakel het %1$s bestand uit." -#: includes/options_helptexts.php:74 +#: includes/options_helptexts.php:82 #, 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:75 +#: includes/options_helptexts.php:83 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:79 +#: includes/options_helptexts.php:87 msgid "Date format in edit form" msgstr "Datumweergave in formulieren" -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:88 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:81 +#: includes/options_helptexts.php:89 msgid "The default is an empty string to use the Wordpress standard setting." msgstr "" -#: includes/options_helptexts.php:82 +#: includes/options_helptexts.php:90 #, 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:86 includes/options_helptexts.php:114 +#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 msgid "Enable RSS feed" msgstr "RSS feed inschakelen" -#: includes/options_helptexts.php:87 +#: includes/options_helptexts.php:95 msgid "Enable support for an event RSS feed" msgstr "Ondersteuning voor een RSS feed inschakelen" -#: includes/options_helptexts.php:88 +#: includes/options_helptexts.php:96 msgid "This option activates a RSS feed for the events." msgstr "" -#: includes/options_helptexts.php:89 +#: includes/options_helptexts.php:97 msgid "" "You have to enable this option if you want to use one of the RSS feed " "features." msgstr "" -#: includes/options_helptexts.php:92 +#: includes/options_helptexts.php:100 msgid "Feed name" msgstr "Feed naam" -#: includes/options_helptexts.php:93 +#: includes/options_helptexts.php:101 #, php-format msgid "This option sets the feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:94 +#: 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 "" -#: includes/options_helptexts.php:97 +#: includes/options_helptexts.php:105 msgid "Feed Description" msgstr "Feed beschrijving" -#: includes/options_helptexts.php:98 +#: includes/options_helptexts.php:106 #, php-format msgid "This options set the feed description. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:99 +#: 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 "" -#: includes/options_helptexts.php:102 +#: includes/options_helptexts.php:110 msgid "Listed events" msgstr "Vermeldde evenementen" -#: includes/options_helptexts.php:103 +#: includes/options_helptexts.php:111 msgid "Only show upcoming events in feed" msgstr "Toon alleen komende evenementen in feed" -#: includes/options_helptexts.php:104 +#: includes/options_helptexts.php:112 msgid "" "If this option is enabled only the upcoming events are listed in the feed." msgstr "" -#: includes/options_helptexts.php:105 +#: includes/options_helptexts.php:113 msgid "If disabled all events (upcoming and past) will be listed." msgstr "" -#: includes/options_helptexts.php:108 +#: includes/options_helptexts.php:116 msgid "Add RSS feed link in head" msgstr "Voeg RSS feed toe in kop" -#: includes/options_helptexts.php:109 +#: 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:110 +#: includes/options_helptexts.php:118 msgid "This option adds a RSS feed in the html head for the events." msgstr "" -#: includes/options_helptexts.php:111 +#: includes/options_helptexts.php:119 msgid "There are 2 alternatives to include the RSS feed" msgstr "" -#: includes/options_helptexts.php:112 +#: 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 "" -#: includes/options_helptexts.php:113 +#: 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." msgstr "" -#: includes/options_helptexts.php:114 +#: includes/options_helptexts.php:122 #, php-format msgid "This option is only valid if the setting %1$s is enabled." msgstr "" -#: includes/options_helptexts.php:117 +#: includes/options_helptexts.php:125 msgid "Position of the RSS feed link" msgstr "Plek van de RSS feed link" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "at the top (above the navigation bar)" msgstr "" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "between navigation bar and events" msgstr "" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "at the bottom" -msgstr "" +msgstr "aan de onderkant" -#: includes/options_helptexts.php:119 +#: includes/options_helptexts.php:127 msgid "" "This option specifies the position of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:120 includes/options_helptexts.php:126 -#: includes/options_helptexts.php:132 includes/options_helptexts.php:138 +#: 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 "" -#: includes/options_helptexts.php:123 +#: includes/options_helptexts.php:131 msgid "Align of the RSS feed link" msgstr "Uitlijning van RSS feed link" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "left" -msgstr "" +msgstr "links" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "center" -msgstr "" +msgstr "midden" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "right" -msgstr "" +msgstr "rechts" -#: includes/options_helptexts.php:125 +#: includes/options_helptexts.php:133 msgid "" "This option specifies the align of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:129 +#: includes/options_helptexts.php:137 msgid "Feed link text" msgstr "Tekst feed link" -#: includes/options_helptexts.php:130 +#: includes/options_helptexts.php:138 msgid "" "This option specifies the caption of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:131 +#: includes/options_helptexts.php:139 msgid "" "Insert an empty text to hide any text if you only want to show the rss " "image." msgstr "" -#: includes/options_helptexts.php:135 +#: includes/options_helptexts.php:143 msgid "Feed link image" msgstr "Afbeelding feed link" -#: includes/options_helptexts.php:136 +#: includes/options_helptexts.php:144 msgid "Show rss image in feed link" msgstr "Toon RSS afbeelding in feed link" -#: includes/options_helptexts.php:137 +#: 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." msgstr "" -#: includes/options.php:43 -msgid "Show details" -msgstr "Toon details" +#: includes/options_helptexts.php:151 +msgid "Event Category handling" +msgstr "" -#: includes/options.php:44 -msgid "Hide details" -msgstr "Verberg details" +#: includes/options_helptexts.php:152 +msgid "Use Post Categories" +msgstr "" + +#: includes/options_helptexts.php:153 +msgid "" +"Do not maintain seperate categories for the events, and use the existing " +"post categories instead." +msgstr "" + +#: includes/options_helptexts.php:154 +msgid "Attention" +msgstr "Let op" + +#: includes/options_helptexts.php:155 +msgid "" +"This option cannot be changed directly, but you can go to the Event Category" +" switching page from here." +msgstr "" + +#: includes/options.php:40 +msgid "events" +msgstr "" + +#: includes/options.php:41 +msgid "Show content" +msgstr "" + +#: includes/options.php:42 +msgid "Hide content" +msgstr "" #: includes/sc_event-list_helptexts.php:7 msgid "event-id" -msgstr "" +msgstr "gebeurtenis-id" #: includes/sc_event-list_helptexts.php:8 #, 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-details view of " +"%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 msgid "year" -msgstr "" +msgstr "jaar" #: includes/sc_event-list_helptexts.php:11 msgid "" @@ -1322,7 +1520,7 @@ msgstr "" #: includes/sc_event-list_helptexts.php:89 #: includes/sc_event-list_helptexts.php:104 msgid "number" -msgstr "" +msgstr "nummer" #: includes/sc_event-list_helptexts.php:34 #, php-format @@ -1375,23 +1573,23 @@ msgstr "" #: includes/sc_event-list_helptexts.php:46 #: includes/sc_event-list_helptexts.php:63 msgid "description" -msgstr "" +msgstr "omschrijving" #: includes/sc_event-list_helptexts.php:46 msgid "item options" -msgstr "" +msgstr "item opties" #: includes/sc_event-list_helptexts.php:46 msgid "option values" -msgstr "" +msgstr "optie waarden" #: includes/sc_event-list_helptexts.php:46 msgid "default value" -msgstr "" +msgstr "standaardwaarde" #: includes/sc_event-list_helptexts.php:46 msgid "option description" -msgstr "" +msgstr "optie omschrijving" #: includes/sc_event-list_helptexts.php:47 msgid "" @@ -1463,11 +1661,11 @@ msgstr "" #: includes/sc_event-list_helptexts.php:60 msgid "any text" -msgstr "" +msgstr "elke tekst" #: includes/sc_event-list_helptexts.php:60 msgid "Set the caption of the link." -msgstr "" +msgstr "Stel het bijschrift van de link in." #: includes/sc_event-list_helptexts.php:61 msgid "Find below an overview of the available filterbar display options:" @@ -1475,11 +1673,11 @@ msgstr "" #: includes/sc_event-list_helptexts.php:63 msgid "display option" -msgstr "" +msgstr "laat opties zien" #: includes/sc_event-list_helptexts.php:63 msgid "available for" -msgstr "" +msgstr "beschikbaar voor" #: includes/sc_event-list_helptexts.php:64 #, php-format @@ -1521,7 +1719,7 @@ msgstr "" #: includes/sc_event-list_helptexts.php:71 msgid "value" -msgstr "" +msgstr "waarde" #: includes/sc_event-list_helptexts.php:72 #, php-format @@ -1576,37 +1774,37 @@ msgstr "Dit attribuut bepaalt of de categorieën worden getoond in de evenemente #: includes/sc_event-list_helptexts.php:100 msgid "" -"This attribute specifies if the details are displayed in the event list.<br />\n" -"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n" -"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event" -msgstr "Dit attribuut bepaalt of de details worden getoond in de evenementenlijst.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de details.<br />\n\t Met 'event_list_only' zijn de details alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen." +"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 msgid "" -"This attribute specifies if the details should be truncate to the given " +"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 #, php-format msgid "With the standard value %1$s the full text is displayed." -msgstr "" +msgstr "Met de standaardwaarde %1$s wordt de volledige tekst weergeven." #: includes/sc_event-list_helptexts.php:110 msgid "" -"This attribute specifies if the details should be collapsed initially.<br />\n" -"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n" -"\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the details.<br />\n" -"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view." -msgstr "Dit attribuut bepaalt of de details in eerste instantie ingeklapt moeten zijn.<br />\n\t In dat geval wordt er een link getoond in plaats van de details. Door op deze link te klikken worden de details zichtbaar.<br />\n\t Gebruik 'false' om uitklappen van details uit te schakelen en 'true' om het in te schakelen.<br />\n\t Met 'event_list_only' zijn de details alleen ingeklapt in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen." +"This attribute specifies if the content 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 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" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n" -"\t With \"events_with_details_only\" the link is only added in the event list for events with event details." -msgstr "Dit attribuut bepaalt of een link naar een los evenement moet worden toegevoegd aan de evenementnaam in de evenementenlijst.<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.<br />\n\t Met 'events_with_details_only' wordt de link alleen toegevoegd in de evenementenlijst als er bij een evenement details beschikbaar zijn." +"\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 msgid "" @@ -1630,7 +1828,7 @@ msgid "" "\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:134 +#: includes/sc_event-list.php:135 msgid "Event Information:" msgstr "Evenement details:" @@ -1707,20 +1905,20 @@ msgid "" msgstr "" #: includes/widget_helptexts.php:59 -msgid "Show event details" -msgstr "Toon evenementdetails" +msgid "Show event content" +msgstr "" #: includes/widget_helptexts.php:61 -msgid "This option defines if the event details will be displayed." -msgstr "Deze optie bepaalt of de details van een evenement worden getoond." +msgid "This option defines if the event content will be displayed." +msgstr "" #: includes/widget_helptexts.php:66 -msgid "Truncate details to" -msgstr "Kort de details in tot" +msgid "Truncate content to" +msgstr "" #: includes/widget_helptexts.php:68 msgid "" -"If the event details are diplayed this option defines the number of diplayed" +"If the event content are diplayed this option defines the number of diplayed" " characters." msgstr "" 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 new file mode 100644 index 0000000000000000000000000000000000000000..38a90bc9cfaf62f8ddb7454eba18e51a94f2819d Binary files /dev/null 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 new file mode 100644 index 0000000000000000000000000000000000000000..a60b584d1d4db7bfa2d55e5d8c0c220eae07ebc1 --- /dev/null +++ b/wp-content/plugins/event-list/languages/event-list-pl_PL.po @@ -0,0 +1,1986 @@ +# Translation file for the 'Event List' WordPress plugin +# Copyright (C) 2018 by mibuthu +# This file is distributed under the same license as the corresponding wordpress plugin. +# +# Translators: +# Maciej Bator <mbsrz1972@gmail.com>, 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" +"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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"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 +#, php-format +msgid "Errors during upgrade of plugin %1$s" +msgstr "" + +#: admin/admin.php:57 +#, php-format +msgid "Upgrade of plugin %1$s successful" +msgstr "" + +#: admin/admin.php:106 admin/includes/admin-settings.php:65 +msgid "Event List Settings" +msgstr "Ustawienia Listy Wydarzeń" + +#: admin/admin.php:106 +msgid "Settings" +msgstr "Ustawienia" + +#: admin/admin.php:110 admin/includes/admin-about.php:37 +msgid "About Event List" +msgstr "O Liście Wydarzeń" + +#: admin/admin.php:110 +msgid "About" +msgstr "O" + +#: admin/admin.php:132 +#, php-format +msgid "%s Event" +msgid_plural "%s Events" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 +msgid "General" +msgstr "Ogólne" + +#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:105 +msgid "Shortcode Attributes" +msgstr "Atrybuty Skrótów" + +#: admin/includes/admin-about.php:72 +msgid "Help and Instructions" +msgstr "Pomoc i instrukcje" + +#: admin/includes/admin-about.php:73 +#, 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 +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 +#, 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 +#, 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 +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 +#, 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 +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 +#, 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 +msgid "Add links to the single events" +msgstr "Dodaj łącza do pojedynczych wydarzeń" + +#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 +msgid "Add a link to the Event List page" +msgstr "Dodaj łącze do strony Listy wydarzeń" + +#: admin/includes/admin-about.php:81 +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 +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 +#, 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 +#, 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 +#, 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 +msgid "Settings page" +msgstr "Ustawienia Listy Wydarzeń" + +#: admin/includes/admin-about.php:92 +msgid "About the plugin author" +msgstr "O autorze wtyczki" + +#: admin/includes/admin-about.php:94 +#, 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:95 +#, 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:96 +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 +#, php-format +msgid "Donate with %1$s" +msgstr "" + +#: admin/includes/admin-about.php:107 +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 +#, 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 +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 +msgid "Attribute name" +msgstr "Nazwa atrybutu" + +#: admin/includes/admin-about.php:125 +msgid "Value options" +msgstr "Opcje wartości" + +#: admin/includes/admin-about.php:126 +msgid "Default value" +msgstr "Domyślna wartość" + +#: admin/includes/admin-about.php:127 +msgid "Description" +msgstr "Opis" + +#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 +#: includes/sc_event-list_helptexts.php:31 +msgid "Filter Syntax" +msgstr "Składnia filtru" + +#: admin/includes/admin-about.php:146 +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 +#, 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 +msgid "AND" +msgstr "I" + +#: admin/includes/admin-about.php:147 +msgid "OR" +msgstr "LUB" + +#: admin/includes/admin-about.php:147 +msgid "or" +msgstr "i" + +#: admin/includes/admin-about.php:147 +msgid "and" +msgstr "lub" + +#: admin/includes/admin-about.php:148 +msgid "Examples for cat filters:" +msgstr "Przykłady filtrów kategorii:" + +#: admin/includes/admin-about.php:149 +#, 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 +#, 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 +#, 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 +msgid "Available Date Formats" +msgstr "Dostępne formaty dat" + +#: admin/includes/admin-about.php:157 +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 +msgid "Available Date Range Formats" +msgstr "Dostępne formaty zakresu dat" + +#: admin/includes/admin-about.php:166 +msgid "For date filters you can use the following daterange formats:" +msgstr "" + +#: admin/includes/admin-about.php:178 +msgid "Value" +msgstr "Wartość" + +#: admin/includes/admin-about.php:182 +msgid "Example" +msgstr "Przykład" + +#: admin/includes/admin-categories.php:38 +msgid "Synchronize with post categories" +msgstr "" + +#: admin/includes/admin-categories.php:46 +#, php-format +msgid "%1$s categories modified (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:47 +#, php-format +msgid "%1$s categories added (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:48 +#, php-format +msgid "%1$s categories deleted (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:50 +#, php-format +msgid "%1$s categories not modified (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:51 +#, php-format +msgid "%1$s categories not added (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:52 +#, php-format +msgid "%1$s categories not deleted (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:55 +msgid "An Error occured during the category sync" +msgstr "" + +#: admin/includes/admin-categories.php:59 +msgid "Category sync finished" +msgstr "" + +#: admin/includes/admin-category-sync.php:45 +msgid "Error: You are not allowed to view this page!" +msgstr "" + +#: admin/includes/admin-category-sync.php:62 +msgid "Affected Categories when switching to seperate Event Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:63 +msgid "Switch option to seperate Event Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:64 +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 +msgid "" +"Afterwards the event categories are independent of the post categories." +msgstr "" + +#: admin/includes/admin-category-sync.php:68 +msgid "Affected Categories when switching to use Post Categories for events" +msgstr "" + +#: admin/includes/admin-category-sync.php:69 +msgid "Switch option to use Post Categories for events" +msgstr "" + +#: admin/includes/admin-category-sync.php:70 +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 +msgid "Event Categories: Synchronise with Post Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:74 +msgid "Start synchronisation" +msgstr "" + +#: admin/includes/admin-category-sync.php:75 +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 +msgid "Categories to modify" +msgstr "" + +#: admin/includes/admin-category-sync.php:91 +msgid "Categories to add" +msgstr "" + +#: admin/includes/admin-category-sync.php:92 +msgid "Categories to delete (optional)" +msgstr "" + +#: admin/includes/admin-category-sync.php:93 +msgid "Delete not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:97 +msgid "Categories with differences" +msgstr "" + +#: admin/includes/admin-category-sync.php:98 +msgid "Categories to add (optional)" +msgstr "" + +#: admin/includes/admin-category-sync.php:99 +msgid "Add not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:117 +msgid "none" +msgstr "" + +#: admin/includes/admin-import.php:49 +msgid "Import Events" +msgstr "Importuj wydarzenia" + +#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:198 +msgid "Step" +msgstr "Krok" + +#: admin/includes/admin-import.php:69 +msgid "Set import file and options" +msgstr "" + +#: admin/includes/admin-import.php:72 +#, php-format +msgid "Proceed with Step %1$s" +msgstr "" + +#: admin/includes/admin-import.php:75 +msgid "Example file" +msgstr "Przykładowy plik" + +#: admin/includes/admin-import.php:76 +#, 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 +msgid "Note" +msgstr "Uwaga" + +#: admin/includes/admin-import.php:77 +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 +msgid "Sorry, there has been an error." +msgstr "" + +#: admin/includes/admin-import.php:85 +msgid "The file does not exist, please try again." +msgstr "Plik nie został znaleziony, proszę spróbować ponownie." + +#: admin/includes/admin-import.php:93 +msgid "The uploaded file does not have the required csv extension." +msgstr "" + +#: admin/includes/admin-import.php:105 +msgid "Events review and additonal category selection" +msgstr "" + +#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +msgid "Error" +msgstr "" + +#: admin/includes/admin-import.php:111 +msgid "This CSV file cannot be imported" +msgstr "" + +#: admin/includes/admin-import.php:122 +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 +msgid "Warning" +msgstr "" + +#: admin/includes/admin-import.php:126 +#, 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[2] "" +msgstr[3] "" + +#: admin/includes/admin-import.php:134 +#, php-format +msgid "CSV line %1$s" +msgstr "" + +#: admin/includes/admin-import.php:144 +msgid "You can still import all other events listed below." +msgstr "" + +#: admin/includes/admin-import.php:163 +msgid "" +"The following category slugs are not available and will be removed from the " +"imported events" +msgstr "" + +#: admin/includes/admin-import.php:169 +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 +msgid "Import result" +msgstr "" + +#: admin/includes/admin-import.php:201 +#, php-format +msgid "Import of %1$s events successful!" +msgstr "" + +#: admin/includes/admin-import.php:202 +msgid "Go back to All Events" +msgstr "Wróć do Wszystkie wydarzenia" + +#: admin/includes/admin-import.php:206 +msgid "Errors during Import" +msgstr "" + +#: admin/includes/admin-import.php:215 +msgid "Event from CSV-line" +msgstr "" + +#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 +#: includes/widget_helptexts.php:8 +msgid "Title" +msgstr "Tytuł" + +#: admin/includes/admin-import.php:227 +msgid "Start Date" +msgstr "Termin rozpoczęcia" + +#: admin/includes/admin-import.php:228 +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 +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 +msgid "Location" +msgstr "Miejsce" + +#: admin/includes/admin-import.php:231 +msgid "Content" +msgstr "" + +#: admin/includes/admin-import.php:232 +msgid "Category slugs" +msgstr "Upr. nazwy kategorii" + +#: admin/includes/admin-import.php:274 +msgid "Header line is missing or not correct!" +msgstr "" + +#: admin/includes/admin-import.php:275 +#, 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 +#, php-format +msgid "Wrong number of items in line (%1$s items found, 6-7 required)" +msgstr "" + +#: admin/includes/admin-import.php:309 +msgid "Empty event title found" +msgstr "" + +#: admin/includes/admin-import.php:315 +msgid "Wrong date format for startdate" +msgstr "" + +#: admin/includes/admin-import.php:324 +msgid "Wrong date format for enddate" +msgstr "" + +#: admin/includes/admin-import.php:365 +msgid "Import events" +msgstr "Importuj wydarzenia" + +#: admin/includes/admin-import.php:366 +msgid "Add additional categories" +msgstr "Dodaj dodatkowe kategorie" + +#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +msgid "Import" +msgstr "Import" + +#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +msgid "No events found" +msgstr "" + +#: admin/includes/admin-import.php:432 +msgid "Saving of event failed!" +msgstr "" + +#: admin/includes/admin-main.php:60 +msgid "Event Date" +msgstr "" + +#: admin/includes/admin-main.php:64 +msgid "Author" +msgstr "Autor" + +#: admin/includes/admin-main.php:126 +#, php-format +msgid "Add a copy of %1$s" +msgstr "" + +#: admin/includes/admin-main.php:126 +msgid "Copy" +msgstr "" + +#: admin/includes/admin-new.php:51 +msgid "Event data" +msgstr "" + +#: admin/includes/admin-new.php:80 +msgid "Add Copy" +msgstr "" + +#: admin/includes/admin-new.php:84 +msgid "Date" +msgstr "Termin" + +#: admin/includes/admin-new.php:84 +msgid "required" +msgstr "wymagane" + +#: admin/includes/admin-new.php:87 +msgid "Multi-Day Event" +msgstr "Wydarzenie kilkudniowe" + +#: admin/includes/admin-new.php:106 +msgid "Event Title" +msgstr "" + +#: admin/includes/admin-new.php:121 +msgid "Event Content" +msgstr "" + +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +msgid "Event updated." +msgstr "" + +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +msgid "View event" +msgstr "" + +#: admin/includes/admin-new.php:184 +#, php-format +msgid "Event restored to revision from %1$s" +msgstr "" + +#: admin/includes/admin-new.php:185 +msgid "Event published." +msgstr "" + +#: admin/includes/admin-new.php:187 +msgid "Event submitted." +msgstr "" + +#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 +#: admin/includes/admin-new.php:190 +msgid "Preview event" +msgstr "" + +#: admin/includes/admin-new.php:188 +#, php-format +msgid "Event scheduled for: %1$s>" +msgstr "" + +#: admin/includes/admin-new.php:190 +msgid "Event draft updated." +msgstr "" + +#: admin/includes/admin-settings.php:71 +msgid "Go to Event Category switching page" +msgstr "" + +#: admin/includes/admin-settings.php:83 +msgid "Frontend Settings" +msgstr "Strona frontowa" + +#: admin/includes/admin-settings.php:84 +msgid "Admin Page Settings" +msgstr "Panel administratora" + +#: admin/includes/admin-settings.php:85 +msgid "Feed Settings" +msgstr "Ustawienia kanału" + +#: admin/includes/admin-settings.php:86 +msgid "Category Taxonomy" +msgstr "" + +#: includes/daterange_helptexts.php:7 +msgid "Year" +msgstr "Rok" + +#: includes/daterange_helptexts.php:8 +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 +#, 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 +msgid "the resulting year" +msgstr "" + +#: includes/daterange_helptexts.php:12 +msgid "Month" +msgstr "Miesiąc" + +#: includes/daterange_helptexts.php:13 +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 +msgid "the resulting month" +msgstr "" + +#: includes/daterange_helptexts.php:17 +msgid "Day" +msgstr "Dzień" + +#: includes/daterange_helptexts.php:18 +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 +msgid "Relative Year" +msgstr "" + +#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28 +#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42 +#, php-format +msgid "%1$s from now can be specified in the following notation: %2$s" +msgstr "" + +#: includes/daterange_helptexts.php:22 +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 +#, 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 +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 +#, php-format +msgid "Additionally the following values are available: %1$s" +msgstr "" + +#: includes/daterange_helptexts.php:27 +msgid "Relative Month" +msgstr "" + +#: includes/daterange_helptexts.php:28 +msgid "A relative month" +msgstr "" + +#: includes/daterange_helptexts.php:29 +msgid "number of months" +msgstr "liczba miesięcy" + +#: includes/daterange_helptexts.php:33 +msgid "Relative Week" +msgstr "" + +#: includes/daterange_helptexts.php:34 +msgid "A relative week" +msgstr "" + +#: includes/daterange_helptexts.php:35 +msgid "number of weeks" +msgstr "liczba tygodni" + +#: includes/daterange_helptexts.php:36 +msgid "the resulting week" +msgstr "" + +#: includes/daterange_helptexts.php:37 +#, 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 +msgid "Relative Day" +msgstr "" + +#: includes/daterange_helptexts.php:42 +msgid "A relative day" +msgstr "" + +#: includes/daterange_helptexts.php:43 +msgid "number of days" +msgstr "liczba dni" + +#: includes/daterange_helptexts.php:49 +msgid "Date range" +msgstr "Zakres dat" + +#: includes/daterange_helptexts.php:50 +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 +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 +#, php-format +msgid "The corresponding date_range format is: %1$s" +msgstr "" + +#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 +msgid "Upcoming" +msgstr "Nadchodzące" + +#: includes/daterange_helptexts.php:60 +msgid "This value defines a range from the actual day to the future." +msgstr "" + +#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 +msgid "Past" +msgstr "Przeszłe" + +#: includes/daterange_helptexts.php:65 +msgid "This value defines a range from the past to the previous day." +msgstr "" + +#: includes/event.php:107 +msgid "No valid start date provided" +msgstr "" + +#: includes/events_post_type.php:60 +msgid "Events" +msgstr "Wydarzenia" + +#: includes/events_post_type.php:61 +msgid "Event" +msgstr "" + +#: includes/events_post_type.php:62 +msgid "Add New" +msgstr "Dodaj nowe" + +#: includes/events_post_type.php:63 +msgid "Add New Event" +msgstr "Dodaj wydarzenie" + +#: includes/events_post_type.php:64 +msgid "Edit Event" +msgstr "Edytuj wydarzenie" + +#: includes/events_post_type.php:65 +msgid "New Event" +msgstr "" + +#: includes/events_post_type.php:66 +msgid "View Event" +msgstr "" + +#: includes/events_post_type.php:67 +msgid "View Events" +msgstr "" + +#: includes/events_post_type.php:68 +msgid "Search Events" +msgstr "" + +#: includes/events_post_type.php:70 +msgid "No events found in Trash" +msgstr "" + +#: includes/events_post_type.php:72 +msgid "All Events" +msgstr "Wszystkie wydarzenia" + +#: includes/events_post_type.php:73 +msgid "Event Archives" +msgstr "" + +#: includes/events_post_type.php:74 +msgid "Event Attributes" +msgstr "" + +#: includes/events_post_type.php:75 +msgid "Insert into event" +msgstr "" + +#: includes/events_post_type.php:76 +msgid "Uploaded to this event" +msgstr "" + +#: includes/events_post_type.php:77 +msgid "Event List" +msgstr "Lista wydarzeń" + +#: includes/events_post_type.php:78 +msgid "Filter events list" +msgstr "" + +#: includes/events_post_type.php:79 +msgid "Events list navigation" +msgstr "" + +#: includes/events_post_type.php:80 +msgid "Events list" +msgstr "" + +#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +msgid "Reset" +msgstr "" + +#: includes/filterbar.php:278 +msgid "All" +msgstr "Wszystkie" + +#: includes/filterbar.php:281 +msgid "All Dates" +msgstr "" + +#: includes/options_helptexts.php:10 +msgid "CSV File to import" +msgstr "Plik CSV do zaimportowania" + +#: includes/options_helptexts.php:12 +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 +msgid "Used date format" +msgstr "Użyty format daty" + +#: includes/options_helptexts.php:17 +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 +#, 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 +msgid "full year representation, with 4 digits" +msgstr "" + +#: includes/options_helptexts.php:21 +msgid "numeric representation of a month, with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:22 +msgid "day of the month, 2 digits with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:24 +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 +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 +msgid "Examples" +msgstr "" + +#: includes/options_helptexts.php:33 +msgid "Text for no events" +msgstr "Tekst jeśli brak wydarzeń" + +#: includes/options_helptexts.php:35 +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 +msgid "Multiday filter range" +msgstr "Zakresy filtrów terminów wielodniowych" + +#: includes/options_helptexts.php:39 +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 +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 +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 +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 +msgid "Date display" +msgstr "Wyświetlanie terminu" + +#: includes/options_helptexts.php:46 +msgid "Show the date only once per day" +msgstr "Wyświetlaj jedną datę na dzień" + +#: includes/options_helptexts.php:47 +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 +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 +msgid "HTML tags" +msgstr "Znaczniki HTML" + +#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 +#, 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 +#, 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 +msgid "Preferred language file" +msgstr "Preferowany plik językowy" + +#: includes/options_helptexts.php:62 +msgid "Load translations from general language directory first" +msgstr "Ładuj tłumaczenia najpierw z domyślnego folderu językowego" + +#: includes/options_helptexts.php:63 +#, 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 +#, 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 "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 +msgid "Events permalink slug" +msgstr "" + +#: includes/options_helptexts.php:69 +msgid "" +"With this option the slug for the events permalink URLs can be defined." +msgstr "" + +#: includes/options_helptexts.php:72 +msgid "Text for \"Show content\"" +msgstr "" + +#: includes/options_helptexts.php:73 +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 +msgid "Text for \"Hide content\"" +msgstr "" + +#: includes/options_helptexts.php:77 +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 +msgid "Disable CSS file" +msgstr "Wyłącz plik CSS" + +#: includes/options_helptexts.php:81 +#, php-format +msgid "Disable the %1$s file." +msgstr "Wyłącz plik %1$s." + +#: includes/options_helptexts.php:82 +#, 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 +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 +msgid "Date format in edit form" +msgstr "Format daty w formularzu edycji" + +#: includes/options_helptexts.php:88 +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 +msgid "The default is an empty string to use the Wordpress standard setting." +msgstr "" + +#: includes/options_helptexts.php:90 +#, 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 +msgid "Enable RSS feed" +msgstr "Włącz kanał RSS" + +#: includes/options_helptexts.php:95 +msgid "Enable support for an event RSS feed" +msgstr "" + +#: includes/options_helptexts.php:96 +msgid "This option activates a RSS feed for the events." +msgstr "" + +#: includes/options_helptexts.php:97 +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." +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)." +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." +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." +msgstr "" + +#: includes/options_helptexts.php:110 +msgid "Listed events" +msgstr "" + +#: includes/options_helptexts.php:111 +msgid "Only show upcoming events in feed" +msgstr "" + +#: includes/options_helptexts.php:112 +msgid "" +"If this option is enabled only the upcoming events are listed in the feed." +msgstr "" + +#: includes/options_helptexts.php:113 +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 "Dodaj łącze kanału RSS w nagłówku" + +#: 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:118 +msgid "This option adds a RSS feed in the html head for the events." +msgstr "" + +#: includes/options_helptexts.php:119 +msgid "There are 2 alternatives to include the RSS 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 "" + +#: 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." +msgstr "" + +#: includes/options_helptexts.php:122 +#, php-format +msgid "This option is only valid if the setting %1$s is enabled." +msgstr "" + +#: includes/options_helptexts.php:125 +msgid "Position of the RSS feed link" +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:126 +msgid "between navigation bar and events" +msgstr "pomiędzy panelem nawigacyjnym a wydarzeniami" + +#: includes/options_helptexts.php:126 +msgid "at the bottom" +msgstr "na dole" + +#: includes/options_helptexts.php:127 +msgid "" +"This option specifies the position of the RSS feed link in the event list." +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." +msgstr "" + +#: includes/options_helptexts.php:131 +msgid "Align of the RSS feed link" +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:133 +msgid "" +"This option specifies the align of the RSS feed link in the event list." +msgstr "" + +#: includes/options_helptexts.php:137 +msgid "Feed link text" +msgstr "" + +#: includes/options_helptexts.php:138 +msgid "" +"This option specifies the caption of the RSS feed link in the event list." +msgstr "" + +#: includes/options_helptexts.php:139 +msgid "" +"Insert an empty text to hide any text if you only want to show the rss " +"image." +msgstr "" + +#: includes/options_helptexts.php:143 +msgid "Feed link image" +msgstr "Obraz łącza kanału" + +#: includes/options_helptexts.php:144 +msgid "Show rss image in feed link" +msgstr "Wyświetlaj braz łącza kanału RSS" + +#: 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." +msgstr "Ta opcja określa, czy obraz powinien być wyświetlany w łączu kanału RSS przed tekstem." + +#: includes/options_helptexts.php:151 +msgid "Event Category handling" +msgstr "" + +#: includes/options_helptexts.php:152 +msgid "Use Post Categories" +msgstr "" + +#: includes/options_helptexts.php:153 +msgid "" +"Do not maintain seperate categories for the events, and use the existing " +"post categories instead." +msgstr "" + +#: includes/options_helptexts.php:154 +msgid "Attention" +msgstr "Uwaga" + +#: includes/options_helptexts.php:155 +msgid "" +"This option cannot be changed directly, but you can go to the Event Category" +" switching page from here." +msgstr "" + +#: includes/options.php:40 +msgid "events" +msgstr "" + +#: includes/options.php:41 +msgid "Show content" +msgstr "" + +#: includes/options.php:42 +msgid "Hide content" +msgstr "" + +#: includes/sc_event-list_helptexts.php:7 +msgid "event-id" +msgstr "event-id" + +#: includes/sc_event-list_helptexts.php:8 +#, 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 +msgid "year" +msgstr "rok" + +#: includes/sc_event-list_helptexts.php:11 +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 +#, 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 +msgid "category slug" +msgstr "uproszczona nazwa kategorii" + +#: includes/sc_event-list_helptexts.php:15 +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 +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 +msgid "This attribute defines the initial order of the events." +msgstr "" + +#: includes/sc_event-list_helptexts.php:20 +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 +#, 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 +#, 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 +#, 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 +#, php-format +msgid "See %1$s description if you want to define complex filters." +msgstr "" + +#: includes/sc_event-list_helptexts.php:28 +msgid "category slugs" +msgstr "uproszczone nazwy kategorii" + +#: includes/sc_event-list_helptexts.php:29 +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 +#, 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 +#, 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 +msgid "number" +msgstr "liczba" + +#: includes/sc_event-list_helptexts.php:34 +#, 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 +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 +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 +#, 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 +#, 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 +#, 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 +msgid "" +"Find below an overview of the available filterbar items and their options:" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "filterbar item" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:63 +msgid "description" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "item options" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "option values" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "default value" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "option description" +msgstr "" + +#: includes/sc_event-list_helptexts.php:47 +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 +msgid "Add an entry to show all events." +msgstr "" + +#: includes/sc_event-list_helptexts.php:49 +#: includes/sc_event-list_helptexts.php:54 +msgid "Add an entry to show all upcoming events." +msgstr "" + +#: includes/sc_event-list_helptexts.php:50 +#: includes/sc_event-list_helptexts.php:55 +msgid "Add an entry to show events in the past." +msgstr "" + +#: includes/sc_event-list_helptexts.php:51 +msgid "Set descending or ascending order of year entries." +msgstr "" + +#: includes/sc_event-list_helptexts.php:52 +msgid "Show a list of all available months." +msgstr "" + +#: includes/sc_event-list_helptexts.php:56 +msgid "Set descending or ascending order of month entries." +msgstr "" + +#: includes/sc_event-list_helptexts.php:57 +msgid "php date-formats" +msgstr "" + +#: includes/sc_event-list_helptexts.php:57 +msgid "Set the displayed date format of the month entries." +msgstr "" + +#: includes/sc_event-list_helptexts.php:58 +#, 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 +#, 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 +msgid "Show a list of all available categories." +msgstr "" + +#: includes/sc_event-list_helptexts.php:59 +msgid "Add an entry to show events from all categories." +msgstr "" + +#: includes/sc_event-list_helptexts.php:60 +msgid "A link to reset the eventlist filter to standard." +msgstr "" + +#: includes/sc_event-list_helptexts.php:60 +msgid "any text" +msgstr "" + +#: includes/sc_event-list_helptexts.php:60 +msgid "Set the caption of the link." +msgstr "" + +#: includes/sc_event-list_helptexts.php:61 +msgid "Find below an overview of the available filterbar display options:" +msgstr "" + +#: includes/sc_event-list_helptexts.php:63 +msgid "display option" +msgstr "" + +#: includes/sc_event-list_helptexts.php:63 +msgid "available for" +msgstr "" + +#: includes/sc_event-list_helptexts.php:64 +#, 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 +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 +msgid "Shows a simple link which can be clicked." +msgstr "" + +#: includes/sc_event-list_helptexts.php:67 +msgid "Find below some declaration examples with descriptions:" +msgstr "" + +#: includes/sc_event-list_helptexts.php:69 +#, 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 +#, 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 +msgid "option_name" +msgstr "" + +#: includes/sc_event-list_helptexts.php:71 +msgid "value" +msgstr "" + +#: includes/sc_event-list_helptexts.php:72 +#, 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 +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 +#, 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 +msgid "This attribute has no influence if only a single event is shown." +msgstr "" + +#: includes/sc_event-list_helptexts.php:80 +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 +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 +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 +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 +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 +#, php-format +msgid "With the standard value %1$s the full text is displayed." +msgstr "" + +#: includes/sc_event-list_helptexts.php:110 +msgid "" +"This attribute specifies if the content 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 +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" +"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n" +"\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 +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" +"\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 />\n" +"\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 +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 +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 +msgid "Event Information:" +msgstr "Informacje o wydarzeniu:" + +#: includes/widget_helptexts.php:10 +msgid "This option defines the displayed title for the widget." +msgstr "Ta opcja definiuje wyświetlany tytuł widgetu." + +#: includes/widget_helptexts.php:15 +msgid "Category Filter" +msgstr "Filtr kategorii" + +#: includes/widget_helptexts.php:17 +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 +msgid "Number of listed events" +msgstr "" + +#: includes/widget_helptexts.php:24 +msgid "The number of upcoming events to display" +msgstr "Liczba wyświetlanych wydarzeń" + +#: includes/widget_helptexts.php:29 +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 +msgid "characters" +msgstr "znaków" + +#: includes/widget_helptexts.php:31 +msgid "" +"This option defines the number of displayed characters for the event title." +msgstr "" + +#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54 +#, 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 +msgid "Show event starttime" +msgstr "Wyświetl czas rozpoczęcia wydarzenia" + +#: includes/widget_helptexts.php:39 +msgid "This option defines if the event start time will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:44 +msgid "Show event location" +msgstr "Wyświetlaj miejsce wydarzenia" + +#: includes/widget_helptexts.php:46 +msgid "This option defines if the event location will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:51 +msgid "Truncate location to" +msgstr "Obetnij miejsce do" + +#: includes/widget_helptexts.php:53 +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" +msgstr "" + +#: includes/widget_helptexts.php:61 +msgid "This option defines if the event content will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:66 +msgid "Truncate content to" +msgstr "" + +#: includes/widget_helptexts.php:68 +msgid "" +"If the event content are diplayed this option defines the number of diplayed" +" characters." +msgstr "" + +#: includes/widget_helptexts.php:69 +#, php-format +msgid "Set this value to %1$s to view the full text." +msgstr "" + +#: includes/widget_helptexts.php:74 +msgid "URL to the linked Event List page" +msgstr "Łącze do strony Lista wydarzeń" + +#: includes/widget_helptexts.php:76 +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 +msgid "Shortcode ID on linked page" +msgstr "" + +#: includes/widget_helptexts.php:83 +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 +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 +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 +msgid "Caption for the link" +msgstr "" + +#: includes/widget_helptexts.php:104 +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 +msgid "With this widget a list of upcoming events can be displayed." +msgstr "" + +#: includes/widget.php:25 +msgid "Upcoming events" +msgstr "Nadchodzące wydarzenia" + +#: includes/widget.php:38 +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 7c7d93b9fe6d89c07ce8c56c529be35f135550c2..9e8f189a6de6bdb7c1a2d605cc868c7d526292b4 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 dcbbdde321b07df1a76c7add81b8d575f0115db6..3e7a782b4acb09ea76f2c3424c218759057ceda1 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) 2017 by mibuthu +# Copyright (C) 2018 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: 2017-10-08 15:55+0200\n" -"PO-Revision-Date: 2017-10-08 13:55+0000\n" +"POT-Creation-Date: 2018-05-27 12:20+0200\n" +"PO-Revision-Date: 2018-05-27 10:20+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,137 +20,117 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: admin/admin.php:48 -msgid "Event List" -msgstr "Lista de Eventos" - -#: admin/admin.php:51 admin/includes/admin-main.php:119 -#: admin/includes/category_table.php:113 -msgid "Events" -msgstr "Eventos" - -#: admin/admin.php:51 -msgid "All Events" -msgstr "Todos os Eventos" - -#: admin/admin.php:55 admin/includes/admin-new.php:46 -msgid "Add New Event" -msgstr "Adicionar Novo Evento" - -#: admin/admin.php:55 admin/includes/admin-main.php:121 -msgid "Add New" -msgstr "Adicionar Novo" - -#: admin/admin.php:59 admin/includes/admin-categories.php:48 -msgid "Event List Categories" -msgstr "Categorias da Lista de Eventos" +#: admin/admin.php:57 +#, php-format +msgid "Errors during upgrade of plugin %1$s" +msgstr "" -#: admin/admin.php:59 admin/includes/admin-new.php:150 -#: admin/includes/event_table.php:114 -msgid "Categories" -msgstr "Categorias" +#: admin/admin.php:57 +#, php-format +msgid "Upgrade of plugin %1$s successful" +msgstr "" -#: admin/admin.php:63 admin/includes/admin-settings.php:54 +#: admin/admin.php:106 admin/includes/admin-settings.php:65 msgid "Event List Settings" msgstr "Configurações da Lista de Eventos" -#: admin/admin.php:63 +#: admin/admin.php:106 msgid "Settings" msgstr "Configurações" -#: admin/admin.php:67 admin/includes/admin-about.php:37 +#: admin/admin.php:110 admin/includes/admin-about.php:37 msgid "About Event List" msgstr "Sobre o Lista de Eventos" -#: admin/admin.php:67 +#: admin/admin.php:110 msgid "About" msgstr "Sobre" -#: admin/admin.php:87 +#: admin/admin.php:132 #, php-format msgid "%s Event" msgid_plural "%s Events" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:69 +#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 msgid "General" msgstr "Geral" -#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77 -#: admin/includes/admin-about.php:104 +#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:105 msgid "Shortcode Attributes" msgstr "Atributos de Shortcode" -#: admin/includes/admin-about.php:71 +#: admin/includes/admin-about.php:72 msgid "Help and Instructions" msgstr "Ajuda e Instruções" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:73 #, 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:73 +#: admin/includes/admin-about.php:74 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:74 +#: admin/includes/admin-about.php:75 #, 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:75 +#: admin/includes/admin-about.php:76 #, 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:76 +#: admin/includes/admin-about.php:77 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:77 +#: admin/includes/admin-about.php:78 #, 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:78 +#: admin/includes/admin-about.php:79 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:79 +#: admin/includes/admin-about.php:80 #, 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:79 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 msgid "Add links to the single events" msgstr "Adicionar links para os eventos individuais" -#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 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:80 +#: admin/includes/admin-about.php:81 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:81 +#: admin/includes/admin-about.php:82 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:82 +#: admin/includes/admin-about.php:83 #, php-format msgid "" "The default value %1$s is normally o.k. (for pages with 1 shortcode only), " @@ -158,506 +138,594 @@ 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:83 +#: admin/includes/admin-about.php:84 #, 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:85 +#: admin/includes/admin-about.php:86 #, 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:85 +#: admin/includes/admin-about.php:86 msgid "Settings page" msgstr "Configurações" -#: admin/includes/admin-about.php:91 +#: admin/includes/admin-about.php:92 msgid "About the plugin author" msgstr "Sobre o autor do plugin" -#: admin/includes/admin-about.php:93 +#: admin/includes/admin-about.php:94 #, 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:93 +#: admin/includes/admin-about.php:94 msgid "wordpress plugin site" msgstr "Página de plugins do wordpress" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:95 #, 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:94 +#: admin/includes/admin-about.php:95 msgid "wordpress plugin review site" msgstr "Site para review de plugin" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:96 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:96 admin/includes/admin-about.php:97 -#: admin/includes/admin-about.php:98 +#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 +#: admin/includes/admin-about.php:99 #, php-format msgid "Donate with %1$s" msgstr "" -#: admin/includes/admin-about.php:106 +#: admin/includes/admin-about.php:107 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:107 +#: admin/includes/admin-about.php:108 #, 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:109 +#: admin/includes/admin-about.php:110 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:123 +#: admin/includes/admin-about.php:124 msgid "Attribute name" msgstr "Nome do atributo" -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:125 msgid "Value options" msgstr "Opções de valor" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:126 msgid "Default value" msgstr "Valor padrão" -#: admin/includes/admin-about.php:126 admin/includes/admin-categories.php:194 -#: admin/includes/category_table.php:111 +#: admin/includes/admin-about.php:127 msgid "Description" msgstr "Descrição" -#: admin/includes/admin-about.php:144 includes/sc_event-list_helptexts.php:26 +#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 #: includes/sc_event-list_helptexts.php:31 msgid "Filter Syntax" msgstr "Sintaxe do Filtro" -#: admin/includes/admin-about.php:145 +#: admin/includes/admin-about.php:146 msgid "" "For date and cat filters you can specify complex filters with the following " "syntax:" msgstr "" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 #, 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:146 +#: admin/includes/admin-about.php:147 msgid "AND" msgstr "E" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "OR" msgstr "OU" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "or" msgstr "ou" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "and" msgstr "e" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:148 msgid "Examples for cat filters:" msgstr "" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:149 #, php-format msgid "Show all events with category %1$s." msgstr "" -#: admin/includes/admin-about.php:149 +#: admin/includes/admin-about.php:150 #, php-format msgid "Show all events with category %1$s or %2$s." msgstr "" -#: admin/includes/admin-about.php:150 +#: admin/includes/admin-about.php:151 #, 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:155 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 msgid "Available Date Formats" msgstr "" -#: admin/includes/admin-about.php:156 +#: admin/includes/admin-about.php:157 msgid "For date filters you can use the following date formats:" msgstr "" -#: admin/includes/admin-about.php:164 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 msgid "Available Date Range Formats" msgstr "" -#: admin/includes/admin-about.php:165 +#: admin/includes/admin-about.php:166 msgid "For date filters you can use the following daterange formats:" msgstr "" -#: admin/includes/admin-about.php:177 +#: admin/includes/admin-about.php:178 msgid "Value" msgstr "Valor" -#: admin/includes/admin-about.php:181 +#: admin/includes/admin-about.php:182 msgid "Example" msgstr "Exemplo" -#: admin/includes/admin-categories.php:51 -msgid "Edit Category" -msgstr "Editar Categoria" - -#: admin/includes/admin-categories.php:51 -msgid "Update Category" -msgstr "Atualizar Categoria" - -#: admin/includes/admin-categories.php:57 -msgid "Add New Category" -msgstr "Adicionar Nova Categoria" +#: admin/includes/admin-categories.php:38 +msgid "Synchronize with post categories" +msgstr "" -#: admin/includes/admin-categories.php:84 +#: admin/includes/admin-categories.php:46 #, php-format -msgid "Category \"%s\" deleted." -msgstr "Categoria \"%s\" removida." +msgid "%1$s categories modified (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:86 +#: admin/includes/admin-categories.php:47 #, php-format -msgid "This Category was also removed from %d events." -msgstr "Esta Categoria também foi removida de %d eventos." +msgid "%1$s categories added (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:92 +#: admin/includes/admin-categories.php:48 #, php-format -msgid "Error while deleting category \"%s\"" -msgstr "Erro ao remover categoria \"%s\"" - -#: admin/includes/admin-categories.php:103 -msgid "Sync with post categories enabled." -msgstr "Sincronizar com categorias de post habilitado." - -#: admin/includes/admin-categories.php:106 -msgid "Sync with post categories disabled." -msgstr "Sincronizar com categorias de post desabilitado" - -#: admin/includes/admin-categories.php:112 -msgid "Manual sync with post categories sucessfully finished." -msgstr "Sincronizar manualmente com categorias de post finalizado com sucesso." +msgid "%1$s categories deleted (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:125 +#: admin/includes/admin-categories.php:50 #, php-format -msgid "New Category \"%s\" was added" -msgstr "Nova Categoria \"%s\" foi adicionada" +msgid "%1$s categories not modified (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:128 +#: admin/includes/admin-categories.php:51 #, php-format -msgid "Error: New Category \"%s\" could not be added" -msgstr "Erro: Nova Categoria \"%s\" não pode ser adicionada" +msgid "%1$s categories not added (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:134 +#: admin/includes/admin-categories.php:52 #, php-format -msgid "Category \"%s\" was modified" -msgstr "Categoria \"%s\" foi modificada" +msgid "%1$s categories not deleted (%2$s)" +msgstr "" -#: admin/includes/admin-categories.php:137 -#, php-format -msgid "Error: Category \"%s\" could not be modified" -msgstr "Erro: Categoria \"%s\" não pode ser modificada" +#: admin/includes/admin-categories.php:55 +msgid "An Error occured during the category sync" +msgstr "" -#: admin/includes/admin-categories.php:144 -msgid "Categories are automatically synced with the post categories." +#: admin/includes/admin-categories.php:59 +msgid "Category sync finished" msgstr "" -#: admin/includes/admin-categories.php:145 +#: admin/includes/admin-category-sync.php:45 +msgid "Error: You are not allowed to view this page!" +msgstr "" + +#: admin/includes/admin-category-sync.php:62 +msgid "Affected Categories when switching to seperate Event Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:63 +msgid "Switch option to seperate Event Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:64 msgid "" -"Because of this all options to add new categories or editing existing " -"categories are disabled." +"If you proceed, all post categories will be copied and all events will be " +"re-assigned to this new categories." msgstr "" -#: admin/includes/admin-categories.php:146 +#: admin/includes/admin-category-sync.php:65 msgid "" -"If you want to manually edit the categories you have to disable this option." +"Afterwards the event categories are independent of the post categories." msgstr "" -#: admin/includes/admin-categories.php:173 -msgid "The name is how it appears on your site." -msgstr "O nome é como é exibido em seu site." +#: admin/includes/admin-category-sync.php:68 +msgid "Affected Categories when switching to use Post Categories for events" +msgstr "" + +#: admin/includes/admin-category-sync.php:69 +msgid "Switch option to use Post Categories for events" +msgstr "" -#: admin/includes/admin-categories.php:178 +#: admin/includes/admin-category-sync.php:70 msgid "" -"The “slug” is the URL-friendly version of the name. It is usually all " -"lowercase and contains only letters, numbers, and hyphens." +"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-categories.php:191 +#: admin/includes/admin-category-sync.php:73 +msgid "Event Categories: Synchronise with Post Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:74 +msgid "Start synchronisation" +msgstr "" + +#: admin/includes/admin-category-sync.php:75 msgid "" -"Categories can have a hierarchy. You might have a Jazz category, and under " -"that have children categories for Bebop and Big Band. Totally optional." +"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 +msgid "Categories to modify" msgstr "" -#: admin/includes/admin-categories.php:241 -msgid "Apply" -msgstr "Aplicar" +#: admin/includes/admin-category-sync.php:91 +msgid "Categories to add" +msgstr "" + +#: admin/includes/admin-category-sync.php:92 +msgid "Categories to delete (optional)" +msgstr "" + +#: admin/includes/admin-category-sync.php:93 +msgid "Delete not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:97 +msgid "Categories with differences" +msgstr "" + +#: admin/includes/admin-category-sync.php:98 +msgid "Categories to add (optional)" +msgstr "" -#: admin/includes/admin-categories.php:251 -msgid "Do a manual sync with post categories" -msgstr "Fazer sincronia manual com categorias de post" +#: admin/includes/admin-category-sync.php:99 +msgid "Add not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:117 +msgid "none" +msgstr "" -#: admin/includes/admin-import.php:45 +#: admin/includes/admin-import.php:49 msgid "Import Events" msgstr "Importar Eventos" -#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:118 +#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:198 msgid "Step" msgstr "Passo" -#: admin/includes/admin-import.php:65 +#: admin/includes/admin-import.php:69 msgid "Set import file and options" msgstr "Informar arquivo de importação e opções" -#: admin/includes/admin-import.php:68 +#: admin/includes/admin-import.php:72 #, php-format msgid "Proceed with Step %1$s" msgstr "" -#: admin/includes/admin-import.php:71 +#: admin/includes/admin-import.php:75 msgid "Example file" msgstr "Arquivo de exemplo" -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:76 #, php-format msgid "" "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)" msgstr "" -#: admin/includes/admin-import.php:73 +#: admin/includes/admin-import.php:77 msgid "Note" msgstr "Nota" -#: admin/includes/admin-import.php:73 +#: admin/includes/admin-import.php:77 msgid "" "Do not change the column header and separator line (first two lines), " "otherwise the import will fail!" msgstr "" -#: admin/includes/admin-import.php:80 admin/includes/admin-import.php:88 -#: admin/includes/admin-import.php:101 +#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 msgid "Sorry, there has been an error." msgstr "" -#: admin/includes/admin-import.php:81 +#: admin/includes/admin-import.php:85 msgid "The file does not exist, please try again." msgstr "" -#: admin/includes/admin-import.php:89 -msgid "The file is not a CSV file." +#: admin/includes/admin-import.php:93 +msgid "The uploaded file does not have the required csv extension." msgstr "" -#: admin/includes/admin-import.php:118 +#: admin/includes/admin-import.php:105 msgid "Events review and additonal category selection" msgstr "" -#: admin/includes/admin-import.php:121 +#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +msgid "Error" +msgstr "" + +#: admin/includes/admin-import.php:111 +msgid "This CSV file cannot be imported" +msgstr "" + +#: admin/includes/admin-import.php:122 +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 +msgid "Warning" +msgstr "" + +#: admin/includes/admin-import.php:126 +#, 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 +#, php-format +msgid "CSV line %1$s" +msgstr "" + +#: admin/includes/admin-import.php:144 +msgid "You can still import all other events listed below." +msgstr "" + +#: admin/includes/admin-import.php:163 msgid "" -"Warning: The following category slugs are not available and will be removed " -"from the imported events:" +"The following category slugs are not available and will be removed from the " +"imported events" msgstr "" -#: admin/includes/admin-import.php:127 +#: admin/includes/admin-import.php:169 msgid "" "If you want to keep these categories, please create these Categories first " "and do the import afterwards." msgstr "" -#: admin/includes/admin-import.php:145 -msgid "Add additional categories" +#: admin/includes/admin-import.php:198 +msgid "Import result" msgstr "" -#: admin/includes/admin-import.php:146 -msgid "Import events" +#: admin/includes/admin-import.php:201 +#, php-format +msgid "Import of %1$s events successful!" msgstr "" -#: admin/includes/admin-import.php:160 -msgid "Import with errors!" -msgstr "Importar com erros!" +#: admin/includes/admin-import.php:202 +msgid "Go back to All Events" +msgstr "Voltar para Todos os Eventos" -#: admin/includes/admin-import.php:161 -msgid "Sorry, an error occurred during import!" +#: admin/includes/admin-import.php:206 +msgid "Errors during Import" msgstr "" -#: admin/includes/admin-import.php:165 -msgid "Import successful!" -msgstr "Importado com sucesso!" - -#: admin/includes/admin-import.php:166 -msgid "Go back to All Events" -msgstr "Voltar para Todos os Eventos" +#: admin/includes/admin-import.php:215 +msgid "Event from CSV-line" +msgstr "" -#: admin/includes/admin-import.php:173 admin/includes/admin-new.php:111 -#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 +#: includes/widget_helptexts.php:8 msgid "Title" msgstr "Título" -#: admin/includes/admin-import.php:174 +#: admin/includes/admin-import.php:227 msgid "Start Date" msgstr "Início" -#: admin/includes/admin-import.php:175 +#: admin/includes/admin-import.php:228 msgid "End Date" msgstr "Término" -#: admin/includes/admin-import.php:176 admin/includes/admin-new.php:124 -#: includes/options_helptexts.php:48 includes/options_helptexts.php:49 +#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 +#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 msgid "Time" msgstr "Hora" -#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:128 -#: admin/includes/event_table.php:112 includes/options_helptexts.php:53 -#: includes/options_helptexts.php:54 +#: 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 msgid "Location" msgstr "Localização" -#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:132 -#: admin/includes/event_table.php:113 -msgid "Details" -msgstr "Detalhes" +#: admin/includes/admin-import.php:231 +msgid "Content" +msgstr "" -#: admin/includes/admin-import.php:179 +#: admin/includes/admin-import.php:232 msgid "Category slugs" msgstr "" -#: admin/includes/admin-import.php:218 +#: admin/includes/admin-import.php:274 +msgid "Header line is missing or not correct!" +msgstr "" + +#: admin/includes/admin-import.php:275 #, php-format msgid "" -"There was an error at line %1$s when reading this CSV file: Header line is " -"missing or not correct!" +"Have a look at the %1$sexample file%2$s to see the correct header line " +"format." +msgstr "" + +#: admin/includes/admin-import.php:281 +#, php-format +msgid "Wrong number of items in line (%1$s items found, 6-7 required)" +msgstr "" + +#: admin/includes/admin-import.php:309 +msgid "Empty event title found" +msgstr "" + +#: admin/includes/admin-import.php:315 +msgid "Wrong date format for startdate" +msgstr "" + +#: admin/includes/admin-import.php:324 +msgid "Wrong date format for enddate" +msgstr "" + +#: admin/includes/admin-import.php:365 +msgid "Import events" +msgstr "" + +#: admin/includes/admin-import.php:366 +msgid "Add additional categories" msgstr "" -#: admin/includes/admin-import.php:253 admin/includes/admin-main.php:122 +#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 msgid "Import" msgstr "Importar" -#: admin/includes/admin-main.php:116 -msgid "Edit Event" -msgstr "Editar Evento" +#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +msgid "No events found" +msgstr "" + +#: admin/includes/admin-import.php:432 +msgid "Saving of event failed!" +msgstr "" -#: admin/includes/admin-main.php:116 admin/includes/event_table.php:75 -msgid "Duplicate" -msgstr "Duplicar" +#: admin/includes/admin-main.php:60 +msgid "Event Date" +msgstr "" + +#: admin/includes/admin-main.php:64 +msgid "Author" +msgstr "Autor" -#: admin/includes/admin-new.php:48 +#: admin/includes/admin-main.php:126 #, php-format -msgid "Duplicate of event id:%d" -msgstr "Duplicar evento id:%d" +msgid "Add a copy of %1$s" +msgstr "" -#: admin/includes/admin-new.php:111 admin/includes/admin-new.php:115 -msgid "required" -msgstr "obrigatório" +#: admin/includes/admin-main.php:126 +msgid "Copy" +msgstr "" + +#: admin/includes/admin-new.php:51 +msgid "Event data" +msgstr "" + +#: admin/includes/admin-new.php:80 +msgid "Add Copy" +msgstr "" -#: admin/includes/admin-new.php:115 admin/includes/event_table.php:110 +#: admin/includes/admin-new.php:84 msgid "Date" msgstr "Data" -#: admin/includes/admin-new.php:118 +#: admin/includes/admin-new.php:84 +msgid "required" +msgstr "obrigatório" + +#: admin/includes/admin-new.php:87 msgid "Multi-Day Event" msgstr "Evento de vários dias" -#: admin/includes/admin-new.php:148 admin/includes/admin-new.php:165 -msgid "Publish" -msgstr "Publicar" +#: admin/includes/admin-new.php:106 +msgid "Event Title" +msgstr "" + +#: admin/includes/admin-new.php:121 +msgid "Event Content" +msgstr "" + +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +msgid "Event updated." +msgstr "" + +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +msgid "View event" +msgstr "" + +#: admin/includes/admin-new.php:184 +#, php-format +msgid "Event restored to revision from %1$s" +msgstr "" + +#: admin/includes/admin-new.php:185 +msgid "Event published." +msgstr "" -#: admin/includes/admin-new.php:165 -msgid "Update" -msgstr "Atualizar" +#: admin/includes/admin-new.php:187 +msgid "Event submitted." +msgstr "" -#: admin/includes/admin-new.php:167 -msgid "Cancel" -msgstr "Cancelar" +#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 +#: admin/includes/admin-new.php:190 +msgid "Preview event" +msgstr "" -#: admin/includes/admin-new.php:180 -msgid "No categories available." -msgstr "Nenhuma categoria disponível." +#: admin/includes/admin-new.php:188 +#, php-format +msgid "Event scheduled for: %1$s>" +msgstr "" -#: admin/includes/admin-new.php:226 -msgid "Goto Category Settings" -msgstr "Ir para Configurações de Categoria" +#: admin/includes/admin-new.php:190 +msgid "Event draft updated." +msgstr "" -#: admin/includes/admin-settings.php:42 -msgid "Settings saved." -msgstr "Configurações salvas." +#: admin/includes/admin-settings.php:71 +msgid "Go to Event Category switching page" +msgstr "" -#: admin/includes/admin-settings.php:70 +#: admin/includes/admin-settings.php:83 msgid "Frontend Settings" msgstr "Configurações de Frontend" -#: admin/includes/admin-settings.php:71 +#: admin/includes/admin-settings.php:84 msgid "Admin Page Settings" msgstr "Configurações do Administrador" -#: admin/includes/admin-settings.php:72 +#: admin/includes/admin-settings.php:85 msgid "Feed Settings" msgstr "Configurações de Feed" -#: admin/includes/category_table.php:27 admin/includes/event_table.php:29 -msgid "event" -msgstr "evento" - -#: admin/includes/category_table.php:28 admin/includes/event_table.php:30 -msgid "events" -msgstr "eventos" - -#: admin/includes/category_table.php:73 admin/includes/event_table.php:74 -msgid "Edit" -msgstr "Editar" - -#: admin/includes/category_table.php:74 admin/includes/category_table.php:148 -#: admin/includes/event_table.php:76 admin/includes/event_table.php:149 -msgid "Delete" -msgstr "Remover" - -#: admin/includes/category_table.php:110 -msgid "Name" -msgstr "Nome" - -#: admin/includes/category_table.php:112 -msgid "Slug" -msgstr "Slug" - -#: admin/includes/event_table.php:115 -msgid "Author" -msgstr "Autor" - -#: admin/includes/event_table.php:116 -msgid "Published" -msgstr "Publicado" - -#: admin/includes/event_table.php:180 -msgid "Filter" -msgstr "Filtro" - -#: admin/includes/event_table.php:300 -#, php-format -msgid "%s ago" -msgstr "%s atrás" +#: admin/includes/admin-settings.php:86 +msgid "Category Taxonomy" +msgstr "" #: includes/daterange_helptexts.php:7 msgid "Year" @@ -802,7 +870,7 @@ msgstr "Este valor defina um intervalo sem qualquer limite." msgid "The corresponding date_range format is: %1$s" msgstr "" -#: includes/daterange_helptexts.php:59 includes/filterbar.php:291 +#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 msgid "Upcoming" msgstr "Próximos" @@ -810,7 +878,7 @@ msgstr "Próximos" msgid "This value defines a range from the actual day to the future." msgstr "" -#: includes/daterange_helptexts.php:64 includes/filterbar.php:295 +#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 msgid "Past" msgstr "Passado" @@ -818,146 +886,238 @@ msgstr "Passado" msgid "This value defines a range from the past to the previous day." msgstr "" -#: includes/filterbar.php:233 includes/sc_event-list_helptexts.php:60 +#: includes/event.php:107 +msgid "No valid start date provided" +msgstr "" + +#: includes/events_post_type.php:60 +msgid "Events" +msgstr "Eventos" + +#: includes/events_post_type.php:61 +msgid "Event" +msgstr "" + +#: includes/events_post_type.php:62 +msgid "Add New" +msgstr "Adicionar Novo" + +#: includes/events_post_type.php:63 +msgid "Add New Event" +msgstr "Adicionar Novo Evento" + +#: includes/events_post_type.php:64 +msgid "Edit Event" +msgstr "Editar Evento" + +#: includes/events_post_type.php:65 +msgid "New Event" +msgstr "" + +#: includes/events_post_type.php:66 +msgid "View Event" +msgstr "" + +#: includes/events_post_type.php:67 +msgid "View Events" +msgstr "" + +#: includes/events_post_type.php:68 +msgid "Search Events" +msgstr "" + +#: includes/events_post_type.php:70 +msgid "No events found in Trash" +msgstr "" + +#: includes/events_post_type.php:72 +msgid "All Events" +msgstr "Todos os Eventos" + +#: includes/events_post_type.php:73 +msgid "Event Archives" +msgstr "" + +#: includes/events_post_type.php:74 +msgid "Event Attributes" +msgstr "" + +#: includes/events_post_type.php:75 +msgid "Insert into event" +msgstr "" + +#: includes/events_post_type.php:76 +msgid "Uploaded to this event" +msgstr "" + +#: includes/events_post_type.php:77 +msgid "Event List" +msgstr "Lista de Eventos" + +#: includes/events_post_type.php:78 +msgid "Filter events list" +msgstr "" + +#: includes/events_post_type.php:79 +msgid "Events list navigation" +msgstr "" + +#: includes/events_post_type.php:80 +msgid "Events list" +msgstr "" + +#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 msgid "Reset" msgstr "" -#: includes/filterbar.php:282 +#: includes/filterbar.php:278 msgid "All" msgstr "Tudo" -#: includes/filterbar.php:285 -msgid "Show all dates" -msgstr "Exibir todas as datas" - -#: includes/filterbar.php:285 -msgid "Show all categories" -msgstr "Exibir todas as categorias" +#: includes/filterbar.php:281 +msgid "All Dates" +msgstr "" -#: includes/options_helptexts.php:11 -msgid "Sync Categories" -msgstr "Sincronizar Categorias" +#: includes/options_helptexts.php:10 +msgid "CSV File to import" +msgstr "Arquivo CSV a importar" #: includes/options_helptexts.php:12 -msgid "Keep event categories in sync with post categories automatically" +msgid "Please select the file which contains the event data in CSV format." msgstr "" -#: includes/options_helptexts.php:13 -msgid "Attention" -msgstr "Atenção" +#: includes/options_helptexts.php:15 +msgid "Used date format" +msgstr "Formato de data usado" -#: includes/options_helptexts.php:14 +#: includes/options_helptexts.php:17 msgid "" -"Please note that this option will delete all categories which are not " -"available in the post categories! Existing Categories with the same slug " -"will be updated." +"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 -msgid "CSV File to import" -msgstr "Arquivo CSV a importar" +#, 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 -msgid "Please select the file which contains the event data in CSV format." +msgid "full year representation, with 4 digits" msgstr "" -#: includes/options_helptexts.php:23 -msgid "Used date format" -msgstr "Formato de data usado" +#: includes/options_helptexts.php:21 +msgid "numeric representation of a month, with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:22 +msgid "day of the month, 2 digits with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:24 +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 msgid "" -"With this option the used date format for event start and end date given in " -"the CSV file can be specified." +"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 +msgid "Examples" msgstr "" -#: includes/options_helptexts.php:29 +#: includes/options_helptexts.php:33 msgid "Text for no events" msgstr "Texto para \"nenhum evento\"" -#: includes/options_helptexts.php:31 +#: includes/options_helptexts.php:35 msgid "" "This option defines the displayed text when no events are available for the " "selected view." msgstr "" -#: includes/options_helptexts.php:34 +#: includes/options_helptexts.php:38 msgid "Multiday filter range" msgstr "" -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:39 msgid "Use the complete event range in the date filter" msgstr "" -#: includes/options_helptexts.php:36 +#: includes/options_helptexts.php:40 msgid "" "This option defines if the complete range of a multiday event shall be " "considered in the date filter." msgstr "" -#: includes/options_helptexts.php:37 +#: includes/options_helptexts.php:41 msgid "" "If disabled, only the start day of an event is considered in the filter." msgstr "" -#: includes/options_helptexts.php:38 +#: includes/options_helptexts.php:42 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:41 +#: includes/options_helptexts.php:45 msgid "Date display" msgstr "Exibição de data" -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:46 msgid "Show the date only once per day" msgstr "" -#: includes/options_helptexts.php:43 +#: includes/options_helptexts.php:47 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:44 +#: includes/options_helptexts.php:48 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:47 +#: includes/options_helptexts.php:51 msgid "HTML tags" msgstr "Tags HTML" -#: includes/options_helptexts.php:48 includes/options_helptexts.php:53 +#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 #, php-format msgid "Allow HTML tags in the event field \"%1$s\"" msgstr "" -#: includes/options_helptexts.php:49 includes/options_helptexts.php:54 +#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 #, php-format msgid "" "This option specifies if HTML tags are allowed in the event field \"%1$s\"." msgstr "" -#: includes/options_helptexts.php:57 +#: includes/options_helptexts.php:61 msgid "Preferred language file" msgstr "" -#: includes/options_helptexts.php:58 +#: includes/options_helptexts.php:62 msgid "Load translations from general language directory first" msgstr "" -#: includes/options_helptexts.php:59 +#: includes/options_helptexts.php:63 #, 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:60 +#: includes/options_helptexts.php:64 #, php-format msgid "" "If you want to load your own language file from the general language " @@ -965,251 +1125,288 @@ msgid "" "language directory, you have to enable this option." msgstr "" -#: includes/options_helptexts.php:64 -msgid "Text for \"Show details\"" +#: includes/options_helptexts.php:68 +msgid "Events permalink slug" msgstr "" -#: includes/options_helptexts.php:65 +#: includes/options_helptexts.php:69 msgid "" -"With this option the displayed text for the link to show the event details " +"With this option the slug for the events permalink URLs can be defined." +msgstr "" + +#: includes/options_helptexts.php:72 +msgid "Text for \"Show content\"" +msgstr "" + +#: includes/options_helptexts.php:73 +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:68 -msgid "Text for \"Hide details\"" +#: includes/options_helptexts.php:76 +msgid "Text for \"Hide content\"" msgstr "" -#: includes/options_helptexts.php:69 +#: includes/options_helptexts.php:77 msgid "" -"With this option the displayed text for the link to hide the event details " +"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:72 +#: includes/options_helptexts.php:80 msgid "Disable CSS file" msgstr "Desativar arquivo CSS" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:81 #, php-format msgid "Disable the %1$s file." msgstr "" -#: includes/options_helptexts.php:74 +#: includes/options_helptexts.php:82 #, php-format msgid "With this option you can disable the inclusion of the %1$s file." msgstr "" -#: includes/options_helptexts.php:75 +#: includes/options_helptexts.php:83 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:79 +#: includes/options_helptexts.php:87 msgid "Date format in edit form" msgstr "" -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:88 msgid "" "This option sets the displayed date format for the event date fields in the " "event new / edit form." msgstr "" -#: includes/options_helptexts.php:81 +#: includes/options_helptexts.php:89 msgid "The default is an empty string to use the Wordpress standard setting." msgstr "" -#: includes/options_helptexts.php:82 +#: includes/options_helptexts.php:90 #, php-format msgid "" "All available options to specify the date format can be found %1$shere%2$s." msgstr "" -#: includes/options_helptexts.php:86 includes/options_helptexts.php:114 +#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 msgid "Enable RSS feed" msgstr "Habilitar Feed RSS" -#: includes/options_helptexts.php:87 +#: includes/options_helptexts.php:95 msgid "Enable support for an event RSS feed" msgstr "" -#: includes/options_helptexts.php:88 +#: includes/options_helptexts.php:96 msgid "This option activates a RSS feed for the events." msgstr "" -#: includes/options_helptexts.php:89 +#: includes/options_helptexts.php:97 msgid "" "You have to enable this option if you want to use one of the RSS feed " "features." msgstr "" -#: includes/options_helptexts.php:92 +#: includes/options_helptexts.php:100 msgid "Feed name" msgstr "Nome do feed" -#: includes/options_helptexts.php:93 +#: includes/options_helptexts.php:101 #, php-format msgid "This option sets the feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:94 +#: 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 "" -#: includes/options_helptexts.php:97 +#: includes/options_helptexts.php:105 msgid "Feed Description" msgstr "Descrição do feed" -#: includes/options_helptexts.php:98 +#: includes/options_helptexts.php:106 #, php-format msgid "This options set the feed description. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:99 +#: 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 "" -#: includes/options_helptexts.php:102 +#: includes/options_helptexts.php:110 msgid "Listed events" msgstr "Eventos listados" -#: includes/options_helptexts.php:103 +#: includes/options_helptexts.php:111 msgid "Only show upcoming events in feed" msgstr "" -#: includes/options_helptexts.php:104 +#: includes/options_helptexts.php:112 msgid "" "If this option is enabled only the upcoming events are listed in the feed." msgstr "" -#: includes/options_helptexts.php:105 +#: includes/options_helptexts.php:113 msgid "If disabled all events (upcoming and past) will be listed." msgstr "" -#: includes/options_helptexts.php:108 +#: includes/options_helptexts.php:116 msgid "Add RSS feed link in head" msgstr "" -#: includes/options_helptexts.php:109 +#: includes/options_helptexts.php:117 msgid "Add RSS feed link in the html head" msgstr "" -#: includes/options_helptexts.php:110 +#: includes/options_helptexts.php:118 msgid "This option adds a RSS feed in the html head for the events." msgstr "" -#: includes/options_helptexts.php:111 +#: includes/options_helptexts.php:119 msgid "There are 2 alternatives to include the RSS feed" msgstr "" -#: includes/options_helptexts.php:112 +#: 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 "" -#: includes/options_helptexts.php:113 +#: 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." msgstr "" -#: includes/options_helptexts.php:114 +#: includes/options_helptexts.php:122 #, php-format msgid "This option is only valid if the setting %1$s is enabled." msgstr "" -#: includes/options_helptexts.php:117 +#: includes/options_helptexts.php:125 msgid "Position of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "at the top (above the navigation bar)" msgstr "" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "between navigation bar and events" msgstr "" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "at the bottom" msgstr "" -#: includes/options_helptexts.php:119 +#: includes/options_helptexts.php:127 msgid "" "This option specifies the position of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:120 includes/options_helptexts.php:126 -#: includes/options_helptexts.php:132 includes/options_helptexts.php:138 +#: 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 "" -#: includes/options_helptexts.php:123 +#: includes/options_helptexts.php:131 msgid "Align of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "left" msgstr "" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "center" msgstr "" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "right" msgstr "" -#: includes/options_helptexts.php:125 +#: includes/options_helptexts.php:133 msgid "" "This option specifies the align of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:129 +#: includes/options_helptexts.php:137 msgid "Feed link text" msgstr "Texto do link do Feed" -#: includes/options_helptexts.php:130 +#: includes/options_helptexts.php:138 msgid "" "This option specifies the caption of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:131 +#: includes/options_helptexts.php:139 msgid "" "Insert an empty text to hide any text if you only want to show the rss " "image." msgstr "" -#: includes/options_helptexts.php:135 +#: includes/options_helptexts.php:143 msgid "Feed link image" msgstr "Imagem do link do Feed" -#: includes/options_helptexts.php:136 +#: includes/options_helptexts.php:144 msgid "Show rss image in feed link" msgstr "Exibir imagem rss no link do feed" -#: includes/options_helptexts.php:137 +#: 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." msgstr "" -#: includes/options.php:43 -msgid "Show details" +#: includes/options_helptexts.php:151 +msgid "Event Category handling" +msgstr "" + +#: includes/options_helptexts.php:152 +msgid "Use Post Categories" msgstr "" -#: includes/options.php:44 -msgid "Hide details" +#: includes/options_helptexts.php:153 +msgid "" +"Do not maintain seperate categories for the events, and use the existing " +"post categories instead." +msgstr "" + +#: includes/options_helptexts.php:154 +msgid "Attention" +msgstr "Atenção" + +#: includes/options_helptexts.php:155 +msgid "" +"This option cannot be changed directly, but you can go to the Event Category" +" switching page from here." +msgstr "" + +#: includes/options.php:40 +msgid "events" +msgstr "" + +#: includes/options.php:41 +msgid "Show content" +msgstr "" + +#: includes/options.php:42 +msgid "Hide content" msgstr "" #: includes/sc_event-list_helptexts.php:7 @@ -1220,7 +1417,7 @@ msgstr "" #, 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-details view of " +"%1$s) is provided for this attribute, directly the event-content view of " "this event is shown." msgstr "" @@ -1576,14 +1773,14 @@ msgstr "" #: includes/sc_event-list_helptexts.php:100 msgid "" -"This attribute specifies if the details are displayed in the event list.<br />\n" -"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n" -"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event" +"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 msgid "" -"This attribute specifies if the details should be truncate to the given " +"This attribute specifies if the content should be truncate to the given " "number of characters in the event list." msgstr "" @@ -1594,10 +1791,10 @@ msgstr "" #: includes/sc_event-list_helptexts.php:110 msgid "" -"This attribute specifies if the details should be collapsed initially.<br />\n" -"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n" -"\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the details.<br />\n" -"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view." +"This attribute specifies if the content 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 @@ -1605,7 +1802,7 @@ 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" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n" -"\t With \"events_with_details_only\" the link is only added in the event list for events with event details." +"\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 @@ -1630,7 +1827,7 @@ msgid "" "\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:134 +#: includes/sc_event-list.php:135 msgid "Event Information:" msgstr "Informação do Evento:" @@ -1707,20 +1904,20 @@ msgid "" msgstr "" #: includes/widget_helptexts.php:59 -msgid "Show event details" -msgstr "Exibir detalhes do evento" +msgid "Show event content" +msgstr "" #: includes/widget_helptexts.php:61 -msgid "This option defines if the event details will be displayed." +msgid "This option defines if the event content will be displayed." msgstr "" #: includes/widget_helptexts.php:66 -msgid "Truncate details to" -msgstr "Truncar detalhes em" +msgid "Truncate content to" +msgstr "" #: includes/widget_helptexts.php:68 msgid "" -"If the event details are diplayed this option defines the number of diplayed" +"If the event content are diplayed this option defines the number of diplayed" " characters." msgstr "" 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 new file mode 100644 index 0000000000000000000000000000000000000000..d6d3e4da3b8ba61d140b4bd6e1aa9402fbf3f001 Binary files /dev/null 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 new file mode 100644 index 0000000000000000000000000000000000000000..09cdda2fa9eaae51ca08465c1bbb6d0f8ad138bd --- /dev/null +++ b/wp-content/plugins/event-list/languages/event-list-sk_SK.po @@ -0,0 +1,1988 @@ +# Translation file for the 'Event List' WordPress plugin +# Copyright (C) 2018 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 +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" +"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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"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 +#, php-format +msgid "Errors during upgrade of plugin %1$s" +msgstr "" + +#: admin/admin.php:57 +#, php-format +msgid "Upgrade of plugin %1$s successful" +msgstr "" + +#: admin/admin.php:106 admin/includes/admin-settings.php:65 +msgid "Event List Settings" +msgstr "Nastavenia zoznamu udalostí" + +#: admin/admin.php:106 +msgid "Settings" +msgstr "Nastavenia" + +#: admin/admin.php:110 admin/includes/admin-about.php:37 +msgid "About Event List" +msgstr "O plugine Zoznam udalostí" + +#: admin/admin.php:110 +msgid "About" +msgstr "O plugine" + +#: admin/admin.php:132 +#, php-format +msgid "%s Event" +msgid_plural "%s Events" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 +msgid "General" +msgstr "Všeobecné" + +#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:105 +msgid "Shortcode Attributes" +msgstr "Atribúty skráteného kódu" + +#: admin/includes/admin-about.php:72 +msgid "Help and Instructions" +msgstr "Pomocník a inštrukcie" + +#: admin/includes/admin-about.php:73 +#, 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 +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 +#, 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 +#, 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 +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 +#, 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 +msgid "The available widget options are described in their tooltip text." +msgstr "" + +#: admin/includes/admin-about.php:80 +#, 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 +msgid "Add links to the single events" +msgstr "Pridaj odkaz na na akciu" + +#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 +msgid "Add a link to the Event List page" +msgstr "Pridaj odkaz na stránku akcií" + +#: admin/includes/admin-about.php:81 +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 +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 +#, 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 +#, 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 +#, 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 +msgid "Settings page" +msgstr "Stránka nastavení" + +#: admin/includes/admin-about.php:92 +msgid "About the plugin author" +msgstr "" + +#: admin/includes/admin-about.php:94 +#, 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" +msgstr "" + +#: admin/includes/admin-about.php:95 +#, 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" +msgstr "" + +#: admin/includes/admin-about.php:96 +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 +#, php-format +msgid "Donate with %1$s" +msgstr "" + +#: admin/includes/admin-about.php:107 +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 +#, 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 +msgid "" +"Below you can find a list of all supported attributes with their " +"descriptions and available options:" +msgstr "" + +#: admin/includes/admin-about.php:124 +msgid "Attribute name" +msgstr "Názov atribútu" + +#: admin/includes/admin-about.php:125 +msgid "Value options" +msgstr "Moznosti hodnoty" + +#: admin/includes/admin-about.php:126 +msgid "Default value" +msgstr "Predvolená hodnota" + +#: admin/includes/admin-about.php:127 +msgid "Description" +msgstr "Popis" + +#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 +#: includes/sc_event-list_helptexts.php:31 +msgid "Filter Syntax" +msgstr "Syntax filtra" + +#: admin/includes/admin-about.php:146 +msgid "" +"For date and cat filters you can specify complex filters with the following " +"syntax:" +msgstr "" + +#: admin/includes/admin-about.php:147 +#, 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 +msgid "AND" +msgstr "A" + +#: admin/includes/admin-about.php:147 +msgid "OR" +msgstr "ALEBO" + +#: admin/includes/admin-about.php:147 +msgid "or" +msgstr "alebo" + +#: admin/includes/admin-about.php:147 +msgid "and" +msgstr "a" + +#: admin/includes/admin-about.php:148 +msgid "Examples for cat filters:" +msgstr "" + +#: admin/includes/admin-about.php:149 +#, php-format +msgid "Show all events with category %1$s." +msgstr "" + +#: admin/includes/admin-about.php:150 +#, php-format +msgid "Show all events with category %1$s or %2$s." +msgstr "" + +#: admin/includes/admin-about.php:151 +#, 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 +msgid "Available Date Formats" +msgstr "Dostupné formáty dátumu" + +#: admin/includes/admin-about.php:157 +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 +msgid "Available Date Range Formats" +msgstr "Formáty rozmedzia dátumov " + +#: admin/includes/admin-about.php:166 +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 +msgid "Value" +msgstr "Hodnota" + +#: admin/includes/admin-about.php:182 +msgid "Example" +msgstr "Príklad" + +#: admin/includes/admin-categories.php:38 +msgid "Synchronize with post categories" +msgstr "Synchronizovať s kategóriami príspevkov" + +#: admin/includes/admin-categories.php:46 +#, php-format +msgid "%1$s categories modified (%2$s)" +msgstr "%1$s modifik. kategórie (%2$s)" + +#: admin/includes/admin-categories.php:47 +#, php-format +msgid "%1$s categories added (%2$s)" +msgstr "%1$s pridané kategórie (%2$s)" + +#: admin/includes/admin-categories.php:48 +#, php-format +msgid "%1$s categories deleted (%2$s)" +msgstr "%1$s zmazané kategórie (%2$s)" + +#: admin/includes/admin-categories.php:50 +#, php-format +msgid "%1$s categories not modified (%2$s)" +msgstr "%1$s nezmenené kategórie (%2$s)" + +#: admin/includes/admin-categories.php:51 +#, php-format +msgid "%1$s categories not added (%2$s)" +msgstr "%1$s nepridané kategórie (%2$s)" + +#: admin/includes/admin-categories.php:52 +#, php-format +msgid "%1$s categories not deleted (%2$s)" +msgstr "%1$s nezmazané kategórie (%2$s)" + +#: admin/includes/admin-categories.php:55 +msgid "An Error occured during the category sync" +msgstr "" + +#: admin/includes/admin-categories.php:59 +msgid "Category sync finished" +msgstr "" + +#: admin/includes/admin-category-sync.php:45 +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 +msgid "Affected Categories when switching to seperate Event Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:63 +msgid "Switch option to seperate Event Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:64 +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 +msgid "" +"Afterwards the event categories are independent of the post categories." +msgstr "" + +#: admin/includes/admin-category-sync.php:68 +msgid "Affected Categories when switching to use Post Categories for events" +msgstr "" + +#: admin/includes/admin-category-sync.php:69 +msgid "Switch option to use Post Categories for events" +msgstr "" + +#: admin/includes/admin-category-sync.php:70 +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 +msgid "Event Categories: Synchronise with Post Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:74 +msgid "Start synchronisation" +msgstr "Začať synchronizovať" + +#: admin/includes/admin-category-sync.php:75 +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 +msgid "Categories to modify" +msgstr "Kategórie na modifikáciu" + +#: admin/includes/admin-category-sync.php:91 +msgid "Categories to add" +msgstr "Kategórie na pridanie" + +#: admin/includes/admin-category-sync.php:92 +msgid "Categories to delete (optional)" +msgstr "Kategórie ma zmazanie (voliteľné)" + +#: admin/includes/admin-category-sync.php:93 +msgid "Delete not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:97 +msgid "Categories with differences" +msgstr "Kategórie s rozdielmi" + +#: admin/includes/admin-category-sync.php:98 +msgid "Categories to add (optional)" +msgstr "Kategórie na pridanie (voliteľné)" + +#: admin/includes/admin-category-sync.php:99 +msgid "Add not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:117 +msgid "none" +msgstr "nič" + +#: admin/includes/admin-import.php:49 +msgid "Import Events" +msgstr "Importovať udalosti" + +#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:198 +msgid "Step" +msgstr "Krok" + +#: admin/includes/admin-import.php:69 +msgid "Set import file and options" +msgstr "" + +#: admin/includes/admin-import.php:72 +#, php-format +msgid "Proceed with Step %1$s" +msgstr "Pokračuj krokom %1$s" + +#: admin/includes/admin-import.php:75 +msgid "Example file" +msgstr "Príklad" + +#: admin/includes/admin-import.php:76 +#, 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 +msgid "Note" +msgstr "Poznámka" + +#: admin/includes/admin-import.php:77 +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 +msgid "Sorry, there has been an error." +msgstr "Je nám ľúto, došlo k chybe." + +#: admin/includes/admin-import.php:85 +msgid "The file does not exist, please try again." +msgstr "" + +#: admin/includes/admin-import.php:93 +msgid "The uploaded file does not have the required csv extension." +msgstr "" + +#: admin/includes/admin-import.php:105 +msgid "Events review and additonal category selection" +msgstr "" + +#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +msgid "Error" +msgstr "" + +#: admin/includes/admin-import.php:111 +msgid "This CSV file cannot be imported" +msgstr "" + +#: admin/includes/admin-import.php:122 +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 +msgid "Warning" +msgstr "" + +#: admin/includes/admin-import.php:126 +#, 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[2] "" +msgstr[3] "" + +#: admin/includes/admin-import.php:134 +#, php-format +msgid "CSV line %1$s" +msgstr "" + +#: admin/includes/admin-import.php:144 +msgid "You can still import all other events listed below." +msgstr "" + +#: admin/includes/admin-import.php:163 +msgid "" +"The following category slugs are not available and will be removed from the " +"imported events" +msgstr "" + +#: admin/includes/admin-import.php:169 +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 +msgid "Import result" +msgstr "" + +#: admin/includes/admin-import.php:201 +#, php-format +msgid "Import of %1$s events successful!" +msgstr "" + +#: admin/includes/admin-import.php:202 +msgid "Go back to All Events" +msgstr "Ísť späť na Všetky udalosti" + +#: admin/includes/admin-import.php:206 +msgid "Errors during Import" +msgstr "" + +#: admin/includes/admin-import.php:215 +msgid "Event from CSV-line" +msgstr "" + +#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 +#: includes/widget_helptexts.php:8 +msgid "Title" +msgstr "Nadpis" + +#: admin/includes/admin-import.php:227 +msgid "Start Date" +msgstr "Počiatočný deň" + +#: admin/includes/admin-import.php:228 +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 +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 +msgid "Location" +msgstr "Miesto" + +#: admin/includes/admin-import.php:231 +msgid "Content" +msgstr "Obsah" + +#: admin/includes/admin-import.php:232 +msgid "Category slugs" +msgstr "Slugs kategória" + +#: admin/includes/admin-import.php:274 +msgid "Header line is missing or not correct!" +msgstr "" + +#: admin/includes/admin-import.php:275 +#, 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 +#, php-format +msgid "Wrong number of items in line (%1$s items found, 6-7 required)" +msgstr "" + +#: admin/includes/admin-import.php:309 +msgid "Empty event title found" +msgstr "" + +#: admin/includes/admin-import.php:315 +msgid "Wrong date format for startdate" +msgstr "" + +#: admin/includes/admin-import.php:324 +msgid "Wrong date format for enddate" +msgstr "" + +#: admin/includes/admin-import.php:365 +msgid "Import events" +msgstr "Importovať udalosti" + +#: admin/includes/admin-import.php:366 +msgid "Add additional categories" +msgstr "Pridať ďalšie categórie" + +#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +msgid "Import" +msgstr "Import" + +#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +msgid "No events found" +msgstr "Nenašli sa žiadne udalosti." + +#: admin/includes/admin-import.php:432 +msgid "Saving of event failed!" +msgstr "" + +#: admin/includes/admin-main.php:60 +msgid "Event Date" +msgstr "Deň udalosti" + +#: admin/includes/admin-main.php:64 +msgid "Author" +msgstr "Autor" + +#: admin/includes/admin-main.php:126 +#, php-format +msgid "Add a copy of %1$s" +msgstr "Pridať kópiu %1$s" + +#: admin/includes/admin-main.php:126 +msgid "Copy" +msgstr "Kópia" + +#: admin/includes/admin-new.php:51 +msgid "Event data" +msgstr "Informácie o udalosti" + +#: admin/includes/admin-new.php:80 +msgid "Add Copy" +msgstr "Pridaj kópiu" + +#: admin/includes/admin-new.php:84 +msgid "Date" +msgstr "Dátum" + +#: admin/includes/admin-new.php:84 +msgid "required" +msgstr "Požadované" + +#: admin/includes/admin-new.php:87 +msgid "Multi-Day Event" +msgstr "Viacdenná udalosť" + +#: admin/includes/admin-new.php:106 +msgid "Event Title" +msgstr "Názov udalosti" + +#: admin/includes/admin-new.php:121 +msgid "Event Content" +msgstr "Obsah udalosti" + +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +msgid "Event updated." +msgstr "Udalosť bola aktualizovaná." + +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +msgid "View event" +msgstr "Pozri si udalosť" + +#: admin/includes/admin-new.php:184 +#, php-format +msgid "Event restored to revision from %1$s" +msgstr "" + +#: admin/includes/admin-new.php:185 +msgid "Event published." +msgstr "Udalosť bola publikovaná." + +#: admin/includes/admin-new.php:187 +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 +msgid "Preview event" +msgstr "Pozrieť podrobnosti udalosti." + +#: admin/includes/admin-new.php:188 +#, php-format +msgid "Event scheduled for: %1$s>" +msgstr "Udalosť naplánovaná na: %1$s>" + +#: admin/includes/admin-new.php:190 +msgid "Event draft updated." +msgstr "Koncept udalosti bol aktualizovaný." + +#: admin/includes/admin-settings.php:71 +msgid "Go to Event Category switching page" +msgstr "Prejdite na stránku prepínania kategórií udalostí" + +#: admin/includes/admin-settings.php:83 +msgid "Frontend Settings" +msgstr "Nastavenia Frontendu" + +#: admin/includes/admin-settings.php:84 +msgid "Admin Page Settings" +msgstr "Nastavenia Administračnej stránky" + +#: admin/includes/admin-settings.php:85 +msgid "Feed Settings" +msgstr "Nastavenia Feedu" + +#: admin/includes/admin-settings.php:86 +msgid "Category Taxonomy" +msgstr "" + +#: includes/daterange_helptexts.php:7 +msgid "Year" +msgstr "Rok" + +#: includes/daterange_helptexts.php:8 +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 +#, 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 +msgid "the resulting year" +msgstr "" + +#: includes/daterange_helptexts.php:12 +msgid "Month" +msgstr "mesiac" + +#: includes/daterange_helptexts.php:13 +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 +msgid "the resulting month" +msgstr "" + +#: includes/daterange_helptexts.php:17 +msgid "Day" +msgstr "deň" + +#: includes/daterange_helptexts.php:18 +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 +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 +#, php-format +msgid "%1$s from now can be specified in the following notation: %2$s" +msgstr "" + +#: includes/daterange_helptexts.php:22 +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 +#, 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 +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 +#, 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 +msgid "Relative Month" +msgstr "Relatívny mesiac" + +#: includes/daterange_helptexts.php:28 +msgid "A relative month" +msgstr "Relatívny mesiac" + +#: includes/daterange_helptexts.php:29 +msgid "number of months" +msgstr "počet mesiacov" + +#: includes/daterange_helptexts.php:33 +msgid "Relative Week" +msgstr "Relatívny týždeň" + +#: includes/daterange_helptexts.php:34 +msgid "A relative week" +msgstr "Relatívny týždeň" + +#: includes/daterange_helptexts.php:35 +msgid "number of weeks" +msgstr "počet týždňov" + +#: includes/daterange_helptexts.php:36 +msgid "the resulting week" +msgstr "" + +#: includes/daterange_helptexts.php:37 +#, 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 +msgid "Relative Day" +msgstr "Relatívny deň" + +#: includes/daterange_helptexts.php:42 +msgid "A relative day" +msgstr "Relatívny deň" + +#: includes/daterange_helptexts.php:43 +msgid "number of days" +msgstr "počet dní" + +#: includes/daterange_helptexts.php:49 +msgid "Date range" +msgstr "Rozmedzie dátumov" + +#: includes/daterange_helptexts.php:50 +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 +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 +#, php-format +msgid "The corresponding date_range format is: %1$s" +msgstr "" + +#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 +msgid "Upcoming" +msgstr "Nadchádzajúce" + +#: includes/daterange_helptexts.php:60 +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 +msgid "Past" +msgstr "Munulé" + +#: includes/daterange_helptexts.php:65 +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 +msgid "No valid start date provided" +msgstr "Nie je k dispozícii platný dátum začiatku" + +#: includes/events_post_type.php:60 +msgid "Events" +msgstr "Udalosti" + +#: includes/events_post_type.php:61 +msgid "Event" +msgstr "Udalosť" + +#: includes/events_post_type.php:62 +msgid "Add New" +msgstr "Pridať novú" + +#: includes/events_post_type.php:63 +msgid "Add New Event" +msgstr "pridať udalosť" + +#: includes/events_post_type.php:64 +msgid "Edit Event" +msgstr "Upraviť udalosť" + +#: includes/events_post_type.php:65 +msgid "New Event" +msgstr "Nová udalosť" + +#: includes/events_post_type.php:66 +msgid "View Event" +msgstr "Zobraziť udalosť" + +#: includes/events_post_type.php:67 +msgid "View Events" +msgstr "Zobraziť udalosti" + +#: includes/events_post_type.php:68 +msgid "Search Events" +msgstr "Vyhľadaj udalosti" + +#: includes/events_post_type.php:70 +msgid "No events found in Trash" +msgstr "V koši neboli nájdené žiadne udalosti" + +#: includes/events_post_type.php:72 +msgid "All Events" +msgstr "Všetky udalosti" + +#: includes/events_post_type.php:73 +msgid "Event Archives" +msgstr "Archív udalostí" + +#: includes/events_post_type.php:74 +msgid "Event Attributes" +msgstr "Vlastnosti udalostí" + +#: includes/events_post_type.php:75 +msgid "Insert into event" +msgstr "Vložiť do udalosti" + +#: includes/events_post_type.php:76 +msgid "Uploaded to this event" +msgstr "Nahrané do tejto udalosti" + +#: includes/events_post_type.php:77 +msgid "Event List" +msgstr "Zoznam udalostí" + +#: includes/events_post_type.php:78 +msgid "Filter events list" +msgstr "Filtrovať zoznam udalostí" + +#: includes/events_post_type.php:79 +msgid "Events list navigation" +msgstr "Navigácia v zozname udalostí" + +#: includes/events_post_type.php:80 +msgid "Events list" +msgstr "Zoznam udalostí" + +#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +msgid "Reset" +msgstr "Resetovať - znovu nastaviť" + +#: includes/filterbar.php:278 +msgid "All" +msgstr "Všetko" + +#: includes/filterbar.php:281 +msgid "All Dates" +msgstr "Všetky dátumy" + +#: includes/options_helptexts.php:10 +msgid "CSV File to import" +msgstr "" + +#: includes/options_helptexts.php:12 +msgid "Please select the file which contains the event data in CSV format." +msgstr "" + +#: includes/options_helptexts.php:15 +msgid "Used date format" +msgstr "Použitý formát dátumu" + +#: includes/options_helptexts.php:17 +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 +#, 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 +msgid "full year representation, with 4 digits" +msgstr "" + +#: includes/options_helptexts.php:21 +msgid "numeric representation of a month, with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:22 +msgid "day of the month, 2 digits with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:24 +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 +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 +msgid "Examples" +msgstr "" + +#: includes/options_helptexts.php:33 +msgid "Text for no events" +msgstr "Text pre žiadne udalosti" + +#: includes/options_helptexts.php:35 +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 +msgid "Multiday filter range" +msgstr "Viacdenný rozsah " + +#: includes/options_helptexts.php:39 +msgid "Use the complete event range in the date filter" +msgstr "" + +#: includes/options_helptexts.php:40 +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 +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 +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 +msgid "Date display" +msgstr "Zobrazenie dátumu" + +#: includes/options_helptexts.php:46 +msgid "Show the date only once per day" +msgstr "Zobrazte dátum iba raz za deň" + +#: includes/options_helptexts.php:47 +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 +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 +msgid "HTML tags" +msgstr "HTML značky" + +#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 +#, 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 +#, php-format +msgid "" +"This option specifies if HTML tags are allowed in the event field \"%1$s\"." +msgstr "" + +#: includes/options_helptexts.php:61 +msgid "Preferred language file" +msgstr "Preferovaný jazykový súbor" + +#: includes/options_helptexts.php:62 +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 +#, 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 +#, 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 +msgid "Events permalink slug" +msgstr "" + +#: includes/options_helptexts.php:69 +msgid "" +"With this option the slug for the events permalink URLs can be defined." +msgstr "" + +#: includes/options_helptexts.php:72 +msgid "Text for \"Show content\"" +msgstr "Text pre \"Zobraziť obsah\"" + +#: includes/options_helptexts.php:73 +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 +msgid "Text for \"Hide content\"" +msgstr "Text pre položku \"Skryť obsah\"" + +#: includes/options_helptexts.php:77 +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 +msgid "Disable CSS file" +msgstr "Zakázať súbor CSS" + +#: includes/options_helptexts.php:81 +#, php-format +msgid "Disable the %1$s file." +msgstr "" + +#: includes/options_helptexts.php:82 +#, php-format +msgid "With this option you can disable the inclusion of the %1$s file." +msgstr "" + +#: includes/options_helptexts.php:83 +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 +msgid "Date format in edit form" +msgstr "Formát dátumu vo formulári na upravenie" + +#: includes/options_helptexts.php:88 +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 +msgid "The default is an empty string to use the Wordpress standard setting." +msgstr "" + +#: includes/options_helptexts.php:90 +#, 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 +msgid "Enable RSS feed" +msgstr "Povoliť RSS kanál" + +#: includes/options_helptexts.php:95 +msgid "Enable support for an event RSS feed" +msgstr "" + +#: includes/options_helptexts.php:96 +msgid "This option activates a RSS feed for the events." +msgstr "" + +#: includes/options_helptexts.php:97 +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:101 +#, php-format +msgid "This option sets the feed name. The default value is %1$s." +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)." +msgstr "" + +#: includes/options_helptexts.php:105 +msgid "Feed Description" +msgstr "Popis kanála" + +#: 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: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 "" + +#: includes/options_helptexts.php:110 +msgid "Listed events" +msgstr "Zoznam udalostí" + +#: 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:112 +msgid "" +"If this option is enabled only the upcoming events are listed in the feed." +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:116 +msgid "Add RSS feed link in head" +msgstr "" + +#: includes/options_helptexts.php:117 +msgid "Add RSS feed link in the html head" +msgstr "" + +#: includes/options_helptexts.php:118 +msgid "This option adds a RSS feed in the html head for the events." +msgstr "" + +#: includes/options_helptexts.php:119 +msgid "There are 2 alternatives to include the RSS 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 "" + +#: 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." +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:125 +msgid "Position of the RSS feed link" +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:126 +msgid "between navigation bar and events" +msgstr "medzi navigačnou lištou a udalosťami" + +#: includes/options_helptexts.php:126 +msgid "at the bottom" +msgstr "na spodku" + +#: includes/options_helptexts.php:127 +msgid "" +"This option specifies the position of the RSS feed link in the event list." +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." +msgstr "" + +#: includes/options_helptexts.php:131 +msgid "Align of the RSS feed link" +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:133 +msgid "" +"This option specifies the align of the RSS feed link in the event list." +msgstr "" + +#: includes/options_helptexts.php:137 +msgid "Feed link text" +msgstr "" + +#: includes/options_helptexts.php:138 +msgid "" +"This option specifies the caption of the RSS feed link in the event list." +msgstr "" + +#: includes/options_helptexts.php:139 +msgid "" +"Insert an empty text to hide any text if you only want to show the rss " +"image." +msgstr "" + +#: includes/options_helptexts.php:143 +msgid "Feed link image" +msgstr "" + +#: includes/options_helptexts.php:144 +msgid "Show rss image in feed link" +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." +msgstr "" + +#: includes/options_helptexts.php:151 +msgid "Event Category handling" +msgstr "Spracovanie kategórie udalostí" + +#: includes/options_helptexts.php:152 +msgid "Use Post Categories" +msgstr "" + +#: includes/options_helptexts.php:153 +msgid "" +"Do not maintain seperate categories for the events, and use the existing " +"post categories instead." +msgstr "" + +#: includes/options_helptexts.php:154 +msgid "Attention" +msgstr "Upozornenie" + +#: includes/options_helptexts.php:155 +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 +msgid "events" +msgstr "udalosti" + +#: includes/options.php:41 +msgid "Show content" +msgstr "Zobraziť obsah" + +#: includes/options.php:42 +msgid "Hide content" +msgstr "Skryť obsah" + +#: includes/sc_event-list_helptexts.php:7 +msgid "event-id" +msgstr "identifikátor udalosti" + +#: includes/sc_event-list_helptexts.php:8 +#, 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 +msgid "year" +msgstr "Rok" + +#: includes/sc_event-list_helptexts.php:11 +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 +#, 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 +msgid "category slug" +msgstr "" + +#: includes/sc_event-list_helptexts.php:15 +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 +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 +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 +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 +#, 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 +#, 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 +#, 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 +#, php-format +msgid "See %1$s description if you want to define complex filters." +msgstr "" + +#: includes/sc_event-list_helptexts.php:28 +msgid "category slugs" +msgstr "" + +#: includes/sc_event-list_helptexts.php:29 +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 +#, 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 +#, 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 +msgid "number" +msgstr "číslo" + +#: includes/sc_event-list_helptexts.php:34 +#, 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 "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 +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 +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 +#, 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 +#, 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 +#, 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 +msgid "" +"Find below an overview of the available filterbar items and their options:" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "filterbar item" +msgstr "položka filtra" + +#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:63 +msgid "description" +msgstr "popis" + +#: includes/sc_event-list_helptexts.php:46 +msgid "item options" +msgstr "možnosti hodnoty" + +#: includes/sc_event-list_helptexts.php:46 +msgid "option values" +msgstr "hodnoty ponuky" + +#: includes/sc_event-list_helptexts.php:46 +msgid "default value" +msgstr "predvolená hodnota" + +#: includes/sc_event-list_helptexts.php:46 +msgid "option description" +msgstr "popis možnosti" + +#: includes/sc_event-list_helptexts.php:47 +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 +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 +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 +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 +msgid "Set descending or ascending order of year entries." +msgstr "Nastavte zostupne alebo vzostupne poradie rokov." + +#: includes/sc_event-list_helptexts.php:52 +msgid "Show a list of all available months." +msgstr "Zobraziť zoznam všetkých dostupných mesiacov." + +#: includes/sc_event-list_helptexts.php:56 +msgid "Set descending or ascending order of month entries." +msgstr "Nastavte mesiace zostupne alebo vzostupne." + +#: includes/sc_event-list_helptexts.php:57 +msgid "php date-formats" +msgstr "php formáty dátumov" + +#: includes/sc_event-list_helptexts.php:57 +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 +#, 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 +#, 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 +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 +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 +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 +msgid "any text" +msgstr "akýkoľvek text" + +#: includes/sc_event-list_helptexts.php:60 +msgid "Set the caption of the link." +msgstr "Titulok pre odkaz" + +#: includes/sc_event-list_helptexts.php:61 +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 +msgid "display option" +msgstr "možnosti zobrazenia" + +#: includes/sc_event-list_helptexts.php:63 +msgid "available for" +msgstr "dostupný pre" + +#: includes/sc_event-list_helptexts.php:64 +#, 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 +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 +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 +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 +#, 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 +#, 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 +msgid "option_name" +msgstr "názov_možnosti" + +#: includes/sc_event-list_helptexts.php:71 +msgid "value" +msgstr "hodnota" + +#: includes/sc_event-list_helptexts.php:72 +#, 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 +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 +#, 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 +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 +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 +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 +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 +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 +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 +#, 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 +msgid "" +"This attribute specifies if the content 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 +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" +"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n" +"\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 +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" +"\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 />\n" +"\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 +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 +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 +msgid "Event Information:" +msgstr "Informácie o udalosti" + +#: includes/widget_helptexts.php:10 +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 +msgid "Category Filter" +msgstr "Filter kategórií" + +#: includes/widget_helptexts.php:17 +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 +msgid "Number of listed events" +msgstr "Počet uvedených udalostí " + +#: includes/widget_helptexts.php:24 +msgid "The number of upcoming events to display" +msgstr "Počet nadchádzajúcich udalostí, ktoré sa majú zobraziť" + +#: includes/widget_helptexts.php:29 +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 +msgid "characters" +msgstr "znaky" + +#: includes/widget_helptexts.php:31 +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 +#, 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 +msgid "Show event starttime" +msgstr "Zobraziť čas začiatku udalosti" + +#: includes/widget_helptexts.php:39 +msgid "This option defines if the event start time will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:44 +msgid "Show event location" +msgstr "Zobraziť miesto udalosti" + +#: includes/widget_helptexts.php:46 +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 +msgid "Truncate location to" +msgstr "Skrátiť umiestnenie na" + +#: includes/widget_helptexts.php:53 +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 +msgid "Show event content" +msgstr "Zobraziť obsah udalosti" + +#: includes/widget_helptexts.php:61 +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 +msgid "Truncate content to" +msgstr "Skrátiť obsah na" + +#: includes/widget_helptexts.php:68 +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 +#, 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 +msgid "URL to the linked Event List page" +msgstr "URL ku stránke Zoznamu udalostí" + +#: includes/widget_helptexts.php:76 +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 +msgid "Shortcode ID on linked page" +msgstr "" + +#: includes/widget_helptexts.php:83 +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 +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 +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 +msgid "Caption for the link" +msgstr "Titulok pre odkaz" + +#: includes/widget_helptexts.php:104 +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 +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 +msgid "Upcoming events" +msgstr "Nadchádzajúce udalosti" + +#: includes/widget.php:38 +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 new file mode 100644 index 0000000000000000000000000000000000000000..dc2773febc5c9a9aecad6afdc2b7c64c056c71c4 Binary files /dev/null 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 new file mode 100644 index 0000000000000000000000000000000000000000..28fcdb0d904e3aa5ae80b99fdb84468762de93f4 --- /dev/null +++ b/wp-content/plugins/event-list/languages/event-list-sl_SI.po @@ -0,0 +1,1986 @@ +# Translation file for the 'Event List' WordPress plugin +# Copyright (C) 2018 by mibuthu +# This file is distributed under the same license as the corresponding wordpress plugin. +# +# Translators: +# A G, 2016 +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" +"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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"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 +#, php-format +msgid "Errors during upgrade of plugin %1$s" +msgstr "" + +#: admin/admin.php:57 +#, php-format +msgid "Upgrade of plugin %1$s successful" +msgstr "" + +#: admin/admin.php:106 admin/includes/admin-settings.php:65 +msgid "Event List Settings" +msgstr "Nastavitve seznama dogodkov" + +#: admin/admin.php:106 +msgid "Settings" +msgstr "Nastavitve" + +#: admin/admin.php:110 admin/includes/admin-about.php:37 +msgid "About Event List" +msgstr "O seznamu dogodkov" + +#: admin/admin.php:110 +msgid "About" +msgstr "Info" + +#: admin/admin.php:132 +#, php-format +msgid "%s Event" +msgid_plural "%s Events" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 +msgid "General" +msgstr "" + +#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:105 +msgid "Shortcode Attributes" +msgstr "" + +#: admin/includes/admin-about.php:72 +msgid "Help and Instructions" +msgstr "" + +#: admin/includes/admin-about.php:73 +#, php-format +msgid "You can manage the events %1$shere%2$s" +msgstr "" + +#: admin/includes/admin-about.php:74 +msgid "To show the events on your site you have 2 possibilities" +msgstr "" + +#: admin/includes/admin-about.php:75 +#, php-format +msgid "you can place the <strong>shortcode</strong> %1$s on any page or post" +msgstr "" + +#: admin/includes/admin-about.php:76 +#, php-format +msgid "you can add the <strong>widget</strong> %1$s in your sidebars" +msgstr "" + +#: admin/includes/admin-about.php:77 +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 +#, 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 +msgid "The available widget options are described in their tooltip text." +msgstr "" + +#: admin/includes/admin-about.php:80 +#, 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 +msgid "Add links to the single events" +msgstr "" + +#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 +msgid "Add a link to the Event List page" +msgstr "" + +#: admin/includes/admin-about.php:81 +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 +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 +#, 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 +#, 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 +#, 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 +msgid "Settings page" +msgstr "" + +#: admin/includes/admin-about.php:92 +msgid "About the plugin author" +msgstr "" + +#: admin/includes/admin-about.php:94 +#, 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" +msgstr "" + +#: admin/includes/admin-about.php:95 +#, 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" +msgstr "" + +#: admin/includes/admin-about.php:96 +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 +#, php-format +msgid "Donate with %1$s" +msgstr "" + +#: admin/includes/admin-about.php:107 +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 +#, 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 +msgid "" +"Below you can find a list of all supported attributes with their " +"descriptions and available options:" +msgstr "" + +#: admin/includes/admin-about.php:124 +msgid "Attribute name" +msgstr "" + +#: admin/includes/admin-about.php:125 +msgid "Value options" +msgstr "" + +#: admin/includes/admin-about.php:126 +msgid "Default value" +msgstr "" + +#: admin/includes/admin-about.php:127 +msgid "Description" +msgstr "" + +#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 +#: includes/sc_event-list_helptexts.php:31 +msgid "Filter Syntax" +msgstr "" + +#: admin/includes/admin-about.php:146 +msgid "" +"For date and cat filters you can specify complex filters with the following " +"syntax:" +msgstr "" + +#: admin/includes/admin-about.php:147 +#, 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 +msgid "AND" +msgstr "" + +#: admin/includes/admin-about.php:147 +msgid "OR" +msgstr "" + +#: admin/includes/admin-about.php:147 +msgid "or" +msgstr "" + +#: admin/includes/admin-about.php:147 +msgid "and" +msgstr "" + +#: admin/includes/admin-about.php:148 +msgid "Examples for cat filters:" +msgstr "" + +#: admin/includes/admin-about.php:149 +#, php-format +msgid "Show all events with category %1$s." +msgstr "" + +#: admin/includes/admin-about.php:150 +#, php-format +msgid "Show all events with category %1$s or %2$s." +msgstr "" + +#: admin/includes/admin-about.php:151 +#, 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 +msgid "Available Date Formats" +msgstr "" + +#: admin/includes/admin-about.php:157 +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 +msgid "Available Date Range Formats" +msgstr "" + +#: admin/includes/admin-about.php:166 +msgid "For date filters you can use the following daterange formats:" +msgstr "" + +#: admin/includes/admin-about.php:178 +msgid "Value" +msgstr "" + +#: admin/includes/admin-about.php:182 +msgid "Example" +msgstr "" + +#: admin/includes/admin-categories.php:38 +msgid "Synchronize with post categories" +msgstr "" + +#: admin/includes/admin-categories.php:46 +#, php-format +msgid "%1$s categories modified (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:47 +#, php-format +msgid "%1$s categories added (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:48 +#, php-format +msgid "%1$s categories deleted (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:50 +#, php-format +msgid "%1$s categories not modified (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:51 +#, php-format +msgid "%1$s categories not added (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:52 +#, php-format +msgid "%1$s categories not deleted (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:55 +msgid "An Error occured during the category sync" +msgstr "" + +#: admin/includes/admin-categories.php:59 +msgid "Category sync finished" +msgstr "" + +#: admin/includes/admin-category-sync.php:45 +msgid "Error: You are not allowed to view this page!" +msgstr "" + +#: admin/includes/admin-category-sync.php:62 +msgid "Affected Categories when switching to seperate Event Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:63 +msgid "Switch option to seperate Event Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:64 +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 +msgid "" +"Afterwards the event categories are independent of the post categories." +msgstr "" + +#: admin/includes/admin-category-sync.php:68 +msgid "Affected Categories when switching to use Post Categories for events" +msgstr "" + +#: admin/includes/admin-category-sync.php:69 +msgid "Switch option to use Post Categories for events" +msgstr "" + +#: admin/includes/admin-category-sync.php:70 +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 +msgid "Event Categories: Synchronise with Post Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:74 +msgid "Start synchronisation" +msgstr "" + +#: admin/includes/admin-category-sync.php:75 +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 +msgid "Categories to modify" +msgstr "" + +#: admin/includes/admin-category-sync.php:91 +msgid "Categories to add" +msgstr "" + +#: admin/includes/admin-category-sync.php:92 +msgid "Categories to delete (optional)" +msgstr "" + +#: admin/includes/admin-category-sync.php:93 +msgid "Delete not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:97 +msgid "Categories with differences" +msgstr "" + +#: admin/includes/admin-category-sync.php:98 +msgid "Categories to add (optional)" +msgstr "" + +#: admin/includes/admin-category-sync.php:99 +msgid "Add not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:117 +msgid "none" +msgstr "" + +#: admin/includes/admin-import.php:49 +msgid "Import Events" +msgstr "" + +#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:198 +msgid "Step" +msgstr "" + +#: admin/includes/admin-import.php:69 +msgid "Set import file and options" +msgstr "" + +#: admin/includes/admin-import.php:72 +#, php-format +msgid "Proceed with Step %1$s" +msgstr "" + +#: admin/includes/admin-import.php:75 +msgid "Example file" +msgstr "" + +#: admin/includes/admin-import.php:76 +#, 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 +msgid "Note" +msgstr "" + +#: admin/includes/admin-import.php:77 +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 +msgid "Sorry, there has been an error." +msgstr "" + +#: admin/includes/admin-import.php:85 +msgid "The file does not exist, please try again." +msgstr "" + +#: admin/includes/admin-import.php:93 +msgid "The uploaded file does not have the required csv extension." +msgstr "" + +#: admin/includes/admin-import.php:105 +msgid "Events review and additonal category selection" +msgstr "" + +#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +msgid "Error" +msgstr "" + +#: admin/includes/admin-import.php:111 +msgid "This CSV file cannot be imported" +msgstr "" + +#: admin/includes/admin-import.php:122 +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 +msgid "Warning" +msgstr "" + +#: admin/includes/admin-import.php:126 +#, 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[2] "" +msgstr[3] "" + +#: admin/includes/admin-import.php:134 +#, php-format +msgid "CSV line %1$s" +msgstr "" + +#: admin/includes/admin-import.php:144 +msgid "You can still import all other events listed below." +msgstr "" + +#: admin/includes/admin-import.php:163 +msgid "" +"The following category slugs are not available and will be removed from the " +"imported events" +msgstr "" + +#: admin/includes/admin-import.php:169 +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 +msgid "Import result" +msgstr "" + +#: admin/includes/admin-import.php:201 +#, php-format +msgid "Import of %1$s events successful!" +msgstr "" + +#: admin/includes/admin-import.php:202 +msgid "Go back to All Events" +msgstr "" + +#: admin/includes/admin-import.php:206 +msgid "Errors during Import" +msgstr "" + +#: admin/includes/admin-import.php:215 +msgid "Event from CSV-line" +msgstr "" + +#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 +#: includes/widget_helptexts.php:8 +msgid "Title" +msgstr "" + +#: admin/includes/admin-import.php:227 +msgid "Start Date" +msgstr "" + +#: admin/includes/admin-import.php:228 +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 +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 +msgid "Location" +msgstr "" + +#: admin/includes/admin-import.php:231 +msgid "Content" +msgstr "" + +#: admin/includes/admin-import.php:232 +msgid "Category slugs" +msgstr "" + +#: admin/includes/admin-import.php:274 +msgid "Header line is missing or not correct!" +msgstr "" + +#: admin/includes/admin-import.php:275 +#, 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 +#, php-format +msgid "Wrong number of items in line (%1$s items found, 6-7 required)" +msgstr "" + +#: admin/includes/admin-import.php:309 +msgid "Empty event title found" +msgstr "" + +#: admin/includes/admin-import.php:315 +msgid "Wrong date format for startdate" +msgstr "" + +#: admin/includes/admin-import.php:324 +msgid "Wrong date format for enddate" +msgstr "" + +#: admin/includes/admin-import.php:365 +msgid "Import events" +msgstr "" + +#: admin/includes/admin-import.php:366 +msgid "Add additional categories" +msgstr "" + +#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +msgid "Import" +msgstr "" + +#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +msgid "No events found" +msgstr "" + +#: admin/includes/admin-import.php:432 +msgid "Saving of event failed!" +msgstr "" + +#: admin/includes/admin-main.php:60 +msgid "Event Date" +msgstr "" + +#: admin/includes/admin-main.php:64 +msgid "Author" +msgstr "" + +#: admin/includes/admin-main.php:126 +#, php-format +msgid "Add a copy of %1$s" +msgstr "" + +#: admin/includes/admin-main.php:126 +msgid "Copy" +msgstr "" + +#: admin/includes/admin-new.php:51 +msgid "Event data" +msgstr "" + +#: admin/includes/admin-new.php:80 +msgid "Add Copy" +msgstr "" + +#: admin/includes/admin-new.php:84 +msgid "Date" +msgstr "" + +#: admin/includes/admin-new.php:84 +msgid "required" +msgstr "" + +#: admin/includes/admin-new.php:87 +msgid "Multi-Day Event" +msgstr "" + +#: admin/includes/admin-new.php:106 +msgid "Event Title" +msgstr "" + +#: admin/includes/admin-new.php:121 +msgid "Event Content" +msgstr "" + +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +msgid "Event updated." +msgstr "" + +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +msgid "View event" +msgstr "" + +#: admin/includes/admin-new.php:184 +#, php-format +msgid "Event restored to revision from %1$s" +msgstr "" + +#: admin/includes/admin-new.php:185 +msgid "Event published." +msgstr "" + +#: admin/includes/admin-new.php:187 +msgid "Event submitted." +msgstr "" + +#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 +#: admin/includes/admin-new.php:190 +msgid "Preview event" +msgstr "" + +#: admin/includes/admin-new.php:188 +#, php-format +msgid "Event scheduled for: %1$s>" +msgstr "" + +#: admin/includes/admin-new.php:190 +msgid "Event draft updated." +msgstr "" + +#: admin/includes/admin-settings.php:71 +msgid "Go to Event Category switching page" +msgstr "" + +#: admin/includes/admin-settings.php:83 +msgid "Frontend Settings" +msgstr "" + +#: admin/includes/admin-settings.php:84 +msgid "Admin Page Settings" +msgstr "" + +#: admin/includes/admin-settings.php:85 +msgid "Feed Settings" +msgstr "" + +#: admin/includes/admin-settings.php:86 +msgid "Category Taxonomy" +msgstr "" + +#: includes/daterange_helptexts.php:7 +msgid "Year" +msgstr "" + +#: includes/daterange_helptexts.php:8 +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 +#, 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 +msgid "the resulting year" +msgstr "" + +#: includes/daterange_helptexts.php:12 +msgid "Month" +msgstr "" + +#: includes/daterange_helptexts.php:13 +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 +msgid "the resulting month" +msgstr "" + +#: includes/daterange_helptexts.php:17 +msgid "Day" +msgstr "" + +#: includes/daterange_helptexts.php:18 +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 +msgid "Relative Year" +msgstr "" + +#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28 +#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42 +#, php-format +msgid "%1$s from now can be specified in the following notation: %2$s" +msgstr "" + +#: includes/daterange_helptexts.php:22 +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 +#, 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 +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 +#, php-format +msgid "Additionally the following values are available: %1$s" +msgstr "" + +#: includes/daterange_helptexts.php:27 +msgid "Relative Month" +msgstr "" + +#: includes/daterange_helptexts.php:28 +msgid "A relative month" +msgstr "" + +#: includes/daterange_helptexts.php:29 +msgid "number of months" +msgstr "" + +#: includes/daterange_helptexts.php:33 +msgid "Relative Week" +msgstr "" + +#: includes/daterange_helptexts.php:34 +msgid "A relative week" +msgstr "" + +#: includes/daterange_helptexts.php:35 +msgid "number of weeks" +msgstr "" + +#: includes/daterange_helptexts.php:36 +msgid "the resulting week" +msgstr "" + +#: includes/daterange_helptexts.php:37 +#, 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 +msgid "Relative Day" +msgstr "" + +#: includes/daterange_helptexts.php:42 +msgid "A relative day" +msgstr "" + +#: includes/daterange_helptexts.php:43 +msgid "number of days" +msgstr "" + +#: includes/daterange_helptexts.php:49 +msgid "Date range" +msgstr "" + +#: includes/daterange_helptexts.php:50 +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 +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 +#, php-format +msgid "The corresponding date_range format is: %1$s" +msgstr "" + +#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 +msgid "Upcoming" +msgstr "" + +#: includes/daterange_helptexts.php:60 +msgid "This value defines a range from the actual day to the future." +msgstr "" + +#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 +msgid "Past" +msgstr "" + +#: includes/daterange_helptexts.php:65 +msgid "This value defines a range from the past to the previous day." +msgstr "" + +#: includes/event.php:107 +msgid "No valid start date provided" +msgstr "" + +#: includes/events_post_type.php:60 +msgid "Events" +msgstr "Dogodki" + +#: includes/events_post_type.php:61 +msgid "Event" +msgstr "" + +#: includes/events_post_type.php:62 +msgid "Add New" +msgstr "Dodaj" + +#: includes/events_post_type.php:63 +msgid "Add New Event" +msgstr "Dodaj dogodek" + +#: includes/events_post_type.php:64 +msgid "Edit Event" +msgstr "" + +#: includes/events_post_type.php:65 +msgid "New Event" +msgstr "" + +#: includes/events_post_type.php:66 +msgid "View Event" +msgstr "" + +#: includes/events_post_type.php:67 +msgid "View Events" +msgstr "" + +#: includes/events_post_type.php:68 +msgid "Search Events" +msgstr "" + +#: includes/events_post_type.php:70 +msgid "No events found in Trash" +msgstr "" + +#: includes/events_post_type.php:72 +msgid "All Events" +msgstr "Vsi dogodki" + +#: includes/events_post_type.php:73 +msgid "Event Archives" +msgstr "" + +#: includes/events_post_type.php:74 +msgid "Event Attributes" +msgstr "" + +#: includes/events_post_type.php:75 +msgid "Insert into event" +msgstr "" + +#: includes/events_post_type.php:76 +msgid "Uploaded to this event" +msgstr "" + +#: includes/events_post_type.php:77 +msgid "Event List" +msgstr "Seznam dogodkov" + +#: includes/events_post_type.php:78 +msgid "Filter events list" +msgstr "" + +#: includes/events_post_type.php:79 +msgid "Events list navigation" +msgstr "" + +#: includes/events_post_type.php:80 +msgid "Events list" +msgstr "" + +#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +msgid "Reset" +msgstr "" + +#: includes/filterbar.php:278 +msgid "All" +msgstr "" + +#: includes/filterbar.php:281 +msgid "All Dates" +msgstr "" + +#: includes/options_helptexts.php:10 +msgid "CSV File to import" +msgstr "" + +#: includes/options_helptexts.php:12 +msgid "Please select the file which contains the event data in CSV format." +msgstr "" + +#: includes/options_helptexts.php:15 +msgid "Used date format" +msgstr "" + +#: includes/options_helptexts.php:17 +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 +#, 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 +msgid "full year representation, with 4 digits" +msgstr "" + +#: includes/options_helptexts.php:21 +msgid "numeric representation of a month, with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:22 +msgid "day of the month, 2 digits with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:24 +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 +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 +msgid "Examples" +msgstr "" + +#: includes/options_helptexts.php:33 +msgid "Text for no events" +msgstr "" + +#: includes/options_helptexts.php:35 +msgid "" +"This option defines the displayed text when no events are available for the " +"selected view." +msgstr "" + +#: includes/options_helptexts.php:38 +msgid "Multiday filter range" +msgstr "" + +#: includes/options_helptexts.php:39 +msgid "Use the complete event range in the date filter" +msgstr "" + +#: includes/options_helptexts.php:40 +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 +msgid "" +"If disabled, only the start day of an event is considered in the filter." +msgstr "" + +#: includes/options_helptexts.php:42 +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 +msgid "Date display" +msgstr "" + +#: includes/options_helptexts.php:46 +msgid "Show the date only once per day" +msgstr "" + +#: includes/options_helptexts.php:47 +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 +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 +msgid "HTML tags" +msgstr "" + +#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 +#, php-format +msgid "Allow HTML tags in the event field \"%1$s\"" +msgstr "" + +#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 +#, php-format +msgid "" +"This option specifies if HTML tags are allowed in the event field \"%1$s\"." +msgstr "" + +#: includes/options_helptexts.php:61 +msgid "Preferred language file" +msgstr "" + +#: includes/options_helptexts.php:62 +msgid "Load translations from general language directory first" +msgstr "" + +#: includes/options_helptexts.php:63 +#, 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 +#, 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 +msgid "Events permalink slug" +msgstr "" + +#: includes/options_helptexts.php:69 +msgid "" +"With this option the slug for the events permalink URLs can be defined." +msgstr "" + +#: includes/options_helptexts.php:72 +msgid "Text for \"Show content\"" +msgstr "" + +#: includes/options_helptexts.php:73 +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 +msgid "Text for \"Hide content\"" +msgstr "" + +#: includes/options_helptexts.php:77 +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 +msgid "Disable CSS file" +msgstr "" + +#: includes/options_helptexts.php:81 +#, php-format +msgid "Disable the %1$s file." +msgstr "" + +#: includes/options_helptexts.php:82 +#, php-format +msgid "With this option you can disable the inclusion of the %1$s file." +msgstr "" + +#: includes/options_helptexts.php:83 +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 +msgid "Date format in edit form" +msgstr "" + +#: includes/options_helptexts.php:88 +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 +msgid "The default is an empty string to use the Wordpress standard setting." +msgstr "" + +#: includes/options_helptexts.php:90 +#, 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 +msgid "Enable RSS feed" +msgstr "" + +#: includes/options_helptexts.php:95 +msgid "Enable support for an event RSS feed" +msgstr "" + +#: includes/options_helptexts.php:96 +msgid "This option activates a RSS feed for the events." +msgstr "" + +#: includes/options_helptexts.php:97 +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 "" + +#: includes/options_helptexts.php:101 +#, php-format +msgid "This option sets the feed name. The default value is %1$s." +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)." +msgstr "" + +#: includes/options_helptexts.php:105 +msgid "Feed Description" +msgstr "" + +#: includes/options_helptexts.php:106 +#, php-format +msgid "This options set the feed description. The default value is %1$s." +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." +msgstr "" + +#: includes/options_helptexts.php:110 +msgid "Listed events" +msgstr "" + +#: includes/options_helptexts.php:111 +msgid "Only show upcoming events in feed" +msgstr "" + +#: includes/options_helptexts.php:112 +msgid "" +"If this option is enabled only the upcoming events are listed in the feed." +msgstr "" + +#: includes/options_helptexts.php:113 +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 "" + +#: includes/options_helptexts.php:117 +msgid "Add RSS feed link in the html head" +msgstr "" + +#: includes/options_helptexts.php:118 +msgid "This option adds a RSS feed in the html head for the events." +msgstr "" + +#: includes/options_helptexts.php:119 +msgid "There are 2 alternatives to include the RSS 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 "" + +#: 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." +msgstr "" + +#: includes/options_helptexts.php:122 +#, php-format +msgid "This option is only valid if the setting %1$s is enabled." +msgstr "" + +#: includes/options_helptexts.php:125 +msgid "Position of the RSS feed link" +msgstr "" + +#: includes/options_helptexts.php:126 +msgid "at the top (above the navigation bar)" +msgstr "" + +#: includes/options_helptexts.php:126 +msgid "between navigation bar and events" +msgstr "" + +#: includes/options_helptexts.php:126 +msgid "at the bottom" +msgstr "" + +#: includes/options_helptexts.php:127 +msgid "" +"This option specifies the position of the RSS feed link in the event list." +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." +msgstr "" + +#: includes/options_helptexts.php:131 +msgid "Align of the RSS feed link" +msgstr "" + +#: includes/options_helptexts.php:132 +msgid "left" +msgstr "" + +#: includes/options_helptexts.php:132 +msgid "center" +msgstr "" + +#: includes/options_helptexts.php:132 +msgid "right" +msgstr "" + +#: includes/options_helptexts.php:133 +msgid "" +"This option specifies the align of the RSS feed link in the event list." +msgstr "" + +#: includes/options_helptexts.php:137 +msgid "Feed link text" +msgstr "" + +#: includes/options_helptexts.php:138 +msgid "" +"This option specifies the caption of the RSS feed link in the event list." +msgstr "" + +#: includes/options_helptexts.php:139 +msgid "" +"Insert an empty text to hide any text if you only want to show the rss " +"image." +msgstr "" + +#: includes/options_helptexts.php:143 +msgid "Feed link image" +msgstr "" + +#: includes/options_helptexts.php:144 +msgid "Show rss image in feed link" +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." +msgstr "" + +#: includes/options_helptexts.php:151 +msgid "Event Category handling" +msgstr "" + +#: includes/options_helptexts.php:152 +msgid "Use Post Categories" +msgstr "" + +#: includes/options_helptexts.php:153 +msgid "" +"Do not maintain seperate categories for the events, and use the existing " +"post categories instead." +msgstr "" + +#: includes/options_helptexts.php:154 +msgid "Attention" +msgstr "" + +#: includes/options_helptexts.php:155 +msgid "" +"This option cannot be changed directly, but you can go to the Event Category" +" switching page from here." +msgstr "" + +#: includes/options.php:40 +msgid "events" +msgstr "" + +#: includes/options.php:41 +msgid "Show content" +msgstr "" + +#: includes/options.php:42 +msgid "Hide content" +msgstr "" + +#: includes/sc_event-list_helptexts.php:7 +msgid "event-id" +msgstr "" + +#: includes/sc_event-list_helptexts.php:8 +#, 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 +msgid "year" +msgstr "" + +#: includes/sc_event-list_helptexts.php:11 +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 +#, 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 +msgid "category slug" +msgstr "" + +#: includes/sc_event-list_helptexts.php:15 +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 +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 +msgid "This attribute defines the initial order of the events." +msgstr "" + +#: includes/sc_event-list_helptexts.php:20 +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 +#, 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 +#, 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 +#, 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 +#, php-format +msgid "See %1$s description if you want to define complex filters." +msgstr "" + +#: includes/sc_event-list_helptexts.php:28 +msgid "category slugs" +msgstr "" + +#: includes/sc_event-list_helptexts.php:29 +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 +#, 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 +#, 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 +msgid "number" +msgstr "" + +#: includes/sc_event-list_helptexts.php:34 +#, 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 +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 +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 +#, 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 +#, 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 +#, 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 +msgid "" +"Find below an overview of the available filterbar items and their options:" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "filterbar item" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:63 +msgid "description" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "item options" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "option values" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "default value" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "option description" +msgstr "" + +#: includes/sc_event-list_helptexts.php:47 +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 +msgid "Add an entry to show all events." +msgstr "" + +#: includes/sc_event-list_helptexts.php:49 +#: includes/sc_event-list_helptexts.php:54 +msgid "Add an entry to show all upcoming events." +msgstr "" + +#: includes/sc_event-list_helptexts.php:50 +#: includes/sc_event-list_helptexts.php:55 +msgid "Add an entry to show events in the past." +msgstr "" + +#: includes/sc_event-list_helptexts.php:51 +msgid "Set descending or ascending order of year entries." +msgstr "" + +#: includes/sc_event-list_helptexts.php:52 +msgid "Show a list of all available months." +msgstr "" + +#: includes/sc_event-list_helptexts.php:56 +msgid "Set descending or ascending order of month entries." +msgstr "" + +#: includes/sc_event-list_helptexts.php:57 +msgid "php date-formats" +msgstr "" + +#: includes/sc_event-list_helptexts.php:57 +msgid "Set the displayed date format of the month entries." +msgstr "" + +#: includes/sc_event-list_helptexts.php:58 +#, 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 +#, 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 +msgid "Show a list of all available categories." +msgstr "" + +#: includes/sc_event-list_helptexts.php:59 +msgid "Add an entry to show events from all categories." +msgstr "" + +#: includes/sc_event-list_helptexts.php:60 +msgid "A link to reset the eventlist filter to standard." +msgstr "" + +#: includes/sc_event-list_helptexts.php:60 +msgid "any text" +msgstr "" + +#: includes/sc_event-list_helptexts.php:60 +msgid "Set the caption of the link." +msgstr "" + +#: includes/sc_event-list_helptexts.php:61 +msgid "Find below an overview of the available filterbar display options:" +msgstr "" + +#: includes/sc_event-list_helptexts.php:63 +msgid "display option" +msgstr "" + +#: includes/sc_event-list_helptexts.php:63 +msgid "available for" +msgstr "" + +#: includes/sc_event-list_helptexts.php:64 +#, 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 +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 +msgid "Shows a simple link which can be clicked." +msgstr "" + +#: includes/sc_event-list_helptexts.php:67 +msgid "Find below some declaration examples with descriptions:" +msgstr "" + +#: includes/sc_event-list_helptexts.php:69 +#, 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 +#, 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 +msgid "option_name" +msgstr "" + +#: includes/sc_event-list_helptexts.php:71 +msgid "value" +msgstr "" + +#: includes/sc_event-list_helptexts.php:72 +#, 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 +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 +#, 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 +msgid "This attribute has no influence if only a single event is shown." +msgstr "" + +#: includes/sc_event-list_helptexts.php:80 +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 +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 +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 +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 +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 +#, php-format +msgid "With the standard value %1$s the full text is displayed." +msgstr "" + +#: includes/sc_event-list_helptexts.php:110 +msgid "" +"This attribute specifies if the content 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 +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" +"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n" +"\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 +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" +"\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 />\n" +"\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 +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 +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 +msgid "Event Information:" +msgstr "" + +#: includes/widget_helptexts.php:10 +msgid "This option defines the displayed title for the widget." +msgstr "" + +#: includes/widget_helptexts.php:15 +msgid "Category Filter" +msgstr "" + +#: includes/widget_helptexts.php:17 +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 +msgid "Number of listed events" +msgstr "" + +#: includes/widget_helptexts.php:24 +msgid "The number of upcoming events to display" +msgstr "" + +#: includes/widget_helptexts.php:29 +msgid "Truncate event title to" +msgstr "" + +#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52 +#: includes/widget_helptexts.php:67 +msgid "characters" +msgstr "" + +#: includes/widget_helptexts.php:31 +msgid "" +"This option defines the number of displayed characters for the event title." +msgstr "" + +#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54 +#, 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 +msgid "Show event starttime" +msgstr "" + +#: includes/widget_helptexts.php:39 +msgid "This option defines if the event start time will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:44 +msgid "Show event location" +msgstr "" + +#: includes/widget_helptexts.php:46 +msgid "This option defines if the event location will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:51 +msgid "Truncate location to" +msgstr "" + +#: includes/widget_helptexts.php:53 +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" +msgstr "" + +#: includes/widget_helptexts.php:61 +msgid "This option defines if the event content will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:66 +msgid "Truncate content to" +msgstr "" + +#: includes/widget_helptexts.php:68 +msgid "" +"If the event content are diplayed this option defines the number of diplayed" +" characters." +msgstr "" + +#: includes/widget_helptexts.php:69 +#, php-format +msgid "Set this value to %1$s to view the full text." +msgstr "" + +#: includes/widget_helptexts.php:74 +msgid "URL to the linked Event List page" +msgstr "" + +#: includes/widget_helptexts.php:76 +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 +msgid "Shortcode ID on linked page" +msgstr "" + +#: includes/widget_helptexts.php:83 +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 +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 +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 +msgid "Caption for the link" +msgstr "" + +#: includes/widget_helptexts.php:104 +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 +msgid "With this widget a list of upcoming events can be displayed." +msgstr "" + +#: includes/widget.php:25 +msgid "Upcoming events" +msgstr "" + +#: includes/widget.php:38 +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 new file mode 100644 index 0000000000000000000000000000000000000000..afc05096b5e4779aae140de396327962e5062cbc Binary files /dev/null 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 new file mode 100644 index 0000000000000000000000000000000000000000..8f65f8489ebf9141b03ecf4f6bc4d8138279a55b --- /dev/null +++ b/wp-content/plugins/event-list/languages/event-list-sv_SE.po @@ -0,0 +1,1984 @@ +# Translation file for the 'Event List' WordPress plugin +# Copyright (C) 2018 by mibuthu +# This file is distributed under the same license as the corresponding wordpress plugin. +# +# Translators: +# Andreas Ek <andreas@andreasek.se>, 2016 +# Johan F <sidavbitare@gmail.com>, 2016 +# Magnus Lidell <magnus@threklam.se>, 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" +"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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin/admin.php:57 +#, 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 +#, php-format +msgid "Upgrade of plugin %1$s successful" +msgstr "" + +#: admin/admin.php:106 admin/includes/admin-settings.php:65 +msgid "Event List Settings" +msgstr "Inställningar Event List" + +#: admin/admin.php:106 +msgid "Settings" +msgstr "Inställningar" + +#: admin/admin.php:110 admin/includes/admin-about.php:37 +msgid "About Event List" +msgstr "Om Event List" + +#: admin/admin.php:110 +msgid "About" +msgstr "Om" + +#: admin/admin.php:132 +#, 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 +msgid "General" +msgstr "Allmän" + +#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:105 +msgid "Shortcode Attributes" +msgstr "Shortcode Attribut" + +#: admin/includes/admin-about.php:72 +msgid "Help and Instructions" +msgstr "Hjälp och instruktioner" + +#: admin/includes/admin-about.php:73 +#, php-format +msgid "You can manage the events %1$shere%2$s" +msgstr "" + +#: admin/includes/admin-about.php:74 +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 +#, 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 +#, 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 +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 +#, 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 +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 +#, 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 +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 +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 +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 +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 +#, 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 +#, 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 +#, 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 +msgid "Settings page" +msgstr "" + +#: admin/includes/admin-about.php:92 +msgid "About the plugin author" +msgstr "" + +#: admin/includes/admin-about.php:94 +#, 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" +msgstr "" + +#: admin/includes/admin-about.php:95 +#, 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" +msgstr "" + +#: admin/includes/admin-about.php:96 +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 +#, php-format +msgid "Donate with %1$s" +msgstr "" + +#: admin/includes/admin-about.php:107 +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 +#, 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 +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 +msgid "Attribute name" +msgstr "Attribut namn" + +#: admin/includes/admin-about.php:125 +msgid "Value options" +msgstr "Värde alternativ" + +#: admin/includes/admin-about.php:126 +msgid "Default value" +msgstr "Standard värde" + +#: admin/includes/admin-about.php:127 +msgid "Description" +msgstr "Beskrivning" + +#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 +#: includes/sc_event-list_helptexts.php:31 +msgid "Filter Syntax" +msgstr "Filter Syntax" + +#: admin/includes/admin-about.php:146 +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 +#, 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 +msgid "AND" +msgstr "AND" + +#: admin/includes/admin-about.php:147 +msgid "OR" +msgstr "OR" + +#: admin/includes/admin-about.php:147 +msgid "or" +msgstr "or" + +#: admin/includes/admin-about.php:147 +msgid "and" +msgstr "and" + +#: admin/includes/admin-about.php:148 +msgid "Examples for cat filters:" +msgstr "Exempel på kat filter:" + +#: admin/includes/admin-about.php:149 +#, php-format +msgid "Show all events with category %1$s." +msgstr "Visa alla aktiviteter med kategori %1$s." + +#: admin/includes/admin-about.php:150 +#, 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 +#, 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 +msgid "Available Date Formats" +msgstr "Tillgängliga Datum Format" + +#: admin/includes/admin-about.php:157 +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 +msgid "Available Date Range Formats" +msgstr "Tillgängliga Datum Räckvidd Format" + +#: admin/includes/admin-about.php:166 +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 +msgid "Value" +msgstr "Värde" + +#: admin/includes/admin-about.php:182 +msgid "Example" +msgstr "Exempel" + +#: admin/includes/admin-categories.php:38 +msgid "Synchronize with post categories" +msgstr "" + +#: admin/includes/admin-categories.php:46 +#, php-format +msgid "%1$s categories modified (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:47 +#, php-format +msgid "%1$s categories added (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:48 +#, php-format +msgid "%1$s categories deleted (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:50 +#, php-format +msgid "%1$s categories not modified (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:51 +#, php-format +msgid "%1$s categories not added (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:52 +#, php-format +msgid "%1$s categories not deleted (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:55 +msgid "An Error occured during the category sync" +msgstr "" + +#: admin/includes/admin-categories.php:59 +msgid "Category sync finished" +msgstr "" + +#: admin/includes/admin-category-sync.php:45 +msgid "Error: You are not allowed to view this page!" +msgstr "" + +#: admin/includes/admin-category-sync.php:62 +msgid "Affected Categories when switching to seperate Event Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:63 +msgid "Switch option to seperate Event Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:64 +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 +msgid "" +"Afterwards the event categories are independent of the post categories." +msgstr "" + +#: admin/includes/admin-category-sync.php:68 +msgid "Affected Categories when switching to use Post Categories for events" +msgstr "" + +#: admin/includes/admin-category-sync.php:69 +msgid "Switch option to use Post Categories for events" +msgstr "" + +#: admin/includes/admin-category-sync.php:70 +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 +msgid "Event Categories: Synchronise with Post Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:74 +msgid "Start synchronisation" +msgstr "" + +#: admin/includes/admin-category-sync.php:75 +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 +msgid "Categories to modify" +msgstr "" + +#: admin/includes/admin-category-sync.php:91 +msgid "Categories to add" +msgstr "" + +#: admin/includes/admin-category-sync.php:92 +msgid "Categories to delete (optional)" +msgstr "" + +#: admin/includes/admin-category-sync.php:93 +msgid "Delete not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:97 +msgid "Categories with differences" +msgstr "" + +#: admin/includes/admin-category-sync.php:98 +msgid "Categories to add (optional)" +msgstr "" + +#: admin/includes/admin-category-sync.php:99 +msgid "Add not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:117 +msgid "none" +msgstr "" + +#: admin/includes/admin-import.php:49 +msgid "Import Events" +msgstr "Importera aktiviteter" + +#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:198 +msgid "Step" +msgstr "Steg" + +#: admin/includes/admin-import.php:69 +msgid "Set import file and options" +msgstr "Ange importfilen och alternativ" + +#: admin/includes/admin-import.php:72 +#, php-format +msgid "Proceed with Step %1$s" +msgstr "" + +#: admin/includes/admin-import.php:75 +msgid "Example file" +msgstr "Exempelfil" + +#: admin/includes/admin-import.php:76 +#, 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 +msgid "Note" +msgstr "Anteckning" + +#: admin/includes/admin-import.php:77 +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 +msgid "Sorry, there has been an error." +msgstr "Tyvärr, det har blivit ett fel." + +#: admin/includes/admin-import.php:85 +msgid "The file does not exist, please try again." +msgstr "Filen existerar inte, försök igen." + +#: admin/includes/admin-import.php:93 +msgid "The uploaded file does not have the required csv extension." +msgstr "" + +#: admin/includes/admin-import.php:105 +msgid "Events review and additonal category selection" +msgstr "" + +#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +msgid "Error" +msgstr "" + +#: admin/includes/admin-import.php:111 +msgid "This CSV file cannot be imported" +msgstr "" + +#: admin/includes/admin-import.php:122 +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 +msgid "Warning" +msgstr "" + +#: admin/includes/admin-import.php:126 +#, 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 +#, php-format +msgid "CSV line %1$s" +msgstr "" + +#: admin/includes/admin-import.php:144 +msgid "You can still import all other events listed below." +msgstr "" + +#: admin/includes/admin-import.php:163 +msgid "" +"The following category slugs are not available and will be removed from the " +"imported events" +msgstr "" + +#: admin/includes/admin-import.php:169 +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 +msgid "Import result" +msgstr "" + +#: admin/includes/admin-import.php:201 +#, php-format +msgid "Import of %1$s events successful!" +msgstr "" + +#: admin/includes/admin-import.php:202 +msgid "Go back to All Events" +msgstr "Gå tillbaka till Alla aktiviteter" + +#: admin/includes/admin-import.php:206 +msgid "Errors during Import" +msgstr "" + +#: admin/includes/admin-import.php:215 +msgid "Event from CSV-line" +msgstr "" + +#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 +#: includes/widget_helptexts.php:8 +msgid "Title" +msgstr "Titel" + +#: admin/includes/admin-import.php:227 +msgid "Start Date" +msgstr "Startdatum" + +#: admin/includes/admin-import.php:228 +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 +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 +msgid "Location" +msgstr "Plats" + +#: admin/includes/admin-import.php:231 +msgid "Content" +msgstr "" + +#: admin/includes/admin-import.php:232 +msgid "Category slugs" +msgstr "" + +#: admin/includes/admin-import.php:274 +msgid "Header line is missing or not correct!" +msgstr "" + +#: admin/includes/admin-import.php:275 +#, 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 +#, php-format +msgid "Wrong number of items in line (%1$s items found, 6-7 required)" +msgstr "" + +#: admin/includes/admin-import.php:309 +msgid "Empty event title found" +msgstr "" + +#: admin/includes/admin-import.php:315 +msgid "Wrong date format for startdate" +msgstr "" + +#: admin/includes/admin-import.php:324 +msgid "Wrong date format for enddate" +msgstr "" + +#: admin/includes/admin-import.php:365 +msgid "Import events" +msgstr "" + +#: admin/includes/admin-import.php:366 +msgid "Add additional categories" +msgstr "" + +#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +msgid "Import" +msgstr "Importera" + +#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +msgid "No events found" +msgstr "" + +#: admin/includes/admin-import.php:432 +msgid "Saving of event failed!" +msgstr "" + +#: admin/includes/admin-main.php:60 +msgid "Event Date" +msgstr "" + +#: admin/includes/admin-main.php:64 +msgid "Author" +msgstr "Författare" + +#: admin/includes/admin-main.php:126 +#, php-format +msgid "Add a copy of %1$s" +msgstr "" + +#: admin/includes/admin-main.php:126 +msgid "Copy" +msgstr "" + +#: admin/includes/admin-new.php:51 +msgid "Event data" +msgstr "" + +#: admin/includes/admin-new.php:80 +msgid "Add Copy" +msgstr "" + +#: admin/includes/admin-new.php:84 +msgid "Date" +msgstr "Datum" + +#: admin/includes/admin-new.php:84 +msgid "required" +msgstr "krävs" + +#: admin/includes/admin-new.php:87 +msgid "Multi-Day Event" +msgstr "Flerdagsaktivitet" + +#: admin/includes/admin-new.php:106 +msgid "Event Title" +msgstr "" + +#: admin/includes/admin-new.php:121 +msgid "Event Content" +msgstr "" + +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +msgid "Event updated." +msgstr "" + +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +msgid "View event" +msgstr "" + +#: admin/includes/admin-new.php:184 +#, php-format +msgid "Event restored to revision from %1$s" +msgstr "" + +#: admin/includes/admin-new.php:185 +msgid "Event published." +msgstr "" + +#: admin/includes/admin-new.php:187 +msgid "Event submitted." +msgstr "" + +#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 +#: admin/includes/admin-new.php:190 +msgid "Preview event" +msgstr "" + +#: admin/includes/admin-new.php:188 +#, php-format +msgid "Event scheduled for: %1$s>" +msgstr "" + +#: admin/includes/admin-new.php:190 +msgid "Event draft updated." +msgstr "" + +#: admin/includes/admin-settings.php:71 +msgid "Go to Event Category switching page" +msgstr "" + +#: admin/includes/admin-settings.php:83 +msgid "Frontend Settings" +msgstr "Utvisningsinställningar" + +#: admin/includes/admin-settings.php:84 +msgid "Admin Page Settings" +msgstr "Admininstratörsinställningar" + +#: admin/includes/admin-settings.php:85 +msgid "Feed Settings" +msgstr "Flödesinställningar" + +#: admin/includes/admin-settings.php:86 +msgid "Category Taxonomy" +msgstr "" + +#: includes/daterange_helptexts.php:7 +msgid "Year" +msgstr "År" + +#: includes/daterange_helptexts.php:8 +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 +#, 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 +msgid "the resulting year" +msgstr "resultatsår" + +#: includes/daterange_helptexts.php:12 +msgid "Month" +msgstr "Månad" + +#: includes/daterange_helptexts.php:13 +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 +msgid "the resulting month" +msgstr "resultatsmånad" + +#: includes/daterange_helptexts.php:17 +msgid "Day" +msgstr "Dag" + +#: includes/daterange_helptexts.php:18 +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 +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 +#, 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 +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 +#, 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 +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 +#, 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 +msgid "Relative Month" +msgstr "Relativ månad" + +#: includes/daterange_helptexts.php:28 +msgid "A relative month" +msgstr "En relativ månad" + +#: includes/daterange_helptexts.php:29 +msgid "number of months" +msgstr "antal månader" + +#: includes/daterange_helptexts.php:33 +msgid "Relative Week" +msgstr "Relativ vecka" + +#: includes/daterange_helptexts.php:34 +msgid "A relative week" +msgstr "En relativ vecka" + +#: includes/daterange_helptexts.php:35 +msgid "number of weeks" +msgstr "antal veckor" + +#: includes/daterange_helptexts.php:36 +msgid "the resulting week" +msgstr "Resultatsvecka" + +#: includes/daterange_helptexts.php:37 +#, 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 +msgid "Relative Day" +msgstr "Relativ dag" + +#: includes/daterange_helptexts.php:42 +msgid "A relative day" +msgstr "En relativ dag" + +#: includes/daterange_helptexts.php:43 +msgid "number of days" +msgstr "antal dagar" + +#: includes/daterange_helptexts.php:49 +msgid "Date range" +msgstr "Datumintervall" + +#: includes/daterange_helptexts.php:50 +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 +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 +#, 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 +msgid "Upcoming" +msgstr "Kommande" + +#: includes/daterange_helptexts.php:60 +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 +msgid "Past" +msgstr "Tidigare" + +#: includes/daterange_helptexts.php:65 +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 +msgid "No valid start date provided" +msgstr "" + +#: includes/events_post_type.php:60 +msgid "Events" +msgstr "Aktiviteter" + +#: includes/events_post_type.php:61 +msgid "Event" +msgstr "" + +#: includes/events_post_type.php:62 +msgid "Add New" +msgstr "Lägg till ny" + +#: includes/events_post_type.php:63 +msgid "Add New Event" +msgstr "Lägg till ny aktivitet" + +#: includes/events_post_type.php:64 +msgid "Edit Event" +msgstr "Ändra aktivitet" + +#: includes/events_post_type.php:65 +msgid "New Event" +msgstr "" + +#: includes/events_post_type.php:66 +msgid "View Event" +msgstr "" + +#: includes/events_post_type.php:67 +msgid "View Events" +msgstr "" + +#: includes/events_post_type.php:68 +msgid "Search Events" +msgstr "" + +#: includes/events_post_type.php:70 +msgid "No events found in Trash" +msgstr "" + +#: includes/events_post_type.php:72 +msgid "All Events" +msgstr "Alla aktiviteter" + +#: includes/events_post_type.php:73 +msgid "Event Archives" +msgstr "" + +#: includes/events_post_type.php:74 +msgid "Event Attributes" +msgstr "" + +#: includes/events_post_type.php:75 +msgid "Insert into event" +msgstr "" + +#: includes/events_post_type.php:76 +msgid "Uploaded to this event" +msgstr "" + +#: includes/events_post_type.php:77 +msgid "Event List" +msgstr "Aktivitetslista" + +#: includes/events_post_type.php:78 +msgid "Filter events list" +msgstr "" + +#: includes/events_post_type.php:79 +msgid "Events list navigation" +msgstr "" + +#: includes/events_post_type.php:80 +msgid "Events list" +msgstr "" + +#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +msgid "Reset" +msgstr "" + +#: includes/filterbar.php:278 +msgid "All" +msgstr "Alla" + +#: includes/filterbar.php:281 +msgid "All Dates" +msgstr "" + +#: includes/options_helptexts.php:10 +msgid "CSV File to import" +msgstr "CSV-fil att importera" + +#: includes/options_helptexts.php:12 +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 +msgid "Used date format" +msgstr "Använt datum-format" + +#: includes/options_helptexts.php:17 +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 +#, 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 +msgid "full year representation, with 4 digits" +msgstr "" + +#: includes/options_helptexts.php:21 +msgid "numeric representation of a month, with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:22 +msgid "day of the month, 2 digits with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:24 +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 +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 +msgid "Examples" +msgstr "" + +#: includes/options_helptexts.php:33 +msgid "Text for no events" +msgstr "Text vid inga event" + +#: includes/options_helptexts.php:35 +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 +msgid "Multiday filter range" +msgstr "Omfång flerdagarsfilter" + +#: includes/options_helptexts.php:39 +msgid "Use the complete event range in the date filter" +msgstr "Använd hela event-omfånget i datumfiltret" + +#: includes/options_helptexts.php:40 +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 +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 +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 +msgid "Date display" +msgstr "Datumvisning" + +#: includes/options_helptexts.php:46 +msgid "Show the date only once per day" +msgstr "Visa endast datum en gång per dag" + +#: includes/options_helptexts.php:47 +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 +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 +msgid "HTML tags" +msgstr "HTML-taggar" + +#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 +#, 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 +#, 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 +msgid "Preferred language file" +msgstr "" + +#: includes/options_helptexts.php:62 +msgid "Load translations from general language directory first" +msgstr "" + +#: includes/options_helptexts.php:63 +#, 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 +#, 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 +msgid "Events permalink slug" +msgstr "" + +#: includes/options_helptexts.php:69 +msgid "" +"With this option the slug for the events permalink URLs can be defined." +msgstr "" + +#: includes/options_helptexts.php:72 +msgid "Text for \"Show content\"" +msgstr "" + +#: includes/options_helptexts.php:73 +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 +msgid "Text for \"Hide content\"" +msgstr "" + +#: includes/options_helptexts.php:77 +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 +msgid "Disable CSS file" +msgstr "Inaktivera CSS-filen" + +#: includes/options_helptexts.php:81 +#, php-format +msgid "Disable the %1$s file." +msgstr "Inaktivera %1$s filen." + +#: includes/options_helptexts.php:82 +#, 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 +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 +msgid "Date format in edit form" +msgstr "Datumformat i redigeringsformulär" + +#: includes/options_helptexts.php:88 +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 +msgid "The default is an empty string to use the Wordpress standard setting." +msgstr "" + +#: includes/options_helptexts.php:90 +#, 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 +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:96 +msgid "This option activates a RSS feed for the events." +msgstr "" + +#: includes/options_helptexts.php:97 +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:101 +#, php-format +msgid "This option sets the feed name. The default value is %1$s." +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)." +msgstr "" + +#: includes/options_helptexts.php:105 +msgid "Feed Description" +msgstr "Flödesbeskrivning" + +#: includes/options_helptexts.php:106 +#, php-format +msgid "This options set the feed description. The default value is %1$s." +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." +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:112 +msgid "" +"If this option is enabled only the upcoming events are listed in the feed." +msgstr "" + +#: includes/options_helptexts.php:113 +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 "Lägg till RSS-flödeslänk i huvud" + +#: 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:118 +msgid "This option adds a RSS feed in the html head for the events." +msgstr "" + +#: includes/options_helptexts.php:119 +msgid "There are 2 alternatives to include the RSS 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 "" + +#: 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." +msgstr "" + +#: includes/options_helptexts.php:122 +#, php-format +msgid "This option is only valid if the setting %1$s is enabled." +msgstr "" + +#: includes/options_helptexts.php:125 +msgid "Position of the RSS feed link" +msgstr "Position av RSS-flödeslänk" + +#: includes/options_helptexts.php:126 +msgid "at the top (above the navigation bar)" +msgstr "" + +#: includes/options_helptexts.php:126 +msgid "between navigation bar and events" +msgstr "" + +#: includes/options_helptexts.php:126 +msgid "at the bottom" +msgstr "" + +#: includes/options_helptexts.php:127 +msgid "" +"This option specifies the position of the RSS feed link in the event list." +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." +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" +msgstr "" + +#: includes/options_helptexts.php:132 +msgid "center" +msgstr "" + +#: includes/options_helptexts.php:132 +msgid "right" +msgstr "" + +#: includes/options_helptexts.php:133 +msgid "" +"This option specifies the align of the RSS feed link in the event list." +msgstr "" + +#: includes/options_helptexts.php:137 +msgid "Feed link text" +msgstr "Flödets länk-text" + +#: includes/options_helptexts.php:138 +msgid "" +"This option specifies the caption of the RSS feed link in the event list." +msgstr "" + +#: includes/options_helptexts.php:139 +msgid "" +"Insert an empty text to hide any text if you only want to show the rss " +"image." +msgstr "" + +#: includes/options_helptexts.php:143 +msgid "Feed link image" +msgstr "Flödets länk-bild" + +#: 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:145 +msgid "" +"This option specifies if the an image should be dispayed in the feed link in" +" front of the text." +msgstr "" + +#: includes/options_helptexts.php:151 +msgid "Event Category handling" +msgstr "" + +#: includes/options_helptexts.php:152 +msgid "Use Post Categories" +msgstr "" + +#: includes/options_helptexts.php:153 +msgid "" +"Do not maintain seperate categories for the events, and use the existing " +"post categories instead." +msgstr "" + +#: includes/options_helptexts.php:154 +msgid "Attention" +msgstr "OBS" + +#: includes/options_helptexts.php:155 +msgid "" +"This option cannot be changed directly, but you can go to the Event Category" +" switching page from here." +msgstr "" + +#: includes/options.php:40 +msgid "events" +msgstr "" + +#: includes/options.php:41 +msgid "Show content" +msgstr "" + +#: includes/options.php:42 +msgid "Hide content" +msgstr "" + +#: includes/sc_event-list_helptexts.php:7 +msgid "event-id" +msgstr "" + +#: includes/sc_event-list_helptexts.php:8 +#, 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 +msgid "year" +msgstr "" + +#: includes/sc_event-list_helptexts.php:11 +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 +#, 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 +msgid "category slug" +msgstr "" + +#: includes/sc_event-list_helptexts.php:15 +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 +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 +msgid "This attribute defines the initial order of the events." +msgstr "" + +#: includes/sc_event-list_helptexts.php:20 +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 +#, 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 +#, 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 +#, 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 +#, php-format +msgid "See %1$s description if you want to define complex filters." +msgstr "" + +#: includes/sc_event-list_helptexts.php:28 +msgid "category slugs" +msgstr "" + +#: includes/sc_event-list_helptexts.php:29 +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 +#, 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 +#, 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 +msgid "number" +msgstr "" + +#: includes/sc_event-list_helptexts.php:34 +#, 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 +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 +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 +#, 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 +#, 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 +#, 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 +msgid "" +"Find below an overview of the available filterbar items and their options:" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "filterbar item" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:63 +msgid "description" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "item options" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "option values" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "default value" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "option description" +msgstr "" + +#: includes/sc_event-list_helptexts.php:47 +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 +msgid "Add an entry to show all events." +msgstr "" + +#: includes/sc_event-list_helptexts.php:49 +#: includes/sc_event-list_helptexts.php:54 +msgid "Add an entry to show all upcoming events." +msgstr "" + +#: includes/sc_event-list_helptexts.php:50 +#: includes/sc_event-list_helptexts.php:55 +msgid "Add an entry to show events in the past." +msgstr "" + +#: includes/sc_event-list_helptexts.php:51 +msgid "Set descending or ascending order of year entries." +msgstr "" + +#: includes/sc_event-list_helptexts.php:52 +msgid "Show a list of all available months." +msgstr "" + +#: includes/sc_event-list_helptexts.php:56 +msgid "Set descending or ascending order of month entries." +msgstr "" + +#: includes/sc_event-list_helptexts.php:57 +msgid "php date-formats" +msgstr "" + +#: includes/sc_event-list_helptexts.php:57 +msgid "Set the displayed date format of the month entries." +msgstr "" + +#: includes/sc_event-list_helptexts.php:58 +#, 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 +#, 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 +msgid "Show a list of all available categories." +msgstr "" + +#: includes/sc_event-list_helptexts.php:59 +msgid "Add an entry to show events from all categories." +msgstr "" + +#: includes/sc_event-list_helptexts.php:60 +msgid "A link to reset the eventlist filter to standard." +msgstr "" + +#: includes/sc_event-list_helptexts.php:60 +msgid "any text" +msgstr "" + +#: includes/sc_event-list_helptexts.php:60 +msgid "Set the caption of the link." +msgstr "" + +#: includes/sc_event-list_helptexts.php:61 +msgid "Find below an overview of the available filterbar display options:" +msgstr "" + +#: includes/sc_event-list_helptexts.php:63 +msgid "display option" +msgstr "" + +#: includes/sc_event-list_helptexts.php:63 +msgid "available for" +msgstr "" + +#: includes/sc_event-list_helptexts.php:64 +#, 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 +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 +msgid "Shows a simple link which can be clicked." +msgstr "" + +#: includes/sc_event-list_helptexts.php:67 +msgid "Find below some declaration examples with descriptions:" +msgstr "" + +#: includes/sc_event-list_helptexts.php:69 +#, 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 +#, 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 +msgid "option_name" +msgstr "" + +#: includes/sc_event-list_helptexts.php:71 +msgid "value" +msgstr "" + +#: includes/sc_event-list_helptexts.php:72 +#, 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 +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 +#, 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 +msgid "This attribute has no influence if only a single event is shown." +msgstr "" + +#: includes/sc_event-list_helptexts.php:80 +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 +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 +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 +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 +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 +#, php-format +msgid "With the standard value %1$s the full text is displayed." +msgstr "" + +#: includes/sc_event-list_helptexts.php:110 +msgid "" +"This attribute specifies if the content 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 +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" +"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n" +"\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 +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" +"\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 />\n" +"\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 +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 +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 +msgid "Event Information:" +msgstr "Aktivitets Information:" + +#: includes/widget_helptexts.php:10 +msgid "This option defines the displayed title for the widget." +msgstr "" + +#: includes/widget_helptexts.php:15 +msgid "Category Filter" +msgstr "Kategori Filter" + +#: includes/widget_helptexts.php:17 +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 +msgid "Number of listed events" +msgstr "Antal aktiviteter som skall visas" + +#: includes/widget_helptexts.php:24 +msgid "The number of upcoming events to display" +msgstr "Antal kommande aktiviteter som skall visas" + +#: includes/widget_helptexts.php:29 +msgid "Truncate event title to" +msgstr "" + +#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52 +#: includes/widget_helptexts.php:67 +msgid "characters" +msgstr "tecken" + +#: includes/widget_helptexts.php:31 +msgid "" +"This option defines the number of displayed characters for the event title." +msgstr "" + +#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54 +#, 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 +msgid "Show event starttime" +msgstr "Visa starttiden för aktivitet" + +#: includes/widget_helptexts.php:39 +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 +msgid "Show event location" +msgstr "Visa plats för aktivitet" + +#: includes/widget_helptexts.php:46 +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 +msgid "Truncate location to" +msgstr "" + +#: includes/widget_helptexts.php:53 +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" +msgstr "" + +#: includes/widget_helptexts.php:61 +msgid "This option defines if the event content will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:66 +msgid "Truncate content to" +msgstr "" + +#: includes/widget_helptexts.php:68 +msgid "" +"If the event content are diplayed this option defines the number of diplayed" +" characters." +msgstr "" + +#: includes/widget_helptexts.php:69 +#, php-format +msgid "Set this value to %1$s to view the full text." +msgstr "" + +#: includes/widget_helptexts.php:74 +msgid "URL to the linked Event List page" +msgstr "" + +#: includes/widget_helptexts.php:76 +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 +msgid "Shortcode ID on linked page" +msgstr "" + +#: includes/widget_helptexts.php:83 +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 +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 +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 +msgid "Caption for the link" +msgstr "Titel för länken" + +#: includes/widget_helptexts.php:104 +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 +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 +msgid "Upcoming events" +msgstr "Kommande aktiviteter" + +#: includes/widget.php:38 +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 new file mode 100644 index 0000000000000000000000000000000000000000..82aa697790f6b29eaddd6486b10f5e70ffa2a34a Binary files /dev/null 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 new file mode 100644 index 0000000000000000000000000000000000000000..05071bc0237678795a22d679a5fb0d8ea3d64d80 --- /dev/null +++ b/wp-content/plugins/event-list/languages/event-list-zh_CN.po @@ -0,0 +1,1980 @@ +# Translation file for the 'Event List' WordPress plugin +# Copyright (C) 2018 by mibuthu +# This file is distributed under the same license as the corresponding wordpress plugin. +# +# Translators: +# Ray Yang <yangray@gmail.com>, 2016-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" +"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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: admin/admin.php:57 +#, php-format +msgid "Errors during upgrade of plugin %1$s" +msgstr "" + +#: admin/admin.php:57 +#, php-format +msgid "Upgrade of plugin %1$s successful" +msgstr "" + +#: admin/admin.php:106 admin/includes/admin-settings.php:65 +msgid "Event List Settings" +msgstr "活动列表设置" + +#: admin/admin.php:106 +msgid "Settings" +msgstr "设置" + +#: admin/admin.php:110 admin/includes/admin-about.php:37 +msgid "About Event List" +msgstr "有关活动列表" + +#: admin/admin.php:110 +msgid "About" +msgstr "有关" + +#: admin/admin.php:132 +#, php-format +msgid "%s Event" +msgid_plural "%s Events" +msgstr[0] "" + +#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 +msgid "General" +msgstr "一般" + +#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:105 +msgid "Shortcode Attributes" +msgstr "段代码属性" + +#: admin/includes/admin-about.php:72 +msgid "Help and Instructions" +msgstr "帮助和指引" + +#: admin/includes/admin-about.php:73 +#, php-format +msgid "You can manage the events %1$shere%2$s" +msgstr "您可以在%1$s这里%2$s管理活动" + +#: admin/includes/admin-about.php:74 +msgid "To show the events on your site you have 2 possibilities" +msgstr "您有2种可能展示活动在您的网站" + +#: admin/includes/admin-about.php:75 +#, 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 +#, 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 +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 +#, 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 +msgid "The available widget options are described in their tooltip text." +msgstr "" + +#: admin/includes/admin-about.php:80 +#, 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 +msgid "Add links to the single events" +msgstr "" + +#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 +msgid "Add a link to the Event List page" +msgstr "" + +#: admin/includes/admin-about.php:81 +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 +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 +#, 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 +#, 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 +#, 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 +msgid "Settings page" +msgstr "" + +#: admin/includes/admin-about.php:92 +msgid "About the plugin author" +msgstr "" + +#: admin/includes/admin-about.php:94 +#, 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" +msgstr "" + +#: admin/includes/admin-about.php:95 +#, 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" +msgstr "" + +#: admin/includes/admin-about.php:96 +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 +#, php-format +msgid "Donate with %1$s" +msgstr "" + +#: admin/includes/admin-about.php:107 +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 +#, 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 +msgid "" +"Below you can find a list of all supported attributes with their " +"descriptions and available options:" +msgstr "" + +#: admin/includes/admin-about.php:124 +msgid "Attribute name" +msgstr "" + +#: admin/includes/admin-about.php:125 +msgid "Value options" +msgstr "" + +#: admin/includes/admin-about.php:126 +msgid "Default value" +msgstr "" + +#: admin/includes/admin-about.php:127 +msgid "Description" +msgstr "" + +#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 +#: includes/sc_event-list_helptexts.php:31 +msgid "Filter Syntax" +msgstr "" + +#: admin/includes/admin-about.php:146 +msgid "" +"For date and cat filters you can specify complex filters with the following " +"syntax:" +msgstr "" + +#: admin/includes/admin-about.php:147 +#, 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 +msgid "AND" +msgstr "" + +#: admin/includes/admin-about.php:147 +msgid "OR" +msgstr "" + +#: admin/includes/admin-about.php:147 +msgid "or" +msgstr "" + +#: admin/includes/admin-about.php:147 +msgid "and" +msgstr "" + +#: admin/includes/admin-about.php:148 +msgid "Examples for cat filters:" +msgstr "" + +#: admin/includes/admin-about.php:149 +#, php-format +msgid "Show all events with category %1$s." +msgstr "" + +#: admin/includes/admin-about.php:150 +#, php-format +msgid "Show all events with category %1$s or %2$s." +msgstr "" + +#: admin/includes/admin-about.php:151 +#, 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 +msgid "Available Date Formats" +msgstr "" + +#: admin/includes/admin-about.php:157 +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 +msgid "Available Date Range Formats" +msgstr "" + +#: admin/includes/admin-about.php:166 +msgid "For date filters you can use the following daterange formats:" +msgstr "" + +#: admin/includes/admin-about.php:178 +msgid "Value" +msgstr "地点" + +#: admin/includes/admin-about.php:182 +msgid "Example" +msgstr "范例" + +#: admin/includes/admin-categories.php:38 +msgid "Synchronize with post categories" +msgstr "" + +#: admin/includes/admin-categories.php:46 +#, php-format +msgid "%1$s categories modified (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:47 +#, php-format +msgid "%1$s categories added (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:48 +#, php-format +msgid "%1$s categories deleted (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:50 +#, php-format +msgid "%1$s categories not modified (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:51 +#, php-format +msgid "%1$s categories not added (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:52 +#, php-format +msgid "%1$s categories not deleted (%2$s)" +msgstr "" + +#: admin/includes/admin-categories.php:55 +msgid "An Error occured during the category sync" +msgstr "" + +#: admin/includes/admin-categories.php:59 +msgid "Category sync finished" +msgstr "" + +#: admin/includes/admin-category-sync.php:45 +msgid "Error: You are not allowed to view this page!" +msgstr "" + +#: admin/includes/admin-category-sync.php:62 +msgid "Affected Categories when switching to seperate Event Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:63 +msgid "Switch option to seperate Event Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:64 +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 +msgid "" +"Afterwards the event categories are independent of the post categories." +msgstr "" + +#: admin/includes/admin-category-sync.php:68 +msgid "Affected Categories when switching to use Post Categories for events" +msgstr "" + +#: admin/includes/admin-category-sync.php:69 +msgid "Switch option to use Post Categories for events" +msgstr "" + +#: admin/includes/admin-category-sync.php:70 +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 +msgid "Event Categories: Synchronise with Post Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:74 +msgid "Start synchronisation" +msgstr "" + +#: admin/includes/admin-category-sync.php:75 +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 +msgid "Categories to modify" +msgstr "" + +#: admin/includes/admin-category-sync.php:91 +msgid "Categories to add" +msgstr "" + +#: admin/includes/admin-category-sync.php:92 +msgid "Categories to delete (optional)" +msgstr "" + +#: admin/includes/admin-category-sync.php:93 +msgid "Delete not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:97 +msgid "Categories with differences" +msgstr "" + +#: admin/includes/admin-category-sync.php:98 +msgid "Categories to add (optional)" +msgstr "" + +#: admin/includes/admin-category-sync.php:99 +msgid "Add not available post categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:117 +msgid "none" +msgstr "" + +#: admin/includes/admin-import.php:49 +msgid "Import Events" +msgstr "" + +#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:198 +msgid "Step" +msgstr "" + +#: admin/includes/admin-import.php:69 +msgid "Set import file and options" +msgstr "" + +#: admin/includes/admin-import.php:72 +#, php-format +msgid "Proceed with Step %1$s" +msgstr "" + +#: admin/includes/admin-import.php:75 +msgid "Example file" +msgstr "" + +#: admin/includes/admin-import.php:76 +#, 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 +msgid "Note" +msgstr "" + +#: admin/includes/admin-import.php:77 +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 +msgid "Sorry, there has been an error." +msgstr "" + +#: admin/includes/admin-import.php:85 +msgid "The file does not exist, please try again." +msgstr "" + +#: admin/includes/admin-import.php:93 +msgid "The uploaded file does not have the required csv extension." +msgstr "" + +#: admin/includes/admin-import.php:105 +msgid "Events review and additonal category selection" +msgstr "" + +#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +msgid "Error" +msgstr "" + +#: admin/includes/admin-import.php:111 +msgid "This CSV file cannot be imported" +msgstr "" + +#: admin/includes/admin-import.php:122 +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 +msgid "Warning" +msgstr "" + +#: admin/includes/admin-import.php:126 +#, 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 +#, php-format +msgid "CSV line %1$s" +msgstr "" + +#: admin/includes/admin-import.php:144 +msgid "You can still import all other events listed below." +msgstr "" + +#: admin/includes/admin-import.php:163 +msgid "" +"The following category slugs are not available and will be removed from the " +"imported events" +msgstr "" + +#: admin/includes/admin-import.php:169 +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 +msgid "Import result" +msgstr "" + +#: admin/includes/admin-import.php:201 +#, php-format +msgid "Import of %1$s events successful!" +msgstr "" + +#: admin/includes/admin-import.php:202 +msgid "Go back to All Events" +msgstr "" + +#: admin/includes/admin-import.php:206 +msgid "Errors during Import" +msgstr "" + +#: admin/includes/admin-import.php:215 +msgid "Event from CSV-line" +msgstr "" + +#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 +#: includes/widget_helptexts.php:8 +msgid "Title" +msgstr "" + +#: admin/includes/admin-import.php:227 +msgid "Start Date" +msgstr "" + +#: admin/includes/admin-import.php:228 +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 +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 +msgid "Location" +msgstr "" + +#: admin/includes/admin-import.php:231 +msgid "Content" +msgstr "" + +#: admin/includes/admin-import.php:232 +msgid "Category slugs" +msgstr "" + +#: admin/includes/admin-import.php:274 +msgid "Header line is missing or not correct!" +msgstr "" + +#: admin/includes/admin-import.php:275 +#, 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 +#, php-format +msgid "Wrong number of items in line (%1$s items found, 6-7 required)" +msgstr "" + +#: admin/includes/admin-import.php:309 +msgid "Empty event title found" +msgstr "" + +#: admin/includes/admin-import.php:315 +msgid "Wrong date format for startdate" +msgstr "" + +#: admin/includes/admin-import.php:324 +msgid "Wrong date format for enddate" +msgstr "" + +#: admin/includes/admin-import.php:365 +msgid "Import events" +msgstr "" + +#: admin/includes/admin-import.php:366 +msgid "Add additional categories" +msgstr "" + +#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +msgid "Import" +msgstr "" + +#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +msgid "No events found" +msgstr "" + +#: admin/includes/admin-import.php:432 +msgid "Saving of event failed!" +msgstr "" + +#: admin/includes/admin-main.php:60 +msgid "Event Date" +msgstr "" + +#: admin/includes/admin-main.php:64 +msgid "Author" +msgstr "" + +#: admin/includes/admin-main.php:126 +#, php-format +msgid "Add a copy of %1$s" +msgstr "" + +#: admin/includes/admin-main.php:126 +msgid "Copy" +msgstr "" + +#: admin/includes/admin-new.php:51 +msgid "Event data" +msgstr "" + +#: admin/includes/admin-new.php:80 +msgid "Add Copy" +msgstr "" + +#: admin/includes/admin-new.php:84 +msgid "Date" +msgstr "" + +#: admin/includes/admin-new.php:84 +msgid "required" +msgstr "" + +#: admin/includes/admin-new.php:87 +msgid "Multi-Day Event" +msgstr "" + +#: admin/includes/admin-new.php:106 +msgid "Event Title" +msgstr "" + +#: admin/includes/admin-new.php:121 +msgid "Event Content" +msgstr "" + +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +msgid "Event updated." +msgstr "" + +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +msgid "View event" +msgstr "" + +#: admin/includes/admin-new.php:184 +#, php-format +msgid "Event restored to revision from %1$s" +msgstr "" + +#: admin/includes/admin-new.php:185 +msgid "Event published." +msgstr "" + +#: admin/includes/admin-new.php:187 +msgid "Event submitted." +msgstr "" + +#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 +#: admin/includes/admin-new.php:190 +msgid "Preview event" +msgstr "" + +#: admin/includes/admin-new.php:188 +#, php-format +msgid "Event scheduled for: %1$s>" +msgstr "" + +#: admin/includes/admin-new.php:190 +msgid "Event draft updated." +msgstr "" + +#: admin/includes/admin-settings.php:71 +msgid "Go to Event Category switching page" +msgstr "" + +#: admin/includes/admin-settings.php:83 +msgid "Frontend Settings" +msgstr "" + +#: admin/includes/admin-settings.php:84 +msgid "Admin Page Settings" +msgstr "" + +#: admin/includes/admin-settings.php:85 +msgid "Feed Settings" +msgstr "" + +#: admin/includes/admin-settings.php:86 +msgid "Category Taxonomy" +msgstr "" + +#: includes/daterange_helptexts.php:7 +msgid "Year" +msgstr "" + +#: includes/daterange_helptexts.php:8 +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 +#, 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 +msgid "the resulting year" +msgstr "" + +#: includes/daterange_helptexts.php:12 +msgid "Month" +msgstr "" + +#: includes/daterange_helptexts.php:13 +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 +msgid "the resulting month" +msgstr "" + +#: includes/daterange_helptexts.php:17 +msgid "Day" +msgstr "" + +#: includes/daterange_helptexts.php:18 +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 +msgid "Relative Year" +msgstr "" + +#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28 +#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42 +#, php-format +msgid "%1$s from now can be specified in the following notation: %2$s" +msgstr "" + +#: includes/daterange_helptexts.php:22 +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 +#, 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 +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 +#, php-format +msgid "Additionally the following values are available: %1$s" +msgstr "" + +#: includes/daterange_helptexts.php:27 +msgid "Relative Month" +msgstr "" + +#: includes/daterange_helptexts.php:28 +msgid "A relative month" +msgstr "" + +#: includes/daterange_helptexts.php:29 +msgid "number of months" +msgstr "" + +#: includes/daterange_helptexts.php:33 +msgid "Relative Week" +msgstr "" + +#: includes/daterange_helptexts.php:34 +msgid "A relative week" +msgstr "" + +#: includes/daterange_helptexts.php:35 +msgid "number of weeks" +msgstr "" + +#: includes/daterange_helptexts.php:36 +msgid "the resulting week" +msgstr "" + +#: includes/daterange_helptexts.php:37 +#, 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 +msgid "Relative Day" +msgstr "" + +#: includes/daterange_helptexts.php:42 +msgid "A relative day" +msgstr "" + +#: includes/daterange_helptexts.php:43 +msgid "number of days" +msgstr "" + +#: includes/daterange_helptexts.php:49 +msgid "Date range" +msgstr "" + +#: includes/daterange_helptexts.php:50 +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 +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 +#, php-format +msgid "The corresponding date_range format is: %1$s" +msgstr "" + +#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 +msgid "Upcoming" +msgstr "" + +#: includes/daterange_helptexts.php:60 +msgid "This value defines a range from the actual day to the future." +msgstr "" + +#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 +msgid "Past" +msgstr "" + +#: includes/daterange_helptexts.php:65 +msgid "This value defines a range from the past to the previous day." +msgstr "" + +#: includes/event.php:107 +msgid "No valid start date provided" +msgstr "" + +#: includes/events_post_type.php:60 +msgid "Events" +msgstr "活动" + +#: includes/events_post_type.php:61 +msgid "Event" +msgstr "" + +#: includes/events_post_type.php:62 +msgid "Add New" +msgstr "添加" + +#: includes/events_post_type.php:63 +msgid "Add New Event" +msgstr "添加新活动" + +#: includes/events_post_type.php:64 +msgid "Edit Event" +msgstr "" + +#: includes/events_post_type.php:65 +msgid "New Event" +msgstr "" + +#: includes/events_post_type.php:66 +msgid "View Event" +msgstr "" + +#: includes/events_post_type.php:67 +msgid "View Events" +msgstr "" + +#: includes/events_post_type.php:68 +msgid "Search Events" +msgstr "" + +#: includes/events_post_type.php:70 +msgid "No events found in Trash" +msgstr "" + +#: includes/events_post_type.php:72 +msgid "All Events" +msgstr "所有活动" + +#: includes/events_post_type.php:73 +msgid "Event Archives" +msgstr "" + +#: includes/events_post_type.php:74 +msgid "Event Attributes" +msgstr "" + +#: includes/events_post_type.php:75 +msgid "Insert into event" +msgstr "" + +#: includes/events_post_type.php:76 +msgid "Uploaded to this event" +msgstr "" + +#: includes/events_post_type.php:77 +msgid "Event List" +msgstr "活动列表" + +#: includes/events_post_type.php:78 +msgid "Filter events list" +msgstr "" + +#: includes/events_post_type.php:79 +msgid "Events list navigation" +msgstr "" + +#: includes/events_post_type.php:80 +msgid "Events list" +msgstr "" + +#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +msgid "Reset" +msgstr "" + +#: includes/filterbar.php:278 +msgid "All" +msgstr "" + +#: includes/filterbar.php:281 +msgid "All Dates" +msgstr "" + +#: includes/options_helptexts.php:10 +msgid "CSV File to import" +msgstr "" + +#: includes/options_helptexts.php:12 +msgid "Please select the file which contains the event data in CSV format." +msgstr "" + +#: includes/options_helptexts.php:15 +msgid "Used date format" +msgstr "" + +#: includes/options_helptexts.php:17 +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 +#, 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 +msgid "full year representation, with 4 digits" +msgstr "" + +#: includes/options_helptexts.php:21 +msgid "numeric representation of a month, with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:22 +msgid "day of the month, 2 digits with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:24 +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 +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 +msgid "Examples" +msgstr "" + +#: includes/options_helptexts.php:33 +msgid "Text for no events" +msgstr "" + +#: includes/options_helptexts.php:35 +msgid "" +"This option defines the displayed text when no events are available for the " +"selected view." +msgstr "" + +#: includes/options_helptexts.php:38 +msgid "Multiday filter range" +msgstr "" + +#: includes/options_helptexts.php:39 +msgid "Use the complete event range in the date filter" +msgstr "" + +#: includes/options_helptexts.php:40 +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 +msgid "" +"If disabled, only the start day of an event is considered in the filter." +msgstr "" + +#: includes/options_helptexts.php:42 +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 +msgid "Date display" +msgstr "" + +#: includes/options_helptexts.php:46 +msgid "Show the date only once per day" +msgstr "" + +#: includes/options_helptexts.php:47 +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 +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 +msgid "HTML tags" +msgstr "" + +#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 +#, php-format +msgid "Allow HTML tags in the event field \"%1$s\"" +msgstr "" + +#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 +#, php-format +msgid "" +"This option specifies if HTML tags are allowed in the event field \"%1$s\"." +msgstr "" + +#: includes/options_helptexts.php:61 +msgid "Preferred language file" +msgstr "" + +#: includes/options_helptexts.php:62 +msgid "Load translations from general language directory first" +msgstr "" + +#: includes/options_helptexts.php:63 +#, 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 +#, 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 +msgid "Events permalink slug" +msgstr "" + +#: includes/options_helptexts.php:69 +msgid "" +"With this option the slug for the events permalink URLs can be defined." +msgstr "" + +#: includes/options_helptexts.php:72 +msgid "Text for \"Show content\"" +msgstr "" + +#: includes/options_helptexts.php:73 +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 +msgid "Text for \"Hide content\"" +msgstr "" + +#: includes/options_helptexts.php:77 +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 +msgid "Disable CSS file" +msgstr "" + +#: includes/options_helptexts.php:81 +#, php-format +msgid "Disable the %1$s file." +msgstr "" + +#: includes/options_helptexts.php:82 +#, php-format +msgid "With this option you can disable the inclusion of the %1$s file." +msgstr "" + +#: includes/options_helptexts.php:83 +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 +msgid "Date format in edit form" +msgstr "" + +#: includes/options_helptexts.php:88 +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 +msgid "The default is an empty string to use the Wordpress standard setting." +msgstr "" + +#: includes/options_helptexts.php:90 +#, 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 +msgid "Enable RSS feed" +msgstr "" + +#: includes/options_helptexts.php:95 +msgid "Enable support for an event RSS feed" +msgstr "" + +#: includes/options_helptexts.php:96 +msgid "This option activates a RSS feed for the events." +msgstr "" + +#: includes/options_helptexts.php:97 +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 "" + +#: includes/options_helptexts.php:101 +#, php-format +msgid "This option sets the feed name. The default value is %1$s." +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)." +msgstr "" + +#: includes/options_helptexts.php:105 +msgid "Feed Description" +msgstr "" + +#: includes/options_helptexts.php:106 +#, php-format +msgid "This options set the feed description. The default value is %1$s." +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." +msgstr "" + +#: includes/options_helptexts.php:110 +msgid "Listed events" +msgstr "" + +#: includes/options_helptexts.php:111 +msgid "Only show upcoming events in feed" +msgstr "" + +#: includes/options_helptexts.php:112 +msgid "" +"If this option is enabled only the upcoming events are listed in the feed." +msgstr "" + +#: includes/options_helptexts.php:113 +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 "" + +#: includes/options_helptexts.php:117 +msgid "Add RSS feed link in the html head" +msgstr "" + +#: includes/options_helptexts.php:118 +msgid "This option adds a RSS feed in the html head for the events." +msgstr "" + +#: includes/options_helptexts.php:119 +msgid "There are 2 alternatives to include the RSS 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 "" + +#: 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." +msgstr "" + +#: includes/options_helptexts.php:122 +#, php-format +msgid "This option is only valid if the setting %1$s is enabled." +msgstr "" + +#: includes/options_helptexts.php:125 +msgid "Position of the RSS feed link" +msgstr "" + +#: includes/options_helptexts.php:126 +msgid "at the top (above the navigation bar)" +msgstr "" + +#: includes/options_helptexts.php:126 +msgid "between navigation bar and events" +msgstr "" + +#: includes/options_helptexts.php:126 +msgid "at the bottom" +msgstr "" + +#: includes/options_helptexts.php:127 +msgid "" +"This option specifies the position of the RSS feed link in the event list." +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." +msgstr "" + +#: includes/options_helptexts.php:131 +msgid "Align of the RSS feed link" +msgstr "" + +#: includes/options_helptexts.php:132 +msgid "left" +msgstr "" + +#: includes/options_helptexts.php:132 +msgid "center" +msgstr "" + +#: includes/options_helptexts.php:132 +msgid "right" +msgstr "" + +#: includes/options_helptexts.php:133 +msgid "" +"This option specifies the align of the RSS feed link in the event list." +msgstr "" + +#: includes/options_helptexts.php:137 +msgid "Feed link text" +msgstr "" + +#: includes/options_helptexts.php:138 +msgid "" +"This option specifies the caption of the RSS feed link in the event list." +msgstr "" + +#: includes/options_helptexts.php:139 +msgid "" +"Insert an empty text to hide any text if you only want to show the rss " +"image." +msgstr "" + +#: includes/options_helptexts.php:143 +msgid "Feed link image" +msgstr "" + +#: includes/options_helptexts.php:144 +msgid "Show rss image in feed link" +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." +msgstr "" + +#: includes/options_helptexts.php:151 +msgid "Event Category handling" +msgstr "" + +#: includes/options_helptexts.php:152 +msgid "Use Post Categories" +msgstr "" + +#: includes/options_helptexts.php:153 +msgid "" +"Do not maintain seperate categories for the events, and use the existing " +"post categories instead." +msgstr "" + +#: includes/options_helptexts.php:154 +msgid "Attention" +msgstr "" + +#: includes/options_helptexts.php:155 +msgid "" +"This option cannot be changed directly, but you can go to the Event Category" +" switching page from here." +msgstr "" + +#: includes/options.php:40 +msgid "events" +msgstr "" + +#: includes/options.php:41 +msgid "Show content" +msgstr "" + +#: includes/options.php:42 +msgid "Hide content" +msgstr "" + +#: includes/sc_event-list_helptexts.php:7 +msgid "event-id" +msgstr "" + +#: includes/sc_event-list_helptexts.php:8 +#, 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 +msgid "year" +msgstr "" + +#: includes/sc_event-list_helptexts.php:11 +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 +#, 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 +msgid "category slug" +msgstr "" + +#: includes/sc_event-list_helptexts.php:15 +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 +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 +msgid "This attribute defines the initial order of the events." +msgstr "" + +#: includes/sc_event-list_helptexts.php:20 +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 +#, 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 +#, 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 +#, 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 +#, php-format +msgid "See %1$s description if you want to define complex filters." +msgstr "" + +#: includes/sc_event-list_helptexts.php:28 +msgid "category slugs" +msgstr "" + +#: includes/sc_event-list_helptexts.php:29 +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 +#, 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 +#, 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 +msgid "number" +msgstr "" + +#: includes/sc_event-list_helptexts.php:34 +#, 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 +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 +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 +#, 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 +#, 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 +#, 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 +msgid "" +"Find below an overview of the available filterbar items and their options:" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "filterbar item" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +#: includes/sc_event-list_helptexts.php:63 +msgid "description" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "item options" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "option values" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "default value" +msgstr "" + +#: includes/sc_event-list_helptexts.php:46 +msgid "option description" +msgstr "" + +#: includes/sc_event-list_helptexts.php:47 +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 +msgid "Add an entry to show all events." +msgstr "" + +#: includes/sc_event-list_helptexts.php:49 +#: includes/sc_event-list_helptexts.php:54 +msgid "Add an entry to show all upcoming events." +msgstr "" + +#: includes/sc_event-list_helptexts.php:50 +#: includes/sc_event-list_helptexts.php:55 +msgid "Add an entry to show events in the past." +msgstr "" + +#: includes/sc_event-list_helptexts.php:51 +msgid "Set descending or ascending order of year entries." +msgstr "" + +#: includes/sc_event-list_helptexts.php:52 +msgid "Show a list of all available months." +msgstr "" + +#: includes/sc_event-list_helptexts.php:56 +msgid "Set descending or ascending order of month entries." +msgstr "" + +#: includes/sc_event-list_helptexts.php:57 +msgid "php date-formats" +msgstr "" + +#: includes/sc_event-list_helptexts.php:57 +msgid "Set the displayed date format of the month entries." +msgstr "" + +#: includes/sc_event-list_helptexts.php:58 +#, 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 +#, 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 +msgid "Show a list of all available categories." +msgstr "" + +#: includes/sc_event-list_helptexts.php:59 +msgid "Add an entry to show events from all categories." +msgstr "" + +#: includes/sc_event-list_helptexts.php:60 +msgid "A link to reset the eventlist filter to standard." +msgstr "" + +#: includes/sc_event-list_helptexts.php:60 +msgid "any text" +msgstr "" + +#: includes/sc_event-list_helptexts.php:60 +msgid "Set the caption of the link." +msgstr "" + +#: includes/sc_event-list_helptexts.php:61 +msgid "Find below an overview of the available filterbar display options:" +msgstr "" + +#: includes/sc_event-list_helptexts.php:63 +msgid "display option" +msgstr "" + +#: includes/sc_event-list_helptexts.php:63 +msgid "available for" +msgstr "" + +#: includes/sc_event-list_helptexts.php:64 +#, 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 +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 +msgid "Shows a simple link which can be clicked." +msgstr "" + +#: includes/sc_event-list_helptexts.php:67 +msgid "Find below some declaration examples with descriptions:" +msgstr "" + +#: includes/sc_event-list_helptexts.php:69 +#, 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 +#, 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 +msgid "option_name" +msgstr "" + +#: includes/sc_event-list_helptexts.php:71 +msgid "value" +msgstr "" + +#: includes/sc_event-list_helptexts.php:72 +#, 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 +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 +#, 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 +msgid "This attribute has no influence if only a single event is shown." +msgstr "" + +#: includes/sc_event-list_helptexts.php:80 +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 +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 +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 +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 +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 +#, php-format +msgid "With the standard value %1$s the full text is displayed." +msgstr "" + +#: includes/sc_event-list_helptexts.php:110 +msgid "" +"This attribute specifies if the content 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 +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" +"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n" +"\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 +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" +"\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 />\n" +"\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 +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 +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 +msgid "Event Information:" +msgstr "" + +#: includes/widget_helptexts.php:10 +msgid "This option defines the displayed title for the widget." +msgstr "" + +#: includes/widget_helptexts.php:15 +msgid "Category Filter" +msgstr "" + +#: includes/widget_helptexts.php:17 +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 +msgid "Number of listed events" +msgstr "" + +#: includes/widget_helptexts.php:24 +msgid "The number of upcoming events to display" +msgstr "" + +#: includes/widget_helptexts.php:29 +msgid "Truncate event title to" +msgstr "" + +#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52 +#: includes/widget_helptexts.php:67 +msgid "characters" +msgstr "" + +#: includes/widget_helptexts.php:31 +msgid "" +"This option defines the number of displayed characters for the event title." +msgstr "" + +#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54 +#, 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 +msgid "Show event starttime" +msgstr "" + +#: includes/widget_helptexts.php:39 +msgid "This option defines if the event start time will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:44 +msgid "Show event location" +msgstr "" + +#: includes/widget_helptexts.php:46 +msgid "This option defines if the event location will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:51 +msgid "Truncate location to" +msgstr "" + +#: includes/widget_helptexts.php:53 +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" +msgstr "" + +#: includes/widget_helptexts.php:61 +msgid "This option defines if the event content will be displayed." +msgstr "" + +#: includes/widget_helptexts.php:66 +msgid "Truncate content to" +msgstr "" + +#: includes/widget_helptexts.php:68 +msgid "" +"If the event content are diplayed this option defines the number of diplayed" +" characters." +msgstr "" + +#: includes/widget_helptexts.php:69 +#, php-format +msgid "Set this value to %1$s to view the full text." +msgstr "" + +#: includes/widget_helptexts.php:74 +msgid "URL to the linked Event List page" +msgstr "" + +#: includes/widget_helptexts.php:76 +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 +msgid "Shortcode ID on linked page" +msgstr "" + +#: includes/widget_helptexts.php:83 +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 +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 +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 +msgid "Caption for the link" +msgstr "" + +#: includes/widget_helptexts.php:104 +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 +msgid "With this widget a list of upcoming events can be displayed." +msgstr "" + +#: includes/widget.php:25 +msgid "Upcoming events" +msgstr "" + +#: includes/widget.php:38 +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 af6948df74c14cadd3917bde77e97bca99caea71..dde21e87666047866227fa36994314817061e8a7 100644 --- a/wp-content/plugins/event-list/languages/event-list.pot +++ b/wp-content/plugins/event-list/languages/event-list.pot @@ -1,608 +1,676 @@ # Translation file for the 'Event List' WordPress plugin -# Copyright (C) 2017 by mibuthu +# Copyright (C) 2018 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: 2017-10-08 15:55+0200\n" +"POT-Creation-Date: 2018-05-27 12:20+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:48 -msgid "Event List" -msgstr "" - -#: admin/admin.php:51 admin/includes/admin-main.php:119 -#: admin/includes/category_table.php:113 -msgid "Events" -msgstr "" - -#: admin/admin.php:51 -msgid "All Events" -msgstr "" - -#: admin/admin.php:55 admin/includes/admin-new.php:46 -msgid "Add New Event" -msgstr "" - -#: admin/admin.php:55 admin/includes/admin-main.php:121 -msgid "Add New" -msgstr "" - -#: admin/admin.php:59 admin/includes/admin-categories.php:48 -msgid "Event List Categories" +#: admin/admin.php:57 +#, php-format +msgid "Errors during upgrade of plugin %1$s" msgstr "" -#: admin/admin.php:59 admin/includes/admin-new.php:150 -#: admin/includes/event_table.php:114 -msgid "Categories" +#: admin/admin.php:57 +#, php-format +msgid "Upgrade of plugin %1$s successful" msgstr "" -#: admin/admin.php:63 admin/includes/admin-settings.php:54 +#: admin/admin.php:106 admin/includes/admin-settings.php:65 msgid "Event List Settings" msgstr "" -#: admin/admin.php:63 +#: admin/admin.php:106 msgid "Settings" msgstr "" -#: admin/admin.php:67 admin/includes/admin-about.php:37 +#: admin/admin.php:110 admin/includes/admin-about.php:37 msgid "About Event List" msgstr "" -#: admin/admin.php:67 +#: admin/admin.php:110 msgid "About" msgstr "" -#: admin/admin.php:87 +#: admin/admin.php:132 #, php-format msgid "%s Event" msgid_plural "%s Events" msgstr[0] "" msgstr[1] "" -#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:69 +#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82 msgid "General" msgstr "" -#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77 -#: admin/includes/admin-about.php:104 +#: admin/includes/admin-about.php:60 admin/includes/admin-about.php:78 +#: admin/includes/admin-about.php:105 msgid "Shortcode Attributes" msgstr "" -#: admin/includes/admin-about.php:71 +#: admin/includes/admin-about.php:72 msgid "Help and Instructions" msgstr "" -#: admin/includes/admin-about.php:72 +#: admin/includes/admin-about.php:73 #, php-format msgid "You can manage the events %1$shere%2$s" msgstr "" -#: admin/includes/admin-about.php:73 +#: admin/includes/admin-about.php:74 msgid "To show the events on your site you have 2 possibilities" msgstr "" -#: admin/includes/admin-about.php:74 +#: admin/includes/admin-about.php:75 #, php-format msgid "you can place the <strong>shortcode</strong> %1$s on any page or post" msgstr "" -#: admin/includes/admin-about.php:75 +#: admin/includes/admin-about.php:76 #, php-format msgid "you can add the <strong>widget</strong> %1$s in your sidebars" msgstr "" -#: admin/includes/admin-about.php:76 +#: admin/includes/admin-about.php:77 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:77 +#: admin/includes/admin-about.php:78 #, 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:78 +#: admin/includes/admin-about.php:79 msgid "The available widget options are described in their tooltip text." msgstr "" -#: admin/includes/admin-about.php:79 +#: admin/includes/admin-about.php:80 #, 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:79 includes/widget_helptexts.php:88 +#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:88 msgid "Add links to the single events" msgstr "" -#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:95 +#: admin/includes/admin-about.php:80 includes/widget_helptexts.php:95 msgid "Add a link to the Event List page" msgstr "" -#: admin/includes/admin-about.php:80 +#: admin/includes/admin-about.php:81 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:81 +#: admin/includes/admin-about.php:82 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:82 +#: admin/includes/admin-about.php:83 #, 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:83 +#: admin/includes/admin-about.php:84 #, php-format msgid "The id is available at the end of the URL parameters (e.g. %1$s)." msgstr "" -#: admin/includes/admin-about.php:85 +#: admin/includes/admin-about.php:86 #, 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:85 +#: admin/includes/admin-about.php:86 msgid "Settings page" msgstr "" -#: admin/includes/admin-about.php:91 +#: admin/includes/admin-about.php:92 msgid "About the plugin author" msgstr "" -#: admin/includes/admin-about.php:93 +#: admin/includes/admin-about.php:94 #, 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:93 +#: admin/includes/admin-about.php:94 msgid "wordpress plugin site" msgstr "" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:95 #, php-format msgid "If you like the plugin please rate it on the %1$s." msgstr "" -#: admin/includes/admin-about.php:94 +#: admin/includes/admin-about.php:95 msgid "wordpress plugin review site" msgstr "" -#: admin/includes/admin-about.php:95 +#: admin/includes/admin-about.php:96 msgid "If you want to support the plugin I would be happy to get a small donation" msgstr "" -#: admin/includes/admin-about.php:96 admin/includes/admin-about.php:97 -#: admin/includes/admin-about.php:98 +#: admin/includes/admin-about.php:97 admin/includes/admin-about.php:98 +#: admin/includes/admin-about.php:99 #, php-format msgid "Donate with %1$s" msgstr "" -#: admin/includes/admin-about.php:106 +#: admin/includes/admin-about.php:107 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:107 +#: admin/includes/admin-about.php:108 #, 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:109 +#: admin/includes/admin-about.php:110 msgid "Below you can find a list of all supported attributes with their descriptions and available options:" msgstr "" -#: admin/includes/admin-about.php:123 +#: admin/includes/admin-about.php:124 msgid "Attribute name" msgstr "" -#: admin/includes/admin-about.php:124 +#: admin/includes/admin-about.php:125 msgid "Value options" msgstr "" -#: admin/includes/admin-about.php:125 +#: admin/includes/admin-about.php:126 msgid "Default value" msgstr "" -#: admin/includes/admin-about.php:126 admin/includes/admin-categories.php:194 -#: admin/includes/category_table.php:111 +#: admin/includes/admin-about.php:127 msgid "Description" msgstr "" -#: admin/includes/admin-about.php:144 includes/sc_event-list_helptexts.php:26 +#: admin/includes/admin-about.php:145 includes/sc_event-list_helptexts.php:26 #: includes/sc_event-list_helptexts.php:31 msgid "Filter Syntax" msgstr "" -#: admin/includes/admin-about.php:145 +#: admin/includes/admin-about.php:146 msgid "For date and cat filters you can specify complex filters with the following syntax:" msgstr "" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 #, 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:146 +#: admin/includes/admin-about.php:147 msgid "AND" msgstr "" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "OR" msgstr "" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "or" msgstr "" -#: admin/includes/admin-about.php:146 +#: admin/includes/admin-about.php:147 msgid "and" msgstr "" -#: admin/includes/admin-about.php:147 +#: admin/includes/admin-about.php:148 msgid "Examples for cat filters:" msgstr "" -#: admin/includes/admin-about.php:148 +#: admin/includes/admin-about.php:149 #, php-format msgid "Show all events with category %1$s." msgstr "" -#: admin/includes/admin-about.php:149 +#: admin/includes/admin-about.php:150 #, php-format msgid "Show all events with category %1$s or %2$s." msgstr "" -#: admin/includes/admin-about.php:150 +#: admin/includes/admin-about.php:151 #, 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:155 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:156 includes/sc_event-list_helptexts.php:25 msgid "Available Date Formats" msgstr "" -#: admin/includes/admin-about.php:156 +#: admin/includes/admin-about.php:157 msgid "For date filters you can use the following date formats:" msgstr "" -#: admin/includes/admin-about.php:164 includes/sc_event-list_helptexts.php:25 +#: admin/includes/admin-about.php:165 includes/sc_event-list_helptexts.php:25 msgid "Available Date Range Formats" msgstr "" -#: admin/includes/admin-about.php:165 +#: admin/includes/admin-about.php:166 msgid "For date filters you can use the following daterange formats:" msgstr "" -#: admin/includes/admin-about.php:177 +#: admin/includes/admin-about.php:178 msgid "Value" msgstr "" -#: admin/includes/admin-about.php:181 +#: admin/includes/admin-about.php:182 msgid "Example" msgstr "" -#: admin/includes/admin-categories.php:51 -msgid "Edit Category" +#: admin/includes/admin-categories.php:38 +msgid "Synchronize with post categories" msgstr "" -#: admin/includes/admin-categories.php:51 -msgid "Update Category" +#: admin/includes/admin-categories.php:46 +#, php-format +msgid "%1$s categories modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:57 -msgid "Add New Category" +#: admin/includes/admin-categories.php:47 +#, php-format +msgid "%1$s categories added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:84 +#: admin/includes/admin-categories.php:48 #, php-format -msgid "Category \"%s\" deleted." +msgid "%1$s categories deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:86 +#: admin/includes/admin-categories.php:50 #, php-format -msgid "This Category was also removed from %d events." +msgid "%1$s categories not modified (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:92 +#: admin/includes/admin-categories.php:51 #, php-format -msgid "Error while deleting category \"%s\"" +msgid "%1$s categories not added (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:103 -msgid "Sync with post categories enabled." +#: admin/includes/admin-categories.php:52 +#, php-format +msgid "%1$s categories not deleted (%2$s)" msgstr "" -#: admin/includes/admin-categories.php:106 -msgid "Sync with post categories disabled." +#: admin/includes/admin-categories.php:55 +msgid "An Error occured during the category sync" msgstr "" -#: admin/includes/admin-categories.php:112 -msgid "Manual sync with post categories sucessfully finished." +#: admin/includes/admin-categories.php:59 +msgid "Category sync finished" msgstr "" -#: admin/includes/admin-categories.php:125 -#, php-format -msgid "New Category \"%s\" was added" +#: admin/includes/admin-category-sync.php:45 +msgid "Error: You are not allowed to view this page!" msgstr "" -#: admin/includes/admin-categories.php:128 -#, php-format -msgid "Error: New Category \"%s\" could not be added" +#: admin/includes/admin-category-sync.php:62 +msgid "Affected Categories when switching to seperate Event Categories" msgstr "" -#: admin/includes/admin-categories.php:134 -#, php-format -msgid "Category \"%s\" was modified" +#: admin/includes/admin-category-sync.php:63 +msgid "Switch option to seperate Event Categories" msgstr "" -#: admin/includes/admin-categories.php:137 -#, php-format -msgid "Error: Category \"%s\" could not be modified" +#: admin/includes/admin-category-sync.php:64 +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 +msgid "Afterwards the event categories are independent of the post categories." +msgstr "" + +#: admin/includes/admin-category-sync.php:68 +msgid "Affected Categories when switching to use Post Categories for events" +msgstr "" + +#: admin/includes/admin-category-sync.php:69 +msgid "Switch option to use Post Categories for events" +msgstr "" + +#: admin/includes/admin-category-sync.php:70 +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 +msgid "Event Categories: Synchronise with Post Categories" +msgstr "" + +#: admin/includes/admin-category-sync.php:74 +msgid "Start synchronisation" +msgstr "" + +#: admin/includes/admin-category-sync.php:75 +msgid "If this option is enabled the above listed categories will be deleted and removed from the existing events!" msgstr "" -#: admin/includes/admin-categories.php:144 -msgid "Categories are automatically synced with the post categories." +#: admin/includes/admin-category-sync.php:90 +msgid "Categories to modify" msgstr "" -#: admin/includes/admin-categories.php:145 -msgid "Because of this all options to add new categories or editing existing categories are disabled." +#: admin/includes/admin-category-sync.php:91 +msgid "Categories to add" msgstr "" -#: admin/includes/admin-categories.php:146 -msgid "If you want to manually edit the categories you have to disable this option." +#: admin/includes/admin-category-sync.php:92 +msgid "Categories to delete (optional)" msgstr "" -#: admin/includes/admin-categories.php:173 -msgid "The name is how it appears on your site." +#: admin/includes/admin-category-sync.php:93 +msgid "Delete not available post categories" msgstr "" -#: admin/includes/admin-categories.php:178 -msgid "The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens." +#: admin/includes/admin-category-sync.php:97 +msgid "Categories with differences" msgstr "" -#: admin/includes/admin-categories.php:191 -msgid "Categories can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional." +#: admin/includes/admin-category-sync.php:98 +msgid "Categories to add (optional)" msgstr "" -#: admin/includes/admin-categories.php:241 -msgid "Apply" +#: admin/includes/admin-category-sync.php:99 +msgid "Add not available post categories" msgstr "" -#: admin/includes/admin-categories.php:251 -msgid "Do a manual sync with post categories" +#: admin/includes/admin-category-sync.php:117 +msgid "none" msgstr "" -#: admin/includes/admin-import.php:45 +#: admin/includes/admin-import.php:49 msgid "Import Events" msgstr "" -#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:118 +#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105 +#: admin/includes/admin-import.php:198 msgid "Step" msgstr "" -#: admin/includes/admin-import.php:65 +#: admin/includes/admin-import.php:69 msgid "Set import file and options" msgstr "" -#: admin/includes/admin-import.php:68 +#: admin/includes/admin-import.php:72 #, php-format msgid "Proceed with Step %1$s" msgstr "" -#: admin/includes/admin-import.php:71 +#: admin/includes/admin-import.php:75 msgid "Example file" msgstr "" -#: admin/includes/admin-import.php:72 +#: admin/includes/admin-import.php:76 #, php-format msgid "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)" msgstr "" -#: admin/includes/admin-import.php:73 +#: admin/includes/admin-import.php:77 msgid "Note" msgstr "" -#: admin/includes/admin-import.php:73 +#: admin/includes/admin-import.php:77 msgid "Do not change the column header and separator line (first two lines), otherwise the import will fail!" msgstr "" -#: admin/includes/admin-import.php:80 admin/includes/admin-import.php:88 -#: admin/includes/admin-import.php:101 +#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92 msgid "Sorry, there has been an error." msgstr "" -#: admin/includes/admin-import.php:81 +#: admin/includes/admin-import.php:85 msgid "The file does not exist, please try again." msgstr "" -#: admin/includes/admin-import.php:89 -msgid "The file is not a CSV file." +#: admin/includes/admin-import.php:93 +msgid "The uploaded file does not have the required csv extension." msgstr "" -#: admin/includes/admin-import.php:118 +#: admin/includes/admin-import.php:105 msgid "Events review and additonal category selection" msgstr "" -#: admin/includes/admin-import.php:121 -msgid "Warning: The following category slugs are not available and will be removed from the imported events:" +#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122 +msgid "Error" msgstr "" -#: admin/includes/admin-import.php:127 -msgid "If you want to keep these categories, please create these Categories first and do the import afterwards." +#: admin/includes/admin-import.php:111 +msgid "This CSV file cannot be imported" msgstr "" -#: admin/includes/admin-import.php:145 -msgid "Add additional categories" +#: admin/includes/admin-import.php:122 +msgid "None of the events in this CSV file can be imported" msgstr "" -#: admin/includes/admin-import.php:146 -msgid "Import events" +#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163 +msgid "Warning" msgstr "" -#: admin/includes/admin-import.php:160 -msgid "Import with errors!" +#: admin/includes/admin-import.php:126 +#, 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 +#, php-format +msgid "CSV line %1$s" +msgstr "" + +#: admin/includes/admin-import.php:144 +msgid "You can still import all other events listed below." msgstr "" -#: admin/includes/admin-import.php:161 -msgid "Sorry, an error occurred during import!" +#: admin/includes/admin-import.php:163 +msgid "The following category slugs are not available and will be removed from the imported events" msgstr "" -#: admin/includes/admin-import.php:165 -msgid "Import successful!" +#: admin/includes/admin-import.php:169 +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 +msgid "Import result" +msgstr "" + +#: admin/includes/admin-import.php:201 +#, php-format +msgid "Import of %1$s events successful!" msgstr "" -#: admin/includes/admin-import.php:166 +#: admin/includes/admin-import.php:202 msgid "Go back to All Events" msgstr "" -#: admin/includes/admin-import.php:173 admin/includes/admin-new.php:111 -#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8 +#: admin/includes/admin-import.php:206 +msgid "Errors during Import" +msgstr "" + +#: admin/includes/admin-import.php:215 +msgid "Event from CSV-line" +msgstr "" + +#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61 +#: includes/widget_helptexts.php:8 msgid "Title" msgstr "" -#: admin/includes/admin-import.php:174 +#: admin/includes/admin-import.php:227 msgid "Start Date" msgstr "" -#: admin/includes/admin-import.php:175 +#: admin/includes/admin-import.php:228 msgid "End Date" msgstr "" -#: admin/includes/admin-import.php:176 admin/includes/admin-new.php:124 -#: includes/options_helptexts.php:48 includes/options_helptexts.php:49 +#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91 +#: includes/options_helptexts.php:52 includes/options_helptexts.php:53 msgid "Time" msgstr "" -#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:128 -#: admin/includes/event_table.php:112 includes/options_helptexts.php:53 -#: includes/options_helptexts.php:54 +#: 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 msgid "Location" msgstr "" -#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:132 -#: admin/includes/event_table.php:113 -msgid "Details" +#: admin/includes/admin-import.php:231 +msgid "Content" msgstr "" -#: admin/includes/admin-import.php:179 +#: admin/includes/admin-import.php:232 msgid "Category slugs" msgstr "" -#: admin/includes/admin-import.php:218 +#: admin/includes/admin-import.php:274 +msgid "Header line is missing or not correct!" +msgstr "" + +#: admin/includes/admin-import.php:275 #, php-format -msgid "There was an error at line %1$s when reading this CSV file: Header line is missing or not correct!" +msgid "Have a look at the %1$sexample file%2$s to see the correct header line format." msgstr "" -#: admin/includes/admin-import.php:253 admin/includes/admin-main.php:122 -msgid "Import" +#: admin/includes/admin-import.php:281 +#, php-format +msgid "Wrong number of items in line (%1$s items found, 6-7 required)" msgstr "" -#: admin/includes/admin-main.php:116 -msgid "Edit Event" +#: admin/includes/admin-import.php:309 +msgid "Empty event title found" msgstr "" -#: admin/includes/admin-main.php:116 admin/includes/event_table.php:75 -msgid "Duplicate" +#: admin/includes/admin-import.php:315 +msgid "Wrong date format for startdate" msgstr "" -#: admin/includes/admin-new.php:48 -#, php-format -msgid "Duplicate of event id:%d" +#: admin/includes/admin-import.php:324 +msgid "Wrong date format for enddate" msgstr "" -#: admin/includes/admin-new.php:111 admin/includes/admin-new.php:115 -msgid "required" +#: admin/includes/admin-import.php:365 +msgid "Import events" msgstr "" -#: admin/includes/admin-new.php:115 admin/includes/event_table.php:110 -msgid "Date" +#: admin/includes/admin-import.php:366 +msgid "Add additional categories" msgstr "" -#: admin/includes/admin-new.php:118 -msgid "Multi-Day Event" +#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227 +msgid "Import" msgstr "" -#: admin/includes/admin-new.php:148 admin/includes/admin-new.php:165 -msgid "Publish" +#: admin/includes/admin-import.php:389 includes/events_post_type.php:69 +msgid "No events found" msgstr "" -#: admin/includes/admin-new.php:165 -msgid "Update" +#: admin/includes/admin-import.php:432 +msgid "Saving of event failed!" msgstr "" -#: admin/includes/admin-new.php:167 -msgid "Cancel" +#: admin/includes/admin-main.php:60 +msgid "Event Date" msgstr "" -#: admin/includes/admin-new.php:180 -msgid "No categories available." +#: admin/includes/admin-main.php:64 +msgid "Author" msgstr "" -#: admin/includes/admin-new.php:226 -msgid "Goto Category Settings" +#: admin/includes/admin-main.php:126 +#, php-format +msgid "Add a copy of %1$s" msgstr "" -#: admin/includes/admin-settings.php:42 -msgid "Settings saved." +#: admin/includes/admin-main.php:126 +msgid "Copy" msgstr "" -#: admin/includes/admin-settings.php:70 -msgid "Frontend Settings" +#: admin/includes/admin-new.php:51 +msgid "Event data" msgstr "" -#: admin/includes/admin-settings.php:71 -msgid "Admin Page Settings" +#: admin/includes/admin-new.php:80 +msgid "Add Copy" msgstr "" -#: admin/includes/admin-settings.php:72 -msgid "Feed Settings" +#: admin/includes/admin-new.php:84 +msgid "Date" msgstr "" -#: admin/includes/category_table.php:27 admin/includes/event_table.php:29 -msgid "event" +#: admin/includes/admin-new.php:84 +msgid "required" msgstr "" -#: admin/includes/category_table.php:28 admin/includes/event_table.php:30 -msgid "events" +#: admin/includes/admin-new.php:87 +msgid "Multi-Day Event" msgstr "" -#: admin/includes/category_table.php:73 admin/includes/event_table.php:74 -msgid "Edit" +#: admin/includes/admin-new.php:106 +msgid "Event Title" msgstr "" -#: admin/includes/category_table.php:74 admin/includes/category_table.php:148 -#: admin/includes/event_table.php:76 admin/includes/event_table.php:149 -msgid "Delete" +#: admin/includes/admin-new.php:121 +msgid "Event Content" msgstr "" -#: admin/includes/category_table.php:110 -msgid "Name" +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183 +msgid "Event updated." msgstr "" -#: admin/includes/category_table.php:112 -msgid "Slug" +#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185 +msgid "View event" msgstr "" -#: admin/includes/event_table.php:115 -msgid "Author" +#: admin/includes/admin-new.php:184 +#, php-format +msgid "Event restored to revision from %1$s" +msgstr "" + +#: admin/includes/admin-new.php:185 +msgid "Event published." msgstr "" -#: admin/includes/event_table.php:116 -msgid "Published" +#: admin/includes/admin-new.php:187 +msgid "Event submitted." msgstr "" -#: admin/includes/event_table.php:180 -msgid "Filter" +#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189 +#: admin/includes/admin-new.php:190 +msgid "Preview event" msgstr "" -#: admin/includes/event_table.php:300 +#: admin/includes/admin-new.php:188 #, php-format -msgid "%s ago" +msgid "Event scheduled for: %1$s>" +msgstr "" + +#: admin/includes/admin-new.php:190 +msgid "Event draft updated." +msgstr "" + +#: admin/includes/admin-settings.php:71 +msgid "Go to Event Category switching page" +msgstr "" + +#: admin/includes/admin-settings.php:83 +msgid "Frontend Settings" +msgstr "" + +#: admin/includes/admin-settings.php:84 +msgid "Admin Page Settings" +msgstr "" + +#: admin/includes/admin-settings.php:85 +msgid "Feed Settings" +msgstr "" + +#: admin/includes/admin-settings.php:86 +msgid "Category Taxonomy" msgstr "" #: includes/daterange_helptexts.php:7 @@ -738,7 +806,7 @@ msgstr "" msgid "The corresponding date_range format is: %1$s" msgstr "" -#: includes/daterange_helptexts.php:59 includes/filterbar.php:291 +#: includes/daterange_helptexts.php:59 includes/filterbar.php:287 msgid "Upcoming" msgstr "" @@ -746,7 +814,7 @@ msgstr "" msgid "This value defines a range from the actual day to the future." msgstr "" -#: includes/daterange_helptexts.php:64 includes/filterbar.php:295 +#: includes/daterange_helptexts.php:64 includes/filterbar.php:291 msgid "Past" msgstr "" @@ -754,346 +822,467 @@ msgstr "" msgid "This value defines a range from the past to the previous day." msgstr "" -#: includes/filterbar.php:233 includes/sc_event-list_helptexts.php:60 -msgid "Reset" +#: includes/event.php:107 +msgid "No valid start date provided" msgstr "" -#: includes/filterbar.php:282 -msgid "All" +#: includes/events_post_type.php:60 +msgid "Events" msgstr "" -#: includes/filterbar.php:285 -msgid "Show all dates" +#: includes/events_post_type.php:61 +msgid "Event" msgstr "" -#: includes/filterbar.php:285 -msgid "Show all categories" +#: includes/events_post_type.php:62 +msgid "Add New" msgstr "" -#: includes/options_helptexts.php:11 -msgid "Sync Categories" +#: includes/events_post_type.php:63 +msgid "Add New Event" msgstr "" -#: includes/options_helptexts.php:12 -msgid "Keep event categories in sync with post categories automatically" +#: includes/events_post_type.php:64 +msgid "Edit Event" msgstr "" -#: includes/options_helptexts.php:13 -msgid "Attention" +#: includes/events_post_type.php:65 +msgid "New Event" msgstr "" -#: includes/options_helptexts.php:14 -msgid "Please note that this option will delete all categories which are not available in the post categories! Existing Categories with the same slug will be updated." +#: includes/events_post_type.php:66 +msgid "View Event" msgstr "" -#: includes/options_helptexts.php:18 +#: includes/events_post_type.php:67 +msgid "View Events" +msgstr "" + +#: includes/events_post_type.php:68 +msgid "Search Events" +msgstr "" + +#: includes/events_post_type.php:70 +msgid "No events found in Trash" +msgstr "" + +#: includes/events_post_type.php:72 +msgid "All Events" +msgstr "" + +#: includes/events_post_type.php:73 +msgid "Event Archives" +msgstr "" + +#: includes/events_post_type.php:74 +msgid "Event Attributes" +msgstr "" + +#: includes/events_post_type.php:75 +msgid "Insert into event" +msgstr "" + +#: includes/events_post_type.php:76 +msgid "Uploaded to this event" +msgstr "" + +#: includes/events_post_type.php:77 +msgid "Event List" +msgstr "" + +#: includes/events_post_type.php:78 +msgid "Filter events list" +msgstr "" + +#: includes/events_post_type.php:79 +msgid "Events list navigation" +msgstr "" + +#: includes/events_post_type.php:80 +msgid "Events list" +msgstr "" + +#: includes/filterbar.php:229 includes/sc_event-list_helptexts.php:60 +msgid "Reset" +msgstr "" + +#: includes/filterbar.php:278 +msgid "All" +msgstr "" + +#: includes/filterbar.php:281 +msgid "All Dates" +msgstr "" + +#: includes/options_helptexts.php:10 msgid "CSV File to import" msgstr "" -#: includes/options_helptexts.php:20 +#: includes/options_helptexts.php:12 msgid "Please select the file which contains the event data in CSV format." msgstr "" -#: includes/options_helptexts.php:23 +#: includes/options_helptexts.php:15 msgid "Used date format" msgstr "" +#: includes/options_helptexts.php:17 +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 +#, 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 +msgid "full year representation, with 4 digits" +msgstr "" + +#: includes/options_helptexts.php:21 +msgid "numeric representation of a month, with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:22 +msgid "day of the month, 2 digits with leading zeros" +msgstr "" + +#: includes/options_helptexts.php:24 +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 -msgid "With this option the used date format for event start and end date given in the CSV file can be specified." +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 +msgid "Examples" msgstr "" -#: includes/options_helptexts.php:29 +#: includes/options_helptexts.php:33 msgid "Text for no events" msgstr "" -#: includes/options_helptexts.php:31 +#: includes/options_helptexts.php:35 msgid "This option defines the displayed text when no events are available for the selected view." msgstr "" -#: includes/options_helptexts.php:34 +#: includes/options_helptexts.php:38 msgid "Multiday filter range" msgstr "" -#: includes/options_helptexts.php:35 +#: includes/options_helptexts.php:39 msgid "Use the complete event range in the date filter" msgstr "" -#: includes/options_helptexts.php:36 +#: includes/options_helptexts.php:40 msgid "This option defines if the complete range of a multiday event shall be considered in the date filter." msgstr "" -#: includes/options_helptexts.php:37 +#: includes/options_helptexts.php:41 msgid "If disabled, only the start day of an event is considered in the filter." msgstr "" -#: includes/options_helptexts.php:38 +#: includes/options_helptexts.php:42 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:41 +#: includes/options_helptexts.php:45 msgid "Date display" msgstr "" -#: includes/options_helptexts.php:42 +#: includes/options_helptexts.php:46 msgid "Show the date only once per day" msgstr "" -#: includes/options_helptexts.php:43 +#: includes/options_helptexts.php:47 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:44 +#: includes/options_helptexts.php:48 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:47 +#: includes/options_helptexts.php:51 msgid "HTML tags" msgstr "" -#: includes/options_helptexts.php:48 includes/options_helptexts.php:53 +#: includes/options_helptexts.php:52 includes/options_helptexts.php:57 #, php-format msgid "Allow HTML tags in the event field \"%1$s\"" msgstr "" -#: includes/options_helptexts.php:49 includes/options_helptexts.php:54 +#: includes/options_helptexts.php:53 includes/options_helptexts.php:58 #, php-format msgid "This option specifies if HTML tags are allowed in the event field \"%1$s\"." msgstr "" -#: includes/options_helptexts.php:57 +#: includes/options_helptexts.php:61 msgid "Preferred language file" msgstr "" -#: includes/options_helptexts.php:58 +#: includes/options_helptexts.php:62 msgid "Load translations from general language directory first" msgstr "" -#: includes/options_helptexts.php:59 +#: includes/options_helptexts.php:63 #, 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:60 +#: includes/options_helptexts.php:64 #, 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:64 -msgid "Text for \"Show details\"" +#: includes/options_helptexts.php:68 +msgid "Events permalink slug" msgstr "" -#: includes/options_helptexts.php:65 -msgid "With this option the displayed text for the link to show the event details can be changed, when collapsing is enabled." +#: includes/options_helptexts.php:69 +msgid "With this option the slug for the events permalink URLs can be defined." msgstr "" -#: includes/options_helptexts.php:68 -msgid "Text for \"Hide details\"" +#: includes/options_helptexts.php:72 +msgid "Text for \"Show content\"" msgstr "" -#: includes/options_helptexts.php:69 -msgid "With this option the displayed text for the link to hide the event details can be changed, when collapsing is enabled." +#: includes/options_helptexts.php:73 +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:72 +#: includes/options_helptexts.php:76 +msgid "Text for \"Hide content\"" +msgstr "" + +#: includes/options_helptexts.php:77 +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 msgid "Disable CSS file" msgstr "" -#: includes/options_helptexts.php:73 +#: includes/options_helptexts.php:81 #, php-format msgid "Disable the %1$s file." msgstr "" -#: includes/options_helptexts.php:74 +#: includes/options_helptexts.php:82 #, php-format msgid "With this option you can disable the inclusion of the %1$s file." msgstr "" -#: includes/options_helptexts.php:75 +#: includes/options_helptexts.php:83 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:79 +#: includes/options_helptexts.php:87 msgid "Date format in edit form" msgstr "" -#: includes/options_helptexts.php:80 +#: includes/options_helptexts.php:88 msgid "This option sets the displayed date format for the event date fields in the event new / edit form." msgstr "" -#: includes/options_helptexts.php:81 +#: includes/options_helptexts.php:89 msgid "The default is an empty string to use the Wordpress standard setting." msgstr "" -#: includes/options_helptexts.php:82 +#: includes/options_helptexts.php:90 #, php-format msgid "All available options to specify the date format can be found %1$shere%2$s." msgstr "" -#: includes/options_helptexts.php:86 includes/options_helptexts.php:114 +#: includes/options_helptexts.php:94 includes/options_helptexts.php:122 msgid "Enable RSS feed" msgstr "" -#: includes/options_helptexts.php:87 +#: includes/options_helptexts.php:95 msgid "Enable support for an event RSS feed" msgstr "" -#: includes/options_helptexts.php:88 +#: includes/options_helptexts.php:96 msgid "This option activates a RSS feed for the events." msgstr "" -#: includes/options_helptexts.php:89 +#: includes/options_helptexts.php:97 msgid "You have to enable this option if you want to use one of the RSS feed features." msgstr "" -#: includes/options_helptexts.php:92 +#: includes/options_helptexts.php:100 msgid "Feed name" msgstr "" -#: includes/options_helptexts.php:93 +#: includes/options_helptexts.php:101 #, php-format msgid "This option sets the feed name. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:94 +#: 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 "" -#: includes/options_helptexts.php:97 +#: includes/options_helptexts.php:105 msgid "Feed Description" msgstr "" -#: includes/options_helptexts.php:98 +#: includes/options_helptexts.php:106 #, php-format msgid "This options set the feed description. The default value is %1$s." msgstr "" -#: includes/options_helptexts.php:99 +#: 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 "" -#: includes/options_helptexts.php:102 +#: includes/options_helptexts.php:110 msgid "Listed events" msgstr "" -#: includes/options_helptexts.php:103 +#: includes/options_helptexts.php:111 msgid "Only show upcoming events in feed" msgstr "" -#: includes/options_helptexts.php:104 +#: includes/options_helptexts.php:112 msgid "If this option is enabled only the upcoming events are listed in the feed." msgstr "" -#: includes/options_helptexts.php:105 +#: includes/options_helptexts.php:113 msgid "If disabled all events (upcoming and past) will be listed." msgstr "" -#: includes/options_helptexts.php:108 +#: includes/options_helptexts.php:116 msgid "Add RSS feed link in head" msgstr "" -#: includes/options_helptexts.php:109 +#: includes/options_helptexts.php:117 msgid "Add RSS feed link in the html head" msgstr "" -#: includes/options_helptexts.php:110 +#: includes/options_helptexts.php:118 msgid "This option adds a RSS feed in the html head for the events." msgstr "" -#: includes/options_helptexts.php:111 +#: includes/options_helptexts.php:119 msgid "There are 2 alternatives to include the RSS feed" msgstr "" -#: includes/options_helptexts.php:112 +#: 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 "" -#: includes/options_helptexts.php:113 +#: 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." msgstr "" -#: includes/options_helptexts.php:114 +#: includes/options_helptexts.php:122 #, php-format msgid "This option is only valid if the setting %1$s is enabled." msgstr "" -#: includes/options_helptexts.php:117 +#: includes/options_helptexts.php:125 msgid "Position of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "at the top (above the navigation bar)" msgstr "" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "between navigation bar and events" msgstr "" -#: includes/options_helptexts.php:118 +#: includes/options_helptexts.php:126 msgid "at the bottom" msgstr "" -#: includes/options_helptexts.php:119 +#: includes/options_helptexts.php:127 msgid "This option specifies the position of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:120 includes/options_helptexts.php:126 -#: includes/options_helptexts.php:132 includes/options_helptexts.php:138 +#: 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 "" -#: includes/options_helptexts.php:123 +#: includes/options_helptexts.php:131 msgid "Align of the RSS feed link" msgstr "" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "left" msgstr "" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "center" msgstr "" -#: includes/options_helptexts.php:124 +#: includes/options_helptexts.php:132 msgid "right" msgstr "" -#: includes/options_helptexts.php:125 +#: includes/options_helptexts.php:133 msgid "This option specifies the align of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:129 +#: includes/options_helptexts.php:137 msgid "Feed link text" msgstr "" -#: includes/options_helptexts.php:130 +#: includes/options_helptexts.php:138 msgid "This option specifies the caption of the RSS feed link in the event list." msgstr "" -#: includes/options_helptexts.php:131 +#: includes/options_helptexts.php:139 msgid "Insert an empty text to hide any text if you only want to show the rss image." msgstr "" -#: includes/options_helptexts.php:135 +#: includes/options_helptexts.php:143 msgid "Feed link image" msgstr "" -#: includes/options_helptexts.php:136 +#: includes/options_helptexts.php:144 msgid "Show rss image in feed link" msgstr "" -#: includes/options_helptexts.php:137 +#: 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." msgstr "" -#: includes/options.php:43 -msgid "Show details" +#: includes/options_helptexts.php:151 +msgid "Event Category handling" +msgstr "" + +#: includes/options_helptexts.php:152 +msgid "Use Post Categories" +msgstr "" + +#: includes/options_helptexts.php:153 +msgid "Do not maintain seperate categories for the events, and use the existing post categories instead." +msgstr "" + +#: includes/options_helptexts.php:154 +msgid "Attention" +msgstr "" + +#: includes/options_helptexts.php:155 +msgid "This option cannot be changed directly, but you can go to the Event Category switching page from here." +msgstr "" + +#: includes/options.php:40 +msgid "events" +msgstr "" + +#: includes/options.php:41 +msgid "Show content" msgstr "" -#: includes/options.php:44 -msgid "Hide details" +#: includes/options.php:42 +msgid "Hide content" msgstr "" #: includes/sc_event-list_helptexts.php:7 @@ -1102,7 +1291,7 @@ msgstr "" #: includes/sc_event-list_helptexts.php:8 #, 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-details view of this event is shown." +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 @@ -1402,13 +1591,13 @@ msgstr "" #: includes/sc_event-list_helptexts.php:100 msgid "" -"This attribute specifies if the details are displayed in the event list.<br />\n" -"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n" -"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event" +"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 -msgid "This attribute specifies if the details should be truncate to the given number of characters in the event list." +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 @@ -1418,10 +1607,10 @@ msgstr "" #: includes/sc_event-list_helptexts.php:110 msgid "" -"This attribute specifies if the details should be collapsed initially.<br />\n" -"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n" -"\t Available option are \"false\" to always disable collapsing and \"true\" to always enable collapsing of the details.<br />\n" -"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view." +"This attribute specifies if the content 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 @@ -1429,7 +1618,7 @@ 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" "\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n" -"\t With \"events_with_details_only\" the link is only added in the event list for events with event details." +"\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 @@ -1454,7 +1643,7 @@ msgid "" "\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:134 +#: includes/sc_event-list.php:135 msgid "Event Information:" msgstr "" @@ -1521,19 +1710,19 @@ msgid "If the event location is diplayed this option defines the number of displ msgstr "" #: includes/widget_helptexts.php:59 -msgid "Show event details" +msgid "Show event content" msgstr "" #: includes/widget_helptexts.php:61 -msgid "This option defines if the event details will be displayed." +msgid "This option defines if the event content will be displayed." msgstr "" #: includes/widget_helptexts.php:66 -msgid "Truncate details to" +msgid "Truncate content to" msgstr "" #: includes/widget_helptexts.php:68 -msgid "If the event details are diplayed this option defines the number of diplayed characters." +msgid "If the event content are diplayed this option defines the number of diplayed characters." msgstr "" #: includes/widget_helptexts.php:69 diff --git a/wp-content/plugins/event-list/readme.txt b/wp-content/plugins/event-list/readme.txt index 3098436dcf9f410d196034b5b730945d508870a0..07865c1fe5bc932172bd6410a04af3b945ff1671 100644 --- a/wp-content/plugins/event-list/readme.txt +++ b/wp-content/plugins/event-list/readme.txt @@ -2,9 +2,10 @@ Contributors: mibuthu, clhunsen 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: 3.8 +Requires at least: 4.2 Tested up to: 4.9 -Stable tag: 0.7.12 +Requires PHP: 5.2 +Stable tag: 0.8.3 Plugin URI: http://wordpress.org/extend/plugins/event-list Licence: GPLv2 License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -14,13 +15,13 @@ Manage your events and show them on your site. == Description == -The purpose of this plugin is to to show a list of events with date, time, description, place, etc. on your site by using a shortcode or a widget. +The purpose of this plugin is to to show a list of events with date, time, content, location, etc. on your site by using a shortcode or a widget. = Current Features = * Admin pages to view/create/manage/modify events -* Available event data fields: event title, event date, event start time, event location, event details +* Available event data fields: event title, event startdate, event enddate, event starttime, event location, event content * Beginning and end dates for multi-day events -* Wordpress's WYSIWYG editor for the event details. So you can include styled text, links, images and other media in your events. +* Wordpress's WYSIWYG editor for the event content. So you can include styled text, links, images and other media in your events. * A duplicate function for events to easier create similar event copies * Import multiple events via csv files * Event categories @@ -58,7 +59,7 @@ If you want to install the plugin manually download the zip-file and extract the = How do I get an event list to show up in a Page or Post on my site? = Insert the shortcode [event-list] in your page or post. You can modify the output by many available shortcode attributes (see Event List -> About page for more infos). -= How do I use styled text and images in the event descriptions? = += How do I use styled text and images in the event content? = Event List uses the built-in Wordpress WYSIWYG editor. It's exactly the same process like in creating Posts or Pages. = Can I call the shortcode directly via php e.g. for my own template, theme or plugin? = @@ -68,20 +69,75 @@ Another possibility would be to call the wordpress function "do_shortcode()". == Screenshots == -1. Admin page: Event list table +1. Admin page: Event-List table 2. Admin page: New/edit event form -3. Admin page: Categories -4. Admin page: Settings (general tab) -5. Admin page: Settings (admin page tab) -6. Admin page: Settings (feed tab) -7. Admin page: About page with help and shortcode attributes list -8. Admin page: Widget with the available options -9. Example page with [event-list] shortcode -10. Example widget +3. Admin page: Event-List Categories +4. Admin page: Event-List Settings (general tab) +5. Admin page: Event-List Settings (frontend tab) +6. Admin page: Event-List Settings (admin page tab) +7. Admin page: Event-List Settings (feed tab) +8. Admin page: Event-List Settings (taxonomy tab) +9. Admin page: Event-List About page (general tab) with help and about page +10. Admin page: Event-List About page (shortcode tab) with shortcode attributes list and date range formats +11. Admin page: Event-List Widget with the available options +12. Example page with [event-list] shortcode +13. Example Event-List widget on frontpage == Changelog == += 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 +* improved upgrade process once more +* only create 1 single continuing upgrade log file +* show all events in admin main page when no upcoming events are available + += 0.8.2 (2018-04-22) = +* fixed category view in front page +* fixed "past" filter option +* fixed category filter in admin view, if a seperate taxonomy is used +* many improvements and fixes in upgrade process +* add upgrade log file + += 0.8.1 (2018-02-04) = +* added option to change events permalink slug +* added some additional upgrade check to improve the 0.8.0 upgrade +* fixed time display on frontpage +* fixed copy event function +* fixed issues with older php versions +* fixed issues with older WordPress versions + +Attention: +This version fixes a lot of issues reported with the 0.8.0 version. It is now more safe to update, but in general the information provided in the changelog of 0.8.0 is still valid. +Also check the required manual changes provided there. + += 0.8.0 (2018-01-27) = +* switch plugin and data structure to use custom post types with custom metadata and wordpress categories (with all the advantages and new features provided for custom post types) +* huge rewrite of the plugin required to implement the above modification +* small css fixes + +Attention: +The modifications in this versions are huge. This modifications will bring some huge improvements and is a good basis for future improvements (e.g. permalinks). +But inspite of a lot testing it doesn't eliminate any possibility for some regressions or problems during update process to the new data structure. + +Due to this there are some steps you should consider before and after this upgrade: + +* have a look at the support forum if there are issues reported with the new version, and wait with the upgrade until these are solved +* if you have a big productive site probably do not upgrade in the first days +* have a look at the PHP error file after upgrade, the upgrade function will write some informations regarding the upgrade process to this file +* check your shortcodes and widget and do the required manual changes provided below +* check your events, the event categories and the event output on the frontpage after the upgrade +* please report problems with the upgrade or issues/regressions after the upgrade in the support forum or on github + +There are some manual changes required after the upgrade: + +* renaming the shortcode attribute "show_details" to "show_content" in all shortcodes +* renaming the shortcode attribute "details_length" to "content_length" in all shortcodes +* renaming the shortcode attribute "collapse_details" to "collapse_content" in all shortcodes +* update your widget (goto Admin page -> Appearance -> Widget and "Save" all event-list widgets) +* the following classes were renamed, adapt them in your custom CSS-styles if required: .start-date -> .startdate, .end-date -> .enddate, .event-details -> .event-content + = 0.7.12 (2017-10-09) = * fixed some mature issues with older wordpress versions * fixed event import for php version < 5.4