diff --git a/wp-content/plugins/event-list/admin/admin.php b/wp-content/plugins/event-list/admin/admin.php
new file mode 100644
index 0000000000000000000000000000000000000000..e361449134e6d275a54ead6f6807cfedf2f340c7
--- /dev/null
+++ b/wp-content/plugins/event-list/admin/admin.php
@@ -0,0 +1,150 @@
+<?php
+if(!defined('WPINC')) {
+	exit;
+}
+
+require_once( EL_PATH.'includes/options.php' );
+
+// This class handles all available admin pages
+class EL_Admin {
+	private static $instance;
+	private $options;
+
+	private function __construct() {
+		$this->options = &EL_Options::get_instance();
+	}
+
+	public static function &get_instance() {
+		// Create class instance if required
+		if(!isset(self::$instance)) {
+			self::$instance = new self();
+		}
+		// Return class instance
+		return self::$instance;
+	}
+
+	public function init_admin_page() {
+		// Register actions
+		add_action('admin_menu', array(&$this, 'register_pages'));
+		add_action('plugins_loaded', array(&$this, 'db_upgrade_check'));
+		add_action('right_now_content_table_end', array(&$this, 'add_events_to_right_now'));
+
+		// Register syncing if required
+		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 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');
+
+		// 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'));
+
+		// 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'));
+
+		// 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'));
+
+		// 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'));
+		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'));
+		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();
+	}
+
+	public function add_events_to_right_now() {
+		require_once(EL_PATH.'includes/db.php');
+		$num_events = EL_Db::get_instance()->get_num_events();
+		$event_link = 'admin.php?page=el_admin_main';
+		$out = '
+			<tr>
+				<td class="first b b-events"><a href="'.$event_link.'">'.$num_events.'</a></td>
+				<td class="t events"><a href="'.$event_link.'">'.__('Events','event-list').'</a></td>
+			</tr>';
+		echo $out;
+	}
+
+	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();
+	}
+
+	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() {
+		require_once(EL_PATH.'admin/includes/admin-settings.php');
+		EL_Admin_Settings::get_instance()->show_settings();
+	}
+
+	public function embed_settings_scripts() {
+		require_once(EL_PATH.'admin/includes/admin-settings.php');
+		EL_Admin_Settings::get_instance()->embed_settings_scripts();
+	}
+
+	public function show_about_page() {
+		require_once(EL_PATH.'admin/includes/admin-about.php');
+		EL_Admin_About::get_instance()->show_about();
+	}
+
+	public function embed_about_scripts() {
+		require_once(EL_PATH.'admin/includes/admin-about.php');
+		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 action_edit_category($cat_id) {
+		require_once(EL_PATH.'includes/categories.php');
+		EL_Categories::get_instance()->edit_post_category($cat_id);
+	}
+
+	public function action_delete_category($cat_id) {
+		require_once(EL_PATH.'includes/categories.php');
+		EL_Categories::get_instance()->delete_post_category($cat_id);
+	}
+}
+?>
diff --git a/wp-content/plugins/event-list/admin/css/admin_about.css b/wp-content/plugins/event-list/admin/css/admin_about.css
new file mode 100644
index 0000000000000000000000000000000000000000..a49ea091d101b6568c8f14c515cb2977da256d42
--- /dev/null
+++ b/wp-content/plugins/event-list/admin/css/admin_about.css
@@ -0,0 +1,86 @@
+.el-show-event-options {
+	list-style: circle inside;
+}
+
+.el-headline {
+	margin-top: 1.5em;
+	margin-bottom: 0.5em;
+	clear: both;
+}
+
+.el-atts-table {
+	border: 1px solid #aaa;
+	border-collapse: collapse;
+	width: 98%;
+}
+.el-atts-table th {
+	border: 1px solid #aaa;
+	padding: 3px 4px !important;
+	background: #eeeeee;
+}
+.el-atts-table td {
+	border: 1px solid #aaa;
+	padding: 2px 5px !important;
+	vertical-align: top;
+}
+.el-atts-table-name, .el-atts-table-options, .el-atts-table-default {
+	width: 110px;
+}
+
+.el-filterbar-table {
+	border: 1px solid #aaa;
+	border-collapse: collapse;
+	width: 100%;
+	margin: 0.2em 0 1.2em 0;
+	line-height: 1.6em;
+}
+.el-filterbar-table th {
+	border: 1px solid #aaa;
+	padding: 1px 3px !important;
+	background: #eeeeee;
+}
+.el-filterbar-table td {
+	border: 1px solid #aaa;
+	padding: 1px 4px !important;
+	vertical-align: top;
+}
+.el-filterbar-item, .el-filterbar-doption {
+	width: 85px;
+}
+.el-filterbar-options, .el-filterbar-values {
+	width: 90px;
+}
+.el-filterbar-default {
+	width: 70px;
+}
+.el-filterbar-desc2, .el-filterbar-for {
+	width: 270px;
+}
+
+ul.el-formats {
+	list-style: none;
+}
+
+.el-format-entry {
+	overflow: hidden;
+	clear: both;
+	padding-bottom: 0.5em;
+}
+
+div.el-format-name {
+	float: left;
+	width: 120px;
+	font-weight: bold;
+}
+
+div.el-format-desc {
+	float: left;
+}
+
+div.el-format-desc em {
+	font-weight: bold;
+}
+
+a.donate img {
+	margin: 3px;
+}
diff --git a/wp-content/plugins/event-list/admin/css/admin_import.css b/wp-content/plugins/event-list/admin/css/admin_import.css
new file mode 100644
index 0000000000000000000000000000000000000000..4d4ee677b8b09de3ebb3112a627d736367f09194
--- /dev/null
+++ b/wp-content/plugins/event-list/admin/css/admin_import.css
@@ -0,0 +1,19 @@
+.el-warning {
+	background: #fff;
+	border-left: 4px solid #dc3232;
+	margin: 5px 0 15px;
+	padding: 1px 12px;
+}
+
+ul.el-categories {
+	list-style: circle inside;
+	margin: 8px 0;
+}
+
+.el-event-header {
+	font-weight: bold;
+}
+
+.el-event-data {
+	font-style: italic;
+}
diff --git a/wp-content/plugins/event-list/admin/css/admin_main.css b/wp-content/plugins/event-list/admin/css/admin_main.css
new file mode 100644
index 0000000000000000000000000000000000000000..ad744efad30d749e97337c0d00a719d6d4260b51
--- /dev/null
+++ b/wp-content/plugins/event-list/admin/css/admin_main.css
@@ -0,0 +1,22 @@
+.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;
+}
+
+span.time {
+	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
new file mode 100644
index 0000000000000000000000000000000000000000..b219f8cce76c0e0cbb14ccbf8372e5dfef1eec18
--- /dev/null
+++ b/wp-content/plugins/event-list/admin/css/admin_new.css
@@ -0,0 +1,36 @@
+#title, #location {
+	width: 400px;
+}
+
+span.date-wrapper, #start_date, #end_date, #time {
+	width: 130px;
+}
+
+p.note {
+	margin: 2px;
+	font-style: italic;
+}
+
+div#postbox-container-1 {
+	width: 260px !important;
+}
+
+span.date-wrapper {
+	position: relative;
+	display: inline-table;
+}
+
+span.date-wrapper i.dashicons {
+	display: inline-block;
+	position: absolute;
+	padding-top: 3px;
+	padding-right: 4px;
+	pointer-events: none;
+	right: 0px;
+	z-index: 1;
+}
+
+span.date-wrapper input {
+	padding-right: 24px;
+	position: relative;
+}
diff --git a/wp-content/plugins/event-list/admin/css/admin_settings.css b/wp-content/plugins/event-list/admin/css/admin_settings.css
new file mode 100644
index 0000000000000000000000000000000000000000..7125cb1e0ccdcfbe85076d3b3ca4357a20751bfe
--- /dev/null
+++ b/wp-content/plugins/event-list/admin/css/admin_settings.css
@@ -0,0 +1,8 @@
+.el-settings {
+	padding: 0 10px;
+}
+
+.form-table th, .form-table td {
+	vertical-align: top;
+	padding: 15px 10px 15px 0;
+};
diff --git a/wp-content/plugins/event-list/admin/css/jquery-ui-datepicker.css b/wp-content/plugins/event-list/admin/css/jquery-ui-datepicker.css
new file mode 100644
index 0000000000000000000000000000000000000000..e7119e50158057ba5e48a82d50083c6e46fa267d
--- /dev/null
+++ b/wp-content/plugins/event-list/admin/css/jquery-ui-datepicker.css
@@ -0,0 +1,208 @@
+/* Date Picker Default Styles */
+.ui-datepicker {
+	padding: 0;
+	border: 1px solid #ddd;
+	-webkit-border-radius: 0;
+	-moz-border-radius: 0;
+	border-radius: 0;
+}
+.ui-datepicker * {
+	padding: 0;
+	font-family: "Open Sans", sans-serif;
+	-webkit-border-radius: 0;
+	-moz-border-radius: 0;
+	border-radius: 0;
+}
+.ui-datepicker table {
+	font-size: 13px;
+	margin: 0;
+}
+.ui-datepicker .ui-datepicker-header {
+	border: none;
+	background: #222;
+	color: #fff;
+	font-weight: normal;
+}
+.ui-datepicker .ui-datepicker-header .ui-state-hover {
+	background: #222;
+	border-color: transparent;
+	cursor: pointer;
+	-webkit-border-radius: 0;
+	-moz-border-radius: 0;
+	border-radius: 0;
+}
+.ui-datepicker thead {
+	background: #222;
+	color: #fff;
+}
+.ui-datepicker .ui-datepicker-title {
+	margin-top: .4em;
+	margin-bottom: .3em;
+	color: #fff;
+	font-size: 14px;
+}
+.ui-datepicker .ui-datepicker-prev-hover,
+.ui-datepicker .ui-datepicker-next-hover,
+.ui-datepicker .ui-datepicker-next,
+.ui-datepicker .ui-datepicker-prev {
+	height: 1em;
+	top: .9em;
+	border: none;
+}
+.ui-datepicker .ui-datepicker-prev-hover {
+	left: 2px;
+}
+.ui-datepicker .ui-datepicker-next-hover {
+	right: 2px;
+}
+.ui-datepicker .ui-datepicker-next span,
+.ui-datepicker .ui-datepicker-prev span {
+	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAADwCAQAAABFnnJAAAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAAAEgAAABIAEbJaz4AABe4SURBVHja7V1diCXHdf56vbZmVl6nxwKFO2yyq1mM4qAwM7oDsR6C7iYIKesH3V1QHgyBu5YYJwHjrB9NQCuByIthHbAga6TZxeBgHMJKISZ+SDIb1oQgRtoVgtjGyD8PmSGQMIpfJmCLk4f+q6o+daq6+965P1VfM3Pv7VN16ud8Vd1dp6o6IUSEjBPTzkDEdBEJEDgiAXT0QOhNOxPHiUgAFT3sA9gPiQLjJsD0208Pbe9rM/OvwkaBQvP0yzhG6ASQO0AqDwmu9mOPT3nqPWsYV9qFEduVIDP/QU4BSfMC9REqAcbRAa520FDELdphc3SJCyRIcADgAAkSQXOXMs4ckrIxFEUs2oENBNSqR0WmJ2kVv2hltvRdaVPHvPtqdpVxjlD1AHIH6AupDbovH1nqkgllLd3apnQJUjV362dmDEnjOya5FUltsEqqbdtxa5Dbppx3uQ+sNLv6mblCcwLIoKlXTQ/7rQkmX4IKzdMv4xgxbgLMO3rYXyTzuhEJEDjiSGDgiAQIHJEAgSMSIHBEAgSOSIDAEQkQOOJ8ADPutPN/zGgyH8BvRoDLGdMT5wPIKbjN02U+gNsdnuV9oUjSbD6AnwdMrkK7gVYt3311u8zv0r5vfNq1L8xsgPp8gAz20fAilORvs8tdsX3mA0i5k1N3x5dBue7icyGgzwfgvus48OoF+DDu9ukzH0Bqf355s9OHnLMNmqQ0F2jjDJIcrrM+H0Ail6v/KUoe3cECpl85XecDTDv/x4zoDg4ccSAocEQCBI5IgMARCRA4IgECRyRA4IgECBwnp52BmQNNcZS/+1hp4/yf7BZ9IpUwzRyQMwftXUHumFMouX4JIED09fvsD0AtJE3RNg1X/jPTJ6IWNznaxvYrgU+oBnFPaAFcxU88CmCPn3hUkE8RSHD2+OQvEWT6Z7M0Com7BuQSygQiR2zA1Yi1/KuXAN/i22bruCspGUMHT6In0nUV7ZIDKmMnrFRNnUulaF72PJAgl3VXpZObgZrLBGh6E0gerccVyoed7dq4n3ETD+2SgXz0tq0BqQn66HbXQU3e5DGw6uJ8QvEyuQt0M1jW4epi/bpoVwtype5zE9kWboq75VoOTHdw6E8B851+i8fIOB8gcMSRwMARCRA4IgECRyRA4IgECByRAIEjEiBw6ItDi81Spwf3fuCThE8N+HhE28VzrY32TaURKgIUC6N8tntvVwHjQztdrpz71YC01Wzljes1jp35KYvDXoZe6xogI5cA+MWh8hJOH492jzk3PgrYdPltDWHPv18N2NLoGctre41iVyVw9UDdlqbXFujqQ8E+26m7lmDbFoj6zaRx58Cmx72FuzvnfhvS8z63umkTQ+5aWF4Zh1ufSJpm2WFsc1gn9TBNCeBfAUmDuH45kKvQJ3332n57+q7YLgK460A2oJsAMoEsBGj2FFBVQBuPVaLo4LWT9iml3wZVvtveQ0ipr+bS4grO7yAgpV/E5O8BXJqrvRuk9c1mLhvOB5AqQL+BkYovZ04qoqRDLZp72hdnAjcBpRIcGBtIHDTW4AfJvAfla2/8commlwA/XzU5t4iQr4JdYvtVL18Ov2tw9yltkp72L7Vx3wOwiPMBVPScb0xaOEQCBI44FBw4IgECRyRA4IgECByRAIEjEmDcmLPHKnM+gAuSv8qn6L2O/u5Jo3vuEsdg94yVvT4fQILkMfcZJSw8dqseC0zt6Lq4Sl4enjiXv7oNbIsvaZ8SqoEgNVvu3X7rg43q0sh2b//2HWgGJI+dK3ZiDaeetXk7pcWj5CX1L+mxgL8HsE06kP1V1aWhzaSFrOW4p03Z9zAg+Pr6kgZnuXS59N0rm2cS5vsCqips+gZu8xKSNIhbSP2WQLsXb7ffQkIyo6uH8Ncs7RFwzKh6ANVR2CZrrjcJuJ2tXa+OidKD8D2E/smFGE8r5lLQe48ZMb9+CTgoM8V14FkHn0334nEgzgfw8fa7t4eQUc0F4KdUyFVfXYTsu4sUIZOGUjVE2wk1EwHvDSRrB+7jLLXdBI7D2eo3a7HtjabPTSQAB0Fnxrg+iO5gHTPTNR8XIgECRxwKDhyRAIEjEiBwRAIEjkiAwDF7BEhny1u26DAJ4OfLllw25CW1hUhxeCxP4tPeB2Fm0Gy7eJ/tpBOsdMjPIQqSpGK4tlvWV1igN4B3gU4AeZRaHu0uWnWKQ5YCVA6U8mv3sq5/pQxxaIlffGu3qbra+/i9an7BURFA3+69jsofbtsyPUGSm/8DNi25a8+6/g+wIqydLVLn09dnFJha/LaPCA7FULDf6nYJxVwbm/nNuThmL+L6LZ2tS8xw5vYR0lvOg4I6JSxB3Uwm7FMZ/CZE2CeVmQSyTcngc+jaPkEn+IK9Ar4LqhdGqFVm32DE/dYL39dK2OQZBah2H1E4gvld+fX8+Lw2IgIAtz+A38r1ul/evUONJM1uHuUQurbE61wB9w5CgcL/hRH6rNjq+7hhv4voBv/tI4LCrM0HmJT5IyyYNQJEHDNmzxcQcayIBAgckQCBIxIgcCwSAfqlJ6A/Ef0nsZQfzd63OtPICDDMK24Xw9aaXnZ4+l0g3NBmCzQ1Yh975fc9Nna/Ez1O4ld4FEc4wqP4FUuBvjP3a7l0zZKGXe6KCTxnHHIKxtwOoqs0oAENSUUVtjo/JFgOKj+3tbhqCF57doyor8lHmrRPJvqN5HoOudytGfHXDPkSrRPREi0R0TotCTXAp1GHVEP+EjXEtncZyxAFk+8BAO5YJnPcxpdxD0CK2+W5O7hgZeMXLCOKy+W3o5rsJr4htL89ZBtLZNgHYU9LYQ9bSg8AbBlyN95Xcpfl0Ix/H8t4EEAf942wej6BLUbim5suL5+XsYb3y++lpoIA9/NPdRqGmuV7AH6EI3G2z1L+ecMa4qNC7Ct4D9uC/JLmSr6kUDHD2woFtvC2ISWoizP5FYYfxS/K759g8/AgPoEEp4RcXhRkpkeSl/MvoE4YLc0IXpj/D/DP6unqWnboUPAjHNXC6FnICLAiaLO1G8DVAwBvlRQgXMJbTIiCAnXzZ0iNz3rufl3M6Qb+G38I4B+xwcZ/GygpxOdgK++p9N7qOFCY/4+wrFPA936WM3+9AgG5o8razk9ZmasHKCgAi/mRpw7rTd5549PEEn6efzvLSB/Eu9jAfQAbeBcP4f8MuTkLqe0yU3dH7wrxOfxN7Vxm/i/gQQD/AADFBdz/MbBufrOAp3AKp7CMU9ZO8gE8gAcAcC3spsP8QA9v4RIu4S3LdM4+DjDEEAct7/OX8Vv5sVzLXw9nQPgFNrCBEyCcEaeUblmMf075s2EJLrhCfIs5l5H+Bj6G7wAALuBOJmj/RFsv4rIzzg+FkK4eoIcDIG/7B0z19zU5R4HfMD7NKspayQayOyK9n3gY9wH8pPx9HxvCjKIuHfxRxxD8hNmf5OXL7s9K86N8DEwdj1HuR5iXNfnL1scV+2PMjQk+BhYPSdWnLRd95hGQe4hzPeg1fQwGjayl9wmhlpDXXzwEDtSzs+MO7gP4HeX3e5YbqcmCAJxXWvr4tWeYztSUNbyvtX7E+QDBY5F8AREtEAkQOCIBAkckQOCIBFgsvIJXmkXQCZCC4FqYbQeVjoyujxZ9cB71LeXxte5vGxqPvUNDvm3IuUEn1Vu+NgE5APylo34GGLSut9P4Cr6C045QI4wwKn8pdZISUZ/6RJTWBhF2aSkfRrhG6zRkh0Fu5AMR23TDkMuebPPos+G3FE82EdEWOxBSHPX47oGcLMw6rdP6hORFmGxQx5QMqBiQS83hmtw6RNuEvHQpo/suERHdFWu3GEwa0TkCQU+gn4+h1dUT9RqNg3FyENGf5X9XrRXUp2wCSt+iH5YUXAYmAv07ge4R6N+InzJBtJ5L1gU5RPlpWqLTFnlR/SMaNa7BAtusfLsWe5tNf0hEI0qrkUTVHVw4Kfew1WqjFnWuAO85fAL7+DF+gJ/jPYtPsI89XMIbVpduF/wTfhffwwa+hyfwL9ZQ2Vj6hijXxyx1/LLmJ6wwwk0AyP/X6+9Q+8WDn21x1uMMAHwJwEp+eUzxAcoe4IYxmt6nG417ALWDs/UAV4noL4joFbaF9InY1j+uHuBvCfRdAn2Llpj0H3X0AIUcotzeA4y03JmXgIGS6wyDRuX7qib7KlOD5+hcPXUziX5OhHr1j4MAn6HfpM/R+fyvifn1WXE2AqRElFKaXy9N+XeI6Nv539/V5EX5bNfwSv64Q87Hr6692XG+IQFMd10q1JDsatLOmwrUT122RENCyaEBE0ImQN1f18T8ZvFkAvDys/Rdeph26WH6e/q0IV+t5W5trPLK/LAeuolTUW6T3s1vBE35iIpr/25bAsBxUJ6N1DM8b+C+Vb5lVDD3FJCWRecJYidghsccuesih8P8Pi73ggIpI3uKPsxv/LbpQ3qKIcBVGtXj+ibvNqh+H8rfg0qTlmXzmxTYqkld07plORFRz2GcLvKR0/yux8CKAqkl9nPl9+dqsa09kK87eB3v+gWM6IgBoHvsx4QRAOCWeTrOBwgc0RcQOCIBAkckQOCIBAgc4REgcxsPGMmgfDZ61EOPbTfFOburVgmwXlbAemt9NLUqSEHYyb/vwDar4Vq+qHS3RoHfxy4u4zI+hU/hh/h0LWZWO1fzX9mepeq+55v4LAhP4AkQPovNWnx5+4ph7cF+6JC7QgxraRgjQObZdSLapSEN6ZAqpwc34CENZpAzRPtjlOdrnR1UybBDoB1rLorhkHPsUNep8vgYOxa6Q8M8B5meAZO+fRyv8FKklmEw+UwVO7XoycYa+7k3B0z51BjrxXc1QDZKvENEh1YjTpMAxVgWn0Zh9uqzruGaONZ5gj5CCSX0ETrBGmRIIKJB6dPncicTQPWHmCuXMm9Iv6zjOgGgzaKoEyDTul2OyXIEOEOr+cEQYJhX4w4748dFAHJWgdu4cvx1Rcb1UDuKnDN/KuonSspjjUn9eh5rlx9SpWz3kOLgCWBPn8oZV7wGKn2cQwKdYwkAhQB8n7JOm7RZ+isZAuzkVcdP+XIxXA7RTMoTyOVTk1p/NeMpw8CQf5uI1vKD6DqjYVC6bLn0iU53IsBD+dmHyv9m7KL/GhLROUsPYK+/PhGdoTO0Smdok4iuZefV9wV8gBQ38fn8FknecR9OubSbuFvKpbBe7mOSrdE38U38cfn9+/g9TZYqM56AK/UxcazjS8qvl/EzIfWslszyrwD4EADwS2aDGcKKNs/KfMHFI9p5ws8MuT5f6Ca+bMzayrbwzybL7jHb+RMeB/BfAID/VGpX62APaUhD2qXZvAksWh+fxjfL1p/hrhG3n7f71Kp/s2w759jUd+gqUd4Odxh59vmQ5UbPnGhjtt/H6DHjv9x/NL8HGFKfNmmTNolos34JUK+xNvPP/lPAXSrmxnLVM3CksEPbtM1Op0IeO6MQRwESfpln12ohhrUOfGjEPFc7mt0DEA3Lw0IA31Y4LQLIR6q0+rtkes2z1uFTOlv+s57lkFIqbieTWtzP02eoJ9QSEZT7DF22lD8FZP/NbejqBDEpMhSlaum0MkZ3sIqH8BKAF/E/rHSEFdzM32aQ4n/xa9qbDVz3SIC+meUk5j23QCRA4AjPFxChIRIgcEQCBA6TAEPrfuEXcau8obwlbokaMU/QHhRuExHRbeYB5ou1h5AvTuVhLx5jPtQfz5TGfcYIdlF7eixwkVG4R0R71uR+6jkgA48Qx3/sKfTfm3puJkCA21T4nMw+4DWWAK8xCuWBoNowhNX8HEncy6tcIVxyor1yuGiPlfvlf46O6uszmoH1PsCGpgQAgV24WTd/vZ9Q19byBnSFGBHR07RET1s1+JVuQQmQXf8Lr7PeB+gFl6phm2zLwlTz7zKSQfnJXyZcxkFu+DQnAid/Ov/2tKBhT0hjgQkwIBOqAfwJwHfeuqZ7jEeuiGczvy8BUrL3MVSOsNf99RXsBOgT0R7t0R75+BXm5DArwPzelACuozBS3fyZ2W3mn4UeYIFvAqv2nyp+58oMX2cJ8HVGoasHsB1qD8THn/49gJuCc3hwRasX8ilW+hSj0FU5dqnU+nUDj1qH6PoUkIWZutHGT4A91sBqFTxfkz5vNeNASFCiR9ve43iPBSOAvzv4SQzx5/n3r+EN/Ou0xzCnhLbvAppRxPkAgSN6AwNHJEDgiAQIHJEAgSMSIHBEApgYgFpL5xAqAYjZNkEHYVyvhJgWbgjvNgeAAXZbS+cTxigd0a4wGqd6A0xJES+1ahjQbu4IGtCuoAGEfHmTLt/WNLVx1w4cg80Dj9hFDdi1zNXBV5/NhBIB1Hj1ah6UcQb5CntZg50Atvg+BJCksqOnLl2QIWFbIflpHS4CZCasfutSEErjuTTYCGCP7yZAUxPbpfwGDHN58DeBd3AB32hxPbmDC7iAbJ3cBWXMPFHOXhB3wi002OCKfzxYJG9AjeWLfA/gOgK8B1CdQYQ7eElsX5Szv/icL6hPLrbcZ/f57aRziegNNDHArmBiWTqHiAQIHHEkMHBEAgSOSIDAEQkQOCIBAodJAFJeLB4RACoCpPlWqWdx1rLXfjZ0dM0ijZhLFARIcVhuDvMIDlkjb+ACvoYXcejxQglzeGHbGIHcPmZ5hA15je0Q0V8RiOhFyvbFtY0ep+JewtWovOt3/1jl8bAchVGJ7hEI9CINCHSPbG+n3qFzlDllU6tSfqfapXw79dP5n7nT7WmSNlwv5CTKl8q/pdYOocCOkwCA8wDeBAC8BAB4Exs4X9vKdAObuIkreASXcIgruN6oq/mk0ukkqI9Afzz/S8Avvzqd/30S/ObyHwewkstXFmu8fpLIfAEpDnFfedHRPWxgRdsJt0CKQ9zBBezgClvJlO9UX9+t/re13/9h7JU7aXmEDXlXsEvVoukR8Zu4ZL7w7H0VtpfK2ObL6O8Wr883mrQ8Hpaj8AZm78O4jzfxLDbAv5Gjmg1wAWDcomrrX7A1tIuLyh28jmv5g+AbuBZfFh8K4nyAwBF9AYEjEiBwRAIEjkiAwFERwPU+gK7yJ3G9lF/Hk8cun3T5pi1vi1yn630AXeWubeYmLZ90+aYtb31kHxeJQ/U+gK5y10aTk5ZPunzTlnc4skvA5bJDSJQRvMvMNxWm/IU8boIXDPmzin4wZ5/l1FvkSYv4l9n4XPlc5Vfz3zz+20iUELb4klzNBW+VhsgGgqrRoKT2S5dzGSnkCYDnAbyunRmffp/4bv1qiKbxE/ALzKjBb1K01OV/AgD4a2v9FWc38Q7GskhNJYD+Lup6Blxy4AW8DuB5vCZWsK2C3PoTVpuvAdz6ZQJ0r5+kPN9O/jjeUcw/FgKc7K5CwYfK/+YgZ48gQ12O3kZDony2iU8ecV1usj8VZI/jnmb+sWDcl4ARgFtofwno3sXb81fX0K4Ll/T79SCuHsqW/uO4p5l/DD1AdhP4Kit7lfkmyZ8HcBM382+q/HUlFjFnX1ekLjlEOVi5nn+qnX1Vk7jkbeunKB+1lr+jmZ9PtSmCeAyb9mPopOWdxwEWfyBm2gNRk5Z3JgDoSbpeKr9OT9aCdpVfpFul/BYziDFp+aTLN215yyNOCAkc0RsYOCIBAkckQOCIBAgckQCBIxIgcKjOoLrTUcesyyNaQPcGLpffjtjQXeURM4f6JaCb6Y6cGrq13KSzhggNJgFcBjzCkShfxpHSD9ThMqA6JYoDtfT1R1hgEmAZEA24jGVRfoRlkSAEecJE7qGwIq47HjPql4DlFlr02LKGbu3XRaCIhtDfF6BJamFnXR7RAtEbGDjiQFDgiAQIHJEAgSMSIHBEAgSOSIDAMb8E6MUBoXFAJ0D3cTZCH4T+xPPdwz5WJ55KANAJsJr/TRuu1p2Z/2Da2VwE6ATYz/+mC1frjuYfI3x7AEKv9tcMzKokFpl57TQszB/vAcYCfUbQPhLss26WhPlrhi2vUIX5V0X5QbwHGBd0Akg9wGppmuKvWSe8VztTJ1FP0c9RTDd/vAiMAbPUA0TzTwG+PUB3uN/f0cz8PUu4iEbw7QGOA1Lvwpk/3gOMAfqEkB4O0JvJzpXyTt/8jOiIOCMocMyvLyBiLPh/gj9Qphd3t8gAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTMtMDItMDFUMDU6MzM6MTAtMDg6MDApYMCSAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDEzLTAyLTAxVDA1OjMzOjEwLTA4OjAwWD14LgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAAASUVORK5CYII=');
+	background-position: -32px 0;
+	margin-top: 0;
+	top: 0;
+	font-weight: normal;
+}
+.ui-datepicker .ui-datepicker-prev span {
+	background-position: -96px 0;
+}
+.ui-datepicker th {
+	padding: 0.75em 0;
+	color: #fff;
+	font-weight: normal;
+	border: none;
+	border-top: 1px solid #333;
+}
+.ui-datepicker td {
+	background: #f1f1f1;
+	border: none;
+	padding: 0;
+}
+.ui-datepicker td .ui-state-default {
+	background: transparent;
+	border: none;
+	text-align: center;
+	padding: .5em;
+	margin: 0;
+	font-weight: normal;
+	color: #333;
+}
+.ui-datepicker td .ui-state-active,
+.ui-datepicker td .ui-state-hover {
+	background: #0074a2;
+	color: #fff;
+}
+.ui-datepicker td.ui-state-disabled,
+.ui-datepicker td.ui-state-disabled .ui-state-default {
+	opacity: 1;
+	color: #999;
+}
+/* Other Datepicker Color Schemes */
+/* Blue */
+.admin-color-blue .ui-datepicker .ui-datepicker-header,
+.admin-color-blue .ui-datepicker .ui-datepicker-header .ui-state-hover,
+.admin-color-blue .ui-datepicker thead {
+	background: #4796b3;
+}
+.admin-color-blue .ui-datepicker th {
+	border-color: #52accc;
+}
+.admin-color-blue .ui-datepicker td .ui-state-active,
+.admin-color-blue .ui-datepicker td .ui-state-hover {
+	background: #096484;
+}
+/* Coffee */
+.admin-color-coffee .ui-datepicker .ui-datepicker-header,
+.admin-color-coffee .ui-datepicker .ui-datepicker-header .ui-state-hover,
+.admin-color-coffee .ui-datepicker thead {
+	background: #46403c;
+}
+.admin-color-coffee .ui-datepicker th {
+	border-color: #59524c;
+}
+.admin-color-coffee .ui-datepicker td .ui-state-active,
+.admin-color-coffee .ui-datepicker td .ui-state-hover {
+	background: #c7a589;
+}
+/* Ectoplasm */
+.admin-color-ectoplasm .ui-datepicker .ui-datepicker-header,
+.admin-color-ectoplasm .ui-datepicker .ui-datepicker-header .ui-state-hover,
+.admin-color-ectoplasm .ui-datepicker thead {
+	background: #413256;
+}
+.admin-color-ectoplasm .ui-datepicker th {
+	border-color: #523f6d;
+}
+.admin-color-ectoplasm .ui-datepicker td .ui-state-active,
+.admin-color-ectoplasm .ui-datepicker td .ui-state-hover {
+	background: #a3b745;
+}
+/* Midnight */
+.admin-color-midnight .ui-datepicker .ui-datepicker-header,
+.admin-color-midnight .ui-datepicker .ui-datepicker-header .ui-state-hover,
+.admin-color-midnight .ui-datepicker thead {
+	background: #26292c;
+}
+.admin-color-midnight .ui-datepicker th {
+	border-color: #363b3f;
+}
+.admin-color-midnight .ui-datepicker td .ui-state-active,
+.admin-color-midnight .ui-datepicker td .ui-state-hover {
+	background: #e14d43;
+}
+/* Ocean */
+.admin-color-ocean .ui-datepicker .ui-datepicker-header,
+.admin-color-ocean .ui-datepicker .ui-datepicker-header .ui-state-hover,
+.admin-color-ocean .ui-datepicker thead {
+	background: #627c83;
+}
+.admin-color-ocean .ui-datepicker th {
+	border-color: #738e96;
+}
+.admin-color-ocean .ui-datepicker td .ui-state-active,
+.admin-color-ocean .ui-datepicker td .ui-state-hover {
+	background: #9ebaa0;
+}
+/* Sunrise */
+.admin-color-sunrise .ui-datepicker .ui-datepicker-header,
+.admin-color-sunrise .ui-datepicker .ui-datepicker-header .ui-state-hover,
+.admin-color-sunrise .ui-datepicker thead {
+	background: #be3631;
+}
+.admin-color-sunrise .ui-datepicker th {
+	border-color: #cf4944;
+}
+.admin-color-sunrise .ui-datepicker td .ui-state-active,
+.admin-color-sunrise .ui-datepicker td .ui-state-hover {
+	background: #dd823b;
+}
+/* Light */
+.admin-color-light .ui-datepicker .ui-datepicker-header,
+.admin-color-light .ui-datepicker .ui-datepicker-header .ui-state-hover,
+.admin-color-light .ui-datepicker thead {
+	background: #e5e5e5;
+}
+.admin-color-light .ui-datepicker td {
+	background: #fff;
+}
+.admin-color-light .ui-datepicker .ui-datepicker-next span,
+.admin-color-light .ui-datepicker .ui-datepicker-prev span {
+	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAADwCAYAAADvl7rLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxMUIxRjI2RjhCODYxMUUzQTEyNERCMDU1QzdBQ0EyMCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxMUIxRjI3MDhCODYxMUUzQTEyNERCMDU1QzdBQ0EyMCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjExQjFGMjZEOEI4NjExRTNBMTI0REIwNTVDN0FDQTIwIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjExQjFGMjZFOEI4NjExRTNBMTI0REIwNTVDN0FDQTIwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+kKfR4AAAHcRJREFUeNrsXWuMXsdZnuMu4CUN2S0t0a6o4sQqAaooTncrKGrUNbe2qSC2uQqpqtexbCqI0xaQEBclKUL8qts6stqNkuwWiYqbajtqS9oAuyEISrubrLmUFnBSfmRXFa12KT+cKk2GM9mZ7ng858w7l3PmnO88jzQ633e+8565vs+8M9+8MwXnnAEAMEzsQREAAAgAAIABYkx9OHXqFEoDMDFVho0yTJdhE8UxOjhz5gwsAICk/Exep1AkGAK0DY6G93L+eUblnw4gATPNqMceEsBURMVxSwhFbO8TEj838j4V8B6eQHF1RWyzDnTl3zRIIDTNsCJ6RABdMf+mM6XBjNfsDXP1wm2hkEGN+ze1eyFpngYJ9IcAYs0/vQEVkenz7X1SwRZv2xNhqeJNVRcxac5Vj0AAAcSYf13pBVMMPfS8xyhhaFpy9pqhQ6CqNOe0ZgBPAgg1/7rcC8aQQJEx7lzkGzoEqkpz7noEPOcAmhhPxjTGzcA42zR/m0jDZkSPGZPvmCFQVZqh/B3EWMfTV6CKvm2F5LJAQhYCmWlGPYIAAJAPMMQhAAAAIAAAAEAAAACAAAAAAAEAAAACAAAABAAAAAhAA/zI8+wHoMcL772BEkBsA0i1J0CsM0yIAvGa0CZ55doPIIU7uF7uIJKeEUCKBpDS6yumEW4kTPt0S+mOVf7YtG84voekHXsB9IQAUlXeZgMk0JYC2dIe6swS2vBTK79P2mMdmTZayBPQEAGkrLyUJDDdkvLb0h7ryRZCAtOZlD/F8G264TwBDRJAURNYJhLwbcSpepqU+wFs9KDcqhR1OkHa4Q7cQbTlDRjjVRa6H0BuFInKbTqQ0IpE8YYqrl7n8CgcOAHkVKK+I+d+ACj/AQ4BAAAAAQAAAAIAAAAEAAAACAAAABAAAAAgAAAAeg1sCw64IJYBFwPNt4li1Mp/DJUPBSAoQUwZ8AwKlCLOQdT5HmLlh1ZCikM6eUsyOXqUJvMRW/660hcRaUlBHDyjEqdsuzxTW+O+BJCi8lOdyRcSf5GoAaWqhJAelCcsvyKB8sQocmzeU7SBWAuorbabmjxqy3+spcrnERkPbUhFR8z3UAVIMQ7NVQbcEneRIO/UvBSW/PuWAw+U54naQJFgCFZVlgV1DiDH2LlI/K5UzNlmL55ScYtEaQ9VoFTpbbsNhHaCqdKdoh045fe0pPxFBiKJnXtIwcAx6SgSpD+VCR3bA8XmPdUkZB+sv9TzGLV135QFUHTgXTl7z5Tx5yzH0PynznvRkTJscx4lZvhHjnesw4XXFRTIP/I/qvFiJSAADBggAAAAAQAAAAIAAAAEAAAACAAAABAAAABDIwB1suvQT3WNXU3YZ6RqA6m8QtuML/Zk6N60P8rhoBs9bABdJZO2G05omadsA0Vg/DZvuKkW4lZyKY7GM9Ocwx14inm6A28Q7zVdCSGVzztKAr7pmkqYh5DyT9kGeIDy1x1QO9Vg3E1YQDmPRXceklt3OGjV91w9H6Ugiw5aAr6706Q42Ti2/FO1gZCdeTYqLBkfIoptBzEWUGia60z/UEvOVZaNTwKGNIC6sVdo5fNMSp9SAXwbQS4yrMt7G+vbiwTtILUV7Itp4r1G5gCaVP62HCtiG38KBs6xFx5FCbpo9VQ1dNv4e7qFdhBjAcWmWcA8Xj3FMe/WuYw9HWwAdZMvoZWfk4FTKUCKrb24R/2lMEFD0rtZU9Z9PCo+9nj1IlDeVZaNEkATPb5vQcb0eKkYOCQdmyy9uedbH6kIkEeUv82nfbPFNKQq981Ew+DQ4V/tMe9jDTJnFzazYJEkkGszkk2WvucqPOOf1sa9PgTYtf0D+riZSGvx4mAQoE0SAjoGLAUGABAAAAAgAAAAQAAAAIAAAAAAAQBAVnAUQfsEkMobLdSjKlWl6/GjIYUpX+6yCz0hCfUeSACpvNFCPapSnYmnxy/eN83SHFLat14s9njwgsUf8JpCgXlLaR88AVR5o/n6NKf2KQ+NX5GJz8KWlCfqhnok8kRxhypwEdgTV3kDxigwi6w7kECCOQDfjQ1iPKpsCt/WxgrcQn4pThj2aYS2k3lTmNJNPEvNrw+BxJ7KDEQQQJ0LYRs+0dNaXLEbK8QoSpHAjCwSKVauHoxnym/Kd6QYjgyKAKq80dpi4VhvuBSurLlNxqLCAuEtNvqu9cQ8sO5SHfM+qCGAbbzssyXSlFFpIRsihO4HkMqVNbbx8wQkEDoOjm30tmGQ7xCCB86rxMjWkQCD8l8NH2/AjcAKjPGlZwHviXFlTWmG6uWQwowtAuOPSXusK23oxjAxsk0ORwZNAG1MIqV6X1dcWYvM70mhwLn86aGwGYcAAAAlBAEAAAACAAAABAAAAAgAAAAQAAAAIIDRxwTD8lFgoASQ0g871LGGJ5T1fYdQ/i02On+HxZ50CwyIAGIP1kzpCDOZqXy2LEQyEamAOWR1bIAEAAoBxKyfjlnPbfbUqhee9FAUcxmpz9l6usk/aXnHlmf85r0YQk1lPW2g6QNVBMAjeyCbPzj3JBSlbLryb0dYH769vpLflnGHnCxr5t0n/3V7ErjSkmo7N2AAGCOY/TygF09hRTCL8ucYi2+zdA41VOWvKjdX+ZvbsBUV9TuNpg/YCMBstFWffUzQWK+0WMSOu32tj7q8u8qhqpenluFGTb4LTfk30fQBGwHUKV0R0fCLSDLIRSCFQQKcMBfBa4ZCrrzUlU8XdtcBBjAH4OqNQhXWd0+8mP34YuQnLbJbWh62CUpW1NwriKQTgqrt3KD4gDcBxI7fQ7elKioCi5APGfPrsqn+hiwSP2cidjs1AEOA6IZYJG7UOREzB5ALmww9PpCIAIYOKBIw2CEAAAAgAAAAQAAAAIAAAAAAAQDNYoZdvZZhpkfpF5PLe42ACeeOE8Aho8Ety3tt4/0szoc/FiKuBVa9l8BMC8q/arm/6hH3TEbyEIr+rTLcXIbLMtws740Fpj8kHzcZsjd55iNEPjZOgV9whJg8XKVLeoWcK8P7yvC0/D4h79lg+3vskOX5w2U475no32dXH8t1kvktB64jDNc75svwL2U4UfH7LWVY81ReHbMR8qsOef250KPNRKO5VPP7/jI84yCA15dhvQzj8p4ggQNl+LIkAuaZfp98VNX9JY82wCxlcIkgFyJj4s/l9aTsiFLWY1FHAExTfoEV5rcCjkog4r0HA5jRlwTGLfcuE+QWy/BgYO+3qhW0uSJPnXa8WpMHpeCrNeSxyppdn3Cpouz0MnTFr5T/Go3Y1h3vrStPlXcKmjiVqm+Hy1aROLextVlxOrY8C1kp/5dlQwldQrvX+L4Q8I7vCIzbZQG4cLiCqLj87ZxDfq2CBCg9P69ogL7nFIqy+4bl/vd4lMM18nkR33cHluUdEcO4GIIIdYcviGkpWlT+nyjD39SZa4yo9FQo5Xe9pyASwGRg2sYD0x9jAQh83kICSvk/T3yHSQIU5dcx4fhOKbvrI8pUmPtfK8Pb5fe/kveYR/6ZhYR8ymDWsKhmCcOzvsNU/l+UdVZJAqlnZqnK76O8oeaU3us826IFYJIA81R+G0n6TuLtd3ynWGD/bdy7waPnvygVfl0jBHHve8vwPLH3rduZqs0l2inM+dh3/EoZPu45b3FSG4J9Urt/xfC7ib8Btzwadp3yqjCuffbBd2nBpwdbjFR+gSmNBJTy+2zEKRReOPUckmGTtTuTL8rpB40wTig/kcfvl439G1LxD8h2xuVvoRuSznoq/r6Ka+xwNMc7/iSA+MWw+TvZ7qSiUv6VJi2AVJM04wni+VLgO2MtgCm2u+OO3utvEhv/TI08lQRe6/juakSXDHNenx+qsya+T3vO9k/BunxfyI5Eucz3y5nf4bMvxzNG/S3UKX8oAcxGmDkU5f8DqYBVv6UimSbmACjjzNkG5XVFrPvuakT63MWYTJPr7z+dJFzPuCbSeIK6/cuKK7UTWKy43+Y7QvCMhcStyv9yYXK+U9anTp1iwBXj7VsqfhfktDaQsuBar/9MT9OeqmPoG9SEoFX5z5w5k20I0HWsGdcho0Dae4tnKGUAXwAAGDBAAAAAAgAAAAQAAAAIAACATuAPZchCAOqU3NgjsUNg+i23vSeADcpHnbIYZ5bZ/bAp/+EfYtV7EXDm3qPhhEOeusCpypf8pp7IK/xRZPuZk6FtXFuG35Hh2sh3HdXCFRirUf4trcFST+gVm4gIBxB95dP9bMcD7kZ5pfhzi4U4a1qlndQUsKiRUygaUH61QMfljivK7AtGWlTaxP03svrFPue0PJtYIJShy3NygdEWOqmFJLoTzzqj+7jnllf4baNNCCVYIij9smzzy/LepNSDykU1hu6oOnxQku6C9h7KOROfNj7fHqH85oIkkf6vvFwoloVAuvLr3mirhMSLlwk/+Lrz50M3dPCRV0r3a2U4q13FfgWnPRvQjCQjteGJyzOv6mBPah4oPVVByP/nyvCjbMdF+7Yy/EMZfozRnWk423XiUTK3MvdKPpu8Qoi8+D/7BbbjonyTh7zZ+NUKvMWG26Ape9JCykWN9eYi8JOMvlJVtVmR9/NSr8XnpbqFQKbyq15vVv7WxgKLqn0EfLwM3ySJ6D/L8O9sx7tNrOJ71lP5Rd7Vzka+brm58Ndl+JEyPCaV6DFZHn8bOBzTFTJUXuCWAHmh/M8HyJk936Jn+9vybJuhFpmOGxI9o3CPluZDhpWybZsDWGDV69EVCSy00IC3ZdiSYZv5H8/1j2X4uTJ8VjaGT0r2PBeg/Oc0S6AP+Em2s/b9bdJ8FFfhTkrdYONmS2/lQ/ymvAqvCJAXPf9e5rfBy9EahXetxZ8zlN88X3KrwTmB3y3DB2p+/4B8xoV9Mqh0npblMS+HP9tVcwAnLeNZphHCWsXYtItQFsBXy/BP0pQU138LUP6Ynp+zMH/wSW3uxdcCEi6gP1+GP5VKL66/xGhuqcJj8UvamFu59CrzPUReKP6LEfL6HICv8psK/2QL1utWgHWr8Jtl+I2a30LIr5K8Xb4AIY1+SzOZ9xkm98EWFH+WoGwfb0n5Y0nAtIqo+C22sxmEmNi5Xl7Ffgq/V4YjNXJi/uY5456pdPs7LG9T/iXPcl4xlJhbFHjbUU9VJECZANT/cft7eX2zabo78q+P+VfqImvCGeh5trsT8Fci5wxC9hRci4xTWTuhyi9m+b9QMxZ+Y8PKr8qdSetHv/6MQ+45Y7z+r57x5pZf1Ig2RPkplhZlHsxGAtTZf9E+XirDu9nuZJ+YHPyI/O1xot6oMf9hXwKo2hBR78maxMmantJn+GGm1TftoT3/ag0JuP4CVD3cJa3xbHn0gLp83e8uiJ54M6IOc8nPJ1B+ZakuG0qs/w1IJW19GEclcTHp+ctl+Avt3oPyPS8Q33FaK4/aeFPvByDGiRcZAIwO5rShQR9wVPtcSYJN7QcA5QdGDSs9S6+X5QNfAAAYMEAAAAACAAAABAAAAAgAGCno7sVzRJk5drUb7s2J0uPzV2wX3MAHSQC3WhrArRnSxwfYCNQ+DI8Y9x9h/nsz3Meu9H1YJpDAj8vnjsjwOhnE8twfIsSpt533Vih/YQQdwnPxHVL+TTJwee82QvwzlrZLPVDFtReDaz8GinzsOw556g2v0yPbOgC15nulDB+W9xZlwzPdOykJ8WV9m3zMO3LgqCwzVV6qTCkLVPQ8i3cck8o/71kWKg0KYj+GZwnyIv5rLPe/VYZvMporrYj3UUk+qgz09NT51KdwBzdXkFK9WDmju5tT47Zhy/EOtZpR30BmVbtfEPJvi+Pb7thqHYDNAlDKLypJLOn9Wba7BnmdARQsamV5VCu3RQ9ZJpXeVH6qW+s+47uPG/TzUtkvy/BNSQBUPMp2l4NPsqv98ldaqIP9bNeblHlaA+buT75W6LbMp+7J6uPRyo20zBDJ0YQ4i3FaC/9DHQJ8WDM71RFH8y0pT5W50sZwgBODCwcqFJbiT3+MVXuzKYuAMoy4N7IcXtK+v8Toh2t+SPb8qpzuNZR/ifCO8Yrgg1XP+wp72ZW7P+3V4qce8inK/7Rm0jPmdzhpETF/UkjiEW3tNWzHGew1WrgCdSsBdeU/Rhx7VLFUm6Z8ivMJY3GRXX023LzH8OlYpPLbNnVhmvldhz+TCm/6DFySyu2CGPdfsMw5+KzPF77/L7A8uMby/Wvy86uJ73iP9lmQofIsvZFoBfAKsqJ0Pspa+LpG3nuk8j/Fdrboq50D4DKRE0ajU5XZxpZeLOIdvEFZah6qfOepcyh/XIZ3Wu4L99DbA5WfqoAi7fdU/PZ+tutp6Jt3KoHp4+gXtfsvyOEIdQ6gapztGsPfWPM8Z/UernrcVcO797UwB/AG+fmr2v3n9LZbNwdwQBvzPyp7fqX8B4jKYc7uVs34UuV93lE4QowsNQ/rFSb8eoDy61aE8At/0jG5pCv/QdkgC4/eVxDUAzLdeqAov8qjauhM63HUfAZ1DC3C/7GdM+5f4WF+zzK/reNMvFKGZ+X1WuNzDKjD6Ng5gBukbl+vBSaJgbuGABeloq+zK/9C8v0HYMhQ5r8qs6fZ7r8ALrzT6PFFr/k6trspxJuJY1/X7rV1eFqm/3Py+w8QlV8nsRU5Dl6RQ4ctLf/HPN71dc+0rzH75itiQ1HXCcfCVNePprd9PkwYgt3o+J3SCXKP+za8lmTKNnw8+FD/BoyBMuNNc/9Jqfx1vuVc6wXXEtWdb/nr/1psa+NefbvsPTUNWd2/qwxfZDubuW4GtCVlKt9kmcsoHJOAr2e7e2Ay7bPYTq5ug9JDjLbnpNoxK+QddbKUoewVQ4CmjwcvMsv3EdsV+b695fJ6tWa++/yjIHr3v5NEtaiRldog43/LcB1hMuzhyPRXbQ3nOpzleXb1rlLUcj2foA7Ot6k3YwwAqk3vXw+UXaohN+ZQ/lQktsaG2YF4Ab4AAAACAAAABAAAAAhAwyFGXwGocIccA5rLZ5cY/WQaAAAyE8A5I1Bwdxk+VYZ3WX57l/ztbhQ7AHSbAN5m9PyH5D1Xz3/GuGdbOXfGwxJYldbDakDenjUskLkE5TWHJuNVb2ZYRdH0gwDUARyTbHddtutQjiMe8VKfnTGuPthnfF9OoPzLRBI4ajT8owHxxb4jVl4p7IxFuV2Y9bwPdIgA9N5f92F2WQF3VTQiTnw2NZT1MZngXXMagbhIQCia6bO/6KmAse9Q8qK+xuV1MYAEZiy9+QzUZrQJQO/pJ9iVa5dPBiphKE4GxqunXy0/XQk08+cM68G1xn7R837ds/OSwOY936GU/zNsZ2XbZzQS8MUa1GQ4BDBnjP31HVWUFdDmOPg/jKsvVNqFI85hovLrPbyv8qfGeWmBnQ+QfcLxndVYbLGbrsxo5LGmkQish44TwDKhB19uMX0rMv5YpTvI3GvPbWZ+TuVXhDvB/P+KFXiL43udxRa7hHZBU3jdnXUBKtddApirMKEnCGaywFmPeKnPzrG4GXzVmCm7sKywK3fLCVX+ec/7dc8uSitm0fMd4rnHyvBWtuPd9lb5PWRbt5mEMrAAOkwAyxUmtG1zBduzF2pMSsqzrCaeUKvD15w1SSCk51+yKJrvcdWx71jSSOCypvxLnuUnTPdZwzKgzAmYlkQqywJokADWPBuGicfLcJwge1w+SzXdGaOfyZ5q2HEw0uxfMhr9UoZ3xMoXzL6vAP7KGyGMJa5Y4cP9X3LM+h7jN7ErjJjMesJTGWN6jSKCBNBbAYMigFR4Qob3ongBEGl/hgAAAIAAAAAAAQAAAAIAAAAEAAAACAAYIOZYuG9AjCyQkQBEpVF931nNO3jNd6B5LLC49fdzLHwVZows0AELQFVgLBH4koYZ30RAGlTaJyz3eEAaFE4Q5U/UpIl7lIXvseRmfCdkmOuI8nOGXZV6NwRomwjM+IQjz0FNeeYIJucy2/UADEl/yjznIFJmKKCPInOtDEOtvirZAlZBf+cAVEM+0eLYc1lrMIXWmHlNz20+G6N4ZhpClLBtxWc15ZMTGP71nABWZK/6YEtpU/EdNBrQQWZfXlpUPBvjx2+mwRex8Y8SsCS4pwSw0nJDNuOb0Ex61+YgKxoRqDmAkPSnzPNKBiIoKoKP7MGIeA/WWAEHoXYdYuWK48G5bKz3RzRa8zjn2KPCgXhz27fs5yzDqjZkgYbhOh48RYUVMAF7b26vaNZUm7JAB+cAgGFihWFfBRAAAAAgAAAAQAAAAIAAAAAAAQAAMJoEEHqyLQAAPSUAsXruHu37DTJMeLxX92C7z1MWAIBMBKBO0zXPortR3qcq8gG2swhEnAVwr5S9NUF6XQ4lJ5jdjVaFEyMuDwBeMFcCnpbXfzbur2i/HyO896ImJ5YTn2M7J/Qe0H5rAmLzi8JBIPpptaMmDwDBFoDo3eeloqohgDDf1Uk+6/J3ihWgeqxH5PPKEWY9cDjg40oqDsO8Vl71z+I6XoZVh/y1Mj79HSr4yvMI+b2WK0UeAIIsgP3yqh/ceb/2+YLswfcTeiDx3G1s51TbeTmEOCyHAuL7BxvM06sqCKQgEskrjWthvIMRFFi/vsqTxFS8k4b8JMOyWqBBC+CSvN5Z8eydxnOuIcCS1ogFEWzL6+mGen6F6yxhQl43mPsMRPHsD7Pdo9H1dzxHkL9OyutXJe8bv/4eavwAEGQBbEszfY7t/PW3pP12VPbqK/I5quIWsucXcwD7yvAoCzujnoqTZfii4/e1EZYHAC+Y+wHcKsfpasx/Qfb8BzTT/qInAajvaiOIZYIpq5vstisAABGo2g/golTy+9jOX4FK8c/Le9QZ/Lq9AAoP+aorAACJhwA6CRxG0QDA6AO+AAAAAgAAAAQAAAAIAACA4RLAHWxnDYDpiLIkf3Mht/xb2M5KQ1P+g/K3UZfve/0NXb5VmOsA7i7DGYeMePCBit9yy99Vhocc8sfL8PCIyve9/oYu3xrUOgCdAAQ7fYoo/44yfNrCfDnlf6oMnyXK/3QZHh8x+b7X39DlsxCAPgQ4YrMQmH3xzRHivSq45I+zqxcPHXfI31mRfkZ89k6P9PvIFy3Ff8Qjfmr9FQnkWab411j1sWi+8RcJ2n8RqCutDQF4TaI5oXJ9HXfq5AvNJGaaycs948+V/lTxp0h/1Tuajr8gposFps8n/iKg/Yjff1X7/tGA9mc+Kzxkn3KQY6sWAPVosMJTSaoyR5XnxliXMjZ2pYdHKHcIScRWcJE4/b7vSJl2lqD9hKSfW0jABx8xCMAHb5DKblP+zmCMdRcvVnxuAzyBhZBKgXIrcEgHkKL8U8Qb60D27kA5ofxPd1356wggtgJ4ogZ4VF6X2O5fKzENKpQEeCISaav8eKTyxhIgz0AaLgskxIL6aGD+n9JIoLPKL6BPAp71kDtLvBcqr8b+izLo96rkH/ZQpoeJ93gCeRYhzzzkz3oQCqX+eEL5ttuPWX88g/xTNcp/tosEcMFDAS4Q71XBJf+QpQE+5JD/hIcCfoJ4jyWQ5y3Ff8Ejfmr98QTyLEP83EFATcvrJMAidaU1AhD/Kx8nyBxnV/8H3QV58b/qKYL8KWb/D7bv8n2vv6HLZycAZVrOsZ39/E18SP72sMM0zSkvVliJRRYfs/z2MfnbAyMs3/f6G7p8+5MlxlJgAAAGANtKQAAABgYQAACAAAAAAAEAAAACAAAABAAAwIjD5QtgA2V9O+Tj5AEgKwEIjFvuXfZ4d255AAASDAFyKt3lBGnI2ePiSDOg1wQQq4CXtRCCcSk7nkkBq7aEokI/1BQAekcA4zXmOFWBxyPkL2skEKqAjMXtI8BZvg0pACD7EGA8Y/rGE6QhZ+/LO5AGAKjEWINj/9zyAAAEEkDKDS0hDwA9HgIAAAACAAAABAAAAAgAAAAQAAAAIAAAAEAAAAVTDAuDgB4QQBdWsYm4Z7TrKCj/Rhmm0fSArhPAtHFFzx1Hhrryb6I4ga4TwIZxHbryx/TcUH5gEBYA13rKumvTwwZXCFXejQTKjzkAoDMYc1gAhXaloCBem8RsQz1/iAVgU37MAQC9IIBQC2DaojTmtUkzeNWDqHyV34cM65QfwwAAFkCHLQAoPwALIMAC6ALWEryjSeWf8nwfAPTGAhgVhFouVOXHHAAACyBAEbsO08x3fQeAvD0d5/hHCgCGCvgCAMCA8f8CDABatG6NN+gY2wAAAABJRU5ErkJggg==');
+}
+.admin-color-light .ui-datepicker th {
+	border-color: #fff;
+}
+.admin-color-light .ui-datepicker .ui-datepicker-title,
+.admin-color-light .ui-datepicker td .ui-state-default,
+.admin-color-light .ui-datepicker th {
+	color: #555;
+}
+.admin-color-light .ui-datepicker td .ui-state-active,
+.admin-color-light .ui-datepicker td .ui-state-hover {
+	color: #fff;
+	background: #888;
+}
+.admin-color-light .ui-datepicker td.ui-state-disabled,
+.admin-color-light .ui-datepicker td.ui-state-disabled .ui-state-default {
+	color: #ccc;
+}
diff --git a/wp-content/plugins/event-list/admin/css/jquery-ui.css b/wp-content/plugins/event-list/admin/css/jquery-ui.css
new file mode 100644
index 0000000000000000000000000000000000000000..8011a6f2b13230e93475205ee270d44d1d395732
--- /dev/null
+++ b/wp-content/plugins/event-list/admin/css/jquery-ui.css
@@ -0,0 +1,650 @@
+/*! jQuery UI - v1.11.4 - 2017-02-25
+* http://jqueryui.com
+* Includes: core.css, datepicker.css, theme.css
+* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
+* Copyright jQuery Foundation and other contributors; Licensed MIT */
+
+/* Layout helpers
+----------------------------------*/
+.ui-helper-hidden {
+	display: none;
+}
+.ui-helper-hidden-accessible {
+	border: 0;
+	clip: rect(0 0 0 0);
+	height: 1px;
+	margin: -1px;
+	overflow: hidden;
+	padding: 0;
+	position: absolute;
+	width: 1px;
+}
+.ui-helper-reset {
+	margin: 0;
+	padding: 0;
+	border: 0;
+	outline: 0;
+	line-height: 1.3;
+	text-decoration: none;
+	font-size: 100%;
+	list-style: none;
+}
+.ui-helper-clearfix:before,
+.ui-helper-clearfix:after {
+	content: "";
+	display: table;
+	border-collapse: collapse;
+}
+.ui-helper-clearfix:after {
+	clear: both;
+}
+.ui-helper-clearfix {
+	min-height: 0; /* support: IE7 */
+}
+.ui-helper-zfix {
+	width: 100%;
+	height: 100%;
+	top: 0;
+	left: 0;
+	position: absolute;
+	opacity: 0;
+	filter:Alpha(Opacity=0); /* support: IE8 */
+}
+
+.ui-front {
+	z-index: 100;
+}
+
+
+/* Interaction Cues
+----------------------------------*/
+.ui-state-disabled {
+	cursor: default !important;
+}
+
+
+/* Icons
+----------------------------------*/
+
+/* states and images */
+.ui-icon {
+	display: block;
+	text-indent: -99999px;
+	overflow: hidden;
+	background-repeat: no-repeat;
+}
+
+
+/* Misc visuals
+----------------------------------*/
+
+/* Overlays */
+.ui-widget-overlay {
+	position: fixed;
+	top: 0;
+	left: 0;
+	width: 100%;
+	height: 100%;
+}
+.ui-datepicker {
+	width: 17em;
+	padding: .2em .2em 0;
+	display: none;
+}
+.ui-datepicker .ui-datepicker-header {
+	position: relative;
+	padding: .2em 0;
+}
+.ui-datepicker .ui-datepicker-prev,
+.ui-datepicker .ui-datepicker-next {
+	position: absolute;
+	top: 2px;
+	width: 1.8em;
+	height: 1.8em;
+}
+.ui-datepicker .ui-datepicker-prev-hover,
+.ui-datepicker .ui-datepicker-next-hover {
+	top: 1px;
+}
+.ui-datepicker .ui-datepicker-prev {
+	left: 2px;
+}
+.ui-datepicker .ui-datepicker-next {
+	right: 2px;
+}
+.ui-datepicker .ui-datepicker-prev-hover {
+	left: 1px;
+}
+.ui-datepicker .ui-datepicker-next-hover {
+	right: 1px;
+}
+.ui-datepicker .ui-datepicker-prev span,
+.ui-datepicker .ui-datepicker-next span {
+	display: block;
+	position: absolute;
+	left: 50%;
+	margin-left: -8px;
+	top: 50%;
+	margin-top: -8px;
+}
+.ui-datepicker .ui-datepicker-title {
+	margin: 0 2.3em;
+	line-height: 1.8em;
+	text-align: center;
+}
+.ui-datepicker .ui-datepicker-title select {
+	font-size: 1em;
+	margin: 1px 0;
+}
+.ui-datepicker select.ui-datepicker-month,
+.ui-datepicker select.ui-datepicker-year {
+	width: 45%;
+}
+.ui-datepicker table {
+	width: 100%;
+	font-size: .9em;
+	border-collapse: collapse;
+	margin: 0 0 .4em;
+}
+.ui-datepicker th {
+	padding: .7em .3em;
+	text-align: center;
+	font-weight: bold;
+	border: 0;
+}
+.ui-datepicker td {
+	border: 0;
+	padding: 1px;
+}
+.ui-datepicker td span,
+.ui-datepicker td a {
+	display: block;
+	padding: .2em;
+	text-align: right;
+	text-decoration: none;
+}
+.ui-datepicker .ui-datepicker-buttonpane {
+	background-image: none;
+	margin: .7em 0 0 0;
+	padding: 0 .2em;
+	border-left: 0;
+	border-right: 0;
+	border-bottom: 0;
+}
+.ui-datepicker .ui-datepicker-buttonpane button {
+	float: right;
+	margin: .5em .2em .4em;
+	cursor: pointer;
+	padding: .2em .6em .3em .6em;
+	width: auto;
+	overflow: visible;
+}
+.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
+	float: left;
+}
+
+/* with multiple calendars */
+.ui-datepicker.ui-datepicker-multi {
+	width: auto;
+}
+.ui-datepicker-multi .ui-datepicker-group {
+	float: left;
+}
+.ui-datepicker-multi .ui-datepicker-group table {
+	width: 95%;
+	margin: 0 auto .4em;
+}
+.ui-datepicker-multi-2 .ui-datepicker-group {
+	width: 50%;
+}
+.ui-datepicker-multi-3 .ui-datepicker-group {
+	width: 33.3%;
+}
+.ui-datepicker-multi-4 .ui-datepicker-group {
+	width: 25%;
+}
+.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
+.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
+	border-left-width: 0;
+}
+.ui-datepicker-multi .ui-datepicker-buttonpane {
+	clear: left;
+}
+.ui-datepicker-row-break {
+	clear: both;
+	width: 100%;
+	font-size: 0;
+}
+
+/* RTL support */
+.ui-datepicker-rtl {
+	direction: rtl;
+}
+.ui-datepicker-rtl .ui-datepicker-prev {
+	right: 2px;
+	left: auto;
+}
+.ui-datepicker-rtl .ui-datepicker-next {
+	left: 2px;
+	right: auto;
+}
+.ui-datepicker-rtl .ui-datepicker-prev:hover {
+	right: 1px;
+	left: auto;
+}
+.ui-datepicker-rtl .ui-datepicker-next:hover {
+	left: 1px;
+	right: auto;
+}
+.ui-datepicker-rtl .ui-datepicker-buttonpane {
+	clear: right;
+}
+.ui-datepicker-rtl .ui-datepicker-buttonpane button {
+	float: left;
+}
+.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
+.ui-datepicker-rtl .ui-datepicker-group {
+	float: right;
+}
+.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
+.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
+	border-right-width: 0;
+	border-left-width: 1px;
+}
+
+/* Component containers
+----------------------------------*/
+.ui-widget {
+	font-family: Verdana,Arial,sans-serif;
+	font-size: 1.1em;
+}
+.ui-widget .ui-widget {
+	font-size: 1em;
+}
+.ui-widget input,
+.ui-widget select,
+.ui-widget textarea,
+.ui-widget button {
+	font-family: Verdana,Arial,sans-serif;
+	font-size: 1em;
+}
+.ui-widget-content {
+	border: 1px solid #aaaaaa;
+	background: #ffffff;
+	color: #222222;
+}
+.ui-widget-content a {
+	color: #222222;
+}
+.ui-widget-header {
+	border: 1px solid #aaaaaa;
+	background: #cccccc url("images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;
+	color: #222222;
+	font-weight: bold;
+}
+.ui-widget-header a {
+	color: #222222;
+}
+
+/* Interaction states
+----------------------------------*/
+.ui-state-default,
+.ui-widget-content .ui-state-default,
+.ui-widget-header .ui-state-default {
+	border: 1px solid #d3d3d3;
+	background: #e6e6e6 url("images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;
+	font-weight: normal;
+	color: #555555;
+}
+.ui-state-default a,
+.ui-state-default a:link,
+.ui-state-default a:visited {
+	color: #555555;
+	text-decoration: none;
+}
+.ui-state-hover,
+.ui-widget-content .ui-state-hover,
+.ui-widget-header .ui-state-hover,
+.ui-state-focus,
+.ui-widget-content .ui-state-focus,
+.ui-widget-header .ui-state-focus {
+	border: 1px solid #999999;
+	background: #dadada url("images/ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x;
+	font-weight: normal;
+	color: #212121;
+}
+.ui-state-hover a,
+.ui-state-hover a:hover,
+.ui-state-hover a:link,
+.ui-state-hover a:visited,
+.ui-state-focus a,
+.ui-state-focus a:hover,
+.ui-state-focus a:link,
+.ui-state-focus a:visited {
+	color: #212121;
+	text-decoration: none;
+}
+.ui-state-active,
+.ui-widget-content .ui-state-active,
+.ui-widget-header .ui-state-active {
+	border: 1px solid #aaaaaa;
+	background: #ffffff url("images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;
+	font-weight: normal;
+	color: #212121;
+}
+.ui-state-active a,
+.ui-state-active a:link,
+.ui-state-active a:visited {
+	color: #212121;
+	text-decoration: none;
+}
+
+/* Interaction Cues
+----------------------------------*/
+.ui-state-highlight,
+.ui-widget-content .ui-state-highlight,
+.ui-widget-header .ui-state-highlight {
+	border: 1px solid #fcefa1;
+	background: #fbf9ee url("images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x;
+	color: #363636;
+}
+.ui-state-highlight a,
+.ui-widget-content .ui-state-highlight a,
+.ui-widget-header .ui-state-highlight a {
+	color: #363636;
+}
+.ui-state-error,
+.ui-widget-content .ui-state-error,
+.ui-widget-header .ui-state-error {
+	border: 1px solid #cd0a0a;
+	background: #fef1ec url("images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;
+	color: #cd0a0a;
+}
+.ui-state-error a,
+.ui-widget-content .ui-state-error a,
+.ui-widget-header .ui-state-error a {
+	color: #cd0a0a;
+}
+.ui-state-error-text,
+.ui-widget-content .ui-state-error-text,
+.ui-widget-header .ui-state-error-text {
+	color: #cd0a0a;
+}
+.ui-priority-primary,
+.ui-widget-content .ui-priority-primary,
+.ui-widget-header .ui-priority-primary {
+	font-weight: bold;
+}
+.ui-priority-secondary,
+.ui-widget-content .ui-priority-secondary,
+.ui-widget-header .ui-priority-secondary {
+	opacity: .7;
+	filter:Alpha(Opacity=70); /* support: IE8 */
+	font-weight: normal;
+}
+.ui-state-disabled,
+.ui-widget-content .ui-state-disabled,
+.ui-widget-header .ui-state-disabled {
+	opacity: .35;
+	filter:Alpha(Opacity=35); /* support: IE8 */
+	background-image: none;
+}
+.ui-state-disabled .ui-icon {
+	filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
+}
+
+/* Icons
+----------------------------------*/
+
+/* states and images */
+.ui-icon {
+	width: 16px;
+	height: 16px;
+}
+.ui-icon,
+.ui-widget-content .ui-icon {
+	background-image: url("images/ui-icons_222222_256x240.png");
+}
+.ui-widget-header .ui-icon {
+	background-image: url("images/ui-icons_222222_256x240.png");
+}
+.ui-state-default .ui-icon {
+	background-image: url("images/ui-icons_888888_256x240.png");
+}
+.ui-state-hover .ui-icon,
+.ui-state-focus .ui-icon {
+	background-image: url("images/ui-icons_454545_256x240.png");
+}
+.ui-state-active .ui-icon {
+	background-image: url("images/ui-icons_454545_256x240.png");
+}
+.ui-state-highlight .ui-icon {
+	background-image: url("images/ui-icons_2e83ff_256x240.png");
+}
+.ui-state-error .ui-icon,
+.ui-state-error-text .ui-icon {
+	background-image: url("images/ui-icons_cd0a0a_256x240.png");
+}
+
+/* positioning */
+.ui-icon-blank { background-position: 16px 16px; }
+.ui-icon-carat-1-n { background-position: 0 0; }
+.ui-icon-carat-1-ne { background-position: -16px 0; }
+.ui-icon-carat-1-e { background-position: -32px 0; }
+.ui-icon-carat-1-se { background-position: -48px 0; }
+.ui-icon-carat-1-s { background-position: -64px 0; }
+.ui-icon-carat-1-sw { background-position: -80px 0; }
+.ui-icon-carat-1-w { background-position: -96px 0; }
+.ui-icon-carat-1-nw { background-position: -112px 0; }
+.ui-icon-carat-2-n-s { background-position: -128px 0; }
+.ui-icon-carat-2-e-w { background-position: -144px 0; }
+.ui-icon-triangle-1-n { background-position: 0 -16px; }
+.ui-icon-triangle-1-ne { background-position: -16px -16px; }
+.ui-icon-triangle-1-e { background-position: -32px -16px; }
+.ui-icon-triangle-1-se { background-position: -48px -16px; }
+.ui-icon-triangle-1-s { background-position: -64px -16px; }
+.ui-icon-triangle-1-sw { background-position: -80px -16px; }
+.ui-icon-triangle-1-w { background-position: -96px -16px; }
+.ui-icon-triangle-1-nw { background-position: -112px -16px; }
+.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
+.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
+.ui-icon-arrow-1-n { background-position: 0 -32px; }
+.ui-icon-arrow-1-ne { background-position: -16px -32px; }
+.ui-icon-arrow-1-e { background-position: -32px -32px; }
+.ui-icon-arrow-1-se { background-position: -48px -32px; }
+.ui-icon-arrow-1-s { background-position: -64px -32px; }
+.ui-icon-arrow-1-sw { background-position: -80px -32px; }
+.ui-icon-arrow-1-w { background-position: -96px -32px; }
+.ui-icon-arrow-1-nw { background-position: -112px -32px; }
+.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
+.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
+.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
+.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
+.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
+.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
+.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
+.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
+.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
+.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
+.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
+.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
+.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
+.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
+.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
+.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
+.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
+.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
+.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
+.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
+.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
+.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
+.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
+.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
+.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
+.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
+.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
+.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
+.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
+.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
+.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
+.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
+.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
+.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
+.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
+.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
+.ui-icon-arrow-4 { background-position: 0 -80px; }
+.ui-icon-arrow-4-diag { background-position: -16px -80px; }
+.ui-icon-extlink { background-position: -32px -80px; }
+.ui-icon-newwin { background-position: -48px -80px; }
+.ui-icon-refresh { background-position: -64px -80px; }
+.ui-icon-shuffle { background-position: -80px -80px; }
+.ui-icon-transfer-e-w { background-position: -96px -80px; }
+.ui-icon-transferthick-e-w { background-position: -112px -80px; }
+.ui-icon-folder-collapsed { background-position: 0 -96px; }
+.ui-icon-folder-open { background-position: -16px -96px; }
+.ui-icon-document { background-position: -32px -96px; }
+.ui-icon-document-b { background-position: -48px -96px; }
+.ui-icon-note { background-position: -64px -96px; }
+.ui-icon-mail-closed { background-position: -80px -96px; }
+.ui-icon-mail-open { background-position: -96px -96px; }
+.ui-icon-suitcase { background-position: -112px -96px; }
+.ui-icon-comment { background-position: -128px -96px; }
+.ui-icon-person { background-position: -144px -96px; }
+.ui-icon-print { background-position: -160px -96px; }
+.ui-icon-trash { background-position: -176px -96px; }
+.ui-icon-locked { background-position: -192px -96px; }
+.ui-icon-unlocked { background-position: -208px -96px; }
+.ui-icon-bookmark { background-position: -224px -96px; }
+.ui-icon-tag { background-position: -240px -96px; }
+.ui-icon-home { background-position: 0 -112px; }
+.ui-icon-flag { background-position: -16px -112px; }
+.ui-icon-calendar { background-position: -32px -112px; }
+.ui-icon-cart { background-position: -48px -112px; }
+.ui-icon-pencil { background-position: -64px -112px; }
+.ui-icon-clock { background-position: -80px -112px; }
+.ui-icon-disk { background-position: -96px -112px; }
+.ui-icon-calculator { background-position: -112px -112px; }
+.ui-icon-zoomin { background-position: -128px -112px; }
+.ui-icon-zoomout { background-position: -144px -112px; }
+.ui-icon-search { background-position: -160px -112px; }
+.ui-icon-wrench { background-position: -176px -112px; }
+.ui-icon-gear { background-position: -192px -112px; }
+.ui-icon-heart { background-position: -208px -112px; }
+.ui-icon-star { background-position: -224px -112px; }
+.ui-icon-link { background-position: -240px -112px; }
+.ui-icon-cancel { background-position: 0 -128px; }
+.ui-icon-plus { background-position: -16px -128px; }
+.ui-icon-plusthick { background-position: -32px -128px; }
+.ui-icon-minus { background-position: -48px -128px; }
+.ui-icon-minusthick { background-position: -64px -128px; }
+.ui-icon-close { background-position: -80px -128px; }
+.ui-icon-closethick { background-position: -96px -128px; }
+.ui-icon-key { background-position: -112px -128px; }
+.ui-icon-lightbulb { background-position: -128px -128px; }
+.ui-icon-scissors { background-position: -144px -128px; }
+.ui-icon-clipboard { background-position: -160px -128px; }
+.ui-icon-copy { background-position: -176px -128px; }
+.ui-icon-contact { background-position: -192px -128px; }
+.ui-icon-image { background-position: -208px -128px; }
+.ui-icon-video { background-position: -224px -128px; }
+.ui-icon-script { background-position: -240px -128px; }
+.ui-icon-alert { background-position: 0 -144px; }
+.ui-icon-info { background-position: -16px -144px; }
+.ui-icon-notice { background-position: -32px -144px; }
+.ui-icon-help { background-position: -48px -144px; }
+.ui-icon-check { background-position: -64px -144px; }
+.ui-icon-bullet { background-position: -80px -144px; }
+.ui-icon-radio-on { background-position: -96px -144px; }
+.ui-icon-radio-off { background-position: -112px -144px; }
+.ui-icon-pin-w { background-position: -128px -144px; }
+.ui-icon-pin-s { background-position: -144px -144px; }
+.ui-icon-play { background-position: 0 -160px; }
+.ui-icon-pause { background-position: -16px -160px; }
+.ui-icon-seek-next { background-position: -32px -160px; }
+.ui-icon-seek-prev { background-position: -48px -160px; }
+.ui-icon-seek-end { background-position: -64px -160px; }
+.ui-icon-seek-start { background-position: -80px -160px; }
+/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
+.ui-icon-seek-first { background-position: -80px -160px; }
+.ui-icon-stop { background-position: -96px -160px; }
+.ui-icon-eject { background-position: -112px -160px; }
+.ui-icon-volume-off { background-position: -128px -160px; }
+.ui-icon-volume-on { background-position: -144px -160px; }
+.ui-icon-power { background-position: 0 -176px; }
+.ui-icon-signal-diag { background-position: -16px -176px; }
+.ui-icon-signal { background-position: -32px -176px; }
+.ui-icon-battery-0 { background-position: -48px -176px; }
+.ui-icon-battery-1 { background-position: -64px -176px; }
+.ui-icon-battery-2 { background-position: -80px -176px; }
+.ui-icon-battery-3 { background-position: -96px -176px; }
+.ui-icon-circle-plus { background-position: 0 -192px; }
+.ui-icon-circle-minus { background-position: -16px -192px; }
+.ui-icon-circle-close { background-position: -32px -192px; }
+.ui-icon-circle-triangle-e { background-position: -48px -192px; }
+.ui-icon-circle-triangle-s { background-position: -64px -192px; }
+.ui-icon-circle-triangle-w { background-position: -80px -192px; }
+.ui-icon-circle-triangle-n { background-position: -96px -192px; }
+.ui-icon-circle-arrow-e { background-position: -112px -192px; }
+.ui-icon-circle-arrow-s { background-position: -128px -192px; }
+.ui-icon-circle-arrow-w { background-position: -144px -192px; }
+.ui-icon-circle-arrow-n { background-position: -160px -192px; }
+.ui-icon-circle-zoomin { background-position: -176px -192px; }
+.ui-icon-circle-zoomout { background-position: -192px -192px; }
+.ui-icon-circle-check { background-position: -208px -192px; }
+.ui-icon-circlesmall-plus { background-position: 0 -208px; }
+.ui-icon-circlesmall-minus { background-position: -16px -208px; }
+.ui-icon-circlesmall-close { background-position: -32px -208px; }
+.ui-icon-squaresmall-plus { background-position: -48px -208px; }
+.ui-icon-squaresmall-minus { background-position: -64px -208px; }
+.ui-icon-squaresmall-close { background-position: -80px -208px; }
+.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
+.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
+.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
+.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
+.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
+.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
+
+
+/* Misc visuals
+----------------------------------*/
+
+/* Corner radius */
+.ui-corner-all,
+.ui-corner-top,
+.ui-corner-left,
+.ui-corner-tl {
+	border-top-left-radius: 4px;
+}
+.ui-corner-all,
+.ui-corner-top,
+.ui-corner-right,
+.ui-corner-tr {
+	border-top-right-radius: 4px;
+}
+.ui-corner-all,
+.ui-corner-bottom,
+.ui-corner-left,
+.ui-corner-bl {
+	border-bottom-left-radius: 4px;
+}
+.ui-corner-all,
+.ui-corner-bottom,
+.ui-corner-right,
+.ui-corner-br {
+	border-bottom-right-radius: 4px;
+}
+
+/* Overlays */
+.ui-widget-overlay {
+	background: #aaaaaa;
+	opacity: .3;
+	filter: Alpha(Opacity=30); /* support: IE8 */
+}
+.ui-widget-shadow {
+	margin: -8px 0 0 -8px;
+	padding: 8px;
+	background: #aaaaaa;
+	opacity: .3;
+	filter: Alpha(Opacity=30); /* support: IE8 */
+	border-radius: 8px;
+}
diff --git a/wp-content/plugins/event-list/admin/css/jquery-ui.min.css b/wp-content/plugins/event-list/admin/css/jquery-ui.min.css
new file mode 100644
index 0000000000000000000000000000000000000000..e3c2070b89e44fb74d085c52c470a0875b307611
--- /dev/null
+++ b/wp-content/plugins/event-list/admin/css/jquery-ui.min.css
@@ -0,0 +1,7 @@
+/*! jQuery UI - v1.11.4 - 2017-02-25
+* http://jqueryui.com
+* Includes: core.css, datepicker.css, theme.css
+* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
+* Copyright jQuery Foundation and other contributors; Licensed MIT */
+
+.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-widget{font-family:Verdana,Arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Verdana,Arial,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #aaa;background:#fff;color:#222}.ui-widget-content a{color:#222}.ui-widget-header{border:1px solid #aaa;background:#ccc url("images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;color:#222;font-weight:bold}.ui-widget-header a{color:#222}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #d3d3d3;background:#e6e6e6 url("images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;font-weight:normal;color:#555}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#555;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus{border:1px solid #999;background:#dadada url("images/ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x;font-weight:normal;color:#212121}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited{color:#212121;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #aaa;background:#fff url("images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;font-weight:normal;color:#212121}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#212121;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fcefa1;background:#fbf9ee url("images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x;color:#363636}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#fef1ec url("images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;color:#cd0a0a}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#cd0a0a}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#cd0a0a}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-widget-header .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-state-default .ui-icon{background-image:url("images/ui-icons_888888_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url("images/ui-icons_454545_256x240.png")}.ui-state-active .ui-icon{background-image:url("images/ui-icons_454545_256x240.png")}.ui-state-highlight .ui-icon{background-image:url("images/ui-icons_2e83ff_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_cd0a0a_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-position:-16px 0}.ui-icon-carat-1-e{background-position:-32px 0}.ui-icon-carat-1-se{background-position:-48px 0}.ui-icon-carat-1-s{background-position:-64px 0}.ui-icon-carat-1-sw{background-position:-80px 0}.ui-icon-carat-1-w{background-position:-96px 0}.ui-icon-carat-1-nw{background-position:-112px 0}.ui-icon-carat-2-n-s{background-position:-128px 0}.ui-icon-carat-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-64px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-64px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:0 -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:4px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:4px}.ui-widget-overlay{background:#aaa;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{margin:-8px 0 0 -8px;padding:8px;background:#aaa;opacity:.3;filter:Alpha(Opacity=30);border-radius:8px}
\ No newline at end of file
diff --git a/wp-content/plugins/event-list/admin/images/flattr-badge-large.png b/wp-content/plugins/event-list/admin/images/flattr-badge-large.png
new file mode 100644
index 0000000000000000000000000000000000000000..1105305850621343d54022dd422415ddf1f659e1
Binary files /dev/null and b/wp-content/plugins/event-list/admin/images/flattr-badge-large.png differ
diff --git a/wp-content/plugins/event-list/admin/images/paypal_btn_donate.gif b/wp-content/plugins/event-list/admin/images/paypal_btn_donate.gif
new file mode 100644
index 0000000000000000000000000000000000000000..d6df5107edf3bb2f9d111dcd4e014b4d0dd2adb1
Binary files /dev/null and b/wp-content/plugins/event-list/admin/images/paypal_btn_donate.gif differ
diff --git a/wp-content/plugins/event-list/admin/includes/admin-about.php b/wp-content/plugins/event-list/admin/includes/admin-about.php
new file mode 100644
index 0000000000000000000000000000000000000000..6393117969304fa7454a8b5252beb4e4f1078002
--- /dev/null
+++ b/wp-content/plugins/event-list/admin/includes/admin-about.php
@@ -0,0 +1,187 @@
+<?php
+if(!defined('WPINC')) {
+	exit;
+}
+
+require_once(EL_PATH.'includes/options.php');
+require_once(EL_PATH.'includes/daterange.php');
+
+// This class handles all data for the admin about page
+class EL_Admin_About {
+	private static $instance;
+	private $options;
+	private $daterange;
+
+	public static function &get_instance() {
+		// Create class instance if required
+		if(!isset(self::$instance)) {
+			self::$instance = new self();
+		}
+		// Return class instance
+		return self::$instance;
+	}
+
+	private function __construct() {
+		$this->options = EL_Options::get_instance();
+		$this->daterange = EL_Daterange::get_instance();
+	}
+
+	public function show_about() {
+		if(!current_user_can('edit_posts')) {
+			wp_die(__('You do not have sufficient permissions to access this page.'));
+		}
+		if(!isset($_GET['tab'])) {
+			$_GET['tab'] = 'general';
+		}
+		echo '<div class="wrap">
+				<div id="icon-edit-pages" class="icon32"><br /></div><h2>'.__('About Event List','event-list').'</h2>';
+		echo $this->show_tabs($_GET['tab']);
+		if('atts' == $_GET['tab']) {
+			$this->show_atts();
+			$this->show_filter_syntax();
+			$this->show_date_syntax();
+			$this->show_daterange_syntax();
+		}
+		else {
+			$this->show_help();
+			$this->show_author();
+		}
+		echo '
+			</div>';
+	}
+
+	public function embed_about_scripts() {
+		wp_enqueue_style('eventlist_admin_about', EL_URL.'admin/css/admin_about.css');
+	}
+
+	private function show_tabs($current = 'about') {
+		$tabs = array('general' => __('General','event-list'),
+		              'atts'    => __('Shortcode Attributes','event-list'));
+		$out = '<h3 class="nav-tab-wrapper">';
+		foreach($tabs as $tab => $name){
+			$class = ($tab == $current) ? ' nav-tab-active' : '';
+			$out .= '<a class="nav-tab'.$class.'" href="?page=el_admin_about&amp;tab='.$tab.'">'.$name.'</a>';
+		}
+		$out .= '</h3>';
+		return $out;
+	}
+
+	private function show_help() {
+		echo '
+			<h3 class="el-headline">'.__('Help and Instructions','event-list').'</h3>
+			<p>'.sprintf(__('You can manage the events %1$shere%2$s','event-list'), '<a href="admin.php?page=el_admin_main">', '</a>').'.</p>
+			<p>'.__('To show the events on your site you have 2 possibilities','event-list').':</p>
+			<ul class="el-show-event-options"><li>'.sprintf(__('you can place the <strong>shortcode</strong> %1$s on any page or post','event-list'), '<code>[event-list]</code>').'</li>
+			<li>'.sprintf(__('you can add the <strong>widget</strong> %1$s in your sidebars','event-list'), '"Event List"').'</li></ul>
+			<p>'.__('The displayed events and their style can be modified with the available widget settings and the available attributes for the shortcode.','event-list').'<br />
+				'.sprintf(__('A list of all available shortcode attributes with their descriptions is available in the %1$s tab.','event-list'), '<a href="admin.php?page=el_admin_about&tab=atts">'.__('Shortcode Attributes','event-list').'</a>').'<br />
+				'.__('The available  widget options are described in their tooltip text.','event-list').'<br />
+				'.sprintf(__('If you enable one of the links options (%1$s or %2$s) in the widget you have to insert an URL to the linked event-list page.','event-list'), '"'.__('Add links to the single events','event-list').'"', '"'.__('Add a link to the Event List page','event-list').'"')
+				.__('This is required because the widget does not know in which page or post the shortcode was included.','event-list').'<br />
+				'.__('Additionally you have to insert the correct Shortcode id on the linked page. This id describes which shortcode should be used on the given page or post if you have more than one.','event-list')
+				.sprintf(__('The default value %1$s is normally o.k. (for pages with 1 shortcode only), but if required you can check the id by looking into the URL of an event link on your linked page or post.','event-list'), '[1]')
+				.sprintf(__('The id is available at the end of the URL parameters (e.g. %1$s).','event-list'), '<i>https://www.your-homepage.com/?page_id=99&amp;event_id<strong>1</strong>=11</i>').'
+			</p>
+			<p>'.sprintf(__('Be sure to also check the %1$s to get the plugin behaving just the way you want.','event-list'), '<a href="admin.php?page=el_admin_settings">'.__('Settings page','event-list').'</a>').'</p>';
+	}
+
+	private function show_author() {
+		echo '
+			<br />
+			<h3>'.__('About the plugin author','event-list').'</h3>
+			<div class="help-content">
+				<p>'.sprintf(__('This plugin is developed by %1$s, you can find more information about the plugin on the %2$s.','event-list'), 'mibuthu', '<a href="http://wordpress.org/plugins/event-list" target="_blank" rel="noopener">'.__('wordpress plugin site','event-list').'</a>').'</p>
+				<p>'.sprintf(__('If you like the plugin please rate it on the %1$s.','event-list'), '<a href="http://wordpress.org/support/view/plugin-reviews/event-list" target="_blank" rel="noopener">'.__('wordpress plugin review site','event-list').'</a>').'<br />
+				<p>'.__('If you want to support the plugin I would be happy to get a small donation','event-list').':<br />
+				<a class="donate" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=W54LNZMWF9KW2" target="_blank" rel="noopener"><img src="'.EL_URL.'admin/images/paypal_btn_donate.gif" alt="PayPal Donation" title="Donate with PayPal" border="0"></a>
+				<a class="donate" href="https://flattr.com/submit/auto?user_id=mibuthu&url=https%3A%2F%2Fwordpress.org%2Fplugins%2Fevent-list" target="_blank" rel="noopener"><img src="'.EL_URL.'admin/images/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0"></a></p>
+			</div>';
+	}
+
+	private function show_atts() {
+		echo '
+			<h3 class="el-headline">'.__('Shortcode Attributes', 'event-list').'</h3>
+			<div>
+				'.__('You have the possibility to modify the output if you add some of the following attributes to the shortcode.','event-list').'<br />
+				'.sprintf(__('You can combine and add as much attributes as you want. E.g. the shortcode including the attributes %1$s and %2$s would looks like this:','event-list'), '"num_events"', '"show_filterbar"').'
+				<p><code>[event-list num_events=10 show_filterbar=false]</code></p>
+				<p>'.__('Below you can find a list of all supported attributes with their descriptions and available options:','event-list').'</p>';
+		echo $this->show_atts_table();
+		echo '
+			</div>';
+	}
+
+	private function show_atts_table() {
+		require_once(EL_PATH.'includes/sc_event-list.php');
+		$shortcode = &SC_Event_List::get_instance();
+		$shortcode->load_sc_eventlist_helptexts();
+		$atts = $shortcode->get_atts();
+		$out = '
+			<table class="el-atts-table">
+				<tr>
+					<th class="el-atts-table-name">'.__('Attribute name','event-list').'</th>
+					<th class="el-atts-table-options">'.__('Value options','event-list').'</th>
+					<th class="el-atts-table-default">'.__('Default value','event-list').'</th>
+					<th class="el-atts-table-desc">'.__('Description','event-list').'</th>
+				</tr>';
+		foreach($atts as $aname => $a) {
+			$out .= '
+				<tr>
+					<td>'.$aname.'</td>
+					<td>'.$a['val'].'</td>
+					<td>'.$a['std_val'].'</td>
+					<td>'.$a['desc'].'</td>
+				</tr>';
+		}
+		$out .= '
+			</table>';
+		return $out;
+	}
+
+	private function show_filter_syntax() {
+		echo '
+			<h3 class="el-headline">'.__('Filter Syntax','event-list').'</h3>
+			<p>'.__('For date and cat filters you can specify complex filters with the following syntax:','event-list').'</p>
+			<p>'.sprintf(__('You can use %1$s and %2$s connections to define complex filters. Additionally you can set brackets %3$s for nested queries.','event-list'), __('AND','event-list').' ( "<strong>&amp;</strong>" )', __('OR','event-list').' ( "<strong>&verbar;</strong>" '.__('or','event-list').' "<strong>&comma;</strong>" )', '( "<strong>(</strong>" '.__('and','event-list').' "<strong>)</strong>" )').'</p>
+			'.__('Examples for cat filters:','event-list').'
+			<p><code>tennis</code>&hellip; '.sprintf(__('Show all events with category %1$s.','event-list'), '"tennis"').'<br />
+			<code>tennis&comma;hockey</code>&hellip; '.sprintf(__('Show all events with category %1$s or %2$s.','event-list'), '"tennis"', '"hockey"').'<br />
+			<code>tennis&verbar;(hockey&amp;winter)</code>&hellip; '.sprintf(__('Show all events with category %1$s and all events where category %2$s as well as %3$s is selected.','event-list'), '"tennis"', '"hockey"', '"winter"').'</p>';
+	}
+
+	private function show_date_syntax() {
+		echo '
+			<h3 class="el-headline">'.__('Available Date Formats','event-list').'</h3>
+			<p>'.__('For date filters you can use the following date formats:','event-list').'</p>
+			<ul class="el-formats">
+			'.$this->show_formats($this->daterange->date_formats).'
+			</ul>';
+	}
+
+	private function show_daterange_syntax() {
+		echo '
+			<h3 class="el-headline">'.__('Available Date Range Formats','event-list').'</h3>
+			<p>'.__('For date filters you can use the following daterange formats:','event-list').'</p>
+			<ul class="el-formats">
+			'.$this->show_formats($this->daterange->daterange_formats).'
+			</ul>';
+	}
+
+	private function show_formats(&$formats_array) {
+		$out = '';
+		foreach($formats_array as $format) {
+			$out .= '
+				<li><div class="el-format-entry"><div class="el-format-name">'.$format['name'].':</div><div class="el-format-desc">';
+			if(isset($format['value'])) {
+				$out .= __('Value','event-list').': <em>'.$format['value'].'</em><br />';
+			}
+			$out .= $format['desc'].'<br />';
+			if(isset($format['examp'])) {
+				$out .= __('Example','event-list').': <em>'.$format['examp'].'</em>';
+			}
+			$out .= '</div></div></li>';
+		}
+		return $out;
+	}
+}
+?>
diff --git a/wp-content/plugins/event-list/admin/includes/admin-categories.php b/wp-content/plugins/event-list/admin/includes/admin-categories.php
new file mode 100644
index 0000000000000000000000000000000000000000..51b8b1e35941941c1d3b912fcdb391b0743febcb
--- /dev/null
+++ b/wp-content/plugins/event-list/admin/includes/admin-categories.php
@@ -0,0 +1,250 @@
+<?php
+if(!defined('ABSPATH')) {
+	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');
+
+// 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;
+
+	public static function &get_instance() {
+		// Create class instance if required
+		if(!isset(self::$instance)) {
+			self::$instance = new EL_Admin_Categories();
+		}
+		// 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.'));
+		}
+		$out = '';
+
+		// get action
+		$action = '';
+		if(isset($_GET['action'])) {
+			$action = $_GET['action'];
+		}
+		$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 && isset($_GET['id'])) {
+			$out .=$this->show_edit_category_form(__('Edit Category','event-list'), __('Update Category','event-list'), $this->categories->get_category_data($_GET['id']));
+		}
+		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;
+	}
+
+	public function embed_categories_scripts() {
+		wp_enqueue_script('jquery');
+		wp_enqueue_script('eventlist_admin_categories_js', EL_URL.'admin/js/admin_categories.js');
+	}
+
+	private function check_actions_and_show_messages($action) {
+		$is_disabled = '1' == $this->options->get('el_sync_cats');
+		$out = '';
+		if('delete' === $action && isset($_GET['slug'])) {
+			if(!$is_disabled) {
+				// delete categories
+				$slug_array = explode(', ', $_GET['slug']);
+				$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'), $_GET['slug']);
+					if($num_affected_events > 0) {
+						$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'), $_GET['slug']).'.</strong></p></div>';
+				}
+			}
+		}
+		else if('setcatsync' === $action) {
+			$el_sync_cats = isset($_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>';
+			}
+		}
+		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 if('editcat' === $action && !empty($_POST)) {
+			if(!$is_disabled) {
+				if(!isset($_POST['id'])) {
+					// 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'), $_POST['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'), $_POST['name']).'.</strong></p></div>';
+					}
+				}
+				else {
+					// edit category
+					if($this->categories->edit_category($_POST, $_POST['id'])) {
+						$out .= '<div id="message" class="updated below-h2"><p><strong>'.sprintf(__('Category "%s" was modified','event-list'), $_POST['id']).'.</strong></p></div>';
+					}
+					else {
+						$out .= '<div id="message" class="error below-h2"><p><strong>'.sprintf(__('Error: Category "%s" could not be modified','event-list'), $_POST['id']).'.</strong></p></div>';
+					}
+				}
+			}
+		}
+		// 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;
+	}
+
+	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'] = '';
+		}
+		$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&amp;action=editcat">';
+		if(!$is_new_event) {
+			$out .= '
+				<input type="hidden" name="id" 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'], '&nbsp;', 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() {
+		$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="'.$_REQUEST['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;
+	}
+
+	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&amp;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&amp;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;
+	}
+}
+?>
diff --git a/wp-content/plugins/event-list/admin/includes/admin-functions.php b/wp-content/plugins/event-list/admin/includes/admin-functions.php
new file mode 100644
index 0000000000000000000000000000000000000000..01ebe9ee86c40effaf2e91c1b75e936f1725e99c
--- /dev/null
+++ b/wp-content/plugins/event-list/admin/includes/admin-functions.php
@@ -0,0 +1,156 @@
+<?php
+if(!defined('WPINC')) {
+	exit;
+}
+
+require_once(EL_PATH.'includes/options.php');
+
+// This class handles general functions which can be used on different admin pages
+class EL_Admin_Functions {
+	private static $instance;
+	private $options;
+
+	public static function &get_instance() {
+		// Create class instance if required
+		if(!isset(self::$instance)) {
+			self::$instance = new EL_Admin_Functions();
+		}
+		// Return class instance
+		return self::$instance;
+	}
+
+	private function __construct() {
+		$this->options = &EL_Options::get_instance();
+		$this->options->load_options_helptexts();
+	}
+
+	public function show_option_form($section) {
+		$out = '
+		<form method="post" action="options.php">
+		';
+		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 .='
+		</form>';
+		return $out;
+	}
+
+	public function show_option_table($section) {
+		$out = '
+			<div class="el-settings">
+			<table class="form-table">';
+		foreach($this->options->options as $oname => $o) {
+			if($o['section'] == $section) {
+				$out .= '
+					<tr>
+						<th>';
+				if($o['label'] != '') {
+					$out .= '<label for="'.$oname.'">'.$o['label'].':</label>';
+				}
+				$out .= '</th>
+					<td>';
+				switch($o['type']) {
+					case 'checkbox':
+						$out .= $this->show_checkbox($oname, $this->options->get($oname), $o['caption']);
+						break;
+					case 'dropdown':
+						$out .= $this->show_dropdown($oname, $this->options->get($oname), $o['caption']);
+						break;
+					case 'radio':
+						$out .= $this->show_radio($oname, $this->options->get($oname), $o['caption']);
+						break;
+					case 'text':
+						$out .= $this->show_text($oname, $this->options->get($oname));
+						break;
+					case 'textarea':
+						$out .= $this->show_textarea($oname, $this->options->get($oname));
+						break;
+					case 'file-upload':
+						$out .= $this->show_file_upload($oname, $o['maxsize']);
+				}
+				$out .= '
+					</td>
+					<td class="description">'.$o['desc'].'</td>
+				</tr>';
+			}
+		}
+		$out .= '
+		</table>
+		</div>';
+		return $out;
+	}
+
+	public function show_checkbox($name, $value, $caption, $disabled=false) {
+		$out = '
+							<label for="'.$name.'">
+								<input name="'.$name.'" type="checkbox" id="'.$name.'" value="1"';
+		if($value == 1) {
+			$out .= ' checked="checked"';
+		}
+		$out .= $this->get_disabled_text($disabled).' />
+								'.$caption.'
+							</label>';
+		return $out;
+	}
+
+	public function show_dropdown($name, $selected, $value_array, $class_array=null, $disabled=false) {
+		$out = '
+							<select id="'.$name.'" name="'.$name.'"'.$this->get_disabled_text($disabled).'>';
+		foreach($value_array as $key => $value) {
+			$class_text = isset($class_array[$key]) ? 'class="'.$class_array[$key].'" ' : '';
+			$selected_text = $selected===$key ? 'selected ' : '';
+			$out .= '
+								<option '.$class_text.$selected_text.'value="'.$key.'">'.$value.'</option>';
+		}
+		$out .= '
+							</select>';
+		return $out;
+	}
+
+	public function show_radio($name, $selected, $value_array, $disabled=false) {
+		$out = '
+							<fieldset>';
+		foreach($value_array as $key => $value) {
+			$checked = ($selected === $key) ? 'checked="checked" ' : '';
+			$out .= '
+								<label title="'.$value.'">
+									<input type="radio" '.$checked.'value="'.$key.'" name="'.$name.'">
+									<span>'.$value.'</span>
+								</label>
+								<br />';
+		}
+		$out .= '
+							</fieldset>';
+		return $out;
+	}
+
+	public function show_text($name, $value, $disabled=false) {
+		$out = '
+							<input name="'.$name.'" type="text" id="'.$name.'" value="'.$value.'"'.$this->get_disabled_text($disabled).' />';
+		return $out;
+	}
+
+	public function show_textarea($name, $value, $disabled=false) {
+		$out = '
+							<textarea name="'.$name.'" id="'.$name.'" rows="5" class="large-text code"'.$this->get_disabled_text($disabled).'>'.$value.'</textarea>';
+		return $out;
+	}
+
+	public function show_file_upload($name, $max_size, $disabled=false) {
+		$out = '
+							<input name="'.$name.'" type="file" maxlength="'.$max_size.'">';
+		return $out;
+	}
+
+	public function get_disabled_text($disabled=false) {
+		return $disabled ? ' disabled="disabled"' : '';
+	}
+}
+?>
diff --git a/wp-content/plugins/event-list/admin/includes/admin-import.php b/wp-content/plugins/event-list/admin/includes/admin-import.php
new file mode 100644
index 0000000000000000000000000000000000000000..8362fae84beb2be81b162b9cc5ad5fe88d9dc405
--- /dev/null
+++ b/wp-content/plugins/event-list/admin/includes/admin-import.php
@@ -0,0 +1,341 @@
+<?php
+if(!defined('WPINC')) {
+	exit;
+}
+
+require_once(EL_PATH.'includes/options.php');
+require_once(EL_PATH.'admin/includes/admin-functions.php');
+require_once(EL_PATH.'includes/db.php');
+require_once(EL_PATH.'includes/categories.php');
+
+// This class handles all data for the admin new event page
+class EL_Admin_Import {
+	private static $instance;
+	private $options;
+	private $functions;
+	private $db;
+	private $categories;
+	private $import_data;
+	private $example_file_path;
+
+	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->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';
+	}
+
+	public function show_import() {
+		if(!current_user_can('edit_posts')) {
+			wp_die(__('You do not have sufficient permissions to access this page.'));
+		}
+		echo '
+			<div class="wrap">
+				<div id="icon-edit-pages" class="icon32"><br /></div>
+				<h2>'.__('Import Events','event-list').'</h2>';
+		// Review import
+		if(isset($_FILES['el_import_file'])) {
+			$this->show_import_review();
+		}
+		// Finish import (add events)
+		elseif(isset($_POST['reviewed_events'])) {
+			$import_error = $this->import_events();
+			$this->show_import_finished($import_error);
+		}
+		// Import form
+		else {
+			$this->show_import_form();
+		}
+		echo '
+			</div>';
+	}
+
+	private function show_import_form() {
+		echo '
+				<h3>'.__('Step','event-list').' 1: '.__('Set import file and options','event-list').'</h3>
+				<form action="" id="el_import_upload" method="post" enctype="multipart/form-data">
+					'.$this->functions->show_option_table('import').'<br />
+					<input type="submit" name="button-upload-submit" id="button-upload-submit" class="button" value="'.sprintf(__('Proceed with Step %1$s','event-list'), '2').' &gt;&gt;" />
+				</form>
+				<br /><br />
+				<h3>'.__('Example file','event-list').'</h4>
+				<p>'.sprintf(__('You can download an example file %1$shere%2$s (CSV delimiter is a comma!)','event-list'), '<a href="'.$this->example_file_path.'">', '</a>').'</p>
+				<p><em>'.__('Note','event-list').':</em> '.__('Do not change the column header and separator line (first two lines), otherwise the import will fail!','event-list').'</p>';
+	}
+
+	private function show_import_review() {
+		$file = $_FILES['el_import_file']['tmp_name'];
+		// check for file existence (upload failed?)
+		if(!is_file($file)) {
+			echo '<h3>'.__('Sorry, there has been an error.','event-list').'</h3>';
+			echo __('The file does not exist, please try again.','event-list').'</p>';
+			return;
+		}
+
+		// check for file extension (csv) first
+		$file_parts = pathinfo($_FILES['el_import_file']['name']);
+		if($file_parts['extension'] !== "csv") {
+			echo '<h3>'.__('Sorry, there has been an error.','event-list').'</h3>';
+			echo __('The file is not a CSV file.','event-list').'</p>';
+			return;
+		}
+
+		// safe settings
+		$this->safe_import_settings();
+
+		// parse file
+		$this->import_data = $this->parseImportFile($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>';
+			return;
+		}
+
+		$serialized = serialize($this->import_data);
+
+		// Check categories
+		$not_available_cats = array();
+		foreach($this->import_data as $event) {
+			foreach($event['categories'] as $cat) {
+				if(!$this->categories->is_set($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').'
+					<ul class="el-categories">';
+			foreach($not_available_cats as $cat) {
+				echo '<li><code>'.$cat.'</code></li>';
+			}
+			echo '</ul>
+					'.__('If you want to keep these categories, please create these Categories first and do the import afterwards.','event-list').'</div>';
+		}
+		echo '
+			<form method="POST" action="?page=el_admin_main&action=import">';
+		wp_nonce_field('autosavenonce', 'autosavenonce', false, false);
+		wp_nonce_field('closedpostboxesnonce', 'closedpostboxesnonce', false, false);
+		wp_nonce_field('meta-box-order-nonce', 'meta-box-order-nonce', false, false);
+		echo '
+			<div id="poststuff">
+				<div id="post-body" class="metabox-holder columns-2">
+					<div id="post-body-content">';
+		foreach($this->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);
+		echo '
+						</div>
+					</div>
+				</div>
+			</div>
+			<input type="hidden" name="reviewed_events" id="reviewed_events" value="'.esc_html($serialized).'" />
+			</form>';
+	}
+
+	private function show_import_finished($with_error) {
+		if(!$with_error) {
+			echo '
+				<h3>'.__('Import with errors!','event-list').'</h3>
+				'.sprintf(__('An error occurred during import! Please send your import file to %1$sthe administrator%2$s for analysis.','event-list'), '<a href="mailto:'.get_option('admin_email').'">', '</a>');
+		}
+		else {
+			echo '
+				<h3>'.__('Import successful!','event-list').'</h3>
+				<a href="?page=el_admin_main">'.__('Go back to All Events','event-list').'</a>';
+		}
+	}
+
+	private function show_event($event) {
+		echo '
+				<p>
+				<span class="el-event-header">'.__('Title','event-list').':</span> <span class="el-event-data">'.$event['title'].'</span><br />
+				<span class="el-event-header">'.__('Start Date','event-list').':</span> <span class="el-event-data">'.$event['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">'.__('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">'.__('Category slugs','event-list').':</span> <span class="el-event-data">'.implode(', ', $event['categories']).'</span>
+				</p>';
+	}
+
+	/**
+	 * @return WP_Error
+	 */
+	private function parseImportFile($file) {
+		$delimiter = ',';
+		$header = array('title', 'start date', 'end date', 'time', 'location', 'details', 'category_slugs');
+		$separator = array('sep=,');
+
+		// list of events to import
+		$events = array();
+
+		$file_handle = fopen($file, 'r');
+		$lineNum = 0;
+		$emptyLines = 0;
+		while(!feof($file_handle)) {
+			$line = fgetcsv($file_handle, 0);
+
+			// skip empty lines
+			if(empty($line)) {
+				$emptyLines += 1;
+				continue;
+			}
+			// check header
+			if($lineNum === 0) {
+				// check optional separator line
+				if($line === $separator) {
+					$emptyLines += 1;
+					continue;
+				}
+				// check header line
+				elseif($line === $header || $line === array_slice($header,0,-1)) {
+					$lineNum += 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));
+				}
+			}
+			// handle lines with events
+			$events[] = array(
+				'title'      => $line[0],
+				'start_date' => $line[1],
+				'end_date'   => !empty($line[2]) ? $line[2] : $line[1],
+				'time'       => $line[3],
+				'location'   => $line[4],
+				'details'    => $line[5],
+				'categories' => isset($line[6]) ? explode('|', $line[6]) : array(),
+			);
+			$lineNum += 1;
+		}
+		//close file
+		fclose($file_handle);
+		return $events;
+	}
+
+	private function safe_import_settings() {
+		foreach($this->options->options as $oname => $o) {
+			if('import' == $o['section'] && isset($_POST[$oname])) {
+				$this->options->set($oname, $_POST[$oname]);
+			}
+		}
+	}
+
+	public function render_publish_metabox() {
+		echo '
+			<div class="submitbox">
+				<div id="delete-action"><a href="?page=el_admin_main" class="submitdelete deletion">'.__('Cancel').'</a></div>
+				<div id="publishing-action"><input type="submit" class="button button-primary button-large" name="import" value="'.__('Import','event-list').'" id="import"></div>
+				<div class="clear"></div>
+			</div>';
+	}
+
+	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>';
+	}
+
+	private function import_events() {
+		$reviewed_events = unserialize(stripslashes($_POST['reviewed_events']));
+		// Category handling
+		$additional_cats = isset($_POST['categories']) ? $_POST['categories'] : array();
+		foreach($reviewed_events as &$event) {
+			// Remove not available categories of import file
+			$event['categories'] = array_filter($event['categories'], function($e) {
+				return $this->categories->is_set($e);
+			});
+			// Add the additionally specified categories to the event
+			if(!empty($additional_cats)) {
+				$event['categories'] = array_unique(array_merge($event['categories'], $additional_cats));
+			}
+		}
+		$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) {
+				$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);
+			}
+			else {
+				return false;
+			}
+		}
+		// TODO: Improve error messages
+		return $ret;
+	}
+
+	public function embed_import_scripts() {
+		wp_enqueue_style('eventlist_admin_import', EL_URL.'admin/css/admin_import.css');
+	}
+}
+?>
diff --git a/wp-content/plugins/event-list/admin/includes/admin-main.php b/wp-content/plugins/event-list/admin/includes/admin-main.php
new file mode 100644
index 0000000000000000000000000000000000000000..562fa6dd77c11553813c3aa2490e3f4fd134e1c1
--- /dev/null
+++ b/wp-content/plugins/event-list/admin/includes/admin-main.php
@@ -0,0 +1,233 @@
+<?php
+if(!defined('WPINC')) {
+	exit;
+}
+
+require_once(EL_PATH.'includes/db.php');
+require_once(EL_PATH.'admin/includes/event_table.php');
+require_once(EL_PATH.'includes/filterbar.php');
+
+// This class handles all data for the admin main page
+class EL_Admin_Main {
+	private static $instance;
+	private $db;
+	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();
+		}
+		// Return class instance
+		return self::$instance;
+	}
+
+	private function __construct() {
+		$this->db = &EL_Db::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) {
+			switch($this->action) {
+				// real actions (redirect when finished)
+				case 'new':
+					if(!empty($_POST)) {
+						$id = $this->update_event($_POST);
+						$error = !$id;
+						$this->redirect('added', $error, array('title' => urlencode($_POST['title']), 'id' => $id));
+					}
+					break;
+				case 'edited':
+					if(!empty($_POST)) {
+						$error = !$this->update_event($_POST);
+						$this->redirect('modified', $error, array('title' => urlencode($_POST['title']), 'id' => $_POST['id']));
+					}
+					break;
+				case 'delete':
+					if(isset($_GET['id'])) {
+						$error = !$this->db->delete_events(explode(',', $_GET['id']));
+						$this->redirect('deleted', $error, array('id' => $_GET['id']));
+					}
+					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;
+			}
+		}
+		// cleanup query args if the button for bulk action was clicked, but no bulk action was selected
+		if(isset($_REQUEST['action']) && '-1' == $_REQUEST['action'] && isset($_REQUEST['action2']) && '-1' == $_REQUEST['action2']) {
+			$this->redirect();
+		}
+		// cleanup query args if filter button was pressed
+		if(isset($_GET['filter'])) {
+			$this->redirect();
+		}
+	}
+
+	// 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;
+			}
+		}
+
+		// proceed with normal event list page
+		if(!isset($_GET['orderby'])) {
+			// set initial sorting
+			$_GET['orderby'] = 'date';
+			$_GET['order'] = 'asc';
+		}
+		$this->show_page_header($this->action);
+		echo $this->show_event_table();
+		echo '</div>';
+	}
+
+	private function show_page_header($action, $editview=false) {
+		if($editview) {
+			$duplicate_link = add_query_arg(array('id'=>$_GET['id'], 'action'=>'copy'), '?page=el_admin_new');
+			$header = __('Edit Event','event-list').' <a href="'.$duplicate_link.'" class="add-new-h2">'.__('Duplicate','event-list').'</a>';
+		}
+		else {
+			$header = __('Events','event-list');
+		}
+		$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);
+	}
+
+	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 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');
+		}
+	}
+
+	private function show_event_table() {
+		// show filterbar
+		$out = '';
+		// 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="'.$_REQUEST['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;
+	}
+
+	private function show_message($action) {
+		$error = isset($_GET['error']);
+		switch($action) {
+			case 'added':
+				if(!$error)
+					$this->show_update_message('New Event "'.esc_html(stripslashes($_GET['title'])).'" was added.');
+				else
+					$this->show_error_message('Error: New Event "'.esc_html(stripslashes($_GET['title'])).'" could not be added.');
+				break;
+			case 'modified':
+				if(!$error)
+					$this->show_update_message('Event "'.esc_html(stripslashes($_GET['title'])).'" (id: '.$_GET['id'].') was modified.');
+				else
+					$this->show_error_message('Error: Event "'.esc_html(stripslashes($_GET['title'])).'" (id: '.$_GET['id'].') could not be modified.');
+				break;
+			case 'deleted':
+				$num_deleted = count(explode(',', $_GET['id']));
+				$plural = ($num_deleted > 1) ? 's' : '';
+				if(!$error)
+					$this->show_update_message($num_deleted.' Event'.$plural.' deleted (id'.$plural.': '.$_GET['id'].').');
+				else
+					$this->show_error_message('Error while deleting '.$num_deleted.' Event'.$plural.'.');
+				break;
+		}
+	}
+
+	private function show_update_message($text) {
+		echo '
+			<div id="message" class="updated below-h2"><p><strong>'.$text.'</strong></p></div>';
+	}
+
+	private function show_error_message($text) {
+		echo '
+			<div id="message" class="error below-h2"><p><strong>'.$text.'</strong></p></div>';
+	}
+
+	private function update_event() {
+		$eventdata = $_POST;
+		// provide correct sql start- and end-date
+		if(isset($eventdata['sql_start_date']) && '' != $eventdata['sql_start_date']) {
+			$eventdata['start_date'] = $eventdata['sql_start_date'];
+		}
+		if(isset($eventdata['sql_end_date']) && '' != $eventdata['sql_end_date']) {
+			$eventdata['end_date'] = $eventdata['sql_end_date'];
+		}
+		return $this->db->update_event($eventdata, true);
+	}
+
+	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;
+	}
+}
+?>
diff --git a/wp-content/plugins/event-list/admin/includes/admin-new.php b/wp-content/plugins/event-list/admin/includes/admin-new.php
new file mode 100644
index 0000000000000000000000000000000000000000..7af47b00051c20eaf658815449603ca7633b75a5
--- /dev/null
+++ b/wp-content/plugins/event-list/admin/includes/admin-new.php
@@ -0,0 +1,257 @@
+<?php
+if(!defined('ABSPATH')) {
+	exit;
+}
+
+require_once(EL_PATH.'includes/db.php');
+require_once(EL_PATH.'includes/options.php');
+require_once(EL_PATH.'includes/categories.php');
+
+// 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 $is_new;
+	private $is_duplicate;
+
+	public static function &get_instance() {
+		// Create class instance if required
+		if(!isset(self::$instance)) {
+			self::$instance = new EL_Admin_New();
+		}
+		// Return class instance
+		return self::$instance;
+	}
+
+	private function __construct() {
+		$this->db = &EL_Db::get_instance();
+		$this->options = &EL_Options::get_instance();
+		$this->categories = &EL_Categories::get_instance();
+		$this->is_new = !(isset($_GET['action']) && ('edit' === $_GET['action'] || 'added' === $_GET['action'] || 'modified' === $_GET['action']));
+		$this->is_duplicate = $this->is_new && isset($_GET['id']) && is_numeric($_GET['id']);
+	}
+
+	public function show_new() {
+		if(!current_user_can('edit_posts')) {
+			wp_die(__('You do not have sufficient permissions to access this page.'));
+		}
+		$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'), $_GET['id']).')</span>';
+		}
+		$out .= $this->edit_event();
+		$out .= '</div>';
+		echo $out;
+	}
+
+	public function embed_new_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")) {
+			wp_localize_jquery_ui_datepicker();
+		}
+		wp_enqueue_style('eventlist_admin_new', EL_URL.'admin/css/admin_new.css');
+		// add the jquery-ui style "smooth" (see https://jqueryui.com/download/) (required for the xwp datepicker skin)
+		wp_enqueue_style('eventlist_jqueryui', EL_URL.'admin/css/jquery-ui.min.css');
+		// add the xwp datepicker skin (see https://github.com/xwp/wp-jquery-ui-datepicker-skins)
+		wp_enqueue_style('eventlist_datepicker', EL_URL.'admin/css/jquery-ui-datepicker.css');
+	}
+
+	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;
+		}
+		else {
+			// set event data and existing date
+			$event = $this->db->get_event($_GET['id']);
+			$start_date = strtotime($event->start_date);
+			$end_date = strtotime($event->end_date);
+		}
+		// 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" />';
+		}
+		else {
+			$out .= '
+					<input type="hidden" name="action" value="edited" />
+					<input type="hidden" name="id" value="'.$_GET['id'].'" />';
+		}
+		$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('"', '&quot;', 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('"', '&quot;', 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('"', '&quot;', 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;
+	}
+
+	private function get_event_dateformat() {
+		if('' == $this->options->get('el_edit_dateformat')) {
+			return __('Y/m/d');
+		}
+		else {
+			return $this->options->get('el_edit_dateformat');
+		}
+	}
+
+	/**
+	 * Convert a date format to a jQuery UI DatePicker format
+	 *
+	 * @param string $format a date format
+	 * @return string
+	 */
+	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);
+	}
+}
+?>
diff --git a/wp-content/plugins/event-list/admin/includes/admin-settings.php b/wp-content/plugins/event-list/admin/includes/admin-settings.php
new file mode 100644
index 0000000000000000000000000000000000000000..f5a145807deb870f2442e7274534a6d02303957d
--- /dev/null
+++ b/wp-content/plugins/event-list/admin/includes/admin-settings.php
@@ -0,0 +1,85 @@
+<?php
+if(!defined('ABSPATH')) {
+	exit;
+}
+
+require_once(EL_PATH.'includes/options.php');
+require_once(EL_PATH.'admin/includes/admin-functions.php');
+
+// This class handles all data for the admin settings page
+class EL_Admin_Settings {
+	private static $instance;
+	private $options;
+	private $functions;
+
+	public static function &get_instance() {
+		// Create class instance if required
+		if(!isset(self::$instance)) {
+			self::$instance = new self();
+		}
+		// Return class instance
+		return self::$instance;
+	}
+
+	private function __construct() {
+		$this->options = &EL_Options::get_instance();
+		$this->functions = &EL_Admin_Functions::get_instance();
+	}
+
+	public function show_settings () {
+		if(!current_user_can('manage_options')) {
+			wp_die(__('You do not have sufficient permissions to access this page.'));
+		}
+		$out = '';
+		if(!isset($_GET['tab'])) {
+			$_GET['tab'] = 'general';
+		}
+		// check for changed settings
+		if(isset($_GET['settings-updated'])) {
+			// show "settings saved" message
+			$out .= '<div id="message" class="updated">
+				<p><strong>'.__('Settings saved.','event-list').'</strong></p>
+			</div>';
+			// check feed rewrite status and update it if required
+			if('feed' == $_GET['tab']) {
+				require_once(EL_PATH.'includes/feed.php');
+				EL_Feed::get_instance()->update_feed_rewrite_status();
+			}
+		}
+
+		// normal output
+		$out.= '
+				<div class="wrap">
+				<div id="icon-edit-pages" class="icon32"><br /></div><h2>'.__('Event List Settings','event-list').'</h2>';
+		$out .= $this->show_tabs($_GET['tab']);
+		$out .= '<div id="posttype-page" class="posttypediv">';
+		$out .= $this->functions->show_option_form($_GET['tab']);
+		$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'));
+		$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_settings&amp;tab='.$tab.'">'.$name.'</a>';
+		}
+		$out .= '</h3>';
+		return $out;
+	}
+
+	public function embed_settings_scripts() {
+		wp_enqueue_style('eventlist_admin_settings', EL_URL.'admin/css/admin_settings.css');
+	}
+}
+?>
diff --git a/wp-content/plugins/event-list/admin/includes/category_table.php b/wp-content/plugins/event-list/admin/includes/category_table.php
new file mode 100644
index 0000000000000000000000000000000000000000..1c37568e8e5bf465ba4ee32301aafd93418c2ac5
--- /dev/null
+++ b/wp-content/plugins/event-list/admin/includes/category_table.php
@@ -0,0 +1,204 @@
+<?php
+if( !defined( 'ABSPATH' ) ) {
+	exit;
+}
+
+// load the base class (WP_List_Table class isn't automatically available)
+if(!class_exists('WP_List_Table')){
+	require_once( ABSPATH.'wp-admin/includes/class-wp-list-table.php' );
+}
+require_once( EL_PATH.'includes/options.php' );
+require_once( EL_PATH.'includes/db.php' );
+require_once( EL_PATH.'includes/categories.php' );
+
+class EL_Category_Table extends WP_List_Table {
+	private $options;
+	private $db;
+	private $categories;
+	private $is_disabled;
+
+	public function __construct($is_disabled) {
+		$this->options = &EL_Options::get_instance();
+		$this->db = &EL_Db::get_instance();
+		$this->categories = &EL_Categories::get_instance();
+		$this->is_disabled = $is_disabled;
+		//Set parent defaults
+		parent::__construct( array(
+			'singular'  => __('event','event-list'),     //singular name of the listed records
+			'plural'    => __('events','event-list'),    //plural name of the listed records
+			'ajax'      => false        //does this table support ajax?
+		) );
+	}
+
+	/** ************************************************************************
+	* This method is called when the parent class can't find a method
+	* specifically build for a given column.
+	*
+	* @param array $item A singular item (one full row's worth of data)
+	* @param array $column_name The name/slug of the column to be processed
+	* @return string Text or HTML to be placed inside the column <td>
+	***************************************************************************/
+	protected function column_default($item, $column_name) {
+		switch($column_name){
+			case 'desc' :
+				return '<div>'.$item[$column_name].'</div>';
+			case 'slug' :
+				return $item[$column_name];
+			case 'num_events' :
+				return $this->db->count_events( $item['slug'] );
+			default :
+				echo $column_name;
+				return $item[$column_name];
+		}
+	}
+
+	/** ************************************************************************
+	* This is a custom column method and is responsible for what is
+	* rendered in any column with a name/slug of 'name'.
+	*
+	* @see WP_List_Table::::single_row_columns()
+	* @param array $item A singular item (one full row's worth of data)
+	* @return string Text to be placed inside the column <td> (movie title only)
+	***************************************************************************/
+	protected function column_name($item) {
+		// create prefix with indenting according cat level
+		$prefix = str_pad('', 7*$item['level'], '&#8212;', STR_PAD_LEFT).' ';
+		$out = '<b>'.$prefix.$item['name'].'</b>';
+		if(!$this->is_disabled) {
+			// prepare Actions
+			$actions = array(
+				'edit'      => '<a href="?page='.$_REQUEST['page'].'&amp;id='.$item['slug'].'&amp;action=edit">'.__('Edit','event-list').'</a>',
+				'delete'    => '<a href="#" onClick="eventlist_deleteCategory(\''.$item['slug'].'\');return false;">'.__('Delete','event-list').'</a>'
+			);
+			//Return the title contents
+			$out .= $this->row_actions($actions);
+		}
+		return $out;
+	}
+
+	/** ************************************************************************
+	* Required if displaying checkboxes or using bulk actions! The 'cb' column
+	* is given special treatment when columns are processed.
+	*
+	* @see WP_List_Table::::single_row_columns()
+	* @param array $item A singular item (one full row's worth of data)
+	* @return string Text to be placed inside the column <td> (movie title only)
+	***************************************************************************/
+	protected function column_cb($item) {
+		if(!$this->is_disabled) {
+			return '<input type="checkbox" name="slug[]" value="'.$item['slug'].'" />';
+		}
+		else {
+			return '';
+		}
+	}
+
+	/** ************************************************************************
+	* 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 get_columns() {
+		return array(
+			'cb'         => $this->is_disabled ? '' : '<input type="checkbox" />', //Render a checkbox instead of text
+			'name'       => __('Name','event-list'),
+			'desc'       => __('Description','event-list'),
+			'slug'       => __('Slug','event-list'),
+			'num_events' => __('Events','event-list')
+		);
+	}
+
+	/** ************************************************************************
+	* If you want one or more columns to be sortable (ASC/DESC toggle), you
+	* will need to register it here. This should return an array where the key
+	* is the column that needs to be sortable, and the value is db column to
+	* sort by.
+	*
+	* @return array An associative array containing all the columns that should be sortable: 'slugs'=>array('data_values',bool)
+	***************************************************************************/
+	public function get_sortable_columns() {
+		$sortable_columns = array(
+			'name'       => array( 'name', true ),  //true means its already sorted
+			'desc'       => array( 'desc', false ),
+			'slug'       => array( 'slug', false ),
+			'num_events' => array( 'num_events', false )
+		);
+		// TODO: sorting of tables
+		//return $sortable_columns;
+		return array();
+	}
+
+	/** ************************************************************************
+	* Optional. If you need to include bulk actions in your list table, this is
+	* the place to define them. Bulk actions are an associative array in the format
+	* 'slug'=>'Visible Title'
+	* If this method returns an empty value, no bulk action will be rendered.
+	*
+	* @return array An associative array containing all the bulk actions: 'slugs'=>'Visible Titles'
+	****************************************************************************/
+	public function get_bulk_actions() {
+		if(!$this->is_disabled) {
+			$actions = array(
+				'delete_bulk' => __('Delete','event-list')
+			);
+			return $actions;
+		}
+		else {
+			return array();
+		}
+	}
+
+	/** ************************************************************************
+	* Function to handle the process of the bulk actions.
+	*
+	* @see $this->prepare_items()
+	***************************************************************************/
+	private function process_bulk_action() {
+		if(!$this->is_disabled) {
+			//Detect when a bulk action is being triggered...
+			if( 'delete_bulk' === $this->current_action() ) {
+				// Show confirmation window before deleting
+				echo '<script language="JavaScript">eventlist_deleteCategory ("'.implode( ', ', $_GET['slug'] ).'");</script>';
+			}
+		}
+	}
+
+	/** ************************************************************************
+	* In this function the data for the display is prepared.
+	*
+	* @param string $date_range Date range for displaying the events
+	* @uses $this->_column_headers
+	* @uses $this->items
+	* @uses $this->get_columns()
+	* @uses $this->get_sortable_columns()
+	* @uses $this->get_pagenum()
+	* @uses $this->set_pagination_args()
+	***************************************************************************/
+	public function prepare_items() {
+		$per_page = 15;
+		// define column headers
+		$columns = $this->get_columns();
+		$hidden = array();
+		$sortable = $this->get_sortable_columns();
+		$this->_column_headers = array( $columns, $hidden, $sortable );
+		// handle the bulk actions
+		$this->process_bulk_action();
+		// get the required event data
+		$data = $this->categories->get_cat_array();
+		// setup pagination
+		$current_page = $this->get_pagenum();
+		$total_items = count( $data );
+		$data = array_slice( $data, ( ( $current_page-1 )*$per_page ), $per_page );
+		$this->set_pagination_args( array(
+			'total_items' => $total_items,
+			'per_page'    => $per_page,
+			'total_pages' => ceil($total_items/$per_page)
+		) );
+		// setup items which are used by the rest of the class
+		$this->items = $data;
+	}
+}
+
diff --git a/wp-content/plugins/event-list/admin/includes/event_table.php b/wp-content/plugins/event-list/admin/includes/event_table.php
new file mode 100644
index 0000000000000000000000000000000000000000..a2ee5756bbdfe23bcefe254d224af23facdecf78
--- /dev/null
+++ b/wp-content/plugins/event-list/admin/includes/event_table.php
@@ -0,0 +1,315 @@
+<?php
+if(!defined('ABSPATH')) {
+	exit;
+}
+
+// load the base class (WP_List_Table class isn't automatically available)
+if(!class_exists('WP_List_Table')){
+	require_once(ABSPATH.'wp-admin/includes/class-wp-list-table.php');
+}
+require_once(EL_PATH.'includes/db.php');
+require_once(EL_PATH.'includes/categories.php');
+require_once(EL_PATH.'includes/filterbar.php');
+
+class EL_Event_Table extends WP_List_Table {
+	private $db;
+	private $categories;
+	private $filterbar;
+	private $args;
+
+	public function __construct() {
+		$this->db = &EL_Db::get_instance();
+		$this->categories = &EL_Categories::get_instance();
+		$this->filterbar = &EL_Filterbar::get_instance();
+		$this->set_args();
+
+		global $status, $page;
+		//Set parent defaults
+		parent::__construct(array(
+			'singular'  => __('event','event-list'),   //singular name of the listed records
+			'plural'    => __('events','event-list'),  //plural name of the listed records
+			'ajax'      => false                       //does this table support ajax?
+		));
+	}
+
+	/** ************************************************************************
+	* This method is called when the parent class can't find a method
+	* specifically build for a given column.
+	*
+	* @param array $item A singular item (one full row's worth of data)
+	* @param array $column_name The name/slug of the column to be processed
+	* @return string Text or HTML to be placed inside the column <td>
+	***************************************************************************/
+	protected function column_default($item, $column_name) {
+		switch($column_name) {
+			case 'date' :
+				return $this->format_event_date($item->start_date, $item->end_date, $item->time);
+			case 'details' :
+				return $this->db->truncate(wpautop('<div>'.$item->details.'</div>'), 100);
+			case 'pub_user' :
+				return get_userdata($item->pub_user)->user_login;
+			case 'pub_date' :
+				return $this->format_pub_date($item->pub_date);
+			case 'categories' :
+				return esc_html($this->categories->convert_db_string($item->$column_name));
+			default :
+				return esc_html($item->$column_name);
+		}
+	}
+
+	/** ************************************************************************
+	* This is a custom column method and is responsible for what is
+	* rendered in any column with a name/slug of 'title'.
+	*
+	* @see WP_List_Table::::single_row_columns()
+	* @param array $item A singular item (one full row's worth of data)
+	* @return string Text to be placed inside the column <td> (movie title only)
+	***************************************************************************/
+	protected function column_title($item) {
+		//Prepare Columns
+		$actions = array(
+			'edit'      => '<a href="?page='.$_REQUEST['page'].'&amp;id='.$item->id.'&amp;action=edit">'.__('Edit','event-list').'</a>',
+			'duplicate' => '<a href="?page=el_admin_new&amp;id='.$item->id.'&amp;action=copy">'.__('Duplicate','event-list').'</a>',
+			'delete'    => '<a href="#" onClick=\''.$this->call_js_deleteEvent($item->id).'\'>'.__('Delete','event-list').'</a>');
+
+		//Return the title contents
+		return sprintf('<b>%1$s</b> <span style="color:silver">(id:%2$s)</span>%3$s',
+			esc_html($item->title),
+			$item->id,
+			$this->row_actions($actions));
+	}
+
+	/** ************************************************************************
+	* Required if displaying checkboxes or using bulk actions! The 'cb' column
+	* is given special treatment when columns are processed.
+	*
+	* @see WP_List_Table::::single_row_columns()
+	* @param array $item A singular item (one full row's worth of data)
+	* @return string Text to be placed inside the column <td> (movie title only)
+	***************************************************************************/
+	protected function column_cb($item) {
+		//Let's simply repurpose the table's singular label ("event")
+		//The value of the checkbox should be the record's id
+		return '<input type="checkbox" name="id[]" value="'.$item->id.'" />';
+	}
+
+	/** ************************************************************************
+	* 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 get_columns() {
+		return array(
+			'cb'          => '<input type="checkbox" />', //Render a checkbox instead of text
+			'date'        => __('Date','event-list'),
+			'title'       => __('Title','event-list'),
+			'location'    => __('Location','event-list'),
+			'details'     => __('Details','event-list'),
+			'categories'  => __('Categories','event-list'),
+			'pub_user'    => __('Author','event-list'),
+			'pub_date'    => __('Published','event-list')
+		);
+	}
+
+	/** ************************************************************************
+	* If you want one or more columns to be sortable (ASC/DESC toggle), you
+	* will need to register it here. This should return an array where the key
+	* is the column that needs to be sortable, and the value is db column to
+	* sort by.
+	*
+	* @return array An associative array containing all the columns that should be sortable: 'slugs'=>array('data_values',bool)
+	***************************************************************************/
+	public function get_sortable_columns() {
+		$sortable_columns = array(
+			'date'     => array('date', true),  //true means its already sorted
+			'title'    => array('title', false),
+			'location' => array('location', false),
+			'pub_user' => array('pub_user', false),
+			'pub_date' => array('pub_date', false)
+		);
+		return $sortable_columns;
+	}
+
+	/** ************************************************************************
+	* Optional. If you need to include bulk actions in your list table, this is
+	* the place to define them. Bulk actions are an associative array in the format
+	* 'slug'=>'Visible Title'
+	* If this method returns an empty value, no bulk action will be rendered.
+	*
+	* @return array An associative array containing all the bulk actions: 'slugs'=>'Visible Titles'
+	****************************************************************************/
+	public function get_bulk_actions() {
+		$actions = array(
+			'delete_bulk' => __('Delete','event-list')
+		);
+		return $actions;
+	}
+
+	/** ************************************************************************
+	* Function to handle the process of the bulk actions.
+	*
+	* @see $this->prepare_items()
+	***************************************************************************/
+	private function process_bulk_action() {
+		//Detect when a bulk action is being triggered...
+		if('delete_bulk'===$this->current_action()) {
+			// Show confirmation window before deleting
+			$del_string = isset($_GET['id']) ? implode(', ', $_GET['id']) : '';
+			echo '<script language="JavaScript">'.$this->call_js_deleteEvent($del_string).'</script>';
+		}
+	}
+
+	public function extra_tablenav($which) {
+		$out = '';
+		// add filter elements
+		if('top' === $which) {
+			$out = '
+				<div class="alignleft actions">';
+			$out .= $this->filterbar->show_years('?page=el_admin_main', $this->args, 'dropdown', 'admin', array('show_past'=>true));
+			$out .= $this->filterbar->show_cats('?page=el_admin_main', $this->args, 'dropdown', 'admin');
+			$out .= '
+				<input type="hidden" name="noheader" value="true" />
+				<input id="event-query-submit" class="button" type="submit" name ="filter" value="'.__('Filter','event-list').'" />
+			</div>';
+		}
+		echo $out;
+	}
+
+	/** ************************************************************************
+	* In this function the data for the display is prepared.
+	*
+	* @param string $date_range Date range for displaying the events
+	* @uses $this->_column_headers
+	* @uses $this->items
+	* @uses $this->get_columns()
+	* @uses $this->get_sortable_columns()
+	* @uses $this->get_pagenum()
+	* @uses $this->set_pagination_args()
+	***************************************************************************/
+	public function prepare_items() {
+		$per_page = 20;
+		// define column headers
+		$columns = $this->get_columns();
+		$hidden = array();
+		$sortable = $this->get_sortable_columns();
+		$this->_column_headers = array($columns, $hidden, $sortable);
+		// handle the bulk actions
+		$this->process_bulk_action();
+		// get the required event data
+		$data = $this->get_events();
+		// setup pagination
+		$current_page = $this->get_pagenum();
+		$total_items = count($data);
+		$data = array_slice($data, (($current_page-1)*$per_page), $per_page);
+		$this->set_pagination_args(array(
+			'total_items' => $total_items,
+			'per_page'    => $per_page,
+			'total_pages' => ceil($total_items/$per_page)
+		));
+		// setup items which are used by the rest of the class
+		$this->items = $data;
+	}
+
+	private function set_args() {
+		$this->args = array('date_filter'   => 'all',
+		                    'cat_filter'    => 'all',
+		                    'sc_id_for_url' => '',
+		                    'actual_date'   => isset($_GET['date']) ? $_GET['date'] : 'upcoming',
+		                    'actual_cat'    => isset($_GET['cat'])  ? $_GET['cat']  : 'all',
+		);
+	}
+
+	private function get_events() {
+		// define sort_array
+		$order = 'ASC';
+		if(isset($_GET['order']) && $_GET['order'] === 'desc') {
+			$order = 'DESC';
+		}
+		$orderby = '';
+		if(isset($_GET['orderby'])){
+			$orderby = $_GET['orderby'];
+		}
+		// set standard sort according date ASC, only when date should be sorted desc, DESC should be used
+		if($orderby == 'date' && $order == 'DESC') {
+			$sort_array = array('start_date DESC', 'time DESC', 'end_date DESC');
+		}
+		else {
+			$sort_array = array('start_date ASC', 'time ASC', 'end_date ASC');
+		}
+		// add primary order column to the front of the standard sort array
+		switch($orderby)
+		{
+			case 'title' :
+				array_unshift($sort_array, 'title '.$order);
+				break;
+			case 'location' :
+				array_unshift($sort_array, 'location '.$order);
+				break;
+			case 'pub_user' :
+				array_unshift($sort_array, 'pub_user '.$order);
+				break;
+			case 'pub_date' :
+				array_unshift($sort_array, 'pub_date '.$order);
+				break;
+		}
+		// get and return events in the correct order
+		return $this->db->get_events($this->args['actual_date'], $this->args['actual_cat'], 0, $sort_array);
+	}
+
+	/** ************************************************************************
+	* In this function the start date, the end date and time is formated for
+	* the output.
+	*
+	* @param string $start_date The start date of the event
+	* @param string $end_date The end date of the event
+	* @param string $time The start time of the event
+	***************************************************************************/
+	private function format_event_date($start_date, $end_date, $start_time) {
+		$out = '<span style="white-space:nowrap;">';
+		// start date
+		$out .= mysql2date(__('Y/m/d'), $start_date);
+		// end date for multiday event
+		if($start_date !== $end_date) {
+			$out .= ' -<br />'.mysql2date(__('Y/m/d'), $end_date);
+		}
+		// event time
+		if('' !== $start_time) {
+			// set time format if a known format is available, else only show the text
+			$date_array = date_parse($start_time);
+			if(empty($date_array['errors']) && is_numeric($date_array['hour']) && is_numeric($date_array['minute'])) {
+				$start_time = mysql2date(get_option('time_format'), $start_time);
+			}
+			$out .= '<br />
+				<span class="time">'.esc_html($start_time).'</span>';
+		}
+		$out .= '</span>';
+		return $out;
+	}
+
+	private function format_pub_date($pub_date) {
+		// similar output than for post or pages
+		$timestamp = strtotime($pub_date);
+		$time_diff = time() - $timestamp;
+		if($time_diff >= 0 && $time_diff < 24*60*60) {
+			$date = sprintf(__('%s ago','event-list'), human_time_diff($timestamp));
+		}
+		else {
+			$date = mysql2date(__('Y/m/d'), $pub_date);
+		}
+		$datetime = mysql2date(__('Y/m/d g:i:s A'), $pub_date);
+		return '<abbr title="'.$datetime.'">'.$date.'</abbr>';
+	}
+
+	private function call_js_deleteEvent($del_ids) {
+		if(!empty($_REQUEST['_wp_http_referer'])) {
+			$ref = wp_unslash($_REQUEST['_wp_http_referer']);
+		}
+		else {
+			$ref = '?page=el_admin_main';
+		}
+		return 'eventlist_deleteEvent("'.$del_ids.'","'.$ref.'");';
+	}
+}
diff --git a/wp-content/plugins/event-list/admin/js/admin_categories.js b/wp-content/plugins/event-list/admin/js/admin_categories.js
new file mode 100644
index 0000000000000000000000000000000000000000..cac88fa28b094277f77f95e435786f3a8b62cfec
--- /dev/null
+++ b/wp-content/plugins/event-list/admin/js/admin_categories.js
@@ -0,0 +1,27 @@
+// Javascript functions for event-list admin_settings page
+
+// Confirmation for event deletion
+function eventlist_deleteCategory(id) {
+	if(confirm("Are you sure you want to delete this event category? This is a permanent action.")) {
+		document.location.href = "?page=el_admin_categories&slug=" + id + "&action=delete";
+	}
+}
+
+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;
+	});
+});
diff --git a/wp-content/plugins/event-list/admin/js/admin_main.js b/wp-content/plugins/event-list/admin/js/admin_main.js
new file mode 100644
index 0000000000000000000000000000000000000000..0128a122c3d8ac76b1789e8228ec86e612435385
--- /dev/null
+++ b/wp-content/plugins/event-list/admin/js/admin_main.js
@@ -0,0 +1,13 @@
+// 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;
+}
diff --git a/wp-content/plugins/event-list/admin/js/admin_new.js b/wp-content/plugins/event-list/admin/js/admin_new.js
new file mode 100644
index 0000000000000000000000000000000000000000..b4131a57f484689ce9ca0b47859b75ff3dfc0170
--- /dev/null
+++ b/wp-content/plugins/event-list/admin/js/admin_new.js
@@ -0,0 +1,63 @@
+// Javascript functions for event-list admin_new page
+
+// Date helpers
+jQuery(document).ready(function($) {
+	// Read required config data from hidden field json_for_js
+	var json = $("#json_for_js").val();
+	var conf = eval('(' + json + ')');
+
+	// Show or hide end_date
+	if ($("#start_date").val() == $("#end_date").val()) {
+		$("#end_date_area").hide();
+	}
+	else {
+		$("#multiday").attr('checked', true);
+	}
+
+	$.datepicker.setDefaults({
+		"dateFormat": conf.el_date_format,
+		"firstDay": conf.el_start_of_week,
+		"changeMonth": true,
+		"changeYear": true,
+		"numberOfMonths": 3,
+		"constrainInput": true,
+		"altFormat": "yy-mm-dd",
+		"minDate": $.datepicker.parseDate('yy-mm-dd', "1970-01-01"),
+		"maxDate": $.datepicker.parseDate('yy-mm-dd', "2999-12-31"),
+	});
+
+	// Datepickers
+	$("#start_date").datepicker( {
+		dateFormat: conf.el_date_format, // don't work when only set with setDefaults
+		altField: "#sql_start_date",
+		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);
+		}
+	});
+	$("#end_date").datepicker( {
+		dateFormat: conf.el_date_format, // don't work when only set with setDefaults
+		altField: "#sql_end_date",
+	});
+
+	// Toogle end_date visibility and insert the correct date
+	$("#multiday").click(function() {
+		var enddate = $("#start_date").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();
+		}
+		else {
+			$("#end_date_area").fadeOut();
+		}
+		$("#end_date").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()));
+});
diff --git a/wp-content/plugins/event-list/event-list.php b/wp-content/plugins/event-list/event-list.php
new file mode 100644
index 0000000000000000000000000000000000000000..bf84127accb7aafde0eb024b91fe581b2a52e17a
--- /dev/null
+++ b/wp-content/plugins/event-list/event-list.php
@@ -0,0 +1,139 @@
+<?php
+/*
+Plugin Name: Event List
+Plugin URI: http://wordpress.org/extend/plugins/event-list/
+Description: Manage your events and show them in a list view on your site.
+Version: 0.7.8
+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
+
+This program is free software; you can redistribute it and/or
+modify it under the terms of the GNUs General Public License
+as published by the Free Software Foundation; either version 2
+of the License, or (at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You can view a copy of the HTML version of the GNU General Public
+License at http://www.gnu.org/copyleft/gpl.html
+*/
+
+if(!defined('WPINC')) {
+	exit;
+}
+
+// GENERAL DEFINITIONS
+define('EL_URL', plugin_dir_url(__FILE__));
+define('EL_PATH', plugin_dir_path(__FILE__));
+
+require_once(EL_PATH.'includes/options.php');
+
+// MAIN PLUGIN CLASS
+class Event_List {
+	private $options;
+	private $shortcode;
+	private $styles_loaded;
+
+	/**
+	 * Constructor:
+	 * Initializes the plugin.
+	 */
+	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 shortcodes
+		add_shortcode('event-list', array(&$this, 'shortcode_event_list'));
+		// Register widgets
+		add_action('widgets_init', array(&$this, 'widget_init'));
+		// Register RSS feed
+		add_action('init', array(&$this, 'feed_init'), 10);
+
+		// ADMIN PAGE:
+		if(is_admin()) {
+			// Include required php-files and initialize required objects
+			require_once(EL_PATH.'admin/admin.php');
+			EL_Admin::get_instance()->init_admin_page();
+		}
+
+		// FRONT PAGE:
+		else {
+			// Register actions
+			add_action('wp_print_styles', array(&$this, 'print_styles'));
+		}
+	} // end constructor
+
+	public function load_textdomain() {
+		$el_lang_path = basename(EL_PATH).'/languages';
+		$domain = 'event-list';
+		if('' !== get_option('el_mo_lang_dir_first', '')) { // this->option->get not available in this early stage
+			// use default wordpress function (language files from language dir wp-content/languages/plugins/ are preferred)
+			load_plugin_textdomain($domain, false, $el_lang_path);
+		}
+		else {
+			// use fork of wordpress function load_plugin_textdomain (see wp-includes/l10n.php) to prefer language files included in plugin (wp-content/plugins/event-list/languages/) and additionally from language dir
+			$locale = apply_filters('plugin_locale', is_admin() ? get_user_locale() : get_locale(), $domain);
+			$mofile = $domain.'-'.$locale.'.mo';
+			load_textdomain($domain, WP_PLUGIN_DIR.'/'.$el_lang_path.'/'.$mofile);
+			load_textdomain($domain, WP_LANG_DIR.'/plugins/'.$mofile);
+		}
+	}
+
+	public function shortcode_event_list($atts) {
+		if(null == $this->shortcode) {
+			require_once(EL_PATH.'includes/sc_event-list.php');
+			$this->shortcode = SC_Event_List::get_instance();
+			if(!$this->styles_loaded) {
+				// normally styles are loaded with wp_print_styles action in head
+				// but if the shortcode is not in post content (e.g. included in a theme) it must be loaded here
+				$this->enqueue_styles();
+			}
+		}
+		return $this->shortcode->show_html($atts);
+	}
+
+	public function feed_init() {
+		if($this->options->get('el_enable_feed')) {
+			include_once(EL_PATH.'includes/feed.php');
+			EL_Feed::get_instance();
+		}
+	}
+
+	public function widget_init() {
+		// Widget "event-list"
+		require_once(EL_PATH.'includes/widget.php');
+		return register_widget('EL_Widget');
+	}
+
+	public function print_styles() {
+		global $post;
+		if(is_active_widget(null, null, 'event_list_widget') || (is_object($post) && strstr($post->post_content, '[event-list'))) {
+			$this->enqueue_styles();
+		}
+	}
+
+	public function enqueue_styles() {
+		if('' == $this->options->get('el_disable_css_file')) {
+			wp_register_style('event-list', EL_URL.'includes/css/event-list.css');
+			wp_enqueue_style('event-list');
+		}
+		$this->styles_loaded = true;
+	}
+} // end class linkview
+
+
+// create a class instance
+$event_list = new Event_List();
+?>
diff --git a/wp-content/plugins/event-list/files/events-import-example.csv b/wp-content/plugins/event-list/files/events-import-example.csv
new file mode 100644
index 0000000000000000000000000000000000000000..06b1762ae9ea9b89ef3c670e63db841a6aab40e6
--- /dev/null
+++ b/wp-content/plugins/event-list/files/events-import-example.csv
@@ -0,0 +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."
+"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/categories.php b/wp-content/plugins/event-list/includes/categories.php
new file mode 100644
index 0000000000000000000000000000000000000000..b4cafbf575e7cfd64ebee2d5dbaf6cf720f059de
--- /dev/null
+++ b/wp-content/plugins/event-list/includes/categories.php
@@ -0,0 +1,358 @@
+<?php
+if( !defined( 'ABSPATH' ) ) {
+	exit;
+}
+
+require_once( EL_PATH.'includes/options.php' );
+
+// Class to manage categories
+class EL_Categories {
+	private static $instance;
+	private $options;
+	private $db;
+	private $cat_array;
+
+	public static function &get_instance() {
+		// Create class instance if required
+		if( !isset( self::$instance ) ) {
+			self::$instance = new EL_Categories();
+		}
+		// Return class instance
+		return self::$instance;
+	}
+
+	private function __construct() {
+		$this->options = &EL_Options::get_instance();
+		$this->db = &EL_Db::get_instance();
+		$this->initalize_cat_array();
+	}
+
+	private function initalize_cat_array() {
+		$cat_array = $this->options->get('el_categories');
+		$this->cat_array = array();
+		if(!empty($cat_array)) {
+			foreach($cat_array as $cat) {
+				// check if "parent" field is available (required due to old version without parent field)
+				// this can be removed in a later version
+				if(!isset($cat['parent']) || !isset($cat['level'])) {
+					$cat['parent'] = '';
+					$cat['level'] = 0;
+				}
+				$this->cat_array[$cat['slug']] = $cat;
+			}
+		}
+	}
+
+	public function is_set($category_slug) {
+		return isset($this->cat_array[$category_slug]);
+	}
+
+	public function add_category($cat_data, $allow_duplicate_names=false) {
+		$this->add_cat_to_array($cat_data, $allow_duplicate_names);
+		return  $this->safe_categories();
+	}
+
+	public function edit_category($cat_data, $old_slug, $allow_duplicate_names=false) {
+		// check if slug already exists
+		if(!$this->is_set($old_slug)) {
+			return false;
+		}
+		// delete old category
+		unset($this->cat_array[$old_slug]);
+		// create new category
+		$new_slug = $this->add_cat_to_array($cat_data, $allow_duplicate_names);
+		// required modifications if slug was changed
+		if($old_slug != $new_slug) {
+			// update slug in events if slug has changed
+			$this->db->change_category_slug_in_events($old_slug, $new_slug);
+			// update parent slug in sub-categories
+			$subcats = $this->get_children($old_slug);
+			foreach($subcats as $subcat) {
+				$this->cat_array[$subcat]['parent'] = $new_slug;
+			}
+		}
+		// safe category
+		return $this->safe_categories();
+	}
+
+	public function remove_categories($slugs, $remove_cats_in_events=true) {
+		if($remove_cats_in_events) {
+			$this->db->remove_category_in_events($slugs);
+		}
+		foreach($slugs as $slug) {
+			// check for subcategories and set their parent to the parent of the cat to delete
+			$children = $this->get_children($slug);
+			foreach($children as $child) {
+				$this->set_parent($child, $this->cat_array[$slug]['parent']);
+			}
+			// unset category
+			unset($this->cat_array[$slug]);
+		}
+		return $this->safe_categories();
+	}
+
+	private function safe_categories() {
+		if(empty($this->cat_array)) {
+			$cat_array = '';
+		}
+		else {
+			$cat_array = $this->get_cat_array('slug', true);
+			if(!is_array($cat_array) || empty($cat_array)) {
+				return false;
+			}
+		}
+		if(!$this->options->set('el_categories', $cat_array)) {
+			return false;
+		}
+		return true;
+	}
+
+	private function add_cat_to_array($cat_data, $allow_duplicate_names=false) {
+		// check if name was set
+		if( !isset( $cat_data['name'] ) || '' == $cat_data['name'] ) {
+			return false;
+		}
+		// check if name already exists
+		$cat_data['name'] = trim($cat_data['name']);
+		if(!$allow_duplicate_names) {
+			foreach( $this->cat_array as $category ) {
+				if( $category['name'] === $cat_data['name'] ) {
+					return false;
+				}
+			}
+		}
+		// set cat name
+		$cat['name'] = $cat_data['name'];
+		// set slug
+		// generate slug if no slug was given
+		if( !isset( $cat_data['slug'] ) || '' == $cat_data['slug'] ) {
+			$cat_data['slug'] = $cat_data['name'];
+		}
+		// make slug unique
+		$cat['slug'] = $slug = sanitize_title( $cat_data['slug'] );
+		$num = 1;
+		while($this->is_set($cat['slug'])) {
+			$num++;
+			$cat['slug'] = $slug.'-'.$num;
+		}
+		// set description
+		$cat['desc'] = isset( $cat_data['desc'] ) ? trim( $cat_data['desc'] ) : '';
+		// add category
+		$this->cat_array[$cat['slug']] = $cat;
+		// set parent and level
+		if(!isset($cat_data['parent'])) {
+			$cat_data['parent'] = '';
+		}
+		$this->set_parent($cat['slug'], $cat_data['parent']);
+		return $cat['slug'];
+	}
+
+	public function sync_with_post_cats() {
+		$post_cats = get_categories(array('type'=>'post', 'orderby'=>'slug', 'hide_empty'=>0));
+		// delete not available categories(compare categories by slug)
+		$cats_to_delete = array();
+		foreach($this->cat_array as $event_cat) {
+			$in_array = false;
+			foreach($post_cats as $post_cat) {
+				if($post_cat->slug === $event_cat['slug']) {
+					$in_array = true;
+					break;
+				}
+			}
+			if(!$in_array) {
+				$cats_to_delete[] = $event_cat['slug'];
+			}
+		}
+		$this->remove_categories($cats_to_delete);
+		// update existing and add not existing categories
+		$this->update_post_cats_children(0);
+	}
+
+	private function update_post_cats_children($parent_id) {
+		$post_cats = get_categories(array('type'=>'post', 'parent'=>$parent_id, 'orderby'=>'slug', 'hide_empty'=>0));
+		// add not existing categories, update existing categories
+		if(!empty($post_cats)) {
+			foreach($post_cats as $post_cat) {
+				$in_array = false;
+				foreach($this->cat_array as $event_cat) {
+					if($event_cat['slug'] === $post_cat->slug) {
+						$in_array = true;
+						// update an already existing category
+						$cat_data = $this->get_cat_data_from_post_cat($post_cat);
+						$this->edit_category($cat_data, $event_cat['slug'], true);
+						break;
+					}
+				}
+				// add a new category
+				if(!$in_array) {
+					$cat_data = $this->get_cat_data_from_post_cat($post_cat);
+					$this->add_category($cat_data, true);
+				}
+				// update the children of the actual category
+				$this->update_post_cats_children($post_cat->cat_ID);
+			}
+		}
+	}
+
+	private function get_cat_data_from_post_cat($post_cat) {
+		$cat['name'] = $post_cat->name;
+		$cat['slug'] = $post_cat->slug;
+		$cat['desc'] = $post_cat->description;
+		if(0 != $post_cat->parent) {
+			$cat['parent'] = get_category($post_cat->parent)->slug;
+		}
+		return $cat;
+	}
+
+	public function add_post_category($cat_id) {
+		$cat_data = $this->get_cat_data_from_post_cat(get_category($cat_id));
+		$this->add_category($cat_data, true);
+	}
+
+	public function edit_post_category($cat_id) {
+		// the get_category still holds the old cat_data
+		// the new data is available in $_POST
+		if(isset($_POST['name'])) {
+			$old_slug = get_category($cat_id)->slug;
+			// set new cat_data from $_POST
+			$cat_data['name'] = $_POST['name'];
+			$cat_data['slug'] = isset($_POST['slug']) ? $_POST['slug'] : '';
+			$cat_data['desc'] = isset($_POST['description']) ? $_POST['description'] : '';
+			if(isset($_POST['parent']) && 0 != $_POST['parent']) {
+				$cat_data['parent'] = get_category($_POST['parent'])->slug;
+			}
+			// edit event category
+			$this->edit_category($cat_data, $old_slug, true);
+		}
+	}
+
+	public function delete_post_category($cat_id) {
+		// search for deleted categories
+		foreach($this->cat_array as $event_cat) {
+			if(false == get_category_by_slug($event_cat['slug'])) {
+				$this->remove_categories(array($event_cat['slug']));
+				break;
+			}
+		}
+	}
+
+	public function get_cat_array($sort_key='name', $sort_order='asc', $slug_filter=null) {
+		if(empty($this->cat_array)) {
+			return array();
+		}
+		else {
+			return $this->get_cat_child_array('', $sort_key, $sort_order, $slug_filter);
+		}
+	}
+
+	private function get_cat_child_array($slug, $sort_key, $sort_order, $slug_filter=null) {
+		$children = $this->get_children($slug, $sort_key, $sort_order, $slug_filter);
+		if(empty($children)) {
+			return null;
+		}
+		$ret = array();
+		foreach($children as $child) {
+			$ret[] = $this->cat_array[$child];
+			$grandchilds = $this->get_cat_child_array($child, $sort_key, $sort_order, $slug_filter);
+			if(is_array($grandchilds)) {
+				$ret = array_merge($ret, $grandchilds);
+			}
+		}
+		return $ret;
+	}
+
+	private function get_children($slug='', $sort_key='slug', $sort_order='asc', $slug_filter=null) {
+		// filter initialization
+		if($slug_filter === '') {
+			$slug_filter = null;
+		}
+		// create array with slugs
+		$ret = array();
+		foreach($this->cat_array as $cat) {
+			if($slug == $cat['parent'] && $slug_filter !== $cat['slug']) {
+				$ret[] = $cat['slug'];
+			}
+		}
+		// sort array
+		if('slug' == $sort_key) {
+			if('desc' == $sort_order) {
+				rsort($ret);
+			}
+			else {
+				sort($ret);
+			}
+			return $ret;
+		}
+		else {
+			$sort_key_array = array();
+			foreach($ret as $cat_slug) {
+				$sort_key_array[] = strtolower($this->cat_array[$cat_slug][$sort_key]);
+			}
+			asort($sort_key_array);
+			$ret_sorted = array();
+			foreach($sort_key_array as $key => $value) {
+				$ret_sorted[] = $ret[$key];
+			}
+			return $ret_sorted;
+		}
+	}
+
+	private function set_parent($cat_slug, $parent_slug) {
+		if($this->is_set($parent_slug)) {
+			// set parent and level
+			$this->cat_array[$cat_slug]['parent'] = $parent_slug;
+			$this->cat_array[$cat_slug]['level'] = $this->cat_array[$parent_slug]['level'] + 1;
+		}
+		else {
+			// set to first level category
+			$this->cat_array[$cat_slug]['parent'] = '';
+			$this->cat_array[$cat_slug]['level'] = 0;
+		}
+		// check and update children
+		$children = $this->get_children($cat_slug);
+		foreach($children as $child) {
+			$this->set_parent($child, $cat_slug);
+		}
+	}
+
+	public function get_category_data($slug) {
+		return $this->cat_array[$slug];
+	}
+
+	/**
+	 * Convert the slugs-string (e.g. "|slug-1|slug-2|") to another string or a slug array
+	 *
+	 * @param string $slug_string  The slug string to convert
+	 * @param string $return_type  The type to return. Possible values are:
+	 *                               "name_string" ... to return a string with the category names
+	 *                               "name_array"  ... to return an array with the category names
+	 *                               "slug_string" ... to return a string with the category slugs
+	 *                               "slug_array"  ... to return an array with the category slugs
+	 * @param string $glue         The glue or separator when a string should be returned
+	 */
+	public function convert_db_string($slug_string, $return_type='name_string', $glue=', ') {
+		if(2 >= strlen($slug_string)) {
+			return (strpos($return_type, 'array') !== false) ? array() : '';
+		}
+		$slug_array = explode('|', substr($slug_string, 1, -1));
+		switch($return_type) {
+			case 'slug_array':
+			case 'slug_string':
+				$ret_array = $slug_array;
+				break;
+			case 'name_array':
+			default:   // name_string
+				$ret_array = array();
+				foreach($slug_array as $slug) {
+					$ret_array[] = $this->cat_array[$slug]['name'];
+				}
+		}
+		sort($ret_array, SORT_STRING);
+		if(strpos($return_type, 'array') !== false) {
+			return $ret_array;
+		}
+		else {
+			return implode($glue, $ret_array);
+		}
+	}
+}
diff --git a/wp-content/plugins/event-list/includes/css/event-list.css b/wp-content/plugins/event-list/includes/css/event-list.css
new file mode 100644
index 0000000000000000000000000000000000000000..5ed6c6f2ca96a3ce4dec785eccb7f3ebf4557ab3
--- /dev/null
+++ b/wp-content/plugins/event-list/includes/css/event-list.css
@@ -0,0 +1,130 @@
+ul.event-list-view, ul.single-event-view {
+	list-style: none !important;
+	margin: 1.5em 0 2em 0;
+	padding: 0;
+}
+
+li.event {
+	clear: both;
+	margin: 0 0.5em 1.5em 0.5em;
+	zoom: 1; /* Fix for IE 6+7 */
+}
+
+.event-date {
+	float: left;
+	margin: 0 0.4em 1.5em 0;
+}
+
+.event-list .multi-date {
+	background: url(../images/date-separator.png) center no-repeat;
+}
+
+.event-list .start-date, .event-list .end-date {
+	text-align: center;
+	width: 3.2em;
+	border-radius: 5px;
+	background-color: rgb(230,230,230);
+}
+
+.event-list .start-date {
+	float: left;
+}
+
+.event-list .end-date {
+	margin-left: 3.8em;
+}
+
+.event-weekday {
+	font-size: 0.8em;
+	text-transform: uppercase;
+}
+
+.event-day {
+	font-size: 1.3em;
+	font-weight: bold;
+	line-height: 1em;
+	margin-bottom: -0.2em;
+}
+
+.event-month {
+	text-transform: uppercase;
+	font-size: 1.0em;
+	line-height: 1em;
+	padding: 0.4em 0;
+}
+
+.event-year {
+	font-size: 0.8em;
+	line-height: 0.8em;
+	letter-spacing: 0.1em;
+	padding-bottom: 0.3em;
+}
+
+.event-info {
+	display: block !important;
+}
+
+.multi-day {
+	margin: 0 0 0 7.5em;
+}
+
+.single-day {
+	margin: 0 0 0 3.8em;
+}
+
+.event-title h3 {
+	clear: none;
+	margin: 0 !important;
+	padding: 0;
+}
+
+.event-time {
+	font-weight: bold;
+	padding-right: 0.8em;
+}
+
+.event-cat {
+	font-size: 0.95em;
+}
+
+.event-details {
+	font-size: 0.8em;
+}
+
+div.feed {
+	display: block;
+}
+
+div.feed a * {
+	vertical-align: middle;
+}
+
+div.feed img {
+	margin: 0 5px 0 2px;
+}
+
+div.filterbar, div.filterbar div {
+	clear both;
+	margin: 1em 0;
+	vertical-align: middle;
+}
+
+div.filterbar select.dropdown, div.filterbar ul.hlist, div.filterbar a.link {
+	margin: 0 3px;
+	vertical-align: middle;
+}
+
+div.filterbar ul.hlist li {
+	float: left;
+	list-style: none;
+	margin: 0;
+}
+
+div.filterbar ul.hlist li + li:before {
+	content: "|";
+	padding: 0 1px;
+}
+
+div.el-hidden {
+	display: none;
+}
diff --git a/wp-content/plugins/event-list/includes/daterange.php b/wp-content/plugins/event-list/includes/daterange.php
new file mode 100644
index 0000000000000000000000000000000000000000..1e448a7585e84ae5e33a56fc4f5c181708dc226b
--- /dev/null
+++ b/wp-content/plugins/event-list/includes/daterange.php
@@ -0,0 +1,135 @@
+<?php
+if(!defined('WPINC')) {
+	exit;
+}
+
+// Class for database access via wordpress functions
+class EL_Daterange {
+	private static $instance;
+	public $date_formats;
+	public $daterange_formats;
+
+	public static function &get_instance() {
+		// Create class instance if required
+		if(!isset( self::$instance)) {
+			self::$instance = new  self();
+		}
+		// Return class instance
+		return self::$instance;
+	}
+
+	private function __construct() {
+		$this->init_formats();
+		add_action('admin_init', array(&$this, 'load_formats_helptexts'), 2);
+	}
+
+	public function init_formats() {
+		$this->date_formats = array(
+			'year'         => array('regex' => '^((19[7-9]\d)|(2\d{3}))$',
+			                        'start' => '%v%-01-01',
+			                        'end'   => '%v%-12-31'),
+			'month'        => array('regex' => '^((19[7-9]\d)|(2\d{3}))-(0[1-9]|1[012])$',
+			                        'start' => '%v%-01',
+			                        'end'   => '%v%-31'),
+			'day'          => array('regex' => '^((19[7-9]\d)|(2\d{3}))-(0[1-9]|1[012])-(0[1-9]|[12]\d|3[01])$',
+			                        'start' => '%v%',
+			                        'end'   => '%v%'),
+			'rel_year'     => array('regex' => '^([+-]?\d+|last|next|previous|this)_year[s]?$',
+			                        'start' => '--func--date("Y", strtotime(str_replace("_", " ", "%v%")))."-01-01";',
+			                        'end'   => '--func--date("Y", strtotime(str_replace("_", " ", "%v%")))."-12-31";'),
+			'rel_month'    => array('regex' => '^([+-]?\d+|last|previous|next|this)month[s]?$',
+			                        'start' => '--func--date("Y-m", strtotime(str_replace("_", " ", "%v%")))."-01";',
+			                        'end'   => '--func--date("Y-m", strtotime(str_replace("_", " ", "%v%")))."-31";'),
+			'rel_week'     => array('regex' => '^([+-]?\d+|last|previous|next|this)_week[s]?$',
+			                        'start' => '--func--date("Y-m-d", strtotime(str_replace(array("_","last","previous","next","this"), array(" ","-1","-1","+1","0"), "%v%"))-86400*((date("w")-get_option("start_of_week")+7)%7));',
+			                        'end'   => '--func--date("Y-m-d", strtotime(str_replace(array("_","last","previous","next","this"), array(" ","-1","-1","+1","0"), "%v%"))-86400*((date("w")-get_option("start_of_week")+7)%7-6));'),
+			                                   // replace special values due to some date calculation problems,
+			                                   // then calculate the new date
+			                                   // and at last remove calculated days to get first day of the week (acc. start_of_week option), add 6 day for end date (- sign due to - for first day calculation)
+			'rel_day'      => array('regex' => '^((([+-]?\d+|last|previous|next|this)_day[s]?)|yesterday|today|tomorrow)$',
+			                        'start' => '--func--date("Y-m-d", strtotime(str_replace("_", " ", "%v%")));',
+			                        'end'   => '--func--date("Y-m-d", strtotime(str_replace("_", " ", "%v%")));'),
+		);
+		$this->daterange_formats = array(
+			'date_range'   => array('regex' => '.+~.+'),
+			'all'          => array('regex' => '^all$',
+			                        'start' => '1970-01-01',
+			                        'end'   => '2999-12-31'),
+			'upcoming'     => array('regex' => '^upcoming$',
+			                        'start' => '--func--date("Y-m-d", current_time("timestamp"));',
+			                        'end'   => '2999-12-31'),
+			'past'         => array('regex' => '^past$',
+			                        'start' => '1970-01-01',
+			                        'end'   => '--func--date("Y-m-d", current_time("timestamp")-86400);'),  // previous day (86400 seconds = 1*24*60*60 = 1 day
+		);
+	}
+
+	public function load_formats_helptexts() {
+		require_once(EL_PATH.'includes/daterange_helptexts.php');
+		foreach($date_formats_helptexts as $name => $values) {
+			$this->date_formats[$name] += $values;
+		}
+		unset($date_formats_helptexts);
+		foreach($daterange_formats_helptexts as $name => $values) {
+			$this->daterange_formats[$name] += $values;
+		}
+		unset($daterange_formats_helptexts);
+	}
+
+	public function check_date_format($element, $ret_value=null) {
+		foreach($this->date_formats as $date_type) {
+			if(preg_match('@'.$date_type['regex'].'@', $element)) {
+				return $this->get_date_range($element, $date_type, $ret_value);
+			}
+		}
+		return null;
+	}
+
+	public function check_daterange_format($element) {
+		foreach($this->daterange_formats as $key => $daterange_type) {
+			if(preg_match('@'.$daterange_type['regex'].'@', $element)) {
+				//check for date_range which requires special handling
+				if('date_range' == $key) {
+					$sep_pos = strpos($element, "~");
+					$startrange = $this->check_date_format(substr($element, 0, $sep_pos), 'start');
+					$endrange = $this->check_date_format(substr($element, $sep_pos+1), 'end');
+					return array($startrange[0], $endrange[1]);
+				}
+				return $this->get_date_range($element, $daterange_type);
+			}
+		}
+		return null;
+	}
+
+	public function get_date_range($element, &$range_type, $ret_value=null) {
+		if('end' != $ret_value) {
+			// start date:
+			// set range values by replacing %v% in $range_type string with $element
+			$range[0] = str_replace('%v%', $element, $range_type['start']);
+			// enum function if required
+			if(substr($range[0], 0, 8) == '--func--') {  //start
+				eval('$range[0] = '.substr($range[0], 8));
+			}
+		}
+		if('start' != $ret_value) {
+			// same for end date:
+			$range[1] = str_replace('%v%', $element, $range_type['end']);
+			if(substr($range[1], 0, 8) == '--func--') {  //end
+				eval('$range[1] = '.substr($range[1], 8));
+			}
+		}
+		return $range;
+	}
+}
+
+/* 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")) {
+	function date_create_from_format($dformat, $dvalue) {
+		$d = new DateTime($dvalue);
+		return $d;
+	}
+}
+?>
diff --git a/wp-content/plugins/event-list/includes/daterange_helptexts.php b/wp-content/plugins/event-list/includes/daterange_helptexts.php
new file mode 100644
index 0000000000000000000000000000000000000000..5173a0838a3b0e74230435df245d6db850ad72ff
--- /dev/null
+++ b/wp-content/plugins/event-list/includes/daterange_helptexts.php
@@ -0,0 +1,69 @@
+<?php
+if(!defined('WPINC')) {
+	exit;
+}
+
+$date_formats_helptexts = array(
+	'year'       => array('name'  => __('Year','event-list'),
+	                      'desc'  => __('A year can be specified in 4 digit format.','event-list').'<br />'.
+	                                 sprintf(__('For a start date filter the first day of %1$s is used, in an end date the last day.','event-list'), __('the resulting year','event-list')),
+	                      'examp' => '2015'),
+
+	'month'      => array('name'  => __('Month','event-list'),
+	                      'desc'  => __('A month can be specified with 4 digits for the year and 2 digits for the month, seperated by a hyphen (-).','event-list').'<br />'.
+	                                 sprintf(__('For a start date filter the first day of %1$s is used, in an end date the last day.','event-list'), __('the resulting month','event-list')),
+	                      'examp' => '2015-03'),
+
+	'day'        => array('name'  => __('Day','event-list'),
+	                      'desc'  => __('A day can be specified in the format 4 digits for the year, 2 digits for the month and 2 digets for the day, seperated by hyphens (-).','event-list'),
+	                      'examp' => '2015-03-29'),
+
+	'rel_year'   => array('name'  => __('Relative Year','event-list'),
+	                      'desc'  => sprintf(__('%1$s from now can be specified in the following notation: %2$s','event-list'), __('A relative year','event-list'), '<em>[+-]?[0-9]+_year[s]?</em>').'<br />'.
+	                                 sprintf(__('This means you can specify a positive or negative (%1$s) %2$s from now with %3$s or %4$s attached (see also the example below).','event-list'), '+/-', __('number of years','event-list'), '"_year"', '"_years"').'<br />'.
+	                                 sprintf(__('Additionally the following values are available: %1$s','event-list'), '<em>last_year</em>, <em>next_year</em>, <em>this_year</em>'),
+	                      'examp' => '+1_year'),
+
+	'rel_month'  => array('name'  => __('Relative Month','event-list'),
+	                      'desc'  => sprintf(__('%1$s from now can be specified in the following notation: %2$s','event-list'), __('A relative month','event-list'), '<em>[+-]?[0-9]+_month[s]?</em>').'<br />'.
+	                                 sprintf(__('This means you can specify a positive or negative (%1$s) %2$s from now with %3$s or %4$s attached (see also the example below).','event-list'), '+/-', __('number of months','event-list'), '"_month"', '"_months"').'<br />'.
+	                                 sprintf(__('Additionally the following values are available: %1$s','event-list'), '<em>last_month</em>, <em>next_month</em>, <em>this_month</em>'),
+	                      'examp' => '-6_months'),
+
+	'rel_week'   => array('name'  => __('Relative Week','event-list'),
+	                      'desc'  => sprintf(__('%1$s from now can be specified in the following notation: %2$s','event-list'), __('A relative week','event-list'), '<em>[+-]?[0-9]+_week[s]?</em>').'<br />'.
+	                                 sprintf(__('This means you can specify a positive or negative (%1$s) %2$s from now with %3$s or %4$s attached (see also the example below).','event-list'), '+/-', __('number of weeks','event-list'), '"_week"', '"_weeks"').'<br />'.
+	                                 sprintf(__('For a start date filter the first day of %1$s is used, in an end date the last day.','event-list'), __('the resulting week','event-list')).'<br />'.
+	                                 sprintf(__('The first day of the week is depending on the option %1$s which can be found and changed in %2$s.','event-list'), '"'.__('Week Starts On').'"', '"'.__('Settings').'" &rarr; "'.__('General').'"').'<br />'.
+	                                 sprintf(__('Additionally the following values are available: %1$s','event-list'), '<em>last_week</em>, <em>next_week</em>, <em>this_week</em>'),
+	                      'examp' => '+3_weeks'),
+
+	'rel_day'    => array('name'  => __('Relative Day','event-list'),
+	                      'desc'  => sprintf(__('%1$s from now can be specified in the following notation: %2$s','event-list'), __('A relative day','event-list'), '<em>[+-]?[0-9]+_day[s]?</em>').'<br />'.
+	                                 sprintf(__('This means you can specify a positive or negative (%1$s) %2$s from now with %3$s or %4$s attached (see also the example below).','event-list'), '+/-', __('number of days','event-list'), '"_day"', '"_days"').'<br />'.
+	                                 sprintf(__('Additionally the following values are available: %1$s','event-list'), '<em>last_day</em>, <em>next_day</em>, <em>this_day</em>, <em>yesterday</em>, <em>today</em>, <em>tomorrow</em>'),
+	                      'examp' => '-10_days'),
+);
+
+$daterange_formats_helptexts = array(
+	'date_range' => array('name'  => __('Date range','event-list'),
+	                      'desc'  => __('A date rage can be specified via a start date and end date seperated by a tilde (~).<br />
+	                                     For the start and end date any available date format can be used.','event-list'),
+	                      'examp' => '2015-03-29~2016'),
+
+	'all'        => array('name'  => __('All'),
+	                      'desc'  => __('This value defines a range without any limits.','event-list').'<br />'.
+	                                 sprintf(__('The corresponding date_range format is: %1$s','event-list'), '<em>1970-01-01~2999-12-31</em>'),
+	                      'value' => 'all'),
+
+	'upcoming'   => array('name'  => __('Upcoming','event-list'),
+	                      'desc'  => __('This value defines a range from the actual day to the future.','event-list').'<br />'.
+	                                 sprintf(__('The corresponding date_range format is: %1$s','event-list'), '<em>today~2999-12-31</em>'),
+	                      'value' => 'upcoming'),
+
+	'past'       => array('name'  => __('Past','event-list'),
+	                      'desc'  => __('This value defines a range from the past to the previous day.','event-list').'<br />'.
+	                                 sprintf(__('The corresponding date_range format is: %1$s','event-list'), '<em>1970-01-01~yesterday</em>'),
+	                      'value' => 'past'),
+);
+?>
diff --git a/wp-content/plugins/event-list/includes/db.php b/wp-content/plugins/event-list/includes/db.php
new file mode 100644
index 0000000000000000000000000000000000000000..fe0934529e13878910cf88a823d986065d6c20be
--- /dev/null
+++ b/wp-content/plugins/event-list/includes/db.php
@@ -0,0 +1,391 @@
+<?php
+if(!defined('WPINC')) {
+	exit;
+}
+
+require_once(EL_PATH.'includes/options.php');
+require_once(EL_PATH.'includes/daterange.php');
+
+// Class for database access via wordpress functions
+class EL_Db {
+	const VERSION = '0.2';
+	const TABLE_NAME = 'event_list';
+	private static $instance;
+	private $table;
+	private $options;
+	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() {
+		global $wpdb;
+		$this->table = $wpdb->prefix.self::TABLE_NAME;
+		$this->options = &EL_Options::get_instance();
+		$this->daterange = &EL_Daterange::get_instance();
+	}
+
+	// UPDATE DB
+	public function upgrade_check() {
+		if( $this->options->get( 'el_db_version' ) != self::VERSION ) {
+			$sql = 'CREATE TABLE '.$this->table.' (
+				id int(11) NOT NULL AUTO_INCREMENT,
+				pub_user bigint(20) NOT NULL,
+				pub_date datetime NOT NULL DEFAULT "0000-00-00 00:00:00",
+				start_date date NOT NULL DEFAULT "0000-00-00",
+				end_date date DEFAULT NULL,
+				time text,
+				title text NOT NULL,
+				location text,
+				details text,
+				categories text,
+				history text,
+				PRIMARY KEY  (id) )
+				DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;';
+			require_once( ABSPATH.'wp-admin/includes/upgrade.php' );
+			dbDelta( $sql );
+			$this->options->set( 'el_db_version', self::VERSION );
+		}
+	}
+
+	public function get_events($date_filter=null, $cat_filter=null, $num_events=0, $sort_array=array('start_date ASC', 'time ASC', 'end_date ASC')) {
+		global $wpdb;
+		$where_string = $this->get_sql_filter_string($date_filter, $cat_filter);
+		$sql = 'SELECT * FROM '.$this->table.' WHERE '.$where_string.' ORDER BY '.implode(', ', $sort_array);
+		if('upcoming' === $date_filter && is_numeric($num_events) && 0 < $num_events) {
+			$sql .= ' LIMIT '.$num_events;
+		}
+		return $wpdb->get_results($sql);
+	}
+
+	public function get_event( $id ) {
+		global $wpdb;
+		$sql = 'SELECT * FROM '.$this->table.' WHERE id = '.$id.' LIMIT 1';
+		return $wpdb->get_row( $sql );
+	}
+
+	public function get_distinct_event_data($search_string, $date_filter, $cat_filter, $order='asc') {
+		global $wpdb;
+		$where_string = $this->get_sql_filter_string($date_filter, $cat_filter);
+		if('desc' != $order) {
+			$order = 'asc';   // standard order is ASC
+		}
+		$sql = 'SELECT DISTINCT '.$search_string.' as data FROM '.$this->table.' WHERE '.$where_string.' order by data '.$order;
+		return $wpdb->get_results($sql);
+	}
+
+	public function get_num_events() {
+		global $wpdb;
+		$sql = 'SELECT COUNT(*) FROM '.$this->table;
+		return $wpdb->get_var($sql);
+	}
+
+	public function update_event($event_data, $check_multiday=false) {
+		global $wpdb;
+		// prepare and validate sqldata
+		$sqldata = array();
+		if(!isset($event_data['id'])) {
+			// for new events only:
+			//pub_user
+			$sqldata['pub_user'] = isset($event_data['id']) ? $event_data['pub_user'] : wp_get_current_user()->ID;
+			//pub_date
+			$sqldata['pub_date'] = isset($event_data['pub_date']) ? $event_data['pub_date'] : date("Y-m-d H:i:s", current_time('timestamp'));
+		}
+		//start_date
+		if(!isset( $event_data['start_date'])) { return false; }
+		$sqldata['start_date'] = $this->validate_sql_date($event_data['start_date']);
+		if(false === $sqldata['start_date']) { return false; }
+		//end_date
+		if(!$check_multiday || (isset($event_data['multiday']) && "1" === $event_data['multiday'])) {
+			if(!isset($event_data['end_date'])) { $sqldata['end_date'] = $sqldata['start_date']; }
+			$sqldata['end_date'] = $this->validate_sql_date($event_data['end_date']);
+			if(false === $sqldata['end_date']) { $sqldata['end_date'] = $sqldata['start_date']; }
+			elseif(new DateTime($sqldata['end_date']) < new DateTime($sqldata['start_date'])) { $sqldata['end_date'] = $sqldata['start_date']; }
+		}
+		else {
+			$sqldata['end_date'] = $sqldata['start_date'];
+		}
+		//time
+		if( !isset( $event_data['time'] ) ) { $sqldata['time'] = ''; }
+		else { $sqldata['time'] = stripslashes($event_data['time']); }
+		//title
+		if( !isset( $event_data['title'] ) || $event_data['title'] === '' ) { return false; }
+		$sqldata['title'] = stripslashes( $event_data['title'] );
+		//location
+		if( !isset( $event_data['location'] ) ) { $sqldata['location'] = ''; }
+		else { $sqldata['location'] = stripslashes ($event_data['location'] ); }
+		//details
+		if( !isset( $event_data['details'] ) ) { $sqldata['details'] = ''; }
+		else { $sqldata['details'] = stripslashes ($event_data['details'] ); }
+		//categories
+		if( !isset( $event_data['categories'] ) || !is_array( $event_data['categories'] ) || empty( $event_data['categories'] ) ) { $sqldata['categories'] = ''; }
+		else { $sqldata['categories'] = '|'.implode( '|', $event_data['categories'] ).'|'; }
+		//types for sql data
+		$sqltypes = array( '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s' );
+		if(isset( $event_data['id'] ) ) { // update event
+			return $wpdb->update($this->table, $sqldata, array('id' => $event_data['id']), $sqltypes);
+		}
+		else { // new event
+			$wpdb->insert($this->table, $sqldata, $sqltypes);
+			return $wpdb->insert_id;
+		}
+	}
+
+	public function delete_events( $event_ids ) {
+		global $wpdb;
+		// filter event_ids string to int values only
+		$filtered_ids = array_map( 'intval', $event_ids );
+		if( count( $event_ids ) != count( $filtered_ids ) )
+		{
+			// something is wrong with the event_ids array
+			return false;
+		}
+		// sql query
+		$num_deleted = (int) $wpdb->query( 'DELETE FROM '.$this->table.' WHERE id IN ('.implode( ',', $filtered_ids ).')' );
+		if( $num_deleted == count( $event_ids ) ) {
+			return true;
+		}
+		else {
+			return false;
+		}
+	}
+
+	public function remove_category_in_events($category_slugs) {
+		global $wpdb;
+		$sql = 'SELECT * FROM '.$this->table.' WHERE categories LIKE "%|'.implode('|%" OR categories LIKE "%|', $category_slugs).'|%"';
+		$affected_events = $wpdb->get_results($sql, ARRAY_A);
+		foreach($affected_events as $event) {
+			// remove category from categorystring
+			foreach($category_slugs as $slug) {
+				$event['categories'] = str_replace('|'.$slug.'|', '|', $event['categories']);
+			}
+			if(3 > strlen( $event['categories'])) {
+				$event['categories'] = '';
+			}
+			else {
+				$event['categories'] = explode( '|', substr($event['categories'], 1, -1));
+			}
+			$this->update_event($event);
+			}
+		return count($affected_events);
+	}
+
+	public function change_category_slug_in_events($old_slug, $new_slug) {
+		global $wpdb;
+		$sql = 'SELECT * FROM '.$this->table.' WHERE categories LIKE "%|'.$old_slug.'|%"';
+		$affected_events = $wpdb->get_results($sql, ARRAY_A);
+		foreach( $affected_events as $event ) {
+			// replace slug in categorystring
+			$event['categories'] = str_replace('|'.$old_slug.'|', '|'.$new_slug.'|', $event['categories']);
+			$event['categories'] = explode( '|', substr($event['categories'], 1, -1 ) );
+			$this->update_event($event);
+		}
+		return count($affected_events);
+	}
+
+	public function count_events( $slug ) {
+		global $wpdb;
+		$sql = 'SELECT COUNT(*) FROM '.$this->table.' WHERE categories LIKE "%|'.$slug.'|%"';
+		return $wpdb->get_var( $sql );
+	}
+
+	private function validate_sql_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;
+	}
+
+	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')) ? 'start_date' : 'end_date';
+		return '('.$date_for_startrange.' >= "'.$range[0].'" AND start_date <= "'.$range[1].'")';
+	}
+
+	private function sql_cat_filter ($element) {
+		return 'categories LIKE "%|'.$element.'|%"';
+	}
+
+	/** ************************************************************************************************************
+	 * 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(0 >= $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_WARNING);
+							$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.'">&hellip;</a>';
+				}
+				else {
+					$out .= ' &hellip;';
+				}
+			}
+			// 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/feed.php b/wp-content/plugins/event-list/includes/feed.php
new file mode 100644
index 0000000000000000000000000000000000000000..aba8b728a2981e7417aa85a7842747ce6c045f3c
--- /dev/null
+++ b/wp-content/plugins/event-list/includes/feed.php
@@ -0,0 +1,153 @@
+<?php
+if(!defined('ABSPATH')) {
+	exit;
+}
+
+require_once(EL_PATH.'includes/db.php');
+require_once(EL_PATH.'includes/options.php');
+require_once(EL_PATH.'includes/categories.php');
+
+// This class handles rss feeds
+class EL_Feed {
+
+	private static $instance;
+	private $db;
+	private $options;
+	private $categories;
+
+	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->db = EL_Db::get_instance();
+		$this->options = EL_Options::get_instance();
+		$this->categories = EL_Categories::get_instance();
+		$this->init();
+	}
+
+	public function init() {
+		add_feed($this->options->get('el_feed_name'), array(&$this, 'print_eventlist_feed'));
+		if($this->options->get('el_head_feed_link')) {
+			add_action('wp_head', array(&$this, 'print_head_feed_link'));
+		}
+	}
+
+	public function print_head_feed_link() {
+		echo '<link rel="alternate" type="application/rss+xml" title="'.get_bloginfo_rss('name').' &raquo; '.$this->options->get('el_feed_description').'" href="'.$this->eventlist_feed_url().'" />';
+	}
+
+	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);
+
+		// Print feeds
+		echo
+'<?xml version="1.0" encoding="'.get_option('blog_charset').'"?>
+	<rss version="2.0"
+		xmlns:content="http://purl.org/rss/1.0/modules/content/"
+		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
+		xmlns:dc="http://purl.org/dc/elements/1.1/"
+		xmlns:atom="http://www.w3.org/2005/Atom"
+		xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
+		xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
+	>
+		<channel>
+			<title>'.get_bloginfo_rss('name').'</title>
+			<atom:link href="'.apply_filters('self_link', get_bloginfo()).'" rel="self" type="application/rss+xml" />
+			<link>'.get_bloginfo_rss('url').'</link>
+			<description>'.$this->options->get('el_feed_description').'</description>
+			<lastBuildDate>'.mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT'), false).'</lastBuildDate>
+			<language>'.get_option('rss_language').'</language>
+			<sy:updatePeriod>'.apply_filters('rss_update_period', 'hourly').'</sy:updatePeriod>
+			<sy:updateFrequency>'.apply_filters('rss_update_frequency', '1').'</sy:updateFrequency>
+			'; do_action('rss2_head');
+		if(!empty($events)) {
+			foreach ($events as $event) {
+				echo '
+			<item>
+				<title>'.esc_attr($this->format_date($event->start_date, $event->end_date).' - '.$event->title).'</title>
+				<pubDate>'.mysql2date('D, d M Y H:i:s +0000', $event->start_date, false).'</pubDate>';
+				// Feed categories
+				$cats = $this->categories->convert_db_string($event->categories, 'name_array');
+				foreach ($cats as $cat) {
+					echo '
+				<category>'.esc_attr($cat).'</category>';
+				}
+				echo '
+				<description>'.esc_attr($this->format_date($event->start_date, $event->end_date).' '.
+						('' != $event->time ? $event->time : '').('' != $event->location ? ' - '.$event->location : '')).'</description>
+				'.('' != $event->details ?
+						'<content:encoded><![CDATA['.esc_attr($this->format_date($event->start_date, $event->end_date).' '.
+						('' != $event->time ? $event->time : '').('' != $event->location ? ' - '.$event->location : '')).
+						$event->details.']]></content:encoded>' : '').'
+			</item>';
+			}
+		}
+		echo '
+		</channel>
+	</rss>';
+	}
+
+	public function eventlist_feed_url() {
+		if(get_option('permalink_structure')) {
+			$feed_link = get_bloginfo('url').'/feed/';
+		}
+		else {
+			$feed_link = get_bloginfo('url').'/?feed=';
+		}
+		return $feed_link.$this->options->get('el_feed_name');
+	}
+
+	public function update_feed_rewrite_status() {
+		$feeds = array_keys((array)get_option('rewrite_rules'), 'index.php?&feed=$matches[1]');
+		$feed_rewrite_status = (0 < count(preg_grep('@[(\|]'.$this->options->get('el_feed_name').'[\|)]@', $feeds))) ? true : false;
+		if('1' == $this->options->get('el_enable_feed') && !$feed_rewrite_status) {
+			// add eventlist feed to rewrite rules
+			flush_rewrite_rules(false);
+		}
+		elseif('1' != $this->options->get('el_enable_feed') && $feed_rewrite_status) {
+			// remove eventlist feed from rewrite rules
+			flush_rewrite_rules(false);
+		}
+	}
+
+	private function format_date($start_date, $end_date) {
+		$startArray = explode("-", $start_date);
+		$start_date = mktime(0,0,0,$startArray[1],$startArray[2],$startArray[0]);
+
+		$endArray = explode("-", $end_date);
+		$end_date = mktime(0,0,0,$endArray[1],$endArray[2],$endArray[0]);
+
+		$event_date = '';
+
+		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;
+			}
+			$event_date .= date("M j, Y", $start_date);
+			return $event_date;
+		}
+
+		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;
+			}
+			$event_date .= date("M j", $start_date) . "-" . date("M j, Y", $end_date);
+			return $event_date;
+
+		}
+
+		$event_date .= date("M j, Y", $start_date) . "-" . date("M j, Y", $end_date);
+		return $event_date;
+	}
+}
+?>
diff --git a/wp-content/plugins/event-list/includes/filterbar.php b/wp-content/plugins/event-list/includes/filterbar.php
new file mode 100644
index 0000000000000000000000000000000000000000..6a11a9461dac98c351b41a2ad576b2be3f754c50
--- /dev/null
+++ b/wp-content/plugins/event-list/includes/filterbar.php
@@ -0,0 +1,316 @@
+<?php
+if(!defined('ABSPATH')) {
+	exit;
+}
+
+require_once( EL_PATH.'includes/db.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;
+
+	public static function &get_instance() {
+		// Create class instance if required
+		if( !isset( self::$instance ) ) {
+			self::$instance = new EL_Filterbar();
+		}
+		// Return class instance
+		return self::$instance;
+	}
+
+	private function __construct() {
+		$this->db = &EL_Db::get_instance();
+		$this->categories = &EL_Categories::get_instance();
+	}
+
+	// main function to show the rendered HTML output
+	public function show($url, &$args) {
+		$this->parse_args($args);
+		$out = '
+				<style type="text/css">
+					.filterbar { display:table; width:100% }
+					.filterbar > div { display:table-cell }
+				</style>
+				<!--[if lte IE 7]>
+				<style>.filterbar > div { float:left }</style>
+				<![endif]-->
+				<div class="filterbar subsubsub">';
+		// prepare filterbar-items
+		//split 3 section (left, center, right) seperated by semicolon
+		$sections = explode(";", html_entity_decode($args['filterbar_items']));
+		$section_align = array('left', 'center', 'right');
+		for($i=0; $i<sizeof($sections) && $i<3; $i++) {
+			if(strlen($sections[$i]) > 0) {
+				$out .= '
+					<div style="text-align:'.$section_align[$i].'">';
+				//split items in section seperated by comma
+				$items = explode(",", $sections[$i]);
+				foreach($items as $item) {
+					//search for item options
+					$options = array();
+					$item_array = explode("(", $item);
+					if(sizeof($item_array) > 1) {
+						// options available
+						$option_array = explode("|", substr($item_array[1],0,-1));
+						foreach($option_array as $option_text) {
+							$o = explode("=", $option_text);
+							$options[$o[0]] = $o[1];
+						}
+					}
+					$item_array = explode("_", $item_array[0]);
+					switch($item_array[0]) {
+						case 'years':
+							$out .= $this->show_years($url, $args, $item_array[1], 'std', $options);
+							break;
+						case 'daterange':
+							$out .= $this->show_daterange($url, $args, $item_array[1], 'std', $options);
+							break;
+						case 'cats':
+							$out .= $this->show_cats($url, $args, $item_array[1], 'std', $options);
+							break;
+						case 'months':
+							$out .= $this->show_months($url, $args, $item_array[1], 'std', $options);
+							break;
+						case 'reset':
+							$out .= $this->show_reset($url, $args, $options);
+					}
+				}
+				$out .= '
+					</div>';
+			}
+		}
+		$out .= '</div>';
+		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',
+		);
+		$options = wp_parse_args($options, $default_options);
+		// prepare displayed elements
+		$elements = array();
+		if('true' == $options['show_all']) {
+			$elements[] = $this->all_element('date', $type);
+		}
+		if('true' == $options['show_upcoming']) {
+			$elements[] = $this->upcoming_element();
+		}
+		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']);
+		foreach($event_years as $entry) {
+			$elements[] = array('slug'=>$entry->data, 'name'=>$entry->data);
+		}
+		// 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']);
+		}
+		else {
+			return $this->show_hlist($elements, $url, 'date'.$args['sc_id_for_url'], $args['actual_date']);
+		}
+	}
+
+	public function show_months($url, &$args, $type='dropdown', $subtype='std', $options=array()) {
+		$default_options = array (
+				'show_all' => 'false',
+				'show_upcoming' => 'false',
+				'show_past' => 'false',
+				'months_order' => 'asc',
+				'date_format' => 'Y-m',
+		);
+		$options = wp_parse_args($options, $default_options);
+		// prepare displayed elements
+		$elements = array();
+		if('true' == $options['show_all']) {
+			$elements[] = $this->all_element('date', $type);
+		}
+		if('true' == $options['show_upcoming']) {
+			$elements[] = $this->upcoming_element();
+		}
+		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']);
+		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)));
+		}
+		// display elements
+		if('hlist' === $type) {
+			return $this->show_hlist($elements, $url, 'date'.$args['sc_id_for_url'], $args['actual_date']);
+		}
+		else {
+			return $this->show_dropdown($elements, 'date'.$args['sc_id_for_url'], $subtype, $args["actual_date"], $args['sc_id_for_url']);
+		}
+	}
+
+	public function show_daterange($url, &$args, $type='hlist', $subtype='std', $options) {
+		// prepare displayed elements
+		if(isset($options['item_order'])) {
+			$items = explode('&', $options['item_order']);
+		}
+		else {
+			$items = array('all', 'upcoming', 'past');
+		}
+		$elements = array();
+		foreach($items as $item) {
+			// show all
+			switch($item) {
+				case 'all':
+					$elements[] = $this->all_element('date');   // Always show short form ... hlist
+					break;
+				case 'upcoming':
+					$elements[] = $this->upcoming_element();
+					break;
+				case 'past':
+					$elements[] = $this->past_element();
+			}
+		}
+		// 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']);
+		}
+		else {
+			return $this->show_hlist($elements, $url, 'date'.$args['sc_id_for_url'], $args['actual_date']);
+		}
+	}
+
+	public function show_cats($url, &$args, $type='dropdown', $subtype='std', $options=array()) {
+		$default_options = array (
+				'show_all' => 'true',
+		);
+		$options = wp_parse_args($options, $default_options);
+		// 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'], '&nbsp;', 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']);
+		}
+		else {
+			return $this->show_dropdown($elements, 'cat'.$args['sc_id_for_url'], $subtype, $args['actual_cat'], $args['sc_id_for_url']);
+		}
+	}
+
+	public function show_reset($url, $args, $options) {
+		$args_to_remove = array('event_id'.$args['sc_id_for_url'],
+		                        'date'.$args['sc_id_for_url'],
+		                        'cat'.$args['sc_id_for_url']);
+		if(!isset($options['caption'])) {
+			$options['caption'] = 'Reset';
+		}
+		return $this->show_link(remove_query_arg($args_to_remove, $url), $options['caption'], 'link');
+	}
+
+	private function show_hlist($elements, $url, $name, $actual=null) {
+		$out = '<ul class="hlist">';
+		foreach($elements as $element) {
+			$out .= '<li>';
+			if($actual == $element['slug']) {
+				$out .= '<strong>'.$element['name'].'</strong>';
+			}
+			else {
+				$out .= $this->show_link(add_query_arg($name, $element['slug'], $url), $element['name']);
+			}
+			$out .= '</li>';
+		}
+		$out .= '</ul>';
+		return $out;
+	}
+
+	private function show_dropdown($elements, $name, $subtype='std', $actual=null, $sc_id='') {
+		$onchange = '';
+		if('admin' != $subtype) {
+			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.')"';
+		}
+		$out = '<select class="dropdown" name="'.$name.'"'.$onchange.'>';
+		foreach($elements as $element) {
+			$out .= '
+					<option';
+			if($element['slug'] == $actual) {
+				$out .= ' selected="selected"';
+			}
+			$out .= ' value="'.$element['slug'].'">'.esc_html($element['name']).'</option>';
+		}
+		$out .= '
+				</select>';
+		return $out;
+	}
+
+	private function show_link($url, $caption, $class=null) {
+		$class = (null === $class) ? '' : ' class="'.$class.'"';
+		return '<a href="'.esc_url($url).'"'.$class.'>'.esc_html($caption).'</a>';
+	}
+
+	private function all_element($list_type='date', $display_type='hlist') {
+		if('hlist' == $display_type) {
+			$name = __('All','event-list');
+		}
+		else {
+			$name = ('date' == $list_type) ? __('Show all dates','event-list') :  __('Show all categories','event-list');
+		}
+		return array('slug' => 'all', 'name' => $name);
+	}
+
+	private function upcoming_element() {
+		return array('slug' => 'upcoming', 'name' => __('Upcoming','event-list'));
+	}
+
+	private function past_element() {
+		return array('slug' => 'past', 'name' => __('Past','event-list'));
+	}
+
+	private function parse_args(&$args) {
+		$defaults = array('date' => null,
+		                  'actual_date' => null,
+		                  'actual_cat' => null,
+		                  'event_id' => null,
+		                  'sc_id_for_url' => '',
+		);
+		$args = wp_parse_args($args, $defaults);
+		if(is_numeric($args['event_id'])) {
+			$args['actual_date'] = null;
+			$args['actual_cat'] = null;
+		};
+	}
+
+	public function footer_script() {
+		wp_print_scripts('el_filterbar');
+	}
+}
+?>
diff --git a/wp-content/plugins/event-list/includes/images/date-separator.png b/wp-content/plugins/event-list/includes/images/date-separator.png
new file mode 100644
index 0000000000000000000000000000000000000000..26455cc243456386ce5ba12bdf7bf98f04825f0a
Binary files /dev/null and b/wp-content/plugins/event-list/includes/images/date-separator.png differ
diff --git a/wp-content/plugins/event-list/includes/js/collapse_details.js b/wp-content/plugins/event-list/includes/js/collapse_details.js
new file mode 100644
index 0000000000000000000000000000000000000000..36dab56a1bef269802980fc8bfe689e8bed3035e
--- /dev/null
+++ b/wp-content/plugins/event-list/includes/js/collapse_details.js
@@ -0,0 +1,13 @@
+function toggle_event_details(event_id) {
+	var details_div = document.getElementById('event-details-'.concat(event_id));
+	var details_button = document.getElementById('event-detail-a'.concat(event_id));
+	if (details_div.style.display == 'block') {
+		details_div.style.display = 'none';
+		details_button.innerHTML = el_show_details_text;
+	}
+	else {
+		details_div.style.display = 'block';
+		details_button.innerHTML = el_hide_details_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
new file mode 100644
index 0000000000000000000000000000000000000000..daa83bb0685acd380fd3d8a568bee38bc5ac672f
--- /dev/null
+++ b/wp-content/plugins/event-list/includes/js/filterbar.js
@@ -0,0 +1,41 @@
+// Javascript functions for event-list admin_main page
+
+// Confirmation for event deletion
+function eventlist_redirect(name, value, sc_id) {
+	window.location.assign(updateUrlParameter(window.location.href, name, value, sc_id));
+}
+
+function updateUrlParameter(url, paramName, paramVal, sc_id) {
+	// extrude anchor
+	var urlArray = url.split("#");
+	var anchor = urlArray[1] ? "#" + urlArray[1] : "";
+	// split base url and parameters
+	urlArray = urlArray[0].split("?");
+	var baseUrl = urlArray[0];
+	var oldParams = urlArray[1] ? urlArray[1] : null;
+	// create new parameter list
+	var newParams = "";
+	var seperator = "?";
+	var paramNameAdded = false;
+	if(null != oldParams) {
+		urlArray = oldParams.split("&");
+		for(i=0; i<urlArray.length; i++) {
+			if(urlArray[i].split("=")[0] == "event_id"+sc_id) {
+				// do nothing
+			}
+			else if(urlArray[i].split("=")[0] == paramName) {
+				newParams += seperator + paramName + "=" + paramVal;
+				paramNameAdded = true;
+			}
+			else {
+				newParams += seperator + urlArray[i];
+			}
+			seperator = "&";
+		}
+	}
+	// add paramName if not already done
+	if(!paramNameAdded) {
+		newParams += seperator + paramName + "=" + paramVal;
+	}
+	return baseUrl + newParams + anchor;
+}
diff --git a/wp-content/plugins/event-list/includes/options.php b/wp-content/plugins/event-list/includes/options.php
new file mode 100644
index 0000000000000000000000000000000000000000..598afe7432997a855d90d6b86048b02fce4c51bf
--- /dev/null
+++ b/wp-content/plugins/event-list/includes/options.php
@@ -0,0 +1,93 @@
+<?php
+if(!defined('WPINC')) {
+	exit;
+}
+
+// This class handles all available options
+class EL_Options {
+
+	private static $instance;
+	public $options;
+
+	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() {
+		add_action('init', array(&$this, 'init_options'), 1);
+		add_action('admin_init', array(&$this, 'register_options'));
+	}
+
+	public function init_options() {
+		$this->options = array(
+			'el_db_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_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_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_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'),
+		);
+	}
+
+	public function load_options_helptexts() {
+		require_once(EL_PATH.'includes/options_helptexts.php');
+		foreach($options_helptexts as $name => $values) {
+			$this->options[$name] += $values;
+		}
+		unset($options_helptexts);
+	}
+
+	public function register_options() {
+		foreach($this->options as $oname => $o) {
+			register_setting('el_'.$o['section'], $oname);
+		}
+	}
+
+	public function set($name, $value) {
+		if(isset($this->options[$name])) {
+			return update_option($name, $value);
+		}
+		else {
+			return false;
+		}
+	}
+
+	public function get($name) {
+		if(isset($this->options[$name])) {
+			return get_option($name, $this->options[$name]['std_val']);
+		}
+		else {
+			return null;
+		}
+	}
+}
+?>
diff --git a/wp-content/plugins/event-list/includes/options_helptexts.php b/wp-content/plugins/event-list/includes/options_helptexts.php
new file mode 100644
index 0000000000000000000000000000000000000000..7adf6cacedf85b7d25de466db988431ce2259031
--- /dev/null
+++ b/wp-content/plugins/event-list/includes/options_helptexts.php
@@ -0,0 +1,140 @@
+<?php
+if(!defined('WPINC')) {
+	exit;
+}
+
+$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',
+	                                   'label'   => __('CSV File to import','event-list'),
+	                                   'maxsize' => 204800,
+	                                   'desc'    => __('Please select the file which contains the event data in CSV format.','event-list')),
+
+	'el_import_date_format'   => array('type'    => 'text',
+	                                   'label'   => __('Used date format','event-list'),
+	                                   'caption' => '',
+	                                   'desc'    => __('With this option the used date format for event start and end date given in the CSV file can be specified.','event-list')),
+
+	// Section: "general"
+	'el_no_event_text'        => array('type'    => 'text',
+	                                   'label'   => __('Text for no events','event-list'),
+	                                   'caption' => '',
+	                                   'desc'    => __('This option defines the displayed text when no events are available for the selected view.','event-list')),
+
+	'el_multiday_filterrange' => array('type'    => 'checkbox',
+	                                   'label'   => __('Multiday filter range','event-list'),
+	                                   'caption' => __('Use the complete event range in the date filter','event-list'),
+	                                   'desc'    => __('This option defines if the complete range of a multiday event shall be considered in the date filter.','event-list').'<br />'.
+	                                                __('If disabled, only the start day of an event is considered in the filter.','event-list').'<br />'.
+	                                                __('For an example multiday event which started yesterday and ends tomorrow this means, that it is displayed in umcoming dates when this option is enabled, but it is hidden when the option is disabled.','event-list')),
+
+	'el_date_once_per_day'    => array('type'    => 'checkbox',
+	                                   'label'   => __('Date display','event-list'),
+	                                   'caption' => __('Show the date only once per day','event-list'),
+	                                   'desc'    => __('With this option enabled the date is only displayed once per day if more than one event is available on the same day.','event-list').'<br />'.
+	                                                __('If enabled, the events are ordered in a different way (end date before start time) to allow using the same date for as much events as possible.','event-list')),
+
+	'el_html_tags_in_time'    => array('type'    => 'checkbox',
+	                                   'label'   => __('HTML tags','event-list'),
+	                                   'caption' => sprintf(__('Allow HTML tags in the event field "%1$s"','event-list'), __('Time','event-list')),
+	                                   'desc'    => sprintf(__('This option specifies if HTML tags are allowed in the event field "%1$s".','event-list'), __('Time','event-list'))),
+
+	'el_html_tags_in_loc'     => array('type'    => 'checkbox',
+	                                   'label'   => '',
+	                                   'caption' => sprintf(__('Allow HTML tags in the event field "%1$s"','event-list'), __('Location','event-list')),
+	                                   'desc'    => sprintf(__('This option specifies if HTML tags are allowed in the event field "%1$s".','event-list'), __('Location','event-list'))),
+
+	'el_mo_lang_dir_first'    => array('type'    => 'checkbox',
+	                                   'label'   => __('Preferred language file','event-list'),
+	                                   'caption' => __('Load translations from general language directory first','event-list'),
+	                                   'desc'    => sprintf(__('The default is to load the %1$s translation file from the plugin language directory first (%2$s).','event-list'), '<code>*.mo</code>', '<code>wp-content/plugins/event-list/languages/</code>').'<br />
+	                                                '.sprintf(__('If you want to load your own language file from the general language directory %1$s for a language which is already included in the plugin language directory, you have to enable this option.','event-list'), '<code>wp-content/languages/plugins/</code>')),
+
+	// 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_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_disable_css_file'     => array('type'    => 'checkbox',
+	                                   'label'   => __('Disable CSS file','event-list'),
+	                                   'caption' => sprintf(__('Disable the %1$s file.','event-list'), '"event-list.css"'),
+	                                   'desc'    => sprintf(__('With this option you can disable the inclusion of the %1$s file.','event-list'), '"event-list.css"').'<br />'.
+	                                                __('This normally only make sense if you have css conflicts with your theme and want to set all required css styles somewhere else (e.g. in the theme css).','event-list')),
+
+	// Section: "admin"
+	'el_edit_dateformat'      => array('type'    => 'text',
+	                                   'label'   => __('Date format in edit form','event-list'),
+	                                   'desc'    => __('This option sets the displayed date format for the event date fields in the event new / edit form.','event-list').'<br />'.
+	                                                __('The default is an empty string to use the Wordpress standard setting.','event-list').'<br />'.
+	                                                sprintf(__('All available options to specify the date format can be found %1$shere%2$s.','event-list'), '<a href="http://php.net/manual/en/function.date.php" target="_blank" rel="noopener">', '</a>')),
+
+	// Section: "feed"
+	'el_enable_feed'          => array('type'    => 'checkbox',
+	                                   'label'   => __('Enable RSS feed','event-list'),
+	                                   'caption' => __('Enable support for an event RSS feed','event-list'),
+	                                   'desc'    => __('This option activates a RSS feed for the events.','event-list').'<br />
+	                                                '.__('You have to enable this option if you want to use one of the RSS feed features.','event-list')),
+
+	'el_feed_name'            => array('type'    => 'text',
+	                                   'label'   => __('Feed name','event-list'),
+	                                   'desc'    => sprintf(__('This option sets the feed name. The default value is %1$s.','event-list'), '"event-list"').'<br />
+	                                                '.sprintf(__('This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks enabled).','event-list'), '<code>domain.com/?feed=event-list</code>', '<code>domain.com/feed/eventlist</code>')),
+
+	'el_feed_description'     => array('type'    => 'text',
+	                                   'label'   => __('Feed Description','event-list'),
+	                                   'desc'    => sprintf(__('This options set the feed description. The default value is %1$s.','event-list'), '"Eventlist Feed"').'<br />
+	                                                '.__('This description will be used in the title for the feed link in the html head and for the description in the feed itself.','event-list')),
+
+	'el_feed_upcoming_only'   => array('type'    => 'checkbox',
+	                                   'label'   => __('Listed events','event-list'),
+	                                   'caption' => __('Only show upcoming events in feed','event-list'),
+	                                   'desc'    => __('If this option is enabled only the upcoming events are listed in the feed.','event-list').'<br />
+	                                                '.__('If disabled all events (upcoming and past) will be listed.','event-list')),
+
+	'el_head_feed_link'       => array('type'    => 'checkbox',
+	                                   'label'   => __('Add RSS feed link in head','event-list'),
+	                                   'caption' => __('Add RSS feed link in the html head','event-list'),
+	                                   'desc'    => __('This option adds a RSS feed in the html head for the events.','event-list').'<br />
+	                                                '.__('There are 2 alternatives to include the RSS feed','event-list').':<br />
+	                                                '.__('The first way is this option to include a link in the html head. This link will be recognized by browers or feed readers.','event-list').'<br />
+	                                                '.sprintf(__('The second way is to include a visible feed link directly in the event list. This can be done by setting the shortcode attribute %1$s to %2$s.','event-list'), '<code>add_feed_link</code>', '"true"').'<br />
+	                                                '.sprintf(__('This option is only valid if the setting %1$s is enabled.','event-list'), '"'.__('Enable RSS feed','event-list').'"')),
+
+	'el_feed_link_pos'        => array('type'    => 'radio',
+	                                   'label'   => __('Position of the RSS feed link','event-list'),
+	                                   'caption' => array('top' => __('at the top (above the navigation bar)','event-list'), 'below_nav' => __('between navigation bar and events','event-list'), 'bottom' => __('at the bottom','event-list')),
+	                                   'desc'    => __('This option specifies the position of the RSS feed link in the event list.','event-list').'<br />
+	                                                '.sprintf(__('You have to set the shortcode attribute %1$s to %2$s if you want to show the feed link.','event-list'), '<code>add_feed_link</code>', '"true"')),
+
+	'el_feed_link_align'      => array('type'    => 'radio',
+	                                   'label'   => __('Align of the RSS feed link','event-list'),
+	                                   'caption' => array('left' => __('left','event-list'), 'center' => __('center','event-list'), 'right' => __('right','event-list')),
+	                                   'desc'    => __('This option specifies the align of the RSS feed link in the event list.','event-list').'<br />
+	                                                '.sprintf(__('You have to set the shortcode attribute %1$s to %2$s if you want to show the feed link.','event-list'), '<code>add_feed_link</code>', '"true"')),
+
+	'el_feed_link_text'       => array('type'    => 'text',
+	                                   'label'   => __('Feed link text','event-list'),
+	                                   'desc'    => __('This option specifies the caption of the RSS feed link in the event list.','event-list').'<br />
+	                                                '.__('Insert an empty text to hide any text if you only want to show the rss image.','event-list').'<br />
+	                                                '.sprintf(__('You have to set the shortcode attribute %1$s to %2$s if you want to show the feed link.','event-list'), '<code>add_feed_link</code>', '"true"')),
+
+	'el_feed_link_img'        => array('type'    => 'checkbox',
+	                                   'label'   => __('Feed link image','event-list'),
+	                                   'caption' => __('Show rss image in feed link','event-list'),
+	                                   'desc'    => __('This option specifies if the an image should be dispayed in the feed link in front of the text.','event-list').'<br />
+	                                                '.sprintf(__('You have to set the shortcode attribute %1$s to %2$s if you want to show the feed link.','event-list'), '<code>add_feed_link</code>', '"true"')),
+);
+?>
diff --git a/wp-content/plugins/event-list/includes/sc_event-list.php b/wp-content/plugins/event-list/includes/sc_event-list.php
new file mode 100644
index 0000000000000000000000000000000000000000..c34ddbef3b95062cb2793c3117787ad11bf37b20
--- /dev/null
+++ b/wp-content/plugins/event-list/includes/sc_event-list.php
@@ -0,0 +1,503 @@
+<?php
+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');
+
+// This class handles the shortcode [event-list]
+class SC_Event_List {
+	private static $instance;
+	private $options;
+	private $db;
+	private $categories;
+	private $atts;
+	private $num_sc_loaded;
+	private $single_event;
+
+	public static function &get_instance() {
+		// Create class instance if required
+		if(!isset(self::$instance)) {
+			self::$instance = new self();
+		}
+		// Return class instance
+		return self::$instance;
+	}
+
+	private function __construct() {
+		$this->options = &EL_Options::get_instance();
+		$this->db = &EL_Db::get_instance();
+		$this->categories = &EL_Categories::get_instance();
+
+		// All available attributes
+		$this->atts = array(
+			'initial_event_id' => array('std_val' => 'all'),
+			'initial_date'     => array('std_val' => 'upcoming'),
+			'initial_cat'      => array('std_val' => 'all'),
+			'initial_order'    => array('std_val' => 'date_asc'),
+			'date_filter'      => array('std_val' => 'all'),
+			'cat_filter'       => array('std_val' => 'all'),
+			'num_events'       => array('std_val' => '0'),
+			'show_filterbar'   => array('std_val' => 'true'),
+			'filterbar_items'  => array('std_val' => 'years_hlist'),
+			'title_length'     => array('std_val' => '0'),
+			'show_starttime'   => array('std_val' => 'true'),
+			'show_location'    => array('std_val' => 'true'),
+			'location_length'  => array('std_val' => '0'),
+			'show_cat'         => array('std_val' => 'false'),
+			'show_details'     => array('std_val' => 'true'),
+			'details_length'   => array('std_val' => '0'),
+			'collapse_details' => 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'
+		);
+		$this->num_sc_loaded = 0;
+		$this->single_event = false;
+	}
+
+	public function load_sc_eventlist_helptexts() {
+		require_once(EL_PATH.'includes/sc_event-list_helptexts.php');
+		foreach($sc_eventlist_helptexts as $name => $values) {
+			$this->atts[$name] = array_merge($this->atts[$name], $values);
+		}
+		unset($sc_eventlist_helptexts);
+	}
+
+	public function get_atts($only_visible=true) {
+		if($only_visible) {
+			$atts = null;
+			foreach($this->atts as $aname => $attr) {
+				if(!isset($attr['hidden']) || true !== $attr['hidden'] ) {
+					$atts[$aname] = $attr;
+				}
+			}
+			return $atts;
+		}
+		else {
+			return $this->atts;
+		}
+	}
+
+	// main function to show the rendered HTML output
+	public function show_html($atts) {
+		// change number of shortcodes
+		$this->num_sc_loaded++;
+		// check shortcode attributes
+		$std_values = array();
+		foreach($this->atts as $aname => $attribute) {
+			$std_values[$aname] = $attribute['std_val'];
+		}
+		$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);
+		if(isset($_GET['event_id'.$a['sc_id']])) {
+			$a['event_id'] = (int)$_GET['event_id'.$a['sc_id']];
+		}
+		elseif('all' != $a['initial_event_id'] && !isset($_GET['date'.$a['sc_id']]) && !isset($_GET['cat'.$a['sc_id']])) {
+			$a['event_id'] = (int)$a['initial_event_id'];
+		}
+		else {
+			$a['event_id'] = null;
+		}
+		// fix sc_id_for_url if required
+		if(!is_numeric($a['sc_id_for_url'])) {
+			$a['sc_id_for_url'] = $a['sc_id'];
+		}
+
+		$out = '
+				<div class="event-list">';
+		if(is_numeric($a['event_id'])) {
+			// show events details if event_id is set
+			$this->single_event = true;
+			$out .= $this->html_event_details($a);
+		}
+		else {
+			// show full event list
+			$this->single_event = false;
+			$out .= $this->html_events($a);
+		}
+		$out .= '
+				</div>';
+		return $out;
+	}
+
+	private function html_event_details(&$a) {
+		$event = $this->db->get_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;
+		$out .= $this->html_event($event, $a, $single_day_only);
+		$out .= '</ul>';
+		return $out;
+	}
+
+	private function html_events(&$a) {
+		// specify to show all events if not upcoming is selected
+		if('upcoming' != $a['actual_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']);
+		$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);
+		}
+		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');
+		}
+		$events = $this->db->get_events($date_filter, $cat_filter, $a['num_events'], $sort_array);
+
+		// generate output
+		$out = '';
+		$out .= $this->html_feed_link($a, 'top');
+		$out .= $this->html_filterbar($a);
+		$out .= $this->html_feed_link($a, 'below_nav');
+		if(empty($events)) {
+			// no events found
+			$out .= '<p>'.$this->options->get('el_no_event_text').'</p>';
+		}
+		else {
+			// print available events
+			$out .= '
+				<ul class="event-list-view">';
+			$single_day_only = $this->is_single_day_only($events);
+			foreach ($events as $event) {
+				$out .= $this->html_event($event, $a, $single_day_only);
+			}
+			$out .= '</ul>';
+		}
+		$out .= $this->html_feed_link($a, 'bottom');
+		return $out;
+	}
+
+	private function html_event( &$event, &$a, $single_day_only=false ) {
+		static $last_event_startdate=null, $last_event_enddate=null;
+		$cat_string = $this->categories->convert_db_string($event->categories, 'slug_string', ' ');
+		// 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 );
+		}
+		$out .= '
+					<div class="event-info';
+		if( $single_day_only ) {
+			$out .= ' single-day';
+		}
+		else {
+			$out .= ' multi-day';
+		}
+		$out .= '">';
+		// event title
+		$out .= '<div class="event-title"><h3>';
+		$title = $this->db->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);
+		}
+		else {
+			$out .= $title;
+		}
+		$out .= '</h3></div>';
+		// event time
+		if('' != $event->time && $this->is_visible($a['show_starttime'])) {
+			// set time format if a known format is available, else only show the text
+			$date_array = date_parse($event->time);
+			$time = $event->time;
+			if(empty($date_array['errors']) && is_numeric($date_array['hour']) && is_numeric($date_array['minute'])) {
+				$time = mysql2date(get_option('time_format'), $event->time);
+			}
+			if('' == $this->options->get('el_html_tags_in_time')) {
+				$time = esc_attr($time);
+			}
+			$out .= '<span class="event-time">'.$time.'</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);
+			}
+			else {
+				$location = $this->db->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>';
+		}
+		// event details
+		if( $this->is_visible( $a['show_details'] ) ) {
+			$out .= $this->get_details($event, $a);
+		}
+		$out .= '</div>
+				</li>';
+		$last_event_startdate = $event->start_date;
+		$last_event_enddate = $event->end_date;
+		return $out;
+	}
+
+	private function html_fulldate( $start_date, $end_date, $single_day_only=false ) {
+		$out = '
+					';
+		if( $start_date === $end_date ) {
+			// one day event
+			$out .= '<div class="event-date">';
+			if( $single_day_only ) {
+				$out .= '<div class="start-date">';
+			}
+			else {
+				$out .= '<div class="end-date">';
+			}
+			$out .= $this->html_date( $start_date );
+			$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>';
+			$out .= '<div class="end-date">';
+			$out .= $this->html_date( $end_date );
+			$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>';
+		return $out;
+	}
+
+	private function html_filterbar(&$a) {
+		if(!$this->is_visible($a['show_filterbar'])) {
+			return '';
+		}
+		require_once( EL_PATH.'includes/filterbar.php');
+		$filterbar = EL_Filterbar::get_instance();
+		return $filterbar->show($this->get_url($a), $a);
+	}
+
+	private function html_feed_link(&$a, $pos) {
+		$out = '';
+		if($this->options->get('el_enable_feed') && 'true' === $a['add_feed_link'] && $pos === $this->options->get('el_feed_link_pos')) {
+			// prepare url
+			require_once( EL_PATH.'includes/feed.php' );
+			$feed_link = EL_Feed::get_instance()->eventlist_feed_url();
+			// prepare align
+			$align = $this->options->get('el_feed_link_align');
+			if('left' !== $align && 'center' !== $align && 'right' !== $align) {
+				$align = 'left';
+			}
+			// prepare image
+			$image = '';
+			if('' !== $this->options->get('el_feed_link_img')) {
+				$image = '<img src="'.includes_url('images/rss.png').'" alt="rss" />';
+			}
+			// prepare text
+			$text = $image.esc_attr($this->options->get('el_feed_link_text'));
+			// create html
+			$out .= '<div class="feed" style="text-align:'.$align.'">
+						<a href="'.$feed_link.'">'.$text.'</a>
+					</div>';
+		}
+		return $out;
+	}
+
+	private function get_actual_date(&$a) {
+		if(isset($_GET['event_id'.$a['sc_id']])) {
+			return null;
+		}
+		elseif(isset($_GET['date'.$a['sc_id']])) {
+			return $_GET['date'.$a['sc_id']];
+		}
+		return $a['initial_date'];
+	}
+
+	private function get_actual_cat(&$a) {
+		if(isset($_GET['event_id'.$a['sc_id']])) {
+			return null;
+		}
+		elseif(isset($_GET['cat'.$a['sc_id']])) {
+			return $_GET['cat'.$a['sc_id']];
+		}
+		return $a['initial_cat'];
+	}
+
+	private function get_date_filter($date_filter, $actual_date) {
+		if('all' == $date_filter || '' == $date_filter) {
+			if('all' == $actual_date || '' == $actual_date) {
+				return null;
+			}
+			else {
+				return $actual_date;
+			}
+		}
+		else {
+			// Convert html entities to correct characters, e.g. &amp; to &
+			$date_filter = html_entity_decode($date_filter);
+			if('all' == $actual_date || '' == $actual_date) {
+				return $date_filter;
+			}
+			else {
+				return '('.$date_filter.')&('.$actual_date.')';
+			}
+		}
+	}
+
+	private function get_cat_filter($cat_filter, $actual_cat) {
+		if('all' == $cat_filter || '' == $cat_filter) {
+			if('all' == $actual_cat || '' == $actual_cat) {
+				return null;
+			}
+			else {
+				return $actual_cat;
+			}
+		}
+		else {
+			// Convert html entities to correct characters, e.g. &amp; to &
+			$cat_filter = html_entity_decode($cat_filter);
+			if('all' == $actual_cat || '' == $actual_cat) {
+				return $cat_filter;
+			}
+			else {
+				return '('.$cat_filter.')&('.$actual_cat.')';
+			}
+		}
+	}
+
+	private function get_details(&$event, &$a) {
+		// check if details are available
+		if('' == $event->details) {
+			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->details) || 0 < $a['details_length'] || $this->single_event) {
+				//details with removed more-tag
+				$details = $part[0].$part[1];
+			}
+			else {
+				//set more-link text
+				if(!empty($matches[1])) {
+					$more_link_text = strip_tags(wp_kses_no_null(trim($matches[1])));
+				}
+				else {
+					$more_link_text = __('(more&hellip;)');
+				}
+				//details with more-link
+				$details = apply_filters('the_content_more_link', $part[0].$this->get_event_link($a, $event->id, $more_link_text));
+			}
+		}
+		else {
+			//normal details
+			$details = $event->details;
+			if($this->is_link_available($a, $event)) {
+				$truncate_url = $this->get_event_url($a, $event->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>';
+		}
+		// return without collapsing
+		return '<div class="event-details">'.$details.'</div>';
+	}
+
+	private function get_event_link(&$a, $event_id, $title) {
+		return '<a href="'.$this->get_event_url($a, $event_id).'">'.$title.'</a>';
+	}
+
+	private function get_event_url(&$a, $event_id) {
+		return esc_html(add_query_arg('event_id'.$a['sc_id_for_url'], $event_id, $this->get_url($a)));
+	}
+
+	private function get_url(&$a) {
+		if('' !== $a['url_to_page']) {
+			// use given url
+			$url = $a['url_to_page'];
+		}
+		else {
+			// use actual page
+			$url = get_permalink();
+			foreach($_GET as  $k => $v) {
+				if('date'.$a['sc_id'] !== $k && 'event_id'.$a['sc_id'] !== $k) {
+					$url = add_query_arg($k, $v, $url);
+				}
+			}
+		}
+		return $url;
+	}
+
+	private function is_single_day_only( &$events ) {
+		foreach( $events as $event ) {
+			if( $event->start_date !== $event->end_date ) {
+				return false;
+			}
+		}
+		return true;
+	}
+
+	private function is_visible($attribute_value) {
+		switch ($attribute_value) {
+			case 'true':
+			case '1': // = 'true'
+				return true;
+			case 'event_list_only':
+				if($this->single_event) {
+					return false;
+				}
+				else {
+					return true;
+				}
+			case 'single_event_only':
+				if($this->single_event) {
+					return true;
+				}
+				else {
+					return false;
+				}
+			default: // 'false' or 0 or nothing handled by this function
+				return false;
+		}
+	}
+
+	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 && '' != $event->details);
+	}
+
+	public function print_collapse_details_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>');
+		// print script
+		wp_print_scripts('el_collapse_details');
+	}
+}
+?>
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
new file mode 100644
index 0000000000000000000000000000000000000000..3b233c6fa5bb2143040ff2aa8e7e8ea385f2481e
--- /dev/null
+++ b/wp-content/plugins/event-list/includes/sc_event-list_helptexts.php
@@ -0,0 +1,140 @@
+<?php
+if(!defined('WPINC')) {
+	exit;
+}
+
+$sc_eventlist_helptexts = array(
+	'initial_event_id' => array('val'    => 'all<br />'.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"')),
+
+	'initial_date'     => array('val'    => 'all<br />upcoming<br />past<br />'.strtoupper(__('year','event-list')),
+	                            'desc'   => __('This attribute defines which events are initially shown. The default is to show the upcoming events only.','event-list').'<br />'.
+	                                        sprintf(__('Provide a year (e.g. %1$s) to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters.','event-list'), '"2017"')),
+
+	'initial_cat'      => array('val'    => 'all<br />'.strtoupper(__('category slug','event-list')),
+	                            'desc'   => __('This attribute defines the category of which events are initially shown. The default is to show events of all categories.','event-list').'<br />'.
+	                                        __('Provide a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters.','event-list')),
+
+	'initial_order'    => array('val'    => 'date_asc<br />date_desc',
+	                            'desc'   => __('This attribute defines the initial order of the events.','event-list').'<br />'.
+	                                        sprintf(__('With %1$S (default value) the events are sorted from old to new, with %2$s in the opposite direction (from new to old).','event-list'), '"date_asc"', '"date_desc"')),
+
+	'date_filter'      => array('val'    => 'all<br />upcoming<br />past<br />'.strtoupper(__('year','event-list')),
+	                            'desc'   => sprintf(__('This attribute defines the dates and date ranges of which events are displayed. The default is %1$s to show all events.','event-list'), '"all"').'<br />'.
+	                                        sprintf(__('Filtered events according to %1$s value are not available in the event list.','event-list'), 'date_filter').'<br />'.
+	                                        sprintf(__('You can find all available values with a description and examples in the sections %1$s and %2$s below.','event-list'), '"'.__('Available Date Formats','event-list').'"', '"'.__('Available Date Range Formats','event-list').'"').'<br />'.
+	                                        sprintf(__('See %1$s description if you want to define complex filters.','event-list'), '"'.__('Filter Syntax','event-list').'"')),
+
+	'cat_filter'       => array('val'    => 'all<br />'.strtoupper(__('category slugs','event-list')),
+	                            'desc'   => sprintf(__('This attribute defines the category filter which filters the events to show. The default is $1$s or an empty string to show all events.','event-list'), '"all"').'<br />'.
+	                                        sprintf(__('Events with categories that doesn´t match %1$s are not shown in the event list. They are also not available if a manual url parameter is added.','event-list'), 'cat_filter').'<br />'.
+	                                        sprintf(__('The filter is specified via the given category slugs. See %1$s description if you want to define complex filters.','event-list'), '"'.__('Filter Syntax','event-list').'"')),
+
+	'num_events'       => array('val'    => strtoupper(__('number','event-list')),
+	                            'desc'   => sprintf(__('This attribute defines how many events should be displayed if upcoming events is selected. With the default value %1$s all events will be displayed.','event-list'), '"0"').'<br />'.
+	                                        __('Please not that in the actual version there is no pagination of the events available, so the event list can be very long.','event-list')),
+
+	'show_filterbar'   => array('val'    => 'false<br />true<br />event_list_only<br />single_event_only',
+	                            'desc'   => __('This attribute defines if the filterbar should be displayed. The filterbar allows the users to specify filters for the listed events.','event-list').'<br />'.
+	                                        sprintf(__('Choose %1$s to always hide and %2$s to always show the filterbar.','event-list'), '"false"', '"true"').'<br />'.
+	                                        sprintf(__('With %1$s the filterbar is only visible in the event list and with %2$s only in the single event view.','event-list'), '"event_list_only"', '"single_event_only"')),
+
+	'filterbar_items'  => array('val'    => 'years_hlist<br />years_dropdown<br />months_hlist<br />months_dropdown<br />daterange_hlist<br />daterange_dropdown<br />cats_hlist<br />cats_dropdown<br />reset_link',
+	                            'desc'   => 'This attribute specifies the available items in the filterbar. This options are only valid if the filterbar is displayed (see show_filterbar attribute).<br /><br />
+	                                         Find below an overview of the available filterbar items and their options:<br />
+	                                         <small><table class="el-filterbar-table">
+	                                             <tr><th class="el-filterbar-item">filterbar item</th><th class="el-filterbar-desc">description</th><th class="el-filterbar-options">item options</th><th class="el-filterbar-values">option values</th><th class="el-filterbar-default">default value</th><th class="el-filterbar-desc2">option description</th></tr>
+	                                             <tr><td rowspan="4">years</td><td rowspan="4">Show a list of all available years. Additional there are some special entries available (see item options).</td>
+	                                                     <td>show_all</td><td>true | false</td><td>true</td><td>Add an entry to show all events.</td></tr>
+	                                                 <tr><td>show_upcoming</td><td>true | false</td><td>true</td><td>Add an entry to show all upcoming events.</td></tr>
+	                                                 <tr><td>show_past</td><td>true | false</td><td>false</td><td>Add an entry to show events in the past.</td></tr>
+	                                                 <tr><td>years_order</td><td>desc | asc</td><td>desc</td><td>Set descending or ascending order of year entries.</td></tr>
+	                                             <tr><td rowspan="5">months</td><td rowspan="5">Show a list of all available months.</td>
+	                                                     <td>show_all</td><td>true | false</td><td>false</td><td>Add an entry to show all events.</td></tr>
+	                                                 <tr><td>show_upcoming</td><td>true | false</td><td>false</td><td>Add an entry to show all upcoming events.</td></tr>
+	                                                 <tr><td>show_past</td><td>true | false</td><td>false</td><td>Add an entry to show events in the past.</td></tr>
+	                                                 <tr><td>months_order</td><td>desc | asc</td><td>desc</td><td>Set descending or ascending order of month entries.</td></tr>
+	                                                 <tr><td>date_format</td><td><a href="http://php.net/manual/en/function.date.php">php date-formats</a></td><td>Y-m</td><td>Set the displayed date format of the month entries.</td></tr>
+	                                             <tr><td>daterange</td><td>With this item you can display the special entries "all", "upcoming" and "past". You can use all or only some of the available values and you can specify their order.</td><td>item_order</td><td>all | upcoming | past</td><td>all&amp;upcoming&amp;past</td><td>Specifies the displayed values and their order. The items must be seperated by "&amp;".</td></tr>
+	                                             <tr><td>cats</td><td>Show a list of all available categories.</td><td>show_all</td><td>true | false</td><td>true</td><td>Add an entry to show events from all categories.</td></tr>
+	                                             <tr><td>reset</td><td>Only a link to reset the eventlist filter to standard.</td><td>caption</td><td>any text</td><td>Reset</td><td>Set the caption of the link.</td></tr>
+	                                         </table></small>
+	                                         Find below an overview of the available filterbar display options:<br />
+	                                         <small><table class="el-filterbar-table">
+	                                            <tr><th class="el-filterbar-doption">display option</th><th class="el-filterbar-desc3">description</th><th class="el-filterbar-for">available for</th></tr>
+	                                            <tr><td>hlist</td><td>"hlist" shows a horizonal list seperated by "|" with a link to each item</td><td>years, months, daterange, cats</td></tr>
+	                                            <tr><td>dropdown</td><td>"dropdown" shows a select box where an item can be choosen. After the selection of an item the page is reloaded via javascript to show the filtered events.</td><td>years, months, daterange, cats</td></tr>
+	                                            <tr><td>link</td><td>"link" shows a simple link which can be clicked.</td><td>reset</td></tr>
+	                                         </table></small>
+	                                         <p>Find below some declaration examples with descriptions:</p>
+	                                         <code>years_hlist,cats_dropdown</code><br />
+	                                         In this example you can see that the filterbar item and the used display option is seperated by "_". You can define several filterbar items seperated by comma (","). The items will be aligned on the left side.
+	                                         <p><code>years_dropdown(show_all=false|show_past=true),cats_dropdown;;reset_link</code><br />
+	                                         In this example you can see that filterbar options can be added in brackets in format "option_name=value". You can also add multiple options seperated by a pipe ("|").<br />
+	                                         The 2 semicolon (";") 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.</p>'),
+
+	'title_length'     => array('val'    => __('number','event-list').'<br />auto',
+	                            'desc'   => __('This attribute specifies if the title should be truncated to the given number of characters in the event list.','event-list').'<br />'.
+	                                        sprintf(__('With the standard value %1$s the full text is displayed, with %2$s the text is automatically truncated via css.','event-list'), '[0]', '[auto]').'<br />'.
+	                                        __('This attribute has no influence if only a single event is shown.','event-list')),
+
+	'show_starttime'   => array('val'    => 'false<br />true<br />event_list_only<br />single_event_only',
+	                            'desc'   => __('This attribute specifies if the starttime is displayed in the event list.<br />
+	                                            Choose "false" to always hide and "true" to always show the starttime.<br />
+	                                            With "event_list_only" the starttime is only visible in the event list and with "single_event_only" only for a single event','event-list')),
+
+	'show_location'    => array('val'    => 'false<br />true<br />event_list_only<br />single_event_only',
+	                            'desc'   => __('This attribute specifies if the location is displayed in the event list.<br />
+	                                            Choose "false" to always hide and "true" to always show the location.<br />
+	                                            With "event_list_only" the location is only visible in the event list and with "single_event_only" only for a single event','event-list')),
+
+	'location_length'  => array('val'    => __('number','event-list').'<br />auto',
+	                            'desc'   => __('This attribute specifies if the title should be truncated to the given number of characters in the event list.','event-list').'<br />'.
+	                                        sprintf(__('With the standard value %1$s the full text is displayed, with %2$s the text is automatically truncated via css.','event-list'), '[0]', '[auto]').'<br />'.
+	                                        __('This attribute has no influence if only a single event is shown.','event-list')),
+
+	'show_cat'         => array('val'    => 'false<br />true<br />event_list_only<br />single_event_only',
+	                            'desc'   => __('This attribute specifies if the categories are displayed in the event list.<br />
+	                                            Choose "false" to always hide and "true" to always show the category.<br />
+	                                            With "event_list_only" the categories are only visible in the event list and with "single_event_only" only for a single event','event-list')),
+
+	'show_details'     => array('val'    => 'false<br />true<br />event_list_only<br />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')),
+
+	'details_length'   => array('val'    => __('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 />'.
+	                                        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'    => 'false',
+	                            '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')),
+
+	'link_to_event'    => array('val'    => 'false<br />true<br />event_list_only<br />single_event_only<br />events_with_details_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')),
+
+	'add_feed_link'    => array('val'    => 'false<br />true<br />event_list_only<br />single_event_only',
+	                            'desc'   => __('This attribute specifies if a rss feed link should be added.<br />
+	                                            You have to enable the feed in the eventlist settings to make this attribute workable.<br />
+	                                            On that page you can also find some settings to modify the output.<br />
+	                                            Choose "false" to never add and "true" to always add the link.<br />
+	                                            With "event_list_only" the link is only added in the event list and with "single_event_only" only for a single event','event-list')),
+	'url_to_page'      => array('val'    => 'url',
+	                            'desc'   => __('This attribute specifies the page or post url for event links.<br />
+	                                            The standard is an empty string. Then the url will be calculated automatically.<br />
+	                                            An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget.','event-list')),
+
+	// Invisible attributes ('hidden' = true): This attributes are required for the widget but will not be listed in the attributes table on the admin info page
+	'sc_id_for_url'    => array('val'    => 'number',
+	                            'hidden' => true,
+	                            'desc'   => __('This attribute the specifies shortcode id of the used shortcode on the page specified with "url_to_page" attribute.<br />
+	                                            The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget.','event-list')),
+);
+?>
diff --git a/wp-content/plugins/event-list/includes/widget.php b/wp-content/plugins/event-list/includes/widget.php
new file mode 100644
index 0000000000000000000000000000000000000000..359abe66cd53e131c5607916c07a29f1896e157d
--- /dev/null
+++ b/wp-content/plugins/event-list/includes/widget.php
@@ -0,0 +1,185 @@
+<?php
+if(!defined('ABSPATH')) {
+	exit;
+}
+
+/**
+ * Event List Widget
+*/
+class EL_Widget extends WP_Widget {
+
+	private $items;
+
+	/**
+	 * Register widget with WordPress.
+	 */
+	public function __construct() {
+		parent::__construct(
+				'event_list_widget', // Base ID
+				'Event List', // Name
+				array('description' => __('With this widget a list of upcoming events can be displayed.','event-list')) // Args
+		);
+
+		// define all available items
+		$this->items = array(
+			'title'                => array('std_value' => __('Upcoming events','event-list').':'),
+			'cat_filter'           => array('std_value' => 'all'),
+			'num_events'           => array('std_value' => '3'),
+			'title_length'         => array('std_value' => '0'),
+			'show_starttime'       => array('std_value' => 'true'),
+			'show_location'        => array('std_value' => 'false'),
+			'location_length'      => array('std_value' => '0'),
+			'show_details'         => array('std_value' => 'false'),
+			'details_length'       => array('std_value' => '0'),
+			'url_to_page'          => array('std_value' => ''),
+			'sc_id_for_url'        => array('std_value' => '1'),
+			'link_to_event'        => array('std_value' => 'false'),
+			'link_to_page'         => array('std_value' => 'false'),
+			'link_to_page_caption' => array('std_value' => __('show events page','event-list')),
+		);
+
+		add_action('admin_init', array(&$this, 'load_widget_items_helptexts'), 2);
+	}
+
+	public function load_widget_items_helptexts() {
+		require_once(EL_PATH.'includes/widget_helptexts.php');
+		foreach($widget_items_helptexts as $name => $values) {
+			$this->items[$name] += $values;
+		}
+		unset($widget_items_helptexts);
+	}
+
+	/**
+	 * Front-end display of widget.
+	 *
+	 * @see WP_Widget::widget()
+	 *
+	 * @param array $args     Widget arguments.
+	 * @param array $instance Saved values from database.
+	 */
+	public function widget($args, $instance) {
+		$this->prepare_instance($instance);
+		$title = apply_filters('widget_title', $instance['title']);
+		echo $args['before_widget'];
+		if(!empty($title))
+		{
+			echo $args['before_title'].$title.$args['after_title'];
+		}
+		$this->upgrade_widget($instance, true);
+		$linked_page_is_set = 0 < strlen($instance['url_to_page']);
+		$linked_page_id_is_set = 0 < (int)$instance['sc_id_for_url'];
+		$shortcode = '[event-list show_filterbar=false';
+		$shortcode .= ' cat_filter='.$instance['cat_filter'];
+		$shortcode .= ' num_events="'.$instance['num_events'].'"';
+		$shortcode .= ' title_length='.$instance['title_length'];
+		$shortcode .= ' show_starttime='.$instance['show_starttime'];
+		$shortcode .= ' show_location='.$instance['show_location'];
+		$shortcode .= ' location_length='.$instance['location_length'];
+		$shortcode .= ' show_details='.$instance['show_details'];
+		$shortcode .= ' details_length='.$instance['details_length'];
+		if($linked_page_is_set && $linked_page_id_is_set) {
+			$shortcode .= ' link_to_event='.$instance['link_to_event'];
+			$shortcode .= ' url_to_page="'.$instance['url_to_page'].'"';
+			$shortcode .= ' sc_id_for_url='.$instance['sc_id_for_url'];
+		}
+		else {
+			$shortcode .= ' link_to_event=false';
+		}
+		$shortcode .= ']';
+		echo do_shortcode($shortcode);
+		if('true' === $instance['link_to_page'] && $linked_page_is_set) {
+			echo '<div style="clear:both"><a title="'.$instance['link_to_page_caption'].'" href="'.$instance[ 'url_to_page'].'">'.$instance['link_to_page_caption'].'</a></div>';
+		}
+		echo $args['after_widget'];
+	}
+
+	/**
+	 * Sanitize widget form values as they are saved.
+	 *
+	 * @see WP_Widget::update()
+	 *
+	 * @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.
+	 */
+	public function update($new_instance, $old_instance) {
+		$instance = array();
+		foreach($this->items as $itemname => $item) {
+			if('checkbox' === $item['type']) {
+				$instance[$itemname] = (isset($new_instance[$itemname]) && 1==$new_instance[$itemname]) ? 'true' : 'false';
+			}
+			else { // 'text'
+				$instance[$itemname] = strip_tags($new_instance[$itemname]);
+			}
+		}
+		return $instance;
+	}
+
+	/**
+	 * Back-end widget form.
+	 *
+	 * @see WP_Widget::form()
+	 *
+	 * @param array $instance Previously saved values from database.
+	 */
+	public function form($instance) {
+		$this->upgrade_widget($instance);
+		$out = '';
+		foreach($this->items as $itemname => $item) {
+			if(! isset($instance[$itemname])) {
+				$instance[$itemname] = $item['std_value'];
+			}
+			$style_text = (null===$item['form_style']) ? '' : ' style="'.$item['form_style'].'"';
+			if('checkbox' === $item['type']) {
+				$checked_text = ('true'===$instance[$itemname] || 1==$instance[$itemname]) ? 'checked = "checked" ' : '';
+				$out .= '
+					<p'.$style_text.' title="'.$item['tooltip'].'">
+						<label><input class="widefat" id="'.$this->get_field_id($itemname).'" name="'.$this->get_field_name($itemname).'" type="checkbox" '.$checked_text.'value="1" /> '.$item['caption'].'</label>
+					</p>';
+			}
+			else { // 'text'
+				$width_text = (null === $item['form_width']) ? '' : 'style="width:'.$item['form_width'].'px" ';
+				$caption_after_text = (null === $item['caption_after']) ? '' : '<label>'.$item['caption_after'].'</label>';
+				$out .= '
+					<p'.$style_text.' title="'.$item['tooltip'].'">
+						<label for="'.$this->get_field_id($itemname).'">'.$item['caption'].' </label>
+						<input '.$width_text.'class="widefat" id="'.$this->get_field_id($itemname).'" name="'.$this->get_field_name($itemname).'" type="text" value="'.esc_attr($instance[$itemname]).'" />'.$caption_after_text.'
+					</p>';
+			}
+		}
+		echo $out;
+	}
+
+	/**
+	 * 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.
+	 *
+	 * @param array &$instance Previously saved values from database.
+	 */
+	private function prepare_instance(&$instance) {
+		foreach($this->items as $itemname => $item) {
+			if(!isset($instance[$itemname])) {
+				$instance[$itemname] = $item['std_value'];
+			}
+		}
+	}
+
+	private function upgrade_widget(&$instance, $on_frontpage=false) {
+		// required change of cat_filter in version 0.6.0 (can be removed in 0.7.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);
+			}
+		}
+	}
+}
+?>
diff --git a/wp-content/plugins/event-list/includes/widget_helptexts.php b/wp-content/plugins/event-list/includes/widget_helptexts.php
new file mode 100644
index 0000000000000000000000000000000000000000..83a6e154b61f47be4a145dbc16c39f2370f44398
--- /dev/null
+++ b/wp-content/plugins/event-list/includes/widget_helptexts.php
@@ -0,0 +1,108 @@
+<?php
+if(!defined('WPINC')) {
+	exit;
+}
+
+$widget_items_helptexts = array(
+	'title' =>                array('type'          => 'text',
+	                                'caption'       => __('Title','event-list'),
+	                                'caption_after' => null,
+	                                'tooltip'       => __('This option defines the displayed title for the widget.','event-list'),
+	                                'form_style'    => null,
+	                                'form_width'    => null),
+
+	'cat_filter' =>           array('type'          => 'text',
+	                                'caption'       => __('Category Filter','event-list').':',
+	                                'caption_after' => null,
+	                                'tooltip'       => __('This option defines the categories of which events are shown. The standard is all or an empty string to show all events. Specify a category slug or a list of category slugs to only show events of the specified categories. See description of the shortcode attribute cat_filter for detailed info about all possibilities.','event-list'),
+	                                'form_style'    => 'margin:0 0 0.8em 0',
+	                                'form_width'    => null),
+
+	'num_events' =>           array('type'          => 'text',
+	                                'caption'       => __('Number of listed events','event-list').':',
+	                                'caption_after' => null,
+	                                'tooltip'       => __('The number of upcoming events to display','event-list'),
+	                                'form_style'    => '',
+	                                'form_width'    => 30),
+
+	'title_length' =>         array('type'          => 'text',
+	                                'caption'       => __('Truncate event title to','event-list'),
+	                                'caption_after' => __('characters','event-list'),
+	                                'tooltip'       => __('This option defines the number of displayed characters for the event title.','event-list').' '.
+	                                                   sprintf(__('Set this value to %1$s to view the full text, or set it to %2$s to automatically truncate the text via css.','event-list'), '[0]', '[auto]'),
+	                                'form_style'    => null,
+	                                'form_width'    => 40),
+
+	'show_starttime' =>       array('type'          => 'checkbox',
+	                                'caption'       => __('Show event starttime','event-list'),
+	                                'caption_after' => null,
+	                                'tooltip'       => __('This option defines if the event start time will be displayed.','event-list'),
+	                                'form_style'    => null,
+	                                'form_width'    => null),
+
+	'show_location' =>        array('type'          => 'checkbox',
+	                                'caption'       => __('Show event location','event-list'),
+	                                'caption_after' => null,
+	                                'tooltip'       => __('This option defines if the event location will be displayed.','event-list'),
+	                                'form_style'    => 'margin:0 0 0.2em 0',
+	                                'form_width'    => null),
+
+	'location_length' =>      array('type'          => 'text',
+	                                'caption'       => __('Truncate location to','event-list'),
+	                                'caption_after' => __('characters','event-list'),
+	                                'tooltip'       => __('If the event location is diplayed this option defines the number of displayed characters.','event-list').' '.
+	                                                   sprintf(__('Set this value to %1$s to view the full text, or set it to %2$s to automatically truncate the text via css.','event-list'), '[0]', '[auto]'),
+	                                'form_style'    => 'margin:0 0 0.6em 0.9em',
+	                                'form_width'    => 40),
+
+	'show_details' =>         array('type'          => 'checkbox',
+	                                'caption'       => __('Show event details','event-list'),
+	                                'caption_after' => null,
+	                                'tooltip'       => __('This option defines if the event details 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'),
+	                                'caption_after' => __('characters','event-list'),
+	                                'tooltip'       => __('If the event details are diplayed this option defines the number of diplayed characters.','event-list').' '.
+	                                                   sprintf(__('Set this value to %1$s to view the full text.','event-list'), '[0]'),
+	                                'form_style'    => 'margin:0 0 0.6em 0.9em',
+	                                'form_width'    => 40),
+
+	'url_to_page' =>          array('type'          => 'text',
+	                                'caption'       => __('URL to the linked Event List page','event-list').':',
+	                                'caption_after' => null,
+	                                'tooltip'       => __('This option defines the url to the linked Event List page. This option is required if you want to use one of the options below.','event-list'),
+	                                'form_style'    => 'margin:0 0 0.4em 0',
+	                                'form_width'    => null),
+
+	'sc_id_for_url' =>        array('type'          => 'text',
+	                                'caption'       => __('Shortcode ID on linked page','event-list').':',
+	                                'caption_after' => null,
+	                                'tooltip'       => __('This option defines the shortcode-id for the Event List on the linked page. Normally the standard value 1 is correct, you only have to change it if you use multiple event-list shortcodes on the linked page.','event-list'),
+	                                'form_style'    => null,
+	                                'form_width'    => 35),
+
+	'link_to_event' =>        array('type'          => 'checkbox',
+	                                'caption'       => __('Add links to the single events','event-list'),
+	                                'caption_after' => null,
+	                                'tooltip'       => __('With this option you can add a link to the single event page for every displayed event. You have to specify the url to the page and the shortcode id option if you want to use it.','event-list'),
+	                                'form_style'    => 'margin-left:0.8em',
+	                                'form_width'    => null),
+
+	'link_to_page' =>         array('type'          => 'checkbox',
+	                                'caption'       => __('Add a link to the Event List page','event-list'),
+	                                'caption_after' => null,
+	                                'tooltip'       => __('With this option you can add a link to the event-list page below the diplayed events. You have to specify the url to page option if you want to use it.','event-list'),
+	                                'form_style'    => 'margin:0 0 0.2em 0.8em',
+	                                'form_width'    => null),
+
+	'link_to_page_caption' => array('type'          => 'text',
+	                                'caption'       => __('Caption for the link','event-list').':',
+	                                'caption_after' => null,
+	                                'tooltip'       => __('This option defines the text for the link to the Event List page if the approriate option is selected.','event-list'),
+	                                'form_style'    => 'margin:0 0 1em 2.5em',
+	                                'form_width'    => null),
+);
+?>
diff --git a/wp-content/plugins/event-list/languages/event-list-de_DE.mo b/wp-content/plugins/event-list/languages/event-list-de_DE.mo
new file mode 100644
index 0000000000000000000000000000000000000000..8688de96e02d40d97472c79e022c6687c0fb0294
Binary files /dev/null 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
new file mode 100644
index 0000000000000000000000000000000000000000..46fe62be3c7618e6870c783dc0cedc3659e7491b
--- /dev/null
+++ b/wp-content/plugins/event-list/languages/event-list-de_DE.po
@@ -0,0 +1,1599 @@
+# Translation file for the 'Event List' WordPress plugin
+# Copyright (C) 2017 by mibuthu
+# This file is distributed under the same license as the corresponding wordpress plugin.
+# 
+# Translators:
+# K W, 2017
+# Lasse Schulz <lasse.schulz@netthelp.de>, 2016
+# li rak <romankost@gmx.ch>, 2017
+# Marco Schwarzenbach <sp1n@gmx.ch>, 2016
+# mibuthu, 2015,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-03-17 17:25+0100\n"
+"PO-Revision-Date: 2017-03-17 16:25+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"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: de_DE\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: admin/admin.php:45
+msgid "Event List"
+msgstr "Event List"
+
+#: admin/admin.php:48 admin/admin.php:80 admin/includes/admin-main.php:117
+#: admin/includes/category_table.php:110
+msgid "Events"
+msgstr "Termine"
+
+#: admin/admin.php:48
+msgid "All Events"
+msgstr "Alle Termine"
+
+#: admin/admin.php:52 admin/includes/admin-new.php:41
+msgid "Add New Event"
+msgstr "Neuen Termin erstellen"
+
+#: admin/admin.php:52 admin/includes/admin-main.php:119
+msgid "Add New"
+msgstr "Erstellen"
+
+#: admin/admin.php:56 admin/includes/admin-categories.php:50
+msgid "Event List Categories"
+msgstr "Event List Kategorien"
+
+#: admin/admin.php:56 admin/includes/admin-new.php:145
+#: admin/includes/event_table.php:111
+msgid "Categories"
+msgstr "Kategorien"
+
+#: admin/admin.php:60 admin/includes/admin-settings.php:53
+msgid "Event List Settings"
+msgstr "Event List Einstellungen"
+
+#: admin/admin.php:60
+msgid "Settings"
+msgstr "Einstellungen"
+
+#: admin/admin.php:64 admin/includes/admin-about.php:37
+msgid "About Event List"
+msgstr "Informationen zu Event List"
+
+#: admin/admin.php:64
+msgid "About"
+msgstr "Informationen"
+
+#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:68
+msgid "General"
+msgstr "Allgemein"
+
+#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
+#: admin/includes/admin-about.php:103
+msgid "Shortcode Attributes"
+msgstr "Shortcode Attribute"
+
+#: admin/includes/admin-about.php:71
+msgid "Help and Instructions"
+msgstr "Hilfe und Anleitungen"
+
+#: admin/includes/admin-about.php:72
+#, 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
+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
+#, 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
+#, 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
+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
+#, 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
+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
+#, 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
+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
+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
+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
+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
+#, 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 "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
+#, 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
+#, 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
+msgid "Settings page"
+msgstr "Einstellungs-Seite"
+
+#: admin/includes/admin-about.php:91
+msgid "About the plugin author"
+msgstr "Über den Autor des Plugins"
+
+#: admin/includes/admin-about.php:93
+#, 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
+msgid "wordpress plugin site"
+msgstr "Wordpress Plugin Seite"
+
+#: admin/includes/admin-about.php:94
+#, 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
+msgid "wordpress plugin review site"
+msgstr "Wordpress Plugin-Bewertungsseite"
+
+#: admin/includes/admin-about.php:95
+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:105
+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:106
+#, 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:108
+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:122
+msgid "Attribute name"
+msgstr "Name"
+
+#: admin/includes/admin-about.php:123
+msgid "Value options"
+msgstr "zulässige Werte"
+
+#: admin/includes/admin-about.php:124
+msgid "Default value"
+msgstr "Standard-Wert"
+
+#: admin/includes/admin-about.php:125 admin/includes/admin-categories.php:188
+#: admin/includes/category_table.php:108
+msgid "Description"
+msgstr "Beschreibung"
+
+#: admin/includes/admin-about.php:143 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:144
+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:145
+#, 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:145
+msgid "AND"
+msgstr "UND"
+
+#: admin/includes/admin-about.php:145
+msgid "OR"
+msgstr "ODER"
+
+#: admin/includes/admin-about.php:145
+msgid "or"
+msgstr "oder"
+
+#: admin/includes/admin-about.php:145
+msgid "and"
+msgstr "und"
+
+#: admin/includes/admin-about.php:146
+msgid "Examples for cat filters:"
+msgstr "Beispiele für Kategorie-Filter:"
+
+#: admin/includes/admin-about.php:147
+#, php-format
+msgid "Show all events with category %1$s."
+msgstr "Zeige alle Termine mit der Kategorie %1$s."
+
+#: admin/includes/admin-about.php:148
+#, 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:149
+#, 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:154 includes/sc_event-list_helptexts.php:25
+msgid "Available Date Formats"
+msgstr "Verfügbare Datumsformate"
+
+#: admin/includes/admin-about.php:155
+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:163 includes/sc_event-list_helptexts.php:25
+msgid "Available Date Range Formats"
+msgstr "Verfügbare Datumsbereichs-Formate"
+
+#: admin/includes/admin-about.php:164
+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:176
+msgid "Value"
+msgstr "Wert"
+
+#: admin/includes/admin-about.php:180
+msgid "Example"
+msgstr "Beispiel"
+
+#: admin/includes/admin-categories.php:53
+msgid "Edit Category"
+msgstr "Kategorie bearbeiten"
+
+#: admin/includes/admin-categories.php:53
+msgid "Update Category"
+msgstr "Kategorie aktualisieren"
+
+#: admin/includes/admin-categories.php:59
+msgid "Add New Category"
+msgstr "Neue Kategorie erstellen"
+
+#: admin/includes/admin-categories.php:84
+#, php-format
+msgid "Category \"%s\" deleted."
+msgstr "Kategorie  \"%s\" gelöscht."
+
+#: admin/includes/admin-categories.php:86
+#, php-format
+msgid "This Category was also removed from %d events."
+msgstr "Diese Kategorie wurde zudem aus %d Terminen gelöscht."
+
+#: admin/includes/admin-categories.php:92
+#, php-format
+msgid "Error while deleting category \"%s\""
+msgstr "Fehler beim Löschen der Kategorie \"%s\""
+
+#: admin/includes/admin-categories.php:102
+msgid "Sync with post categories enabled."
+msgstr "Synchronisation mit Artikel-Kategorien ist aktiviert."
+
+#: admin/includes/admin-categories.php:105
+msgid "Sync with post categories disabled."
+msgstr "Synchronisation mit Artikel-Kategorien ist deaktiviert."
+
+#: admin/includes/admin-categories.php:111
+msgid "Manual sync with post categories sucessfully finished."
+msgstr "Manuelle Synchronisation mit Artikelkategorien wurde erfolgreich durchgeführt."
+
+#: admin/includes/admin-categories.php:119
+#, php-format
+msgid "New Category \"%s\" was added"
+msgstr "Neue Kategorie \"%s\" wurde hinzugefügt"
+
+#: admin/includes/admin-categories.php:122
+#, php-format
+msgid "Error: New Category \"%s\" could not be added"
+msgstr "Fehler: Neue Kategorie \"%s\" konnte nicht hinzugefügt werden"
+
+#: admin/includes/admin-categories.php:128
+#, php-format
+msgid "Category \"%s\" was modified"
+msgstr "Kategorie \"%s\" wurde geändert"
+
+#: admin/includes/admin-categories.php:131
+#, php-format
+msgid "Error: Category \"%s\" could not be modified"
+msgstr "Fehler: Kagegorie \"%s\" konnte nicht geändert werden"
+
+#: admin/includes/admin-categories.php:138
+msgid "Categories are automatically synced with the post categories."
+msgstr "Die Kategorien werden automatisch mit den Beitrags-Kategorien synchronisiert."
+
+#: admin/includes/admin-categories.php:139
+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."
+
+#: admin/includes/admin-categories.php:140
+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."
+
+#: admin/includes/admin-categories.php:167
+msgid "The name is how it appears on your site."
+msgstr "Dieser Name wird dann auf der Webseite angezeigt."
+
+#: admin/includes/admin-categories.php:172
+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."
+
+#: admin/includes/admin-categories.php:185
+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."
+
+#: admin/includes/admin-categories.php:232
+msgid "Apply"
+msgstr "Anwenden"
+
+#: admin/includes/admin-categories.php:242
+msgid "Do a manual sync with post categories"
+msgstr "Führe eine manuelle Synchronisation mit den Beitragskategorien durch"
+
+#: admin/includes/admin-import.php:45
+msgid "Import Events"
+msgstr "Importiere Termine"
+
+#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:120
+msgid "Step"
+msgstr "Schritt"
+
+#: admin/includes/admin-import.php:65
+msgid "Set import file and options"
+msgstr "Datei und Optionen zum Importieren wählen"
+
+#: admin/includes/admin-import.php:68
+#, php-format
+msgid "Proceed with Step %1$s"
+msgstr "Weiter zu Schritt %1$s"
+
+#: admin/includes/admin-import.php:71
+msgid "Example file"
+msgstr "Beispieldatei"
+
+#: admin/includes/admin-import.php:72
+#, 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
+msgid "Note"
+msgstr "Achtung"
+
+#: admin/includes/admin-import.php:73
+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
+msgid "Sorry, there has been an error."
+msgstr "Entschuldigung, ein Fehler ist aufgetreten."
+
+#: admin/includes/admin-import.php:81
+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:120
+msgid "Events review and additonal category selection"
+msgstr "Eventüberprüfung und zusätzliche Kategorieauswahl"
+
+#: admin/includes/admin-import.php:123
+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:"
+
+#: admin/includes/admin-import.php:129
+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:147
+msgid "Add additional categories"
+msgstr "Kategorien ergänzen"
+
+#: admin/includes/admin-import.php:148
+msgid "Import events"
+msgstr "Importiere die Termine"
+
+#: admin/includes/admin-import.php:162
+msgid "Import with errors!"
+msgstr "Import mit Fehler!"
+
+#: admin/includes/admin-import.php:163
+#, php-format
+msgid ""
+"An error occurred during import! Please send your import file to %1$sthe "
+"administrator%2$s for analysis."
+msgstr "Während des Imports ist ein Fehler aufgetreten! Bitte senden Sie die Datei zur Analyse an %1$sden Administrator%2$s."
+
+#: admin/includes/admin-import.php:167
+msgid "Import successful!"
+msgstr "Importieren erfolgreich abgeschlossen!"
+
+#: admin/includes/admin-import.php:168
+msgid "Go back to All Events"
+msgstr "Gehe zurück zu Alle Termine"
+
+#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:106
+#: admin/includes/event_table.php:108 includes/widget_helptexts.php:8
+msgid "Title"
+msgstr "Titel"
+
+#: admin/includes/admin-import.php:176
+msgid "Start Date"
+msgstr "Start-Datum"
+
+#: admin/includes/admin-import.php:177
+msgid "End Date"
+msgstr "End-Datum"
+
+#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:119
+#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
+msgid "Time"
+msgstr "Uhrzeit"
+
+#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:123
+#: admin/includes/event_table.php:109 includes/options_helptexts.php:53
+#: includes/options_helptexts.php:54
+msgid "Location"
+msgstr "Ort"
+
+#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:127
+#: admin/includes/event_table.php:110
+msgid "Details"
+msgstr "Beschreibung"
+
+#: admin/includes/admin-import.php:181
+msgid "Category slugs"
+msgstr "Kategorie-Slugs"
+
+#: admin/includes/admin-import.php:220
+#, 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!"
+
+#: admin/includes/admin-import.php:252 admin/includes/admin-main.php:120
+msgid "Import"
+msgstr "Importieren"
+
+#: admin/includes/admin-main.php:114
+msgid "Edit Event"
+msgstr "Termin bearbeiten"
+
+#: admin/includes/admin-main.php:114 admin/includes/event_table.php:72
+msgid "Duplicate"
+msgstr "Duplizieren"
+
+#: admin/includes/admin-new.php:43
+#, php-format
+msgid "Duplicate of event id:%d"
+msgstr "Duplikat der Termin-ID: %d"
+
+#: admin/includes/admin-new.php:106 admin/includes/admin-new.php:110
+msgid "required"
+msgstr "erforderlich"
+
+#: admin/includes/admin-new.php:110 admin/includes/event_table.php:107
+msgid "Date"
+msgstr "Datum"
+
+#: admin/includes/admin-new.php:113
+msgid "Multi-Day Event"
+msgstr "Mehrtägiger Termin"
+
+#: admin/includes/admin-new.php:143 admin/includes/admin-new.php:160
+msgid "Publish"
+msgstr "Veröffentlichen"
+
+#: admin/includes/admin-new.php:160
+msgid "Update"
+msgstr "Aktualisieren"
+
+#: admin/includes/admin-new.php:162
+msgid "Cancel"
+msgstr "Abbrechen"
+
+#: admin/includes/admin-new.php:175
+msgid "No categories available."
+msgstr "Keine Kategorien verfügbar."
+
+#: admin/includes/admin-new.php:221
+msgid "Goto Category Settings"
+msgstr "Gehe zu Kategorie-Einstellungen"
+
+#: admin/includes/admin-settings.php:41
+msgid "Settings saved."
+msgstr "Einstellungen gespeichert."
+
+#: admin/includes/admin-settings.php:69
+msgid "Frontend Settings"
+msgstr "Frontend Einstellungen"
+
+#: admin/includes/admin-settings.php:70
+msgid "Admin Page Settings"
+msgstr "Admin-Seiten Einstellungen"
+
+#: admin/includes/admin-settings.php:71
+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:70 admin/includes/event_table.php:71
+msgid "Edit"
+msgstr "Bearbeiten"
+
+#: admin/includes/category_table.php:71 admin/includes/category_table.php:145
+#: admin/includes/event_table.php:73 admin/includes/event_table.php:146
+msgid "Delete"
+msgstr "Löschen"
+
+#: admin/includes/category_table.php:107
+msgid "Name"
+msgstr "Name"
+
+#: admin/includes/category_table.php:109
+msgid "Slug"
+msgstr "Slug"
+
+#: admin/includes/event_table.php:112
+msgid "Author"
+msgstr "Autor"
+
+#: admin/includes/event_table.php:113
+msgid "Published"
+msgstr "Veröffentlicht"
+
+#: admin/includes/event_table.php:175
+msgid "Filter"
+msgstr "Auswahl einschränken"
+
+#: admin/includes/event_table.php:297
+#, php-format
+msgid "%s ago"
+msgstr "vor %s"
+
+#: includes/daterange_helptexts.php:7
+msgid "Year"
+msgstr "Jahr"
+
+#: includes/daterange_helptexts.php:8
+msgid "A year can be specified in 4 digit format."
+msgstr "Eine Jahrzahl kann als 4-stellige Nummer angegeben werden."
+
+#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14
+#: includes/daterange_helptexts.php:36
+#, php-format
+msgid ""
+"For a start date filter the first day of %1$s is used, in an end date the "
+"last day."
+msgstr "Für den Filter eines Startdatums wird der erste Tag %1$s verwendet, in einem Enddatum der letzte Tag."
+
+#: includes/daterange_helptexts.php:9
+msgid "the resulting year"
+msgstr "des entsprechenden Jahres"
+
+#: includes/daterange_helptexts.php:12
+msgid "Month"
+msgstr "Monat"
+
+#: 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 "Ein Monat kann als 4-stellige Jahreszahl und 2-stellige Monatszahl, getrennt durch einen Bindestrich (-), angegeben werden."
+
+#: includes/daterange_helptexts.php:14
+msgid "the resulting month"
+msgstr "des entsprechenden Monats"
+
+#: includes/daterange_helptexts.php:17
+msgid "Day"
+msgstr "Tag"
+
+#: 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 "Ein Tag kann im Format 4-stellige Jahreszahl, 2-stellige Monatszahl und 2-stelliger Monatstag, getrennt durch Bindestriche (-), angegeben werden."
+
+#: includes/daterange_helptexts.php:21
+msgid "Relative Year"
+msgstr "Relatives Jahr"
+
+#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28
+#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42
+#, php-format
+msgid "%1$s from now can be specified in the following notation: %2$s"
+msgstr "%1$s, ausgehend vom aktuellen Tag, kann in der folgenden Notation angegeben werden: %2$s"
+
+#: includes/daterange_helptexts.php:22
+msgid "A relative year"
+msgstr "Ein relatives Jahr"
+
+#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29
+#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43
+#, php-format
+msgid ""
+"This means you can specify a positive or negative (%1$s) %2$s from now with "
+"%3$s or %4$s attached (see also the example below)."
+msgstr "Dies bedeutet, dass eine positive oder negative (%1$s) %2$s, ausgehend vom heutigen Tag, angegeben werden kann. An diesen Wert muss %3$s oder %4$s angehängt werden (siehe Beispiel)."
+
+#: includes/daterange_helptexts.php:23
+msgid "number of years"
+msgstr "Jahresanzahl"
+
+#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30
+#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44
+#, php-format
+msgid "Additionally the following values are available: %1$s"
+msgstr "Zusätzlich stehen folgende Werte zur Verfügung: %1$s"
+
+#: includes/daterange_helptexts.php:27
+msgid "Relative Month"
+msgstr "Relativer Monat"
+
+#: includes/daterange_helptexts.php:28
+msgid "A relative month"
+msgstr "Ein relativer Monat"
+
+#: includes/daterange_helptexts.php:29
+msgid "number of months"
+msgstr "Monatsanzahl"
+
+#: includes/daterange_helptexts.php:33
+msgid "Relative Week"
+msgstr "Relative Woche"
+
+#: includes/daterange_helptexts.php:34
+msgid "A relative week"
+msgstr "Eine relative Woche"
+
+#: includes/daterange_helptexts.php:35
+msgid "number of weeks"
+msgstr "Wochenanzahl"
+
+#: includes/daterange_helptexts.php:36
+msgid "the resulting week"
+msgstr "der entsprechende Woche"
+
+#: 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 "Der erste Tag der Woche ist abhängig von der Einstellung %1$s, die in %2$s geändert werden kann."
+
+#: includes/daterange_helptexts.php:41
+msgid "Relative Day"
+msgstr "Relativer Tag"
+
+#: includes/daterange_helptexts.php:42
+msgid "A relative day"
+msgstr "Ein relativer Tag"
+
+#: includes/daterange_helptexts.php:43
+msgid "number of days"
+msgstr "Tagesanzahl"
+
+#: includes/daterange_helptexts.php:49
+msgid "Date range"
+msgstr "Datumsbereich"
+
+#: 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 "Ein Datumsbereich kann durch die Angabe eines Startdatums und eines Enddatums, getrennt durch eine Tilde (~) angegeben werden.<br />\nFür das Start- und Enddatum können alle verfügbaren Datumsformate verwendet werden."
+
+#: includes/daterange_helptexts.php:55
+msgid "This value defines a range without any limits."
+msgstr "Dieser Wert definiert einen Datumsbereich ohne jede Grenze."
+
+#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61
+#: includes/daterange_helptexts.php:66
+#, php-format
+msgid "The corresponding date_range format is: %1$s"
+msgstr "Der gleichbedeutende Datumsbereich lautet: %1$s"
+
+#: includes/daterange_helptexts.php:59 includes/filterbar.php:291
+msgid "Upcoming"
+msgstr "Anstehend"
+
+#: includes/daterange_helptexts.php:60
+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
+msgid "Past"
+msgstr "Beendet"
+
+#: includes/daterange_helptexts.php:65
+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:282
+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/options_helptexts.php:11
+msgid "Sync Categories"
+msgstr "Synchronisiere Kategorien"
+
+#: 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"
+
+#: includes/options_helptexts.php:13
+msgid "Attention"
+msgstr "Achtung"
+
+#: 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 "Bitte beachte, dass diese Option alle Kategorien, welche nicht als Beitragskategorien verfügbar sind, gelöscht werden! Existierende Kategorien mit gleichem Permalink werden aktualisiert."
+
+#: includes/options_helptexts.php:18
+msgid "CSV File to import"
+msgstr "Zu importierende CSV-Datei"
+
+#: 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."
+
+#: includes/options_helptexts.php:23
+msgid "Used date format"
+msgstr "Verwendetes Datumsformat"
+
+#: 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."
+
+#: includes/options_helptexts.php:29
+msgid "Text for no events"
+msgstr "Text für keine Termine"
+
+#: includes/options_helptexts.php:31
+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
+msgid "Multiday filter range"
+msgstr "Mehrtägiger Bereich für Filter"
+
+#: includes/options_helptexts.php:35
+msgid "Use the complete event range in the date filter"
+msgstr "Verwende den kompletten Terminbereich für den Datumsfilter"
+
+#: includes/options_helptexts.php:36
+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
+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
+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
+msgid "Date display"
+msgstr "Datumsanzeige"
+
+#: includes/options_helptexts.php:42
+msgid "Show the date only once per day"
+msgstr "Zeige das Datum nur einmal pro Tag"
+
+#: includes/options_helptexts.php:43
+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
+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
+msgid "HTML tags"
+msgstr "HTML-Tags"
+
+#: includes/options_helptexts.php:48 includes/options_helptexts.php:53
+#, 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
+#, 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
+msgid "Preferred language file"
+msgstr "Bevorzugte Sprachdatei"
+
+#: includes/options_helptexts.php:58
+msgid "Load translations from general language directory first"
+msgstr "Lade zuerst die Übersetzungen aus dem generellen Sprachverzeichnis"
+
+#: includes/options_helptexts.php:59
+#, 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
+#, 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 "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:65
+msgid ""
+"With this option the displayed text for the link to show the event details "
+"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."
+
+#: includes/options_helptexts.php:68
+msgid "Text for \"Hide details\""
+msgstr "Text für \"Verstecke Beschreibung\""
+
+#: 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."
+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."
+
+#: includes/options_helptexts.php:72
+msgid "Disable CSS file"
+msgstr "Deaktiviere die CSS-Datei"
+
+#: includes/options_helptexts.php:73
+#, php-format
+msgid "Disable the %1$s file."
+msgstr "Deaktiviere die %1$s Datei."
+
+#: includes/options_helptexts.php:74
+#, 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
+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
+msgid "Date format in edit form"
+msgstr "Datumsformat im Formular"
+
+#: includes/options_helptexts.php:80
+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
+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
+#, 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
+msgid "Enable RSS feed"
+msgstr "RSS feed aktivieren"
+
+#: includes/options_helptexts.php:87
+msgid "Enable support for an event RSS feed"
+msgstr "Support für ein Termin-RSS-Feed aktivieren"
+
+#: includes/options_helptexts.php:88
+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
+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
+msgid "Feed name"
+msgstr "Feed-Name"
+
+#: includes/options_helptexts.php:93
+#, 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
+#, 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
+msgid "Feed Description"
+msgstr "Feed-Beschreibung"
+
+#: includes/options_helptexts.php:98
+#, 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
+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
+msgid "Listed events"
+msgstr "Anzuzeigende Termine"
+
+#: includes/options_helptexts.php:103
+msgid "Only show upcoming events in feed"
+msgstr "Zeige nur anstehende Termine im Feed an"
+
+#: includes/options_helptexts.php:104
+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
+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
+msgid "Add RSS feed link in head"
+msgstr "Füge einen RSS-Link in der Kopfzeile hinzu"
+
+#: includes/options_helptexts.php:109
+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
+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
+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
+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
+#, 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
+#, 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
+msgid "Position of the RSS feed link"
+msgstr "Position des RSS feed Links"
+
+#: includes/options_helptexts.php:118
+msgid "at the top (above the navigation bar)"
+msgstr "oben (über der Navigationsleiste)"
+
+#: includes/options_helptexts.php:118
+msgid "between navigation bar and events"
+msgstr "zwischen Navigationsleiste und Terminliste"
+
+#: includes/options_helptexts.php:118
+msgid "at the bottom"
+msgstr "unterhalb der Terminliste"
+
+#: includes/options_helptexts.php:119
+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
+#, 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
+msgid "Align of the RSS feed link"
+msgstr "Ausrichtung des RSS-Feed-Links"
+
+#: includes/options_helptexts.php:124
+msgid "left"
+msgstr "links"
+
+#: includes/options_helptexts.php:124
+msgid "center"
+msgstr "mittig"
+
+#: includes/options_helptexts.php:124
+msgid "right"
+msgstr "rechts"
+
+#: includes/options_helptexts.php:125
+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
+msgid "Feed link text"
+msgstr "Feed Link Text"
+
+#: includes/options_helptexts.php:130
+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
+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
+msgid "Feed link image"
+msgstr "Bild für den Feed-Link"
+
+#: includes/options_helptexts.php:136
+msgid "Show rss image in feed link"
+msgstr "Zeige das RSS-Bild im Feed-Link an"
+
+#: includes/options_helptexts.php:137
+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.php:44
+msgid "Hide details"
+msgstr "Verstecke Beschreibung"
+
+#: includes/sc_event-list_helptexts.php:7
+msgid "event-id"
+msgstr "Termin-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 "
+"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."
+
+#: includes/sc_event-list_helptexts.php:10
+#: includes/sc_event-list_helptexts.php:22
+msgid "year"
+msgstr "Jahr"
+
+#: 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 "Dieses Attribut bestimmt die Termine, die anfänglich angezeigt werden. Der Standard ist nur die Anzeige der anstehenden Termine."
+
+#: includes/sc_event-list_helptexts.php:12
+#, php-format
+msgid ""
+"Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
+"change the displayed event date range via the filterbar or url parameters."
+msgstr "Durch die Angabe eines Jahres (z.B. %1$s) kann dieses Verhalten geändert werden. Es ist trotzdem noch möglich den angezeigten Datumsbereich über die Filter-Leiste zu ändern."
+
+#: includes/sc_event-list_helptexts.php:14
+msgid "category slug"
+msgstr "Kategorie-Slug"
+
+#: 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 "Dieses Attribut definiert die Kategorien, aus denen die Termine anfänglich angezeigt werden. Standardmäßig werden die Termine aus allen Kategorien angezeigt."
+
+#: includes/sc_event-list_helptexts.php:16
+msgid ""
+"Provide a category slug to change this behavior. It is still possible to "
+"change the displayed categories via the filterbar or url parameters."
+msgstr "Durch die Angabe eine Kategorie-Slugs kann dieses Verhalten geändert werden. Es ist trotzdem noch möglich die angezeigten Kategorien über die Filter-Leiste zu ändern."
+
+#: includes/sc_event-list_helptexts.php:19
+msgid "This attribute defines the initial order of the events."
+msgstr "Dieses Attribut definiert die anfängliche Sortierung der Termine."
+
+#: includes/sc_event-list_helptexts.php:20
+msgid ""
+"With %1$S (default value) the events are sorted from old to new, with %2$s "
+"in the opposite direction (from new to old)."
+msgstr "Mit %1$s (Standardwert) werden die Termine von alt nach neu sortiert, durch die Angabe von %2$s in der umgekehrten Reihenfolge (von neu nach alt)."
+
+#: includes/sc_event-list_helptexts.php:23
+#, php-format
+msgid ""
+"This attribute defines the dates and date ranges of which events are "
+"displayed. The default is %1$s to show all events."
+msgstr "Dieses Attribut definiert die Datumsbereiche, aus denen die Termine angezeigt werden. Standardmäßig wird %1$s verwendet um alle Termine anzuzeigen."
+
+#: includes/sc_event-list_helptexts.php:24
+#, php-format
+msgid ""
+"Filtered events according to %1$s value are not available in the event list."
+msgstr "Gefilterte Termine aufgrund des Wertes von %1$s sind in der Termin-Liste nicht verfügbar."
+
+#: includes/sc_event-list_helptexts.php:25
+#, php-format
+msgid ""
+"You can find all available values with a description and examples in the "
+"sections %1$s and %2$s below."
+msgstr "Alle möglichen Angaben mit Beschreibungen und Beispielen sind unten stehend in den Abschnitten %1$s und %2$s zu finden."
+
+#: includes/sc_event-list_helptexts.php:26
+#, php-format
+msgid "See %1$s description if you want to define complex filters."
+msgstr "Siehe die Beschreibung zu %1$s um komplexe Filter zu definieren."
+
+#: includes/sc_event-list_helptexts.php:28
+msgid "category slugs"
+msgstr "Kategorie-Slugs"
+
+#: 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 "Dieses Attribute definiert den Kategorien-Filter für die angezeigten Termine. Der Standard-Wert ist %1$s oder ein leerer String, mit dem alle Termine angezeigt werden."
+
+#: includes/sc_event-list_helptexts.php:30
+#, php-format
+msgid ""
+"Events with categories that doesn´t match %1$s are not shown in the event "
+"list. They are also not available if a manual url parameter is added."
+msgstr "Termine mit Kategorien, die nicht auf den Filter von %1$s passen, werden in der Termin-Liste nicht angezeigt. Diese sind auch nicht über die Angabe eines manuellen URL-Parameter verfügbar."
+
+#: includes/sc_event-list_helptexts.php:31
+#, php-format
+msgid ""
+"The filter is specified via the given category slugs. See %1$s description "
+"if you want to define complex filters."
+msgstr "Der Filter wird durch die Angabe der Kagegorie-Slugs definiert. Unter %1$s ist eine Beschreibung zu finden, die auch komplexe Filter beinhaltet. "
+
+#: includes/sc_event-list_helptexts.php:33
+#: includes/sc_event-list_helptexts.php:76
+#: includes/sc_event-list_helptexts.php:91
+#: includes/sc_event-list_helptexts.php:106
+msgid "number"
+msgstr "Nummer"
+
+#: 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 "Dieses Attribut definiert wie viele Termine angezeigt werden sollen, wenn nur anstehende Termine angezeigt werden. Mit dem Standardwert %1$s werden alle Termine angezeigt."
+
+#: includes/sc_event-list_helptexts.php:35
+msgid ""
+"Please not that in the actual version there is no pagination of the events "
+"available, so the event list can be very long."
+msgstr "Bitte beachte, dass in der aktuellen Version keine Pagination der Termine verfügbar ist, die Termin-Liste kann dadurch ziemlich lange sein."
+
+#: includes/sc_event-list_helptexts.php:38
+msgid ""
+"This attribute defines if the filterbar should be displayed. The filterbar "
+"allows the users to specify filters for the listed events."
+msgstr "Dieses Attribut definiert, ob die Filter-Leiste angezeigt wird. Die Filter-Liste erlaubt es dem Anwender die Termin-Liste zu filtern."
+
+#: includes/sc_event-list_helptexts.php:39
+#, php-format
+msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
+msgstr "Wähle %1$s um die Filter-Leiste immer zu verstecken und %2$s um sie immer anzuzeigen."
+
+#: includes/sc_event-list_helptexts.php:40
+#, php-format
+msgid ""
+"With %1$s the filterbar is only visible in the event list and with %2$s only"
+" in the single event view."
+msgstr "Mit %1$s wird die Filter-Leiste nur in der Termin-Liste angezeigt, mit %2$s nur in der Termin-Detailansicht."
+
+#: includes/sc_event-list_helptexts.php:77
+#: includes/sc_event-list_helptexts.php:92
+msgid ""
+"This attribute specifies if the title should be truncated to the given "
+"number of characters in the event list."
+msgstr "Dieses Attribut bestimmt, ob der Titel auf die angegebene Anzahl Zeichen gekürzt werden soll."
+
+#: includes/sc_event-list_helptexts.php:78
+#: includes/sc_event-list_helptexts.php:93
+#, php-format
+msgid ""
+"With the standard value %1$s the full text is displayed, with %2$s the text "
+"is automatically truncated via css."
+msgstr "Mit der Grundeinstellung %1$s wird der gesamte Text angezeigt, mit %2$s wird der Text automatisch via CSS gekürzt."
+
+#: includes/sc_event-list_helptexts.php:79
+#: includes/sc_event-list_helptexts.php:94
+#: includes/sc_event-list_helptexts.php:109
+msgid "This attribute has no influence if only a single event is shown."
+msgstr "Dieses Attribut hat keinen Einfluss wenn nur die Details eines einzelnen Termins angezeigt werden."
+
+#: includes/sc_event-list_helptexts.php:82
+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:87
+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:97
+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:102
+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 ""
+
+#: includes/sc_event-list_helptexts.php:107
+msgid ""
+"This attribute specifies if the details 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."
+
+#: includes/sc_event-list_helptexts.php:108
+#, php-format
+msgid "With the standard value %1$s the full text is displayed."
+msgstr "Mit der Grundeinstellung %1$s wird der gesamte Text angezeigt."
+
+#: includes/sc_event-list_helptexts.php:112
+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 ""
+
+#: includes/sc_event-list_helptexts.php:118
+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 ""
+
+#: includes/sc_event-list_helptexts.php:124
+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:130
+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:137
+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:138
+msgid "Event Information:"
+msgstr "Termin Informationen:"
+
+#: includes/widget_helptexts.php:10
+msgid "This option defines the displayed title for the widget."
+msgstr "Diese Option legt den anzuzeigenden Titel für das Widget fest."
+
+#: includes/widget_helptexts.php:15
+msgid "Category Filter"
+msgstr "Kategoriefilter"
+
+#: 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 "Diese Option legt die Kategorien fest, aus denen die Termine angezeigt werden sollen. Der Standard-Wert ist all oder ein leerer Text mit dem alle Termine aus allen Kategorien angezeigt werden. Wird ein Kategorie-Permalink oder eine Liste von mehreren Kategorie-Permalinks angegeben, werden nur Termine angezeigt, bei denen eine dieser Kategorien gesetzt ist. Siehe hierzu die Beschreibung des Shortcode Attributs cat_filter für detaillierte Informationen zu allen Möglichkeiten."
+
+#: includes/widget_helptexts.php:22
+msgid "Number of listed events"
+msgstr "Anzahl der angezeigten Termine"
+
+#: includes/widget_helptexts.php:24
+msgid "The number of upcoming events to display"
+msgstr "Die Anzahl der anstehenden Termine, die angezeigt werden sollen."
+
+#: includes/widget_helptexts.php:29
+msgid "Truncate event title to"
+msgstr "Kürze den Termin-Titel auf"
+
+#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
+#: includes/widget_helptexts.php:67
+msgid "characters"
+msgstr "Buchstaben"
+
+#: includes/widget_helptexts.php:31
+msgid ""
+"This option defines the number of displayed characters for the event title."
+msgstr "Diese Option legt die Anzahl der angezeigten Buchstaben für den Termin-Titel fest."
+
+#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54
+#, php-format
+msgid ""
+"Set this value to %1$s to view the full text, or set it to %2$s to "
+"automatically truncate the text via css."
+msgstr "Setze den Wert auf %1$s, um den gesamten Text anzuzeigen, oder auf %2$s um den Text automatisch via CSS zu kürzen."
+
+#: includes/widget_helptexts.php:37
+msgid "Show event starttime"
+msgstr "Zeige die Termin-Uhrzeit"
+
+#: includes/widget_helptexts.php:39
+msgid "This option defines if the event start time will be displayed."
+msgstr "Diese Option definiert, ob die Uhrzeit des Termins angezeigt wird."
+
+#: includes/widget_helptexts.php:44
+msgid "Show event location"
+msgstr "Zeige den Termin-Ort"
+
+#: includes/widget_helptexts.php:46
+msgid "This option defines if the event location will be displayed."
+msgstr "Diese Option definiert, ob der Ort des Termins angezeigt wird."
+
+#: includes/widget_helptexts.php:51
+msgid "Truncate location to"
+msgstr "Kürze den Ort auf"
+
+#: includes/widget_helptexts.php:53
+msgid ""
+"If the event location is diplayed this option defines the number of "
+"displayed characters."
+msgstr "Wenn die Termin-Ort angezeigt wird, dann legt diese Option die Anzahl der angezeigten Buchstaben fest."
+
+#: includes/widget_helptexts.php:59
+msgid "Show event details"
+msgstr "Zeige die Termin-Beschreibung"
+
+#: 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."
+
+#: includes/widget_helptexts.php:66
+msgid "Truncate details to"
+msgstr "Kürze Beschreibung auf"
+
+#: includes/widget_helptexts.php:68
+msgid ""
+"If the event details 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."
+
+#: includes/widget_helptexts.php:69
+#, php-format
+msgid "Set this value to %1$s to view the full text."
+msgstr "Wird der Wert auf %1$s gesetzt, wird der gesamte Text angezeigt."
+
+#: includes/widget_helptexts.php:74
+msgid "URL to the linked Event List page"
+msgstr "URL zur verlinkten Event List Seite"
+
+#: 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 "Diese Option legt die URL zur verlinkten Event List Seite fest. Diese Option muss zwingend gesetzt werden, wenn eine der unten stehenden Optionen verwendet werden soll."
+
+#: includes/widget_helptexts.php:81
+msgid "Shortcode ID on linked page"
+msgstr "Shortcode ID auf der verlinkten Seite"
+
+#: 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 "Diese Option legt die Shortcode-ID für die verlinkte Event List Seite fest. Normalerweise ist der Standardwert 1 korrekt. Dieser Wert muss aber eventuell geändert werden, wenn sich mehrere even-list Shortcodes auf der verlinkten Seite befinden."
+
+#: includes/widget_helptexts.php:90
+msgid ""
+"With this option you can add a link to the single event page for every "
+"displayed event. You have to specify the url to the page and the shortcode "
+"id option if you want to use it."
+msgstr "Wird diese Option aktiviert, dann werden Verknüpfungen zu den einzelnen Terminen für alle Termine eingefügt. Soll diese Funktion genutzt werden, dann muss die Option URL zur verlinkten Event List Seite und Shortcode ID auf der verlinkten Seite korrekt gesetzt werden."
+
+#: includes/widget_helptexts.php:97
+msgid ""
+"With this option you can add a link to the event-list page below the "
+"diplayed events. You have to specify the url to page option if you want to "
+"use it."
+msgstr "Mit dieser Option kann eine zusätzliche Verknüpfung zur Event List Seite unterhalb der angezeigten Termine ergänzt werden. Soll diese Funktion genutzt werden, so muss die Option URL zur Event List Seite korrekt eingetragen werden."
+
+#: includes/widget_helptexts.php:102
+msgid "Caption for the link"
+msgstr "Anzuzeigender Text für den Link"
+
+#: 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 "Diese Option legt den anzuzeigenden Text für den Link zur Event List Seite fest, wenn die entsprechende Option ausgewählt wurde."
+
+#: includes/widget.php:20
+msgid "With this widget a list of upcoming events can be displayed."
+msgstr "Mit diesem Widget kann eine Liste mit den anstehenden Terminen angezeigt werden."
+
+#: includes/widget.php:25
+msgid "Upcoming events"
+msgstr "Anstehende Termine"
+
+#: includes/widget.php:38
+msgid "show events page"
+msgstr "öffne den Kalender"
diff --git a/wp-content/plugins/event-list/languages/event-list-es_AR.mo b/wp-content/plugins/event-list/languages/event-list-es_AR.mo
new file mode 100644
index 0000000000000000000000000000000000000000..533a5b9b10c0c0a8afe67354b9f97ca6b6d27dc3
Binary files /dev/null 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
new file mode 100644
index 0000000000000000000000000000000000000000..03524ae3a5ddb7da46165bb8ba219576d0e497aa
--- /dev/null
+++ b/wp-content/plugins/event-list/languages/event-list-es_AR.po
@@ -0,0 +1,1595 @@
+# Translation file for the 'Event List' WordPress plugin
+# Copyright (C) 2017 by mibuthu
+# This file is distributed under the same license as the corresponding wordpress plugin.
+# 
+# Translators:
+# Gustavo Baranovsky <epromd@gmail.com>, 2015
+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-03-17 17:25+0100\n"
+"PO-Revision-Date: 2017-03-17 16:25+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"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: es_AR\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: admin/admin.php:45
+msgid "Event List"
+msgstr "Listado de Eventos"
+
+#: admin/admin.php:48 admin/admin.php:80 admin/includes/admin-main.php:117
+#: admin/includes/category_table.php:110
+msgid "Events"
+msgstr "Eventos"
+
+#: admin/admin.php:48
+msgid "All Events"
+msgstr "Todos los Eventos"
+
+#: admin/admin.php:52 admin/includes/admin-new.php:41
+msgid "Add New Event"
+msgstr "Agregar un Nuevo Evento"
+
+#: admin/admin.php:52 admin/includes/admin-main.php:119
+msgid "Add New"
+msgstr "Agregar Nuevo"
+
+#: admin/admin.php:56 admin/includes/admin-categories.php:50
+msgid "Event List Categories"
+msgstr "Listado de Categorías de Eventos"
+
+#: admin/admin.php:56 admin/includes/admin-new.php:145
+#: admin/includes/event_table.php:111
+msgid "Categories"
+msgstr "Categorías"
+
+#: admin/admin.php:60 admin/includes/admin-settings.php:53
+msgid "Event List Settings"
+msgstr "Configuraciones del Listado de Eventos"
+
+#: admin/admin.php:60
+msgid "Settings"
+msgstr "Configuraciones"
+
+#: admin/admin.php:64 admin/includes/admin-about.php:37
+msgid "About Event List"
+msgstr "Sobre Listado de Eventos"
+
+#: admin/admin.php:64
+msgid "About"
+msgstr "Sobre"
+
+#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:68
+msgid "General"
+msgstr ""
+
+#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
+#: admin/includes/admin-about.php:103
+msgid "Shortcode Attributes"
+msgstr ""
+
+#: admin/includes/admin-about.php:71
+msgid "Help and Instructions"
+msgstr "Ayuda e Instrucciones"
+
+#: admin/includes/admin-about.php:72
+#, php-format
+msgid "You can manage the events %1$shere%2$s"
+msgstr ""
+
+#: admin/includes/admin-about.php:73
+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
+#, 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
+#, 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
+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
+#, 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
+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
+#, 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
+msgid "Add links to the single events"
+msgstr ""
+
+#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:95
+msgid "Add a link to the Event List page"
+msgstr ""
+
+#: admin/includes/admin-about.php:80
+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
+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
+#, 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
+#, 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
+#, 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
+msgid "Settings page"
+msgstr ""
+
+#: admin/includes/admin-about.php:91
+msgid "About the plugin author"
+msgstr ""
+
+#: admin/includes/admin-about.php:93
+#, 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
+msgid "wordpress plugin site"
+msgstr ""
+
+#: admin/includes/admin-about.php:94
+#, php-format
+msgid "If you like the plugin please rate it on the %1$s."
+msgstr ""
+
+#: admin/includes/admin-about.php:94
+msgid "wordpress plugin review site"
+msgstr ""
+
+#: admin/includes/admin-about.php:95
+msgid ""
+"If you want to support the plugin I would be happy to get a small donation"
+msgstr ""
+
+#: admin/includes/admin-about.php:105
+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:106
+#, 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:108
+msgid ""
+"Below you can find a list of all supported attributes with their "
+"descriptions and available options:"
+msgstr ""
+
+#: admin/includes/admin-about.php:122
+msgid "Attribute name"
+msgstr ""
+
+#: admin/includes/admin-about.php:123
+msgid "Value options"
+msgstr ""
+
+#: admin/includes/admin-about.php:124
+msgid "Default value"
+msgstr ""
+
+#: admin/includes/admin-about.php:125 admin/includes/admin-categories.php:188
+#: admin/includes/category_table.php:108
+msgid "Description"
+msgstr "Descripción"
+
+#: admin/includes/admin-about.php:143 includes/sc_event-list_helptexts.php:26
+#: includes/sc_event-list_helptexts.php:31
+msgid "Filter Syntax"
+msgstr ""
+
+#: admin/includes/admin-about.php:144
+msgid ""
+"For date and cat filters you can specify complex filters with the following "
+"syntax:"
+msgstr ""
+
+#: admin/includes/admin-about.php:145
+#, 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:145
+msgid "AND"
+msgstr ""
+
+#: admin/includes/admin-about.php:145
+msgid "OR"
+msgstr ""
+
+#: admin/includes/admin-about.php:145
+msgid "or"
+msgstr ""
+
+#: admin/includes/admin-about.php:145
+msgid "and"
+msgstr ""
+
+#: admin/includes/admin-about.php:146
+msgid "Examples for cat filters:"
+msgstr ""
+
+#: admin/includes/admin-about.php:147
+#, php-format
+msgid "Show all events with category %1$s."
+msgstr ""
+
+#: admin/includes/admin-about.php:148
+#, php-format
+msgid "Show all events with category %1$s or %2$s."
+msgstr ""
+
+#: admin/includes/admin-about.php:149
+#, 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:154 includes/sc_event-list_helptexts.php:25
+msgid "Available Date Formats"
+msgstr ""
+
+#: admin/includes/admin-about.php:155
+msgid "For date filters you can use the following date formats:"
+msgstr ""
+
+#: admin/includes/admin-about.php:163 includes/sc_event-list_helptexts.php:25
+msgid "Available Date Range Formats"
+msgstr ""
+
+#: admin/includes/admin-about.php:164
+msgid "For date filters you can use the following daterange formats:"
+msgstr ""
+
+#: admin/includes/admin-about.php:176
+msgid "Value"
+msgstr ""
+
+#: admin/includes/admin-about.php:180
+msgid "Example"
+msgstr ""
+
+#: admin/includes/admin-categories.php:53
+msgid "Edit Category"
+msgstr ""
+
+#: admin/includes/admin-categories.php:53
+msgid "Update Category"
+msgstr ""
+
+#: admin/includes/admin-categories.php:59
+msgid "Add New Category"
+msgstr "Agregar una nueva Categoría"
+
+#: admin/includes/admin-categories.php:84
+#, php-format
+msgid "Category \"%s\" deleted."
+msgstr ""
+
+#: admin/includes/admin-categories.php:86
+#, php-format
+msgid "This Category was also removed from %d events."
+msgstr ""
+
+#: admin/includes/admin-categories.php:92
+#, php-format
+msgid "Error while deleting category \"%s\""
+msgstr ""
+
+#: admin/includes/admin-categories.php:102
+msgid "Sync with post categories enabled."
+msgstr ""
+
+#: admin/includes/admin-categories.php:105
+msgid "Sync with post categories disabled."
+msgstr ""
+
+#: admin/includes/admin-categories.php:111
+msgid "Manual sync with post categories sucessfully finished."
+msgstr ""
+
+#: admin/includes/admin-categories.php:119
+#, php-format
+msgid "New Category \"%s\" was added"
+msgstr ""
+
+#: admin/includes/admin-categories.php:122
+#, php-format
+msgid "Error: New Category \"%s\" could not be added"
+msgstr ""
+
+#: admin/includes/admin-categories.php:128
+#, php-format
+msgid "Category \"%s\" was modified"
+msgstr ""
+
+#: admin/includes/admin-categories.php:131
+#, php-format
+msgid "Error: Category \"%s\" could not be modified"
+msgstr ""
+
+#: admin/includes/admin-categories.php:138
+msgid "Categories are automatically synced with the post categories."
+msgstr ""
+
+#: admin/includes/admin-categories.php:139
+msgid ""
+"Because of this all options to add new categories or editing existing "
+"categories are disabled."
+msgstr ""
+
+#: admin/includes/admin-categories.php:140
+msgid ""
+"If you want to manually edit the categories you have to disable this option."
+msgstr ""
+
+#: admin/includes/admin-categories.php:167
+msgid "The name is how it appears on your site."
+msgstr ""
+
+#: admin/includes/admin-categories.php:172
+msgid ""
+"The “slug” is the URL-friendly version of the name. It is usually all "
+"lowercase and contains only letters, numbers, and hyphens."
+msgstr ""
+
+#: admin/includes/admin-categories.php:185
+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 ""
+
+#: admin/includes/admin-categories.php:232
+msgid "Apply"
+msgstr "Aplicar"
+
+#: admin/includes/admin-categories.php:242
+msgid "Do a manual sync with post categories"
+msgstr ""
+
+#: admin/includes/admin-import.php:45
+msgid "Import Events"
+msgstr "Importar Eventos"
+
+#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:120
+msgid "Step"
+msgstr ""
+
+#: admin/includes/admin-import.php:65
+msgid "Set import file and options"
+msgstr ""
+
+#: admin/includes/admin-import.php:68
+#, php-format
+msgid "Proceed with Step %1$s"
+msgstr ""
+
+#: admin/includes/admin-import.php:71
+msgid "Example file"
+msgstr ""
+
+#: admin/includes/admin-import.php:72
+#, 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
+msgid "Note"
+msgstr ""
+
+#: admin/includes/admin-import.php:73
+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
+msgid "Sorry, there has been an error."
+msgstr ""
+
+#: admin/includes/admin-import.php:81
+msgid "The file does not exist, please try again."
+msgstr ""
+
+#: admin/includes/admin-import.php:89
+msgid "The file is not a CSV file."
+msgstr ""
+
+#: admin/includes/admin-import.php:120
+msgid "Events review and additonal category selection"
+msgstr ""
+
+#: admin/includes/admin-import.php:123
+msgid ""
+"Warning: The following category slugs are not available and will be removed "
+"from the imported events:"
+msgstr ""
+
+#: admin/includes/admin-import.php:129
+msgid ""
+"If you want to keep these categories, please create these Categories first "
+"and do the import afterwards."
+msgstr ""
+
+#: admin/includes/admin-import.php:147
+msgid "Add additional categories"
+msgstr ""
+
+#: admin/includes/admin-import.php:148
+msgid "Import events"
+msgstr ""
+
+#: admin/includes/admin-import.php:162
+msgid "Import with errors!"
+msgstr ""
+
+#: admin/includes/admin-import.php:163
+#, php-format
+msgid ""
+"An error occurred during import! Please send your import file to %1$sthe "
+"administrator%2$s for analysis."
+msgstr ""
+
+#: admin/includes/admin-import.php:167
+msgid "Import successful!"
+msgstr ""
+
+#: admin/includes/admin-import.php:168
+msgid "Go back to All Events"
+msgstr ""
+
+#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:106
+#: admin/includes/event_table.php:108 includes/widget_helptexts.php:8
+msgid "Title"
+msgstr "Título"
+
+#: admin/includes/admin-import.php:176
+msgid "Start Date"
+msgstr ""
+
+#: admin/includes/admin-import.php:177
+msgid "End Date"
+msgstr ""
+
+#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:119
+#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
+msgid "Time"
+msgstr ""
+
+#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:123
+#: admin/includes/event_table.php:109 includes/options_helptexts.php:53
+#: includes/options_helptexts.php:54
+msgid "Location"
+msgstr ""
+
+#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:127
+#: admin/includes/event_table.php:110
+msgid "Details"
+msgstr "Detalles"
+
+#: admin/includes/admin-import.php:181
+msgid "Category slugs"
+msgstr ""
+
+#: admin/includes/admin-import.php:220
+#, php-format
+msgid ""
+"There was an error at line %1$s when reading this CSV file: Header line is "
+"missing or not correct!"
+msgstr ""
+
+#: admin/includes/admin-import.php:252 admin/includes/admin-main.php:120
+msgid "Import"
+msgstr "Importar"
+
+#: admin/includes/admin-main.php:114
+msgid "Edit Event"
+msgstr "Editar Evento"
+
+#: admin/includes/admin-main.php:114 admin/includes/event_table.php:72
+msgid "Duplicate"
+msgstr "Duplicar"
+
+#: admin/includes/admin-new.php:43
+#, php-format
+msgid "Duplicate of event id:%d"
+msgstr ""
+
+#: admin/includes/admin-new.php:106 admin/includes/admin-new.php:110
+msgid "required"
+msgstr ""
+
+#: admin/includes/admin-new.php:110 admin/includes/event_table.php:107
+msgid "Date"
+msgstr ""
+
+#: admin/includes/admin-new.php:113
+msgid "Multi-Day Event"
+msgstr ""
+
+#: admin/includes/admin-new.php:143 admin/includes/admin-new.php:160
+msgid "Publish"
+msgstr ""
+
+#: admin/includes/admin-new.php:160
+msgid "Update"
+msgstr ""
+
+#: admin/includes/admin-new.php:162
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: admin/includes/admin-new.php:175
+msgid "No categories available."
+msgstr ""
+
+#: admin/includes/admin-new.php:221
+msgid "Goto Category Settings"
+msgstr ""
+
+#: admin/includes/admin-settings.php:41
+msgid "Settings saved."
+msgstr ""
+
+#: admin/includes/admin-settings.php:69
+msgid "Frontend Settings"
+msgstr ""
+
+#: admin/includes/admin-settings.php:70
+msgid "Admin Page Settings"
+msgstr ""
+
+#: admin/includes/admin-settings.php:71
+msgid "Feed Settings"
+msgstr ""
+
+#: 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:70 admin/includes/event_table.php:71
+msgid "Edit"
+msgstr ""
+
+#: admin/includes/category_table.php:71 admin/includes/category_table.php:145
+#: admin/includes/event_table.php:73 admin/includes/event_table.php:146
+msgid "Delete"
+msgstr ""
+
+#: admin/includes/category_table.php:107
+msgid "Name"
+msgstr "Nombre"
+
+#: admin/includes/category_table.php:109
+msgid "Slug"
+msgstr ""
+
+#: admin/includes/event_table.php:112
+msgid "Author"
+msgstr ""
+
+#: admin/includes/event_table.php:113
+msgid "Published"
+msgstr ""
+
+#: admin/includes/event_table.php:175
+msgid "Filter"
+msgstr ""
+
+#: admin/includes/event_table.php:297
+#, php-format
+msgid "%s ago"
+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:291
+msgid "Upcoming"
+msgstr "Próximos"
+
+#: 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:295
+msgid "Past"
+msgstr "Pasado"
+
+#: includes/daterange_helptexts.php:65
+msgid "This value defines a range from the past to the previous day."
+msgstr ""
+
+#: includes/filterbar.php:282
+msgid "All"
+msgstr "Todos"
+
+#: includes/filterbar.php:285
+msgid "Show all dates"
+msgstr ""
+
+#: includes/filterbar.php:285
+msgid "Show all categories"
+msgstr ""
+
+#: includes/options_helptexts.php:11
+msgid "Sync Categories"
+msgstr ""
+
+#: includes/options_helptexts.php:12
+msgid "Keep event categories in sync with post categories automatically"
+msgstr ""
+
+#: includes/options_helptexts.php:13
+msgid "Attention"
+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 ""
+
+#: includes/options_helptexts.php:18
+msgid "CSV File to import"
+msgstr ""
+
+#: includes/options_helptexts.php:20
+msgid "Please select the file which contains the event data in CSV format."
+msgstr ""
+
+#: includes/options_helptexts.php:23
+msgid "Used date format"
+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 ""
+
+#: includes/options_helptexts.php:29
+msgid "Text for no events"
+msgstr ""
+
+#: includes/options_helptexts.php:31
+msgid ""
+"This option defines the displayed text when no events are available for the "
+"selected view."
+msgstr ""
+
+#: includes/options_helptexts.php:34
+msgid "Multiday filter range"
+msgstr ""
+
+#: includes/options_helptexts.php:35
+msgid "Use the complete event range in the date filter"
+msgstr ""
+
+#: includes/options_helptexts.php:36
+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
+msgid ""
+"If disabled, only the start day of an event is considered in the filter."
+msgstr ""
+
+#: includes/options_helptexts.php:38
+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
+msgid "Date display"
+msgstr ""
+
+#: includes/options_helptexts.php:42
+msgid "Show the date only once per day"
+msgstr ""
+
+#: includes/options_helptexts.php:43
+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
+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
+msgid "HTML tags"
+msgstr ""
+
+#: includes/options_helptexts.php:48 includes/options_helptexts.php:53
+#, php-format
+msgid "Allow HTML tags in the event field \"%1$s\""
+msgstr ""
+
+#: includes/options_helptexts.php:49 includes/options_helptexts.php:54
+#, php-format
+msgid ""
+"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
+msgstr ""
+
+#: includes/options_helptexts.php:57
+msgid "Preferred language file"
+msgstr ""
+
+#: includes/options_helptexts.php:58
+msgid "Load translations from general language directory first"
+msgstr ""
+
+#: includes/options_helptexts.php:59
+#, 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
+#, 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\""
+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."
+msgstr ""
+
+#: includes/options_helptexts.php:68
+msgid "Text for \"Hide details\""
+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."
+msgstr ""
+
+#: includes/options_helptexts.php:72
+msgid "Disable CSS file"
+msgstr ""
+
+#: includes/options_helptexts.php:73
+#, php-format
+msgid "Disable the %1$s file."
+msgstr ""
+
+#: includes/options_helptexts.php:74
+#, php-format
+msgid "With this option you can disable the inclusion of the %1$s file."
+msgstr ""
+
+#: includes/options_helptexts.php:75
+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
+msgid "Date format in edit form"
+msgstr ""
+
+#: includes/options_helptexts.php:80
+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
+msgid "The default is an empty string to use the Wordpress standard setting."
+msgstr ""
+
+#: includes/options_helptexts.php:82
+#, 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
+msgid "Enable RSS feed"
+msgstr ""
+
+#: includes/options_helptexts.php:87
+msgid "Enable support for an event RSS feed"
+msgstr ""
+
+#: includes/options_helptexts.php:88
+msgid "This option activates a RSS feed for the events."
+msgstr ""
+
+#: includes/options_helptexts.php:89
+msgid ""
+"You have to enable this option if you want to use one of the RSS feed "
+"features."
+msgstr ""
+
+#: includes/options_helptexts.php:92
+msgid "Feed name"
+msgstr ""
+
+#: includes/options_helptexts.php:93
+#, php-format
+msgid "This option sets the feed name. The default value is %1$s."
+msgstr ""
+
+#: includes/options_helptexts.php:94
+#, 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
+msgid "Feed Description"
+msgstr ""
+
+#: includes/options_helptexts.php:98
+#, php-format
+msgid "This options set the feed description. The default value is %1$s."
+msgstr ""
+
+#: includes/options_helptexts.php:99
+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
+msgid "Listed events"
+msgstr "Eventos Listados"
+
+#: includes/options_helptexts.php:103
+msgid "Only show upcoming events in feed"
+msgstr ""
+
+#: includes/options_helptexts.php:104
+msgid ""
+"If this option is enabled only the upcoming events are listed in the feed."
+msgstr ""
+
+#: includes/options_helptexts.php:105
+msgid "If disabled all events (upcoming and past) will be listed."
+msgstr ""
+
+#: includes/options_helptexts.php:108
+msgid "Add RSS feed link in head"
+msgstr ""
+
+#: includes/options_helptexts.php:109
+msgid "Add RSS feed link in the html head"
+msgstr ""
+
+#: includes/options_helptexts.php:110
+msgid "This option adds a RSS feed in the html head for the events."
+msgstr ""
+
+#: includes/options_helptexts.php:111
+msgid "There are 2 alternatives to include the RSS feed"
+msgstr ""
+
+#: includes/options_helptexts.php:112
+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
+#, 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
+#, php-format
+msgid "This option is only valid if the setting %1$s is enabled."
+msgstr ""
+
+#: includes/options_helptexts.php:117
+msgid "Position of the RSS feed link"
+msgstr ""
+
+#: includes/options_helptexts.php:118
+msgid "at the top (above the navigation bar)"
+msgstr ""
+
+#: includes/options_helptexts.php:118
+msgid "between navigation bar and events"
+msgstr ""
+
+#: includes/options_helptexts.php:118
+msgid "at the bottom"
+msgstr ""
+
+#: includes/options_helptexts.php:119
+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
+#, 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
+msgid "Align of the RSS feed link"
+msgstr ""
+
+#: includes/options_helptexts.php:124
+msgid "left"
+msgstr ""
+
+#: includes/options_helptexts.php:124
+msgid "center"
+msgstr ""
+
+#: includes/options_helptexts.php:124
+msgid "right"
+msgstr ""
+
+#: includes/options_helptexts.php:125
+msgid ""
+"This option specifies the align of the RSS feed link in the event list."
+msgstr ""
+
+#: includes/options_helptexts.php:129
+msgid "Feed link text"
+msgstr ""
+
+#: includes/options_helptexts.php:130
+msgid ""
+"This option specifies the caption of the RSS feed link in the event list."
+msgstr ""
+
+#: includes/options_helptexts.php:131
+msgid ""
+"Insert an empty text to hide any text if you only want to show the rss "
+"image."
+msgstr ""
+
+#: includes/options_helptexts.php:135
+msgid "Feed link image"
+msgstr ""
+
+#: includes/options_helptexts.php:136
+msgid "Show rss image in feed link"
+msgstr ""
+
+#: includes/options_helptexts.php:137
+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 ""
+
+#: includes/options.php:44
+msgid "Hide details"
+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-details 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:76
+#: includes/sc_event-list_helptexts.php:91
+#: includes/sc_event-list_helptexts.php:106
+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:77
+#: includes/sc_event-list_helptexts.php:92
+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:78
+#: includes/sc_event-list_helptexts.php:93
+#, 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:79
+#: includes/sc_event-list_helptexts.php:94
+#: includes/sc_event-list_helptexts.php:109
+msgid "This attribute has no influence if only a single event is shown."
+msgstr ""
+
+#: includes/sc_event-list_helptexts.php:82
+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:87
+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:97
+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:102
+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 ""
+
+#: includes/sc_event-list_helptexts.php:107
+msgid ""
+"This attribute specifies if the details should be truncate to the given "
+"number of characters in the event list."
+msgstr ""
+
+#: includes/sc_event-list_helptexts.php:108
+#, php-format
+msgid "With the standard value %1$s the full text is displayed."
+msgstr ""
+
+#: includes/sc_event-list_helptexts.php:112
+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 ""
+
+#: includes/sc_event-list_helptexts.php:118
+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 ""
+
+#: includes/sc_event-list_helptexts.php:124
+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:130
+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:137
+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:138
+msgid "Event Information:"
+msgstr "Información del evento:"
+
+#: 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 "Filtro de categoría"
+
+#: 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 "Cantidad de eventos listados"
+
+#: 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 "caracteres"
+
+#: 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 "Mostrar horario de comienzo del evento"
+
+#: 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 "Mostrar localización del evento"
+
+#: 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 "Recortar la localización a"
+
+#: 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 details"
+msgstr "Mostrar detalles del evento"
+
+#: includes/widget_helptexts.php:61
+msgid "This option defines if the event details will be displayed."
+msgstr ""
+
+#: includes/widget_helptexts.php:66
+msgid "Truncate details to"
+msgstr ""
+
+#: includes/widget_helptexts.php:68
+msgid ""
+"If the event details 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 "Link a la Página del Evento"
+
+#: 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 "Eventos próximos"
+
+#: includes/widget.php:38
+msgid "show events page"
+msgstr "Mostrar página de eventos"
diff --git a/wp-content/plugins/event-list/languages/event-list-es_ES.mo b/wp-content/plugins/event-list/languages/event-list-es_ES.mo
new file mode 100644
index 0000000000000000000000000000000000000000..8b01d64d21c673b2c254f0e4108cac4574289c54
Binary files /dev/null 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
new file mode 100644
index 0000000000000000000000000000000000000000..d9b89485491a28f587666912b14278bcae819b78
--- /dev/null
+++ b/wp-content/plugins/event-list/languages/event-list-es_ES.po
@@ -0,0 +1,1594 @@
+# Translation file for the 'Event List' WordPress plugin
+# Copyright (C) 2017 by mibuthu
+# This file is distributed under the same license as the corresponding wordpress plugin.
+# 
+# Translators:
+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-03-17 17:25+0100\n"
+"PO-Revision-Date: 2017-03-17 16:25+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"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: es_ES\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: admin/admin.php:45
+msgid "Event List"
+msgstr "Listado Eventos"
+
+#: admin/admin.php:48 admin/admin.php:80 admin/includes/admin-main.php:117
+#: admin/includes/category_table.php:110
+msgid "Events"
+msgstr "Eventos"
+
+#: admin/admin.php:48
+msgid "All Events"
+msgstr "Añadir Eventos"
+
+#: admin/admin.php:52 admin/includes/admin-new.php:41
+msgid "Add New Event"
+msgstr "Añadir Nuevo Evento"
+
+#: admin/admin.php:52 admin/includes/admin-main.php:119
+msgid "Add New"
+msgstr "Añadir Nuevo"
+
+#: admin/admin.php:56 admin/includes/admin-categories.php:50
+msgid "Event List Categories"
+msgstr "Categorías de Eventos"
+
+#: admin/admin.php:56 admin/includes/admin-new.php:145
+#: admin/includes/event_table.php:111
+msgid "Categories"
+msgstr "Categorías"
+
+#: admin/admin.php:60 admin/includes/admin-settings.php:53
+msgid "Event List Settings"
+msgstr "Ajustes de eventos"
+
+#: admin/admin.php:60
+msgid "Settings"
+msgstr "Ajustes"
+
+#: admin/admin.php:64 admin/includes/admin-about.php:37
+msgid "About Event List"
+msgstr "Acerca de la lista de eventos"
+
+#: admin/admin.php:64
+msgid "About"
+msgstr "Sobre"
+
+#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:68
+msgid "General"
+msgstr "General"
+
+#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
+#: admin/includes/admin-about.php:103
+msgid "Shortcode Attributes"
+msgstr ""
+
+#: admin/includes/admin-about.php:71
+msgid "Help and Instructions"
+msgstr "Ayuda e instrucciones"
+
+#: admin/includes/admin-about.php:72
+#, php-format
+msgid "You can manage the events %1$shere%2$s"
+msgstr ""
+
+#: admin/includes/admin-about.php:73
+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
+#, php-format
+msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
+msgstr ""
+
+#: admin/includes/admin-about.php:75
+#, php-format
+msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
+msgstr ""
+
+#: admin/includes/admin-about.php:76
+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
+#, 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
+msgid "The available  widget options are described in their tooltip text."
+msgstr ""
+
+#: admin/includes/admin-about.php:79
+#, 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
+msgid "Add links to the single events"
+msgstr ""
+
+#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:95
+msgid "Add a link to the Event List page"
+msgstr ""
+
+#: admin/includes/admin-about.php:80
+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
+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
+#, 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
+#, 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
+#, 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
+msgid "Settings page"
+msgstr ""
+
+#: admin/includes/admin-about.php:91
+msgid "About the plugin author"
+msgstr ""
+
+#: admin/includes/admin-about.php:93
+#, 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
+msgid "wordpress plugin site"
+msgstr ""
+
+#: admin/includes/admin-about.php:94
+#, php-format
+msgid "If you like the plugin please rate it on the %1$s."
+msgstr ""
+
+#: admin/includes/admin-about.php:94
+msgid "wordpress plugin review site"
+msgstr ""
+
+#: admin/includes/admin-about.php:95
+msgid ""
+"If you want to support the plugin I would be happy to get a small donation"
+msgstr ""
+
+#: admin/includes/admin-about.php:105
+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:106
+#, 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:108
+msgid ""
+"Below you can find a list of all supported attributes with their "
+"descriptions and available options:"
+msgstr ""
+
+#: admin/includes/admin-about.php:122
+msgid "Attribute name"
+msgstr "Nombre de atributo"
+
+#: admin/includes/admin-about.php:123
+msgid "Value options"
+msgstr "Opciones de valor"
+
+#: admin/includes/admin-about.php:124
+msgid "Default value"
+msgstr "Valor por defecto"
+
+#: admin/includes/admin-about.php:125 admin/includes/admin-categories.php:188
+#: admin/includes/category_table.php:108
+msgid "Description"
+msgstr "Descripción"
+
+#: admin/includes/admin-about.php:143 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:144
+msgid ""
+"For date and cat filters you can specify complex filters with the following "
+"syntax:"
+msgstr ""
+
+#: admin/includes/admin-about.php:145
+#, 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:145
+msgid "AND"
+msgstr "Y"
+
+#: admin/includes/admin-about.php:145
+msgid "OR"
+msgstr "O"
+
+#: admin/includes/admin-about.php:145
+msgid "or"
+msgstr "o"
+
+#: admin/includes/admin-about.php:145
+msgid "and"
+msgstr "y"
+
+#: admin/includes/admin-about.php:146
+msgid "Examples for cat filters:"
+msgstr "Ejemplos de filtros cat:"
+
+#: admin/includes/admin-about.php:147
+#, php-format
+msgid "Show all events with category %1$s."
+msgstr ""
+
+#: admin/includes/admin-about.php:148
+#, php-format
+msgid "Show all events with category %1$s or %2$s."
+msgstr ""
+
+#: admin/includes/admin-about.php:149
+#, 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:154 includes/sc_event-list_helptexts.php:25
+msgid "Available Date Formats"
+msgstr "Formatos de fecha disponibles"
+
+#: admin/includes/admin-about.php:155
+msgid "For date filters you can use the following date formats:"
+msgstr ""
+
+#: admin/includes/admin-about.php:163 includes/sc_event-list_helptexts.php:25
+msgid "Available Date Range Formats"
+msgstr "Formatos Rango Fecha Disponible"
+
+#: admin/includes/admin-about.php:164
+msgid "For date filters you can use the following daterange formats:"
+msgstr ""
+
+#: admin/includes/admin-about.php:176
+msgid "Value"
+msgstr "Valor"
+
+#: admin/includes/admin-about.php:180
+msgid "Example"
+msgstr "Ejemplo"
+
+#: admin/includes/admin-categories.php:53
+msgid "Edit Category"
+msgstr "Editar categoría"
+
+#: admin/includes/admin-categories.php:53
+msgid "Update Category"
+msgstr "Actualizar Categoría"
+
+#: admin/includes/admin-categories.php:59
+msgid "Add New Category"
+msgstr "Agregar nueva categoría"
+
+#: admin/includes/admin-categories.php:84
+#, php-format
+msgid "Category \"%s\" deleted."
+msgstr "Categoría “%s” eliminada."
+
+#: admin/includes/admin-categories.php:86
+#, php-format
+msgid "This Category was also removed from %d events."
+msgstr ""
+
+#: admin/includes/admin-categories.php:92
+#, php-format
+msgid "Error while deleting category \"%s\""
+msgstr ""
+
+#: admin/includes/admin-categories.php:102
+msgid "Sync with post categories enabled."
+msgstr ""
+
+#: admin/includes/admin-categories.php:105
+msgid "Sync with post categories disabled."
+msgstr ""
+
+#: admin/includes/admin-categories.php:111
+msgid "Manual sync with post categories sucessfully finished."
+msgstr ""
+
+#: admin/includes/admin-categories.php:119
+#, php-format
+msgid "New Category \"%s\" was added"
+msgstr ""
+
+#: admin/includes/admin-categories.php:122
+#, php-format
+msgid "Error: New Category \"%s\" could not be added"
+msgstr ""
+
+#: admin/includes/admin-categories.php:128
+#, php-format
+msgid "Category \"%s\" was modified"
+msgstr ""
+
+#: admin/includes/admin-categories.php:131
+#, php-format
+msgid "Error: Category \"%s\" could not be modified"
+msgstr ""
+
+#: admin/includes/admin-categories.php:138
+msgid "Categories are automatically synced with the post categories."
+msgstr ""
+
+#: admin/includes/admin-categories.php:139
+msgid ""
+"Because of this all options to add new categories or editing existing "
+"categories are disabled."
+msgstr ""
+
+#: admin/includes/admin-categories.php:140
+msgid ""
+"If you want to manually edit the categories you have to disable this option."
+msgstr ""
+
+#: admin/includes/admin-categories.php:167
+msgid "The name is how it appears on your site."
+msgstr ""
+
+#: admin/includes/admin-categories.php:172
+msgid ""
+"The “slug” is the URL-friendly version of the name. It is usually all "
+"lowercase and contains only letters, numbers, and hyphens."
+msgstr ""
+
+#: admin/includes/admin-categories.php:185
+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 ""
+
+#: admin/includes/admin-categories.php:232
+msgid "Apply"
+msgstr "Aplicar"
+
+#: admin/includes/admin-categories.php:242
+msgid "Do a manual sync with post categories"
+msgstr ""
+
+#: admin/includes/admin-import.php:45
+msgid "Import Events"
+msgstr "Importar Eventos"
+
+#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:120
+msgid "Step"
+msgstr "Paso"
+
+#: admin/includes/admin-import.php:65
+msgid "Set import file and options"
+msgstr ""
+
+#: admin/includes/admin-import.php:68
+#, php-format
+msgid "Proceed with Step %1$s"
+msgstr ""
+
+#: admin/includes/admin-import.php:71
+msgid "Example file"
+msgstr "Archivo de ejemplo"
+
+#: admin/includes/admin-import.php:72
+#, 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
+msgid "Note"
+msgstr "Nota"
+
+#: admin/includes/admin-import.php:73
+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
+msgid "Sorry, there has been an error."
+msgstr ""
+
+#: admin/includes/admin-import.php:81
+msgid "The file does not exist, please try again."
+msgstr ""
+
+#: admin/includes/admin-import.php:89
+msgid "The file is not a CSV file."
+msgstr ""
+
+#: admin/includes/admin-import.php:120
+msgid "Events review and additonal category selection"
+msgstr ""
+
+#: admin/includes/admin-import.php:123
+msgid ""
+"Warning: The following category slugs are not available and will be removed "
+"from the imported events:"
+msgstr ""
+
+#: admin/includes/admin-import.php:129
+msgid ""
+"If you want to keep these categories, please create these Categories first "
+"and do the import afterwards."
+msgstr ""
+
+#: admin/includes/admin-import.php:147
+msgid "Add additional categories"
+msgstr ""
+
+#: admin/includes/admin-import.php:148
+msgid "Import events"
+msgstr ""
+
+#: admin/includes/admin-import.php:162
+msgid "Import with errors!"
+msgstr ""
+
+#: admin/includes/admin-import.php:163
+#, php-format
+msgid ""
+"An error occurred during import! Please send your import file to %1$sthe "
+"administrator%2$s for analysis."
+msgstr ""
+
+#: admin/includes/admin-import.php:167
+msgid "Import successful!"
+msgstr ""
+
+#: admin/includes/admin-import.php:168
+msgid "Go back to All Events"
+msgstr ""
+
+#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:106
+#: admin/includes/event_table.php:108 includes/widget_helptexts.php:8
+msgid "Title"
+msgstr "Título"
+
+#: admin/includes/admin-import.php:176
+msgid "Start Date"
+msgstr "Fecha Inicio"
+
+#: admin/includes/admin-import.php:177
+msgid "End Date"
+msgstr "Fecha Final"
+
+#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:119
+#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
+msgid "Time"
+msgstr "Hora"
+
+#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:123
+#: admin/includes/event_table.php:109 includes/options_helptexts.php:53
+#: includes/options_helptexts.php:54
+msgid "Location"
+msgstr "Ubicación"
+
+#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:127
+#: admin/includes/event_table.php:110
+msgid "Details"
+msgstr "Detalles"
+
+#: admin/includes/admin-import.php:181
+msgid "Category slugs"
+msgstr ""
+
+#: admin/includes/admin-import.php:220
+#, php-format
+msgid ""
+"There was an error at line %1$s when reading this CSV file: Header line is "
+"missing or not correct!"
+msgstr ""
+
+#: admin/includes/admin-import.php:252 admin/includes/admin-main.php:120
+msgid "Import"
+msgstr "Importar"
+
+#: admin/includes/admin-main.php:114
+msgid "Edit Event"
+msgstr "Editar Evento"
+
+#: admin/includes/admin-main.php:114 admin/includes/event_table.php:72
+msgid "Duplicate"
+msgstr "Duplicar"
+
+#: admin/includes/admin-new.php:43
+#, php-format
+msgid "Duplicate of event id:%d"
+msgstr "Duplicado de evento id: % d"
+
+#: admin/includes/admin-new.php:106 admin/includes/admin-new.php:110
+msgid "required"
+msgstr "obligatorio"
+
+#: admin/includes/admin-new.php:110 admin/includes/event_table.php:107
+msgid "Date"
+msgstr "Fecha"
+
+#: admin/includes/admin-new.php:113
+msgid "Multi-Day Event"
+msgstr "Evento de varios días"
+
+#: admin/includes/admin-new.php:143 admin/includes/admin-new.php:160
+msgid "Publish"
+msgstr "Publicar"
+
+#: admin/includes/admin-new.php:160
+msgid "Update"
+msgstr "Actualizar"
+
+#: admin/includes/admin-new.php:162
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: admin/includes/admin-new.php:175
+msgid "No categories available."
+msgstr "No hay categorías disponibles"
+
+#: admin/includes/admin-new.php:221
+msgid "Goto Category Settings"
+msgstr "Ir a Ajustes de Categorías"
+
+#: admin/includes/admin-settings.php:41
+msgid "Settings saved."
+msgstr "Configuración guardada."
+
+#: admin/includes/admin-settings.php:69
+msgid "Frontend Settings"
+msgstr "Configuración de interfaz"
+
+#: admin/includes/admin-settings.php:70
+msgid "Admin Page Settings"
+msgstr "Configuración de página de administrador"
+
+#: admin/includes/admin-settings.php:71
+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:70 admin/includes/event_table.php:71
+msgid "Edit"
+msgstr "Editar"
+
+#: admin/includes/category_table.php:71 admin/includes/category_table.php:145
+#: admin/includes/event_table.php:73 admin/includes/event_table.php:146
+msgid "Delete"
+msgstr "Borrar"
+
+#: admin/includes/category_table.php:107
+msgid "Name"
+msgstr "Nombre"
+
+#: admin/includes/category_table.php:109
+msgid "Slug"
+msgstr "Enlace permanente"
+
+#: admin/includes/event_table.php:112
+msgid "Author"
+msgstr "Autor"
+
+#: admin/includes/event_table.php:113
+msgid "Published"
+msgstr "Publicado"
+
+#: admin/includes/event_table.php:175
+msgid "Filter"
+msgstr "Filtro"
+
+#: admin/includes/event_table.php:297
+#, php-format
+msgid "%s ago"
+msgstr "hace %s"
+
+#: includes/daterange_helptexts.php:7
+msgid "Year"
+msgstr "Año"
+
+#: 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 "Mes"
+
+#: 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 "Día"
+
+#: 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 "Año relativo"
+
+#: 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 "Mes relativo"
+
+#: includes/daterange_helptexts.php:28
+msgid "A relative month"
+msgstr "Un mes relativo"
+
+#: includes/daterange_helptexts.php:29
+msgid "number of months"
+msgstr "número de meses"
+
+#: includes/daterange_helptexts.php:33
+msgid "Relative Week"
+msgstr "Semana relativa"
+
+#: includes/daterange_helptexts.php:34
+msgid "A relative week"
+msgstr "Una semana relativa"
+
+#: includes/daterange_helptexts.php:35
+msgid "number of weeks"
+msgstr "número de semanas"
+
+#: 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 "Día relativo"
+
+#: includes/daterange_helptexts.php:42
+msgid "A relative day"
+msgstr "Un día relativo"
+
+#: includes/daterange_helptexts.php:43
+msgid "number of days"
+msgstr "Número de días"
+
+#: includes/daterange_helptexts.php:49
+msgid "Date range"
+msgstr "Rango de fechas"
+
+#: 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:291
+msgid "Upcoming"
+msgstr "Próximamente"
+
+#: 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:295
+msgid "Past"
+msgstr "Pasado"
+
+#: includes/daterange_helptexts.php:65
+msgid "This value defines a range from the past to the previous day."
+msgstr ""
+
+#: includes/filterbar.php:282
+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/options_helptexts.php:11
+msgid "Sync Categories"
+msgstr "Sincronizar Categorías"
+
+#: includes/options_helptexts.php:12
+msgid "Keep event categories in sync with post categories automatically"
+msgstr ""
+
+#: includes/options_helptexts.php:13
+msgid "Attention"
+msgstr "Atención"
+
+#: 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 ""
+
+#: includes/options_helptexts.php:18
+msgid "CSV File to import"
+msgstr "Importar vía archivo CSV"
+
+#: includes/options_helptexts.php:20
+msgid "Please select the file which contains the event data in CSV format."
+msgstr ""
+
+#: includes/options_helptexts.php:23
+msgid "Used date format"
+msgstr "Formato de Fecha utilizado"
+
+#: 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 ""
+
+#: includes/options_helptexts.php:29
+msgid "Text for no events"
+msgstr "Texto para ningún evento"
+
+#: includes/options_helptexts.php:31
+msgid ""
+"This option defines the displayed text when no events are available for the "
+"selected view."
+msgstr ""
+
+#: includes/options_helptexts.php:34
+msgid "Multiday filter range"
+msgstr ""
+
+#: includes/options_helptexts.php:35
+msgid "Use the complete event range in the date filter"
+msgstr ""
+
+#: includes/options_helptexts.php:36
+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
+msgid ""
+"If disabled, only the start day of an event is considered in the filter."
+msgstr ""
+
+#: includes/options_helptexts.php:38
+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
+msgid "Date display"
+msgstr "Indicación de la fecha"
+
+#: includes/options_helptexts.php:42
+msgid "Show the date only once per day"
+msgstr ""
+
+#: includes/options_helptexts.php:43
+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
+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
+msgid "HTML tags"
+msgstr "Etiquetas HTML"
+
+#: includes/options_helptexts.php:48 includes/options_helptexts.php:53
+#, php-format
+msgid "Allow HTML tags in the event field \"%1$s\""
+msgstr ""
+
+#: includes/options_helptexts.php:49 includes/options_helptexts.php:54
+#, php-format
+msgid ""
+"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
+msgstr ""
+
+#: includes/options_helptexts.php:57
+msgid "Preferred language file"
+msgstr ""
+
+#: includes/options_helptexts.php:58
+msgid "Load translations from general language directory first"
+msgstr ""
+
+#: includes/options_helptexts.php:59
+#, 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
+#, 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\""
+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."
+msgstr ""
+
+#: includes/options_helptexts.php:68
+msgid "Text for \"Hide details\""
+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."
+msgstr ""
+
+#: includes/options_helptexts.php:72
+msgid "Disable CSS file"
+msgstr "Deshabitar CSS"
+
+#: includes/options_helptexts.php:73
+#, php-format
+msgid "Disable the %1$s file."
+msgstr ""
+
+#: includes/options_helptexts.php:74
+#, php-format
+msgid "With this option you can disable the inclusion of the %1$s file."
+msgstr ""
+
+#: includes/options_helptexts.php:75
+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
+msgid "Date format in edit form"
+msgstr ""
+
+#: includes/options_helptexts.php:80
+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
+msgid "The default is an empty string to use the Wordpress standard setting."
+msgstr ""
+
+#: includes/options_helptexts.php:82
+#, 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
+msgid "Enable RSS feed"
+msgstr ""
+
+#: includes/options_helptexts.php:87
+msgid "Enable support for an event RSS feed"
+msgstr ""
+
+#: includes/options_helptexts.php:88
+msgid "This option activates a RSS feed for the events."
+msgstr ""
+
+#: includes/options_helptexts.php:89
+msgid ""
+"You have to enable this option if you want to use one of the RSS feed "
+"features."
+msgstr ""
+
+#: includes/options_helptexts.php:92
+msgid "Feed name"
+msgstr ""
+
+#: includes/options_helptexts.php:93
+#, php-format
+msgid "This option sets the feed name. The default value is %1$s."
+msgstr ""
+
+#: includes/options_helptexts.php:94
+#, 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
+msgid "Feed Description"
+msgstr ""
+
+#: includes/options_helptexts.php:98
+#, php-format
+msgid "This options set the feed description. The default value is %1$s."
+msgstr ""
+
+#: includes/options_helptexts.php:99
+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
+msgid "Listed events"
+msgstr ""
+
+#: includes/options_helptexts.php:103
+msgid "Only show upcoming events in feed"
+msgstr ""
+
+#: includes/options_helptexts.php:104
+msgid ""
+"If this option is enabled only the upcoming events are listed in the feed."
+msgstr ""
+
+#: includes/options_helptexts.php:105
+msgid "If disabled all events (upcoming and past) will be listed."
+msgstr ""
+
+#: includes/options_helptexts.php:108
+msgid "Add RSS feed link in head"
+msgstr ""
+
+#: includes/options_helptexts.php:109
+msgid "Add RSS feed link in the html head"
+msgstr ""
+
+#: includes/options_helptexts.php:110
+msgid "This option adds a RSS feed in the html head for the events."
+msgstr ""
+
+#: includes/options_helptexts.php:111
+msgid "There are 2 alternatives to include the RSS feed"
+msgstr ""
+
+#: includes/options_helptexts.php:112
+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
+#, 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
+#, php-format
+msgid "This option is only valid if the setting %1$s is enabled."
+msgstr ""
+
+#: includes/options_helptexts.php:117
+msgid "Position of the RSS feed link"
+msgstr ""
+
+#: includes/options_helptexts.php:118
+msgid "at the top (above the navigation bar)"
+msgstr ""
+
+#: includes/options_helptexts.php:118
+msgid "between navigation bar and events"
+msgstr ""
+
+#: includes/options_helptexts.php:118
+msgid "at the bottom"
+msgstr ""
+
+#: includes/options_helptexts.php:119
+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
+#, 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
+msgid "Align of the RSS feed link"
+msgstr ""
+
+#: includes/options_helptexts.php:124
+msgid "left"
+msgstr ""
+
+#: includes/options_helptexts.php:124
+msgid "center"
+msgstr ""
+
+#: includes/options_helptexts.php:124
+msgid "right"
+msgstr ""
+
+#: includes/options_helptexts.php:125
+msgid ""
+"This option specifies the align of the RSS feed link in the event list."
+msgstr ""
+
+#: includes/options_helptexts.php:129
+msgid "Feed link text"
+msgstr ""
+
+#: includes/options_helptexts.php:130
+msgid ""
+"This option specifies the caption of the RSS feed link in the event list."
+msgstr ""
+
+#: includes/options_helptexts.php:131
+msgid ""
+"Insert an empty text to hide any text if you only want to show the rss "
+"image."
+msgstr ""
+
+#: includes/options_helptexts.php:135
+msgid "Feed link image"
+msgstr ""
+
+#: includes/options_helptexts.php:136
+msgid "Show rss image in feed link"
+msgstr ""
+
+#: includes/options_helptexts.php:137
+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 ""
+
+#: includes/options.php:44
+msgid "Hide details"
+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-details 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:76
+#: includes/sc_event-list_helptexts.php:91
+#: includes/sc_event-list_helptexts.php:106
+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:77
+#: includes/sc_event-list_helptexts.php:92
+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:78
+#: includes/sc_event-list_helptexts.php:93
+#, 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:79
+#: includes/sc_event-list_helptexts.php:94
+#: includes/sc_event-list_helptexts.php:109
+msgid "This attribute has no influence if only a single event is shown."
+msgstr ""
+
+#: includes/sc_event-list_helptexts.php:82
+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:87
+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:97
+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:102
+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 ""
+
+#: includes/sc_event-list_helptexts.php:107
+msgid ""
+"This attribute specifies if the details should be truncate to the given "
+"number of characters in the event list."
+msgstr ""
+
+#: includes/sc_event-list_helptexts.php:108
+#, php-format
+msgid "With the standard value %1$s the full text is displayed."
+msgstr ""
+
+#: includes/sc_event-list_helptexts.php:112
+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 ""
+
+#: includes/sc_event-list_helptexts.php:118
+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 ""
+
+#: includes/sc_event-list_helptexts.php:124
+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:130
+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:137
+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:138
+msgid "Event Information:"
+msgstr "Información del evento:"
+
+#: 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 "Categoría de filtro"
+
+#: 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 "caracteres"
+
+#: 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 details"
+msgstr "Ver detalles del evento"
+
+#: includes/widget_helptexts.php:61
+msgid "This option defines if the event details will be displayed."
+msgstr ""
+
+#: includes/widget_helptexts.php:66
+msgid "Truncate details to"
+msgstr "Truncar los datos para"
+
+#: includes/widget_helptexts.php:68
+msgid ""
+"If the event details 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-fi_FI.mo b/wp-content/plugins/event-list/languages/event-list-fi_FI.mo
new file mode 100644
index 0000000000000000000000000000000000000000..b25a9d54dfdd8688ef58e15784a5135cf89fde9c
Binary files /dev/null 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
new file mode 100644
index 0000000000000000000000000000000000000000..53d6049250d53ec2a039feb39d881775b869f965
--- /dev/null
+++ b/wp-content/plugins/event-list/languages/event-list-fi_FI.po
@@ -0,0 +1,1596 @@
+# Translation file for the 'Event List' WordPress plugin
+# Copyright (C) 2017 by mibuthu
+# This file is distributed under the same license as the corresponding wordpress plugin.
+# 
+# Translators:
+# Jarno Vesala <jarno.vesala@jvesala.com>, 2015
+# Miika R <miika.rautiainen@gmail.com>, 2015
+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-03-17 17:25+0100\n"
+"PO-Revision-Date: 2017-03-17 16:25+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"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: fi_FI\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: admin/admin.php:45
+msgid "Event List"
+msgstr "Tapahtuma lista"
+
+#: admin/admin.php:48 admin/admin.php:80 admin/includes/admin-main.php:117
+#: admin/includes/category_table.php:110
+msgid "Events"
+msgstr "Tapahtumat"
+
+#: admin/admin.php:48
+msgid "All Events"
+msgstr "Kaikki tapahtumat"
+
+#: admin/admin.php:52 admin/includes/admin-new.php:41
+msgid "Add New Event"
+msgstr "Lisää uusi tapahtuma"
+
+#: admin/admin.php:52 admin/includes/admin-main.php:119
+msgid "Add New"
+msgstr "Lisää uusi"
+
+#: admin/admin.php:56 admin/includes/admin-categories.php:50
+msgid "Event List Categories"
+msgstr "Tapahtuma listan gategoriat"
+
+#: admin/admin.php:56 admin/includes/admin-new.php:145
+#: admin/includes/event_table.php:111
+msgid "Categories"
+msgstr "Kategoriat"
+
+#: admin/admin.php:60 admin/includes/admin-settings.php:53
+msgid "Event List Settings"
+msgstr "Tapahtuma listan asetukset"
+
+#: admin/admin.php:60
+msgid "Settings"
+msgstr "Asetukset"
+
+#: admin/admin.php:64 admin/includes/admin-about.php:37
+msgid "About Event List"
+msgstr "Lisätietoa Tapahtumalistasta"
+
+#: admin/admin.php:64
+msgid "About"
+msgstr "Lisätietoa"
+
+#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:68
+msgid "General"
+msgstr "Yleinen"
+
+#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
+#: admin/includes/admin-about.php:103
+msgid "Shortcode Attributes"
+msgstr ""
+
+#: admin/includes/admin-about.php:71
+msgid "Help and Instructions"
+msgstr "Apu ja ohjeet"
+
+#: admin/includes/admin-about.php:72
+#, php-format
+msgid "You can manage the events %1$shere%2$s"
+msgstr ""
+
+#: admin/includes/admin-about.php:73
+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
+#, 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
+#, 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
+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
+#, 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
+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
+#, 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
+msgid "Add links to the single events"
+msgstr "Lisää linkkejä yksittäisiin tapahtumiin"
+
+#: admin/includes/admin-about.php:79 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
+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
+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
+#, 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
+#, 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
+#, 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
+msgid "Settings page"
+msgstr ""
+
+#: admin/includes/admin-about.php:91
+msgid "About the plugin author"
+msgstr ""
+
+#: admin/includes/admin-about.php:93
+#, 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
+msgid "wordpress plugin site"
+msgstr ""
+
+#: admin/includes/admin-about.php:94
+#, php-format
+msgid "If you like the plugin please rate it on the %1$s."
+msgstr ""
+
+#: admin/includes/admin-about.php:94
+msgid "wordpress plugin review site"
+msgstr ""
+
+#: admin/includes/admin-about.php:95
+msgid ""
+"If you want to support the plugin I would be happy to get a small donation"
+msgstr ""
+
+#: admin/includes/admin-about.php:105
+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:106
+#, 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:108
+msgid ""
+"Below you can find a list of all supported attributes with their "
+"descriptions and available options:"
+msgstr ""
+
+#: admin/includes/admin-about.php:122
+msgid "Attribute name"
+msgstr "Atribuutin nimi"
+
+#: admin/includes/admin-about.php:123
+msgid "Value options"
+msgstr "Arvon vaihtoehdot"
+
+#: admin/includes/admin-about.php:124
+msgid "Default value"
+msgstr "Oletus arvo"
+
+#: admin/includes/admin-about.php:125 admin/includes/admin-categories.php:188
+#: admin/includes/category_table.php:108
+msgid "Description"
+msgstr "Kuvaus"
+
+#: admin/includes/admin-about.php:143 includes/sc_event-list_helptexts.php:26
+#: includes/sc_event-list_helptexts.php:31
+msgid "Filter Syntax"
+msgstr ""
+
+#: admin/includes/admin-about.php:144
+msgid ""
+"For date and cat filters you can specify complex filters with the following "
+"syntax:"
+msgstr ""
+
+#: admin/includes/admin-about.php:145
+#, 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:145
+msgid "AND"
+msgstr ""
+
+#: admin/includes/admin-about.php:145
+msgid "OR"
+msgstr ""
+
+#: admin/includes/admin-about.php:145
+msgid "or"
+msgstr "tai"
+
+#: admin/includes/admin-about.php:145
+msgid "and"
+msgstr "ja"
+
+#: admin/includes/admin-about.php:146
+msgid "Examples for cat filters:"
+msgstr ""
+
+#: admin/includes/admin-about.php:147
+#, php-format
+msgid "Show all events with category %1$s."
+msgstr ""
+
+#: admin/includes/admin-about.php:148
+#, php-format
+msgid "Show all events with category %1$s or %2$s."
+msgstr ""
+
+#: admin/includes/admin-about.php:149
+#, 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:154 includes/sc_event-list_helptexts.php:25
+msgid "Available Date Formats"
+msgstr ""
+
+#: admin/includes/admin-about.php:155
+msgid "For date filters you can use the following date formats:"
+msgstr ""
+
+#: admin/includes/admin-about.php:163 includes/sc_event-list_helptexts.php:25
+msgid "Available Date Range Formats"
+msgstr ""
+
+#: admin/includes/admin-about.php:164
+msgid "For date filters you can use the following daterange formats:"
+msgstr ""
+
+#: admin/includes/admin-about.php:176
+msgid "Value"
+msgstr "Arvo"
+
+#: admin/includes/admin-about.php:180
+msgid "Example"
+msgstr "Esimerkki"
+
+#: admin/includes/admin-categories.php:53
+msgid "Edit Category"
+msgstr "Muokkaa kategoriaa"
+
+#: admin/includes/admin-categories.php:53
+msgid "Update Category"
+msgstr "Päivitä kategoria"
+
+#: admin/includes/admin-categories.php:59
+msgid "Add New Category"
+msgstr "Lisää uusi kategoria"
+
+#: admin/includes/admin-categories.php:84
+#, php-format
+msgid "Category \"%s\" deleted."
+msgstr "Kategoria \"%s\" on poistettu."
+
+#: admin/includes/admin-categories.php:86
+#, php-format
+msgid "This Category was also removed from %d events."
+msgstr ""
+
+#: admin/includes/admin-categories.php:92
+#, php-format
+msgid "Error while deleting category \"%s\""
+msgstr ""
+
+#: admin/includes/admin-categories.php:102
+msgid "Sync with post categories enabled."
+msgstr ""
+
+#: admin/includes/admin-categories.php:105
+msgid "Sync with post categories disabled."
+msgstr ""
+
+#: admin/includes/admin-categories.php:111
+msgid "Manual sync with post categories sucessfully finished."
+msgstr ""
+
+#: admin/includes/admin-categories.php:119
+#, php-format
+msgid "New Category \"%s\" was added"
+msgstr ""
+
+#: admin/includes/admin-categories.php:122
+#, php-format
+msgid "Error: New Category \"%s\" could not be added"
+msgstr ""
+
+#: admin/includes/admin-categories.php:128
+#, php-format
+msgid "Category \"%s\" was modified"
+msgstr ""
+
+#: admin/includes/admin-categories.php:131
+#, php-format
+msgid "Error: Category \"%s\" could not be modified"
+msgstr ""
+
+#: admin/includes/admin-categories.php:138
+msgid "Categories are automatically synced with the post categories."
+msgstr ""
+
+#: admin/includes/admin-categories.php:139
+msgid ""
+"Because of this all options to add new categories or editing existing "
+"categories are disabled."
+msgstr ""
+
+#: admin/includes/admin-categories.php:140
+msgid ""
+"If you want to manually edit the categories you have to disable this option."
+msgstr ""
+
+#: admin/includes/admin-categories.php:167
+msgid "The name is how it appears on your site."
+msgstr ""
+
+#: admin/includes/admin-categories.php:172
+msgid ""
+"The “slug” is the URL-friendly version of the name. It is usually all "
+"lowercase and contains only letters, numbers, and hyphens."
+msgstr ""
+
+#: admin/includes/admin-categories.php:185
+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 ""
+
+#: admin/includes/admin-categories.php:232
+msgid "Apply"
+msgstr "Aseta"
+
+#: admin/includes/admin-categories.php:242
+msgid "Do a manual sync with post categories"
+msgstr ""
+
+#: admin/includes/admin-import.php:45
+msgid "Import Events"
+msgstr "Tuo tapahtumia"
+
+#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:120
+msgid "Step"
+msgstr ""
+
+#: admin/includes/admin-import.php:65
+msgid "Set import file and options"
+msgstr ""
+
+#: admin/includes/admin-import.php:68
+#, php-format
+msgid "Proceed with Step %1$s"
+msgstr ""
+
+#: admin/includes/admin-import.php:71
+msgid "Example file"
+msgstr "Esimerkki tiedosto"
+
+#: admin/includes/admin-import.php:72
+#, 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
+msgid "Note"
+msgstr ""
+
+#: admin/includes/admin-import.php:73
+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
+msgid "Sorry, there has been an error."
+msgstr ""
+
+#: admin/includes/admin-import.php:81
+msgid "The file does not exist, please try again."
+msgstr ""
+
+#: admin/includes/admin-import.php:89
+msgid "The file is not a CSV file."
+msgstr ""
+
+#: admin/includes/admin-import.php:120
+msgid "Events review and additonal category selection"
+msgstr ""
+
+#: admin/includes/admin-import.php:123
+msgid ""
+"Warning: The following category slugs are not available and will be removed "
+"from the imported events:"
+msgstr ""
+
+#: admin/includes/admin-import.php:129
+msgid ""
+"If you want to keep these categories, please create these Categories first "
+"and do the import afterwards."
+msgstr ""
+
+#: admin/includes/admin-import.php:147
+msgid "Add additional categories"
+msgstr ""
+
+#: admin/includes/admin-import.php:148
+msgid "Import events"
+msgstr ""
+
+#: admin/includes/admin-import.php:162
+msgid "Import with errors!"
+msgstr ""
+
+#: admin/includes/admin-import.php:163
+#, php-format
+msgid ""
+"An error occurred during import! Please send your import file to %1$sthe "
+"administrator%2$s for analysis."
+msgstr ""
+
+#: admin/includes/admin-import.php:167
+msgid "Import successful!"
+msgstr ""
+
+#: admin/includes/admin-import.php:168
+msgid "Go back to All Events"
+msgstr ""
+
+#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:106
+#: admin/includes/event_table.php:108 includes/widget_helptexts.php:8
+msgid "Title"
+msgstr "Otsikko"
+
+#: admin/includes/admin-import.php:176
+msgid "Start Date"
+msgstr "Alku päivämäärä"
+
+#: admin/includes/admin-import.php:177
+msgid "End Date"
+msgstr "Loppu päivämäärä"
+
+#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:119
+#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
+msgid "Time"
+msgstr "Aika"
+
+#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:123
+#: admin/includes/event_table.php:109 includes/options_helptexts.php:53
+#: includes/options_helptexts.php:54
+msgid "Location"
+msgstr "Sijainti"
+
+#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:127
+#: admin/includes/event_table.php:110
+msgid "Details"
+msgstr "Yksityiskohdat"
+
+#: admin/includes/admin-import.php:181
+msgid "Category slugs"
+msgstr ""
+
+#: admin/includes/admin-import.php:220
+#, php-format
+msgid ""
+"There was an error at line %1$s when reading this CSV file: Header line is "
+"missing or not correct!"
+msgstr ""
+
+#: admin/includes/admin-import.php:252 admin/includes/admin-main.php:120
+msgid "Import"
+msgstr "Tuo"
+
+#: admin/includes/admin-main.php:114
+msgid "Edit Event"
+msgstr "Muokkaa tapahtumaa"
+
+#: admin/includes/admin-main.php:114 admin/includes/event_table.php:72
+msgid "Duplicate"
+msgstr ""
+
+#: admin/includes/admin-new.php:43
+#, php-format
+msgid "Duplicate of event id:%d"
+msgstr ""
+
+#: admin/includes/admin-new.php:106 admin/includes/admin-new.php:110
+msgid "required"
+msgstr "tarpeellinen"
+
+#: admin/includes/admin-new.php:110 admin/includes/event_table.php:107
+msgid "Date"
+msgstr "Päiväys"
+
+#: admin/includes/admin-new.php:113
+msgid "Multi-Day Event"
+msgstr ""
+
+#: admin/includes/admin-new.php:143 admin/includes/admin-new.php:160
+msgid "Publish"
+msgstr "Julkaise"
+
+#: admin/includes/admin-new.php:160
+msgid "Update"
+msgstr "Päivitä"
+
+#: admin/includes/admin-new.php:162
+msgid "Cancel"
+msgstr "Peruuta"
+
+#: admin/includes/admin-new.php:175
+msgid "No categories available."
+msgstr ""
+
+#: admin/includes/admin-new.php:221
+msgid "Goto Category Settings"
+msgstr ""
+
+#: admin/includes/admin-settings.php:41
+msgid "Settings saved."
+msgstr "Asetukset tallennettu."
+
+#: admin/includes/admin-settings.php:69
+msgid "Frontend Settings"
+msgstr ""
+
+#: admin/includes/admin-settings.php:70
+msgid "Admin Page Settings"
+msgstr ""
+
+#: admin/includes/admin-settings.php:71
+msgid "Feed Settings"
+msgstr "Syöte asetukset"
+
+#: admin/includes/category_table.php:27 admin/includes/event_table.php:29
+msgid "event"
+msgstr "tapahtuma"
+
+#: admin/includes/category_table.php:28 admin/includes/event_table.php:30
+msgid "events"
+msgstr "Tapahtumat"
+
+#: admin/includes/category_table.php:70 admin/includes/event_table.php:71
+msgid "Edit"
+msgstr "Muokkaa"
+
+#: admin/includes/category_table.php:71 admin/includes/category_table.php:145
+#: admin/includes/event_table.php:73 admin/includes/event_table.php:146
+msgid "Delete"
+msgstr "Poista"
+
+#: admin/includes/category_table.php:107
+msgid "Name"
+msgstr "Nimi"
+
+#: admin/includes/category_table.php:109
+msgid "Slug"
+msgstr ""
+
+#: admin/includes/event_table.php:112
+msgid "Author"
+msgstr ""
+
+#: admin/includes/event_table.php:113
+msgid "Published"
+msgstr "Julkaistu"
+
+#: admin/includes/event_table.php:175
+msgid "Filter"
+msgstr "Suodatin"
+
+#: admin/includes/event_table.php:297
+#, php-format
+msgid "%s ago"
+msgstr ""
+
+#: includes/daterange_helptexts.php:7
+msgid "Year"
+msgstr "Vuosi"
+
+#: 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 "Kuukausi"
+
+#: 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äivä"
+
+#: 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:291
+msgid "Upcoming"
+msgstr "Tulevat"
+
+#: 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:295
+msgid "Past"
+msgstr "Menneet"
+
+#: includes/daterange_helptexts.php:65
+msgid "This value defines a range from the past to the previous day."
+msgstr ""
+
+#: includes/filterbar.php:282
+msgid "All"
+msgstr "Kaikki"
+
+#: includes/filterbar.php:285
+msgid "Show all dates"
+msgstr "Näytä kaikki päiväykset"
+
+#: includes/filterbar.php:285
+msgid "Show all categories"
+msgstr "Näytä kaikki kategoriat"
+
+#: includes/options_helptexts.php:11
+msgid "Sync Categories"
+msgstr "Synkronoi kategoriat"
+
+#: includes/options_helptexts.php:12
+msgid "Keep event categories in sync with post categories automatically"
+msgstr ""
+
+#: includes/options_helptexts.php:13
+msgid "Attention"
+msgstr "Huomio"
+
+#: 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 ""
+
+#: includes/options_helptexts.php:18
+msgid "CSV File to import"
+msgstr ""
+
+#: includes/options_helptexts.php:20
+msgid "Please select the file which contains the event data in CSV format."
+msgstr ""
+
+#: includes/options_helptexts.php:23
+msgid "Used date format"
+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 ""
+
+#: includes/options_helptexts.php:29
+msgid "Text for no events"
+msgstr "Ei tapahtumia teksti"
+
+#: includes/options_helptexts.php:31
+msgid ""
+"This option defines the displayed text when no events are available for the "
+"selected view."
+msgstr ""
+
+#: includes/options_helptexts.php:34
+msgid "Multiday filter range"
+msgstr ""
+
+#: includes/options_helptexts.php:35
+msgid "Use the complete event range in the date filter"
+msgstr ""
+
+#: includes/options_helptexts.php:36
+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
+msgid ""
+"If disabled, only the start day of an event is considered in the filter."
+msgstr ""
+
+#: includes/options_helptexts.php:38
+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
+msgid "Date display"
+msgstr "Päivä näyttö"
+
+#: includes/options_helptexts.php:42
+msgid "Show the date only once per day"
+msgstr ""
+
+#: includes/options_helptexts.php:43
+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
+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
+msgid "HTML tags"
+msgstr "HTML merkit"
+
+#: includes/options_helptexts.php:48 includes/options_helptexts.php:53
+#, php-format
+msgid "Allow HTML tags in the event field \"%1$s\""
+msgstr ""
+
+#: includes/options_helptexts.php:49 includes/options_helptexts.php:54
+#, php-format
+msgid ""
+"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
+msgstr ""
+
+#: includes/options_helptexts.php:57
+msgid "Preferred language file"
+msgstr ""
+
+#: includes/options_helptexts.php:58
+msgid "Load translations from general language directory first"
+msgstr ""
+
+#: includes/options_helptexts.php:59
+#, 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
+#, 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\""
+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."
+msgstr ""
+
+#: includes/options_helptexts.php:68
+msgid "Text for \"Hide details\""
+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."
+msgstr ""
+
+#: includes/options_helptexts.php:72
+msgid "Disable CSS file"
+msgstr "Estä CSS tiedosto"
+
+#: includes/options_helptexts.php:73
+#, php-format
+msgid "Disable the %1$s file."
+msgstr ""
+
+#: includes/options_helptexts.php:74
+#, php-format
+msgid "With this option you can disable the inclusion of the %1$s file."
+msgstr ""
+
+#: includes/options_helptexts.php:75
+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
+msgid "Date format in edit form"
+msgstr "Päivämäärän muotoilu muokkaus lomakkeella"
+
+#: includes/options_helptexts.php:80
+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
+msgid "The default is an empty string to use the Wordpress standard setting."
+msgstr ""
+
+#: includes/options_helptexts.php:82
+#, 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
+msgid "Enable RSS feed"
+msgstr "Salli RSS syöte"
+
+#: includes/options_helptexts.php:87
+msgid "Enable support for an event RSS feed"
+msgstr ""
+
+#: includes/options_helptexts.php:88
+msgid "This option activates a RSS feed for the events."
+msgstr ""
+
+#: includes/options_helptexts.php:89
+msgid ""
+"You have to enable this option if you want to use one of the RSS feed "
+"features."
+msgstr ""
+
+#: includes/options_helptexts.php:92
+msgid "Feed name"
+msgstr "Syötteen nimi"
+
+#: includes/options_helptexts.php:93
+#, php-format
+msgid "This option sets the feed name. The default value is %1$s."
+msgstr ""
+
+#: includes/options_helptexts.php:94
+#, 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
+msgid "Feed Description"
+msgstr "Syötteen kuvaus"
+
+#: includes/options_helptexts.php:98
+#, php-format
+msgid "This options set the feed description. The default value is %1$s."
+msgstr ""
+
+#: includes/options_helptexts.php:99
+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
+msgid "Listed events"
+msgstr "Listatut tapahtumat"
+
+#: includes/options_helptexts.php:103
+msgid "Only show upcoming events in feed"
+msgstr ""
+
+#: includes/options_helptexts.php:104
+msgid ""
+"If this option is enabled only the upcoming events are listed in the feed."
+msgstr ""
+
+#: includes/options_helptexts.php:105
+msgid "If disabled all events (upcoming and past) will be listed."
+msgstr ""
+
+#: includes/options_helptexts.php:108
+msgid "Add RSS feed link in head"
+msgstr ""
+
+#: includes/options_helptexts.php:109
+msgid "Add RSS feed link in the html head"
+msgstr ""
+
+#: includes/options_helptexts.php:110
+msgid "This option adds a RSS feed in the html head for the events."
+msgstr ""
+
+#: includes/options_helptexts.php:111
+msgid "There are 2 alternatives to include the RSS feed"
+msgstr ""
+
+#: includes/options_helptexts.php:112
+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
+#, 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
+#, php-format
+msgid "This option is only valid if the setting %1$s is enabled."
+msgstr ""
+
+#: includes/options_helptexts.php:117
+msgid "Position of the RSS feed link"
+msgstr ""
+
+#: includes/options_helptexts.php:118
+msgid "at the top (above the navigation bar)"
+msgstr ""
+
+#: includes/options_helptexts.php:118
+msgid "between navigation bar and events"
+msgstr ""
+
+#: includes/options_helptexts.php:118
+msgid "at the bottom"
+msgstr ""
+
+#: includes/options_helptexts.php:119
+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
+#, 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
+msgid "Align of the RSS feed link"
+msgstr ""
+
+#: includes/options_helptexts.php:124
+msgid "left"
+msgstr ""
+
+#: includes/options_helptexts.php:124
+msgid "center"
+msgstr ""
+
+#: includes/options_helptexts.php:124
+msgid "right"
+msgstr ""
+
+#: includes/options_helptexts.php:125
+msgid ""
+"This option specifies the align of the RSS feed link in the event list."
+msgstr ""
+
+#: includes/options_helptexts.php:129
+msgid "Feed link text"
+msgstr ""
+
+#: includes/options_helptexts.php:130
+msgid ""
+"This option specifies the caption of the RSS feed link in the event list."
+msgstr ""
+
+#: includes/options_helptexts.php:131
+msgid ""
+"Insert an empty text to hide any text if you only want to show the rss "
+"image."
+msgstr ""
+
+#: includes/options_helptexts.php:135
+msgid "Feed link image"
+msgstr ""
+
+#: includes/options_helptexts.php:136
+msgid "Show rss image in feed link"
+msgstr ""
+
+#: includes/options_helptexts.php:137
+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 ""
+
+#: includes/options.php:44
+msgid "Hide details"
+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-details 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:76
+#: includes/sc_event-list_helptexts.php:91
+#: includes/sc_event-list_helptexts.php:106
+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:77
+#: includes/sc_event-list_helptexts.php:92
+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:78
+#: includes/sc_event-list_helptexts.php:93
+#, 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:79
+#: includes/sc_event-list_helptexts.php:94
+#: includes/sc_event-list_helptexts.php:109
+msgid "This attribute has no influence if only a single event is shown."
+msgstr ""
+
+#: includes/sc_event-list_helptexts.php:82
+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:87
+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:97
+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:102
+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 ""
+
+#: includes/sc_event-list_helptexts.php:107
+msgid ""
+"This attribute specifies if the details should be truncate to the given "
+"number of characters in the event list."
+msgstr ""
+
+#: includes/sc_event-list_helptexts.php:108
+#, php-format
+msgid "With the standard value %1$s the full text is displayed."
+msgstr ""
+
+#: includes/sc_event-list_helptexts.php:112
+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 ""
+
+#: includes/sc_event-list_helptexts.php:118
+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 ""
+
+#: includes/sc_event-list_helptexts.php:124
+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:130
+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:137
+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:138
+msgid "Event Information:"
+msgstr "Tapahtuman tiedot:"
+
+#: includes/widget_helptexts.php:10
+msgid "This option defines the displayed title for the widget."
+msgstr "Määritä vimpaimen näkyvä otsikko"
+
+#: includes/widget_helptexts.php:15
+msgid "Category Filter"
+msgstr "Kategoria suodatin"
+
+#: 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 "Listattujen tapahtumien määrä"
+
+#: 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 "Tapahtuma otsikon lyhenne"
+
+#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
+#: includes/widget_helptexts.php:67
+msgid "characters"
+msgstr "merkkejä"
+
+#: 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 "Näytä tapahtuman alkamisajankohta"
+
+#: 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 "Näytä tapahtuman paikka"
+
+#: 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 "Sijainnin lyhenne"
+
+#: 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 details"
+msgstr "Näytä tapahtuman tiedot"
+
+#: includes/widget_helptexts.php:61
+msgid "This option defines if the event details will be displayed."
+msgstr ""
+
+#: includes/widget_helptexts.php:66
+msgid "Truncate details to"
+msgstr "Yksityiskohtien lyhenne"
+
+#: includes/widget_helptexts.php:68
+msgid ""
+"If the event details 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 "Tällä vimpaimella voit näyttää tulevien tapahtumien listan."
+
+#: includes/widget.php:25
+msgid "Upcoming events"
+msgstr "Tulevat tapahtumat"
+
+#: includes/widget.php:38
+msgid "show events page"
+msgstr "näytä tapahtuma sivu"
diff --git a/wp-content/plugins/event-list/languages/event-list-fr_FR.mo b/wp-content/plugins/event-list/languages/event-list-fr_FR.mo
new file mode 100644
index 0000000000000000000000000000000000000000..c27c7a5683fb7c3136e19496012f812f177794c1
Binary files /dev/null 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
new file mode 100644
index 0000000000000000000000000000000000000000..e23753a9ce62ef1ae7fb73efeaafb73ccab921c3
--- /dev/null
+++ b/wp-content/plugins/event-list/languages/event-list-fr_FR.po
@@ -0,0 +1,1596 @@
+# Translation file for the 'Event List' WordPress plugin
+# Copyright (C) 2017 by mibuthu
+# This file is distributed under the same license as the corresponding wordpress plugin.
+# 
+# Translators:
+# Gwenael Jan <gwejan@gmail.com>, 2015
+# patoudss <patrice@desaintsteban.fr>, 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: 2017-03-17 17:25+0100\n"
+"PO-Revision-Date: 2017-03-17 16:25+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"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: fr_FR\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: admin/admin.php:45
+msgid "Event List"
+msgstr "Liste des événements"
+
+#: admin/admin.php:48 admin/admin.php:80 admin/includes/admin-main.php:117
+#: admin/includes/category_table.php:110
+msgid "Events"
+msgstr "Evénements"
+
+#: admin/admin.php:48
+msgid "All Events"
+msgstr "Tous les évènements"
+
+#: admin/admin.php:52 admin/includes/admin-new.php:41
+msgid "Add New Event"
+msgstr "Ajouter un nouvel évènement"
+
+#: admin/admin.php:52 admin/includes/admin-main.php:119
+msgid "Add New"
+msgstr "Ajouter"
+
+#: admin/admin.php:56 admin/includes/admin-categories.php:50
+msgid "Event List Categories"
+msgstr "Liste des catégories d'évènements"
+
+#: admin/admin.php:56 admin/includes/admin-new.php:145
+#: admin/includes/event_table.php:111
+msgid "Categories"
+msgstr "Catégories"
+
+#: admin/admin.php:60 admin/includes/admin-settings.php:53
+msgid "Event List Settings"
+msgstr "Préférences"
+
+#: admin/admin.php:60
+msgid "Settings"
+msgstr "Préférences"
+
+#: admin/admin.php:64 admin/includes/admin-about.php:37
+msgid "About Event List"
+msgstr "A propos de la liste d'évènement"
+
+#: admin/admin.php:64
+msgid "About"
+msgstr "A propos"
+
+#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:68
+msgid "General"
+msgstr "Général"
+
+#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
+#: admin/includes/admin-about.php:103
+msgid "Shortcode Attributes"
+msgstr "Attributs du shortcode"
+
+#: admin/includes/admin-about.php:71
+msgid "Help and Instructions"
+msgstr "Aide et instructions"
+
+#: admin/includes/admin-about.php:72
+#, php-format
+msgid "You can manage the events %1$shere%2$s"
+msgstr ""
+
+#: admin/includes/admin-about.php:73
+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
+#, 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
+#, 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
+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
+#, 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
+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
+#, 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
+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
+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
+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
+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
+#, 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
+#, 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
+#, 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
+msgid "Settings page"
+msgstr ""
+
+#: admin/includes/admin-about.php:91
+msgid "About the plugin author"
+msgstr ""
+
+#: admin/includes/admin-about.php:93
+#, 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
+msgid "wordpress plugin site"
+msgstr ""
+
+#: admin/includes/admin-about.php:94
+#, php-format
+msgid "If you like the plugin please rate it on the %1$s."
+msgstr ""
+
+#: admin/includes/admin-about.php:94
+msgid "wordpress plugin review site"
+msgstr ""
+
+#: admin/includes/admin-about.php:95
+msgid ""
+"If you want to support the plugin I would be happy to get a small donation"
+msgstr ""
+
+#: admin/includes/admin-about.php:105
+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:106
+#, 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:108
+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:122
+msgid "Attribute name"
+msgstr "Nom de l'attribut"
+
+#: admin/includes/admin-about.php:123
+msgid "Value options"
+msgstr "Valeurs possibles"
+
+#: admin/includes/admin-about.php:124
+msgid "Default value"
+msgstr "Valeur par défaut"
+
+#: admin/includes/admin-about.php:125 admin/includes/admin-categories.php:188
+#: admin/includes/category_table.php:108
+msgid "Description"
+msgstr "Description"
+
+#: admin/includes/admin-about.php:143 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:144
+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:145
+#, 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:145
+msgid "AND"
+msgstr "ET"
+
+#: admin/includes/admin-about.php:145
+msgid "OR"
+msgstr "OU"
+
+#: admin/includes/admin-about.php:145
+msgid "or"
+msgstr "ou"
+
+#: admin/includes/admin-about.php:145
+msgid "and"
+msgstr "et"
+
+#: admin/includes/admin-about.php:146
+msgid "Examples for cat filters:"
+msgstr "Exemple de filtre de catégorie :"
+
+#: admin/includes/admin-about.php:147
+#, 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:148
+#, 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:149
+#, 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:154 includes/sc_event-list_helptexts.php:25
+msgid "Available Date Formats"
+msgstr "Formats de date disponible"
+
+#: admin/includes/admin-about.php:155
+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:163 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:164
+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:176
+msgid "Value"
+msgstr "Valeur"
+
+#: admin/includes/admin-about.php:180
+msgid "Example"
+msgstr "Exemple"
+
+#: admin/includes/admin-categories.php:53
+msgid "Edit Category"
+msgstr "Modifier catégorie"
+
+#: admin/includes/admin-categories.php:53
+msgid "Update Category"
+msgstr "Mettre à jour catégorie"
+
+#: admin/includes/admin-categories.php:59
+msgid "Add New Category"
+msgstr "Ajouter une nouvelle catégorie"
+
+#: admin/includes/admin-categories.php:84
+#, php-format
+msgid "Category \"%s\" deleted."
+msgstr "Catégorie \"%s\" supprimé."
+
+#: admin/includes/admin-categories.php:86
+#, php-format
+msgid "This Category was also removed from %d events."
+msgstr "Cette catégorie a aussi été supprimé de %d évènements."
+
+#: admin/includes/admin-categories.php:92
+#, php-format
+msgid "Error while deleting category \"%s\""
+msgstr "Erreur lors de la suppression de la catégorie \"%s\""
+
+#: admin/includes/admin-categories.php:102
+msgid "Sync with post categories enabled."
+msgstr "Synchronisation avec les catégories d'articles activé"
+
+#: admin/includes/admin-categories.php:105
+msgid "Sync with post categories disabled."
+msgstr "Synchronisation avec les catégories d'articles désactivé."
+
+#: admin/includes/admin-categories.php:111
+msgid "Manual sync with post categories sucessfully finished."
+msgstr "Synchronisation manuel avec les catégories d'article achevé avec sucés."
+
+#: admin/includes/admin-categories.php:119
+#, php-format
+msgid "New Category \"%s\" was added"
+msgstr "Nouvelle catégorie \"%s\" ajouté."
+
+#: admin/includes/admin-categories.php:122
+#, php-format
+msgid "Error: New Category \"%s\" could not be added"
+msgstr "Erreur: la nouvelle catégorie \"%s\" ne peut pas être ajoutée."
+
+#: admin/includes/admin-categories.php:128
+#, php-format
+msgid "Category \"%s\" was modified"
+msgstr "La catégorie \"%s\" a été modifié."
+
+#: admin/includes/admin-categories.php:131
+#, 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:138
+msgid "Categories are automatically synced with the post categories."
+msgstr ""
+
+#: admin/includes/admin-categories.php:139
+msgid ""
+"Because of this all options to add new categories or editing existing "
+"categories are disabled."
+msgstr ""
+
+#: admin/includes/admin-categories.php:140
+msgid ""
+"If you want to manually edit the categories you have to disable this option."
+msgstr ""
+
+#: admin/includes/admin-categories.php:167
+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-categories.php:172
+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."
+
+#: admin/includes/admin-categories.php:185
+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."
+
+#: admin/includes/admin-categories.php:232
+msgid "Apply"
+msgstr "Appliquer"
+
+#: admin/includes/admin-categories.php:242
+msgid "Do a manual sync with post categories"
+msgstr "Faire une synchronisation manuel avec les catégories d'articles."
+
+#: admin/includes/admin-import.php:45
+msgid "Import Events"
+msgstr "Importer évènements."
+
+#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:120
+msgid "Step"
+msgstr "Etape"
+
+#: admin/includes/admin-import.php:65
+msgid "Set import file and options"
+msgstr "Sélection du fichier à importer et des options."
+
+#: admin/includes/admin-import.php:68
+#, php-format
+msgid "Proceed with Step %1$s"
+msgstr ""
+
+#: admin/includes/admin-import.php:71
+msgid "Example file"
+msgstr "Fichier d'exemple"
+
+#: admin/includes/admin-import.php:72
+#, 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
+msgid "Note"
+msgstr "Remarque"
+
+#: admin/includes/admin-import.php:73
+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
+msgid "Sorry, there has been an error."
+msgstr "Désolé, il y a eu une erreur."
+
+#: admin/includes/admin-import.php:81
+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:120
+msgid "Events review and additonal category selection"
+msgstr ""
+
+#: admin/includes/admin-import.php:123
+msgid ""
+"Warning: The following category slugs are not available and will be removed "
+"from the imported events:"
+msgstr ""
+
+#: admin/includes/admin-import.php:129
+msgid ""
+"If you want to keep these categories, please create these Categories first "
+"and do the import afterwards."
+msgstr ""
+
+#: admin/includes/admin-import.php:147
+msgid "Add additional categories"
+msgstr ""
+
+#: admin/includes/admin-import.php:148
+msgid "Import events"
+msgstr ""
+
+#: admin/includes/admin-import.php:162
+msgid "Import with errors!"
+msgstr "Importé avec des erreurs!"
+
+#: admin/includes/admin-import.php:163
+#, php-format
+msgid ""
+"An error occurred during import! Please send your import file to %1$sthe "
+"administrator%2$s for analysis."
+msgstr "Une erreur est survenue durant l'import! Merci d'envoyer votre fichier d'import à l'%1$sadministrateur%2$s pour analyse."
+
+#: admin/includes/admin-import.php:167
+msgid "Import successful!"
+msgstr "Importation réussis!"
+
+#: admin/includes/admin-import.php:168
+msgid "Go back to All Events"
+msgstr "Retour à la liste des évènements"
+
+#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:106
+#: admin/includes/event_table.php:108 includes/widget_helptexts.php:8
+msgid "Title"
+msgstr "Titre"
+
+#: admin/includes/admin-import.php:176
+msgid "Start Date"
+msgstr "Date de début"
+
+#: admin/includes/admin-import.php:177
+msgid "End Date"
+msgstr "Date de fin"
+
+#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:119
+#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
+msgid "Time"
+msgstr "Heure"
+
+#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:123
+#: admin/includes/event_table.php:109 includes/options_helptexts.php:53
+#: includes/options_helptexts.php:54
+msgid "Location"
+msgstr "Lieu"
+
+#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:127
+#: admin/includes/event_table.php:110
+msgid "Details"
+msgstr "Détails"
+
+#: admin/includes/admin-import.php:181
+msgid "Category slugs"
+msgstr ""
+
+#: admin/includes/admin-import.php:220
+#, php-format
+msgid ""
+"There was an error at line %1$s when reading this CSV file: Header line is "
+"missing or not correct!"
+msgstr ""
+
+#: admin/includes/admin-import.php:252 admin/includes/admin-main.php:120
+msgid "Import"
+msgstr "Importer"
+
+#: admin/includes/admin-main.php:114
+msgid "Edit Event"
+msgstr "Modifier évènement"
+
+#: admin/includes/admin-main.php:114 admin/includes/event_table.php:72
+msgid "Duplicate"
+msgstr "Dupliquer"
+
+#: admin/includes/admin-new.php:43
+#, php-format
+msgid "Duplicate of event id:%d"
+msgstr "Duplication de l'évènement: %d"
+
+#: admin/includes/admin-new.php:106 admin/includes/admin-new.php:110
+msgid "required"
+msgstr "Requis"
+
+#: admin/includes/admin-new.php:110 admin/includes/event_table.php:107
+msgid "Date"
+msgstr "Date"
+
+#: admin/includes/admin-new.php:113
+msgid "Multi-Day Event"
+msgstr "Evènement sur plusieurs jours"
+
+#: admin/includes/admin-new.php:143 admin/includes/admin-new.php:160
+msgid "Publish"
+msgstr "Publier"
+
+#: admin/includes/admin-new.php:160
+msgid "Update"
+msgstr "Modifier"
+
+#: admin/includes/admin-new.php:162
+msgid "Cancel"
+msgstr "Annuler"
+
+#: admin/includes/admin-new.php:175
+msgid "No categories available."
+msgstr "Pas de catégories disponible."
+
+#: admin/includes/admin-new.php:221
+msgid "Goto Category Settings"
+msgstr "Aller sur les paramètres des catégories"
+
+#: admin/includes/admin-settings.php:41
+msgid "Settings saved."
+msgstr "Paramètres sauvegardé."
+
+#: admin/includes/admin-settings.php:69
+msgid "Frontend Settings"
+msgstr "Frontend Préférences"
+
+#: admin/includes/admin-settings.php:70
+msgid "Admin Page Settings"
+msgstr "Administration Préférences"
+
+#: admin/includes/admin-settings.php:71
+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:70 admin/includes/event_table.php:71
+msgid "Edit"
+msgstr "Modifier"
+
+#: admin/includes/category_table.php:71 admin/includes/category_table.php:145
+#: admin/includes/event_table.php:73 admin/includes/event_table.php:146
+msgid "Delete"
+msgstr "Supprimer"
+
+#: admin/includes/category_table.php:107
+msgid "Name"
+msgstr "Nom"
+
+#: admin/includes/category_table.php:109
+msgid "Slug"
+msgstr "Slug"
+
+#: admin/includes/event_table.php:112
+msgid "Author"
+msgstr "Auteur"
+
+#: admin/includes/event_table.php:113
+msgid "Published"
+msgstr "Publié"
+
+#: admin/includes/event_table.php:175
+msgid "Filter"
+msgstr "Filtrer"
+
+#: admin/includes/event_table.php:297
+#, php-format
+msgid "%s ago"
+msgstr "depuis %s"
+
+#: includes/daterange_helptexts.php:7
+msgid "Year"
+msgstr "Année"
+
+#: includes/daterange_helptexts.php:8
+msgid "A year can be specified in 4 digit format."
+msgstr "Une année peut être spécifié au format 4 chiffres."
+
+#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14
+#: includes/daterange_helptexts.php:36
+#, php-format
+msgid ""
+"For a start date filter the first day of %1$s is used, in an end date the "
+"last day."
+msgstr "Pour un filtre de date de début, le premier jour de %1$s est utilisé, dans une date de fin, le dernier jours est utilisé."
+
+#: includes/daterange_helptexts.php:9
+msgid "the resulting year"
+msgstr "Année résultante"
+
+#: includes/daterange_helptexts.php:12
+msgid "Month"
+msgstr "Mois"
+
+#: 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 "Un mois peut être spécifié avec 4 chiffres pour l'année et 2 chiffres pour le mois, séparé par un tiret (-)."
+
+#: includes/daterange_helptexts.php:14
+msgid "the resulting month"
+msgstr "Mois résultant"
+
+#: includes/daterange_helptexts.php:17
+msgid "Day"
+msgstr "Jour"
+
+#: 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 "Un jour peut être spécifié avec le format de 4 chiffres pour l'année, 2 chiffres pour le mois et 2 chiffres pour le jour, séparé par un tiret (-)."
+
+#: includes/daterange_helptexts.php:21
+msgid "Relative Year"
+msgstr "Année relative"
+
+#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28
+#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42
+#, php-format
+msgid "%1$s from now can be specified in the following notation: %2$s"
+msgstr "%1$s peut maintenant être spécifié avec la notation suivante : %2$s"
+
+#: includes/daterange_helptexts.php:22
+msgid "A relative year"
+msgstr "Une année relative"
+
+#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29
+#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43
+#, php-format
+msgid ""
+"This means you can specify a positive or negative (%1$s) %2$s from now with "
+"%3$s or %4$s attached (see also the example below)."
+msgstr "Cela signifie que vous pouvez spécifier un %2$s positif ou négatif (%1$s) à partir de maintenant suffixé par %3$s ou %4$s (voir l'exemple ci-dessous)"
+
+#: includes/daterange_helptexts.php:23
+msgid "number of years"
+msgstr "nombre d'année"
+
+#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30
+#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44
+#, php-format
+msgid "Additionally the following values are available: %1$s"
+msgstr "De plus, les valeurs suivantes sont disponibles : %1$s"
+
+#: includes/daterange_helptexts.php:27
+msgid "Relative Month"
+msgstr "Mois relatif"
+
+#: includes/daterange_helptexts.php:28
+msgid "A relative month"
+msgstr "Un mois relatif"
+
+#: includes/daterange_helptexts.php:29
+msgid "number of months"
+msgstr "Nombre de mois"
+
+#: includes/daterange_helptexts.php:33
+msgid "Relative Week"
+msgstr "Semaine relative"
+
+#: includes/daterange_helptexts.php:34
+msgid "A relative week"
+msgstr "Une semaine relative"
+
+#: includes/daterange_helptexts.php:35
+msgid "number of weeks"
+msgstr "Nombre de semaines"
+
+#: includes/daterange_helptexts.php:36
+msgid "the resulting week"
+msgstr "Une semaine relative"
+
+#: 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 "Le premier jour de la semaine dépens de l'option %1$s qui peut être trouvé et changé dans %2$s"
+
+#: includes/daterange_helptexts.php:41
+msgid "Relative Day"
+msgstr "Jour relatif"
+
+#: includes/daterange_helptexts.php:42
+msgid "A relative day"
+msgstr "Un jour relatif"
+
+#: includes/daterange_helptexts.php:43
+msgid "number of days"
+msgstr "nombre de jours"
+
+#: includes/daterange_helptexts.php:49
+msgid "Date range"
+msgstr "Période"
+
+#: 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 "Une période peut être spécifié via une date de début et une date de fin séparé par un tilde (~).<br/>\n⇥ Pour la date de début et de fin, n'importe quel format de date peut être utilisé."
+
+#: includes/daterange_helptexts.php:55
+msgid "This value defines a range without any limits."
+msgstr "Cette valeur définie une période sans aucune limites"
+
+#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61
+#: includes/daterange_helptexts.php:66
+#, php-format
+msgid "The corresponding date_range format is: %1$s"
+msgstr "Le période correspondant est : %1$s"
+
+#: includes/daterange_helptexts.php:59 includes/filterbar.php:291
+msgid "Upcoming"
+msgstr "A venir"
+
+#: includes/daterange_helptexts.php:60
+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
+msgid "Past"
+msgstr "Passé"
+
+#: includes/daterange_helptexts.php:65
+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:282
+msgid "All"
+msgstr "Tous"
+
+#: includes/filterbar.php:285
+msgid "Show all dates"
+msgstr "Voir toutes les dates"
+
+#: includes/filterbar.php:285
+msgid "Show all categories"
+msgstr "Voir toutes les catégories"
+
+#: includes/options_helptexts.php:11
+msgid "Sync Categories"
+msgstr "Synchroniser les catégories"
+
+#: 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/options_helptexts.php:13
+msgid "Attention"
+msgstr "Attention"
+
+#: 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/options_helptexts.php:18
+msgid "CSV File to import"
+msgstr "Fichier CSV à importer"
+
+#: includes/options_helptexts.php:20
+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
+msgid "Used date format"
+msgstr "Utilise le format de date suivant"
+
+#: 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é."
+
+#: includes/options_helptexts.php:29
+msgid "Text for no events"
+msgstr "Texte si pas d'événements."
+
+#: includes/options_helptexts.php:31
+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
+msgid "Multiday filter range"
+msgstr "Filtre sur plusieurs jours"
+
+#: includes/options_helptexts.php:35
+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
+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
+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
+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
+msgid "Date display"
+msgstr "Affichage de la date"
+
+#: includes/options_helptexts.php:42
+msgid "Show the date only once per day"
+msgstr "Afficher la date seulement une fois par jour."
+
+#: includes/options_helptexts.php:43
+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
+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
+msgid "HTML tags"
+msgstr "Tags HTML"
+
+#: includes/options_helptexts.php:48 includes/options_helptexts.php:53
+#, 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
+#, 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
+msgid "Preferred language file"
+msgstr ""
+
+#: includes/options_helptexts.php:58
+msgid "Load translations from general language directory first"
+msgstr ""
+
+#: includes/options_helptexts.php:59
+#, 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
+#, 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\""
+msgstr "Texte pour \"Afficher détails\""
+
+#: 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."
+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é."
+
+#: includes/options_helptexts.php:68
+msgid "Text for \"Hide details\""
+msgstr "Texte pour \"Cacher les détails\""
+
+#: 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."
+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é."
+
+#: includes/options_helptexts.php:72
+msgid "Disable CSS file"
+msgstr "Désactiver le fichier CSS"
+
+#: includes/options_helptexts.php:73
+#, php-format
+msgid "Disable the %1$s file."
+msgstr "Désactiver le fichier %1$s."
+
+#: includes/options_helptexts.php:74
+#, 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
+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
+msgid "Date format in edit form"
+msgstr "Format de la date dans le formulaire d'édition."
+
+#: includes/options_helptexts.php:80
+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
+msgid "The default is an empty string to use the Wordpress standard setting."
+msgstr ""
+
+#: includes/options_helptexts.php:82
+#, 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
+msgid "Enable RSS feed"
+msgstr "Activer flux RSS"
+
+#: includes/options_helptexts.php:87
+msgid "Enable support for an event RSS feed"
+msgstr "Activer le support pour un flux RSS des évènements"
+
+#: includes/options_helptexts.php:88
+msgid "This option activates a RSS feed for the events."
+msgstr ""
+
+#: includes/options_helptexts.php:89
+msgid ""
+"You have to enable this option if you want to use one of the RSS feed "
+"features."
+msgstr ""
+
+#: includes/options_helptexts.php:92
+msgid "Feed name"
+msgstr "Nom du flux"
+
+#: includes/options_helptexts.php:93
+#, php-format
+msgid "This option sets the feed name. The default value is %1$s."
+msgstr ""
+
+#: includes/options_helptexts.php:94
+#, 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
+msgid "Feed Description"
+msgstr "Description du Flux"
+
+#: includes/options_helptexts.php:98
+#, php-format
+msgid "This options set the feed description. The default value is %1$s."
+msgstr ""
+
+#: includes/options_helptexts.php:99
+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
+msgid "Listed events"
+msgstr "Evènements listés"
+
+#: includes/options_helptexts.php:103
+msgid "Only show upcoming events in feed"
+msgstr "Voir seulement les prochains évènements dans le flux."
+
+#: includes/options_helptexts.php:104
+msgid ""
+"If this option is enabled only the upcoming events are listed in the feed."
+msgstr ""
+
+#: includes/options_helptexts.php:105
+msgid "If disabled all events (upcoming and past) will be listed."
+msgstr ""
+
+#: includes/options_helptexts.php:108
+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
+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
+msgid "This option adds a RSS feed in the html head for the events."
+msgstr ""
+
+#: includes/options_helptexts.php:111
+msgid "There are 2 alternatives to include the RSS feed"
+msgstr ""
+
+#: includes/options_helptexts.php:112
+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
+#, 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
+#, php-format
+msgid "This option is only valid if the setting %1$s is enabled."
+msgstr ""
+
+#: includes/options_helptexts.php:117
+msgid "Position of the RSS feed link"
+msgstr "Position du flux RSS"
+
+#: includes/options_helptexts.php:118
+msgid "at the top (above the navigation bar)"
+msgstr ""
+
+#: includes/options_helptexts.php:118
+msgid "between navigation bar and events"
+msgstr ""
+
+#: includes/options_helptexts.php:118
+msgid "at the bottom"
+msgstr ""
+
+#: includes/options_helptexts.php:119
+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
+#, 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
+msgid "Align of the RSS feed link"
+msgstr "Alignement du lien RSS"
+
+#: includes/options_helptexts.php:124
+msgid "left"
+msgstr ""
+
+#: includes/options_helptexts.php:124
+msgid "center"
+msgstr ""
+
+#: includes/options_helptexts.php:124
+msgid "right"
+msgstr ""
+
+#: includes/options_helptexts.php:125
+msgid ""
+"This option specifies the align of the RSS feed link in the event list."
+msgstr ""
+
+#: includes/options_helptexts.php:129
+msgid "Feed link text"
+msgstr "Text du lien du flux"
+
+#: includes/options_helptexts.php:130
+msgid ""
+"This option specifies the caption of the RSS feed link in the event list."
+msgstr ""
+
+#: includes/options_helptexts.php:131
+msgid ""
+"Insert an empty text to hide any text if you only want to show the rss "
+"image."
+msgstr ""
+
+#: includes/options_helptexts.php:135
+msgid "Feed link image"
+msgstr "Image du flux RSS"
+
+#: includes/options_helptexts.php:136
+msgid "Show rss image in feed link"
+msgstr "Afficher l'image dans le lien vers le flux RSS"
+
+#: includes/options_helptexts.php:137
+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.php:44
+msgid "Hide details"
+msgstr "Cacher les détails"
+
+#: 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-details 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:76
+#: includes/sc_event-list_helptexts.php:91
+#: includes/sc_event-list_helptexts.php:106
+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:77
+#: includes/sc_event-list_helptexts.php:92
+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:78
+#: includes/sc_event-list_helptexts.php:93
+#, 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:79
+#: includes/sc_event-list_helptexts.php:94
+#: includes/sc_event-list_helptexts.php:109
+msgid "This attribute has no influence if only a single event is shown."
+msgstr ""
+
+#: includes/sc_event-list_helptexts.php:82
+msgid ""
+"This attribute specifies if the starttime is displayed in the event list.<br />\n"
+"\t                                            Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
+"\t                                            With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
+msgstr "Cet attribut spécifie si la date de début doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher la date de début.<br/>\n⇥ Avec la valeur \"event_list_only\" la date de début est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" la date de début est visible seulement sur l'affichage d'un évènement simple."
+
+#: includes/sc_event-list_helptexts.php:87
+msgid ""
+"This attribute specifies if the location is displayed in the event list.<br />\n"
+"\t                                            Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
+"\t                                            With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
+msgstr "Cet attribut spécifie si la localisation doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher la localisation.<br/>\n⇥ Avec la valeur \"event_list_only\" la localisation  est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" la localisation est visible seulement sur l'affichage d'un évènement simple."
+
+#: includes/sc_event-list_helptexts.php:97
+msgid ""
+"This attribute specifies if the categories are displayed in the event list.<br />\n"
+"\t                                            Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
+"\t                                            With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
+msgstr "Cet attribut spécifie si la catégorie doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher la catégorie.<br/>\n⇥ Avec la valeur \"event_list_only\" la catégorie est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" la catégorie est visible seulement sur l'affichage d'un évènement simple."
+
+#: includes/sc_event-list_helptexts.php:102
+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."
+
+#: includes/sc_event-list_helptexts.php:107
+msgid ""
+"This attribute specifies if the details should be truncate to the given "
+"number of characters in the event list."
+msgstr ""
+
+#: includes/sc_event-list_helptexts.php:108
+#, php-format
+msgid "With the standard value %1$s the full text is displayed."
+msgstr ""
+
+#: includes/sc_event-list_helptexts.php:112
+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."
+
+#: includes/sc_event-list_helptexts.php:118
+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."
+
+#: includes/sc_event-list_helptexts.php:124
+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 "Cet attribut spécifie si un lien vers le flux RSS doit être ajouté dans la liste des évènements.<br/>\n⇥ Vous devez activer le flux RSS dans les paramètres du plugin pour que cette option fonctionne.<br/>\n⇥ Sur cette page, des options sont disponible pour modifier ce lien<br/>\n⇥ Choisissez \"false\" pour jamais et \"true\" pour toujours ajouter le lien.<br/>\n⇥ Avec la valeur \"event_list_only\" le lien est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" le lien est visible seulement sur l'affichage d'un évènement simple."
+
+#: includes/sc_event-list_helptexts.php:130
+msgid ""
+"This attribute specifies the page or post url for event links.<br />\n"
+"\t                                            The standard is an empty string. Then the url will be calculated automatically.<br />\n"
+"\t                                            An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
+msgstr "Cet attribut spécifie l'url de la page ou de l'article pour la liste des évènements.<br/>\n⇥ Par défaut, c'est une chaine vide. Alors l'url de la page courante est automatiquement utilisé.<br/>\n⇥ Une url est normale requis seulement pour utiliser le shortcode dans une barre latérale. Il est aussi utilisé dans le widget liste des évènements."
+
+#: includes/sc_event-list_helptexts.php:137
+msgid ""
+"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
+"\t                                            The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
+msgstr "Cet attribut spécifie l'identifiant du shortcode utilisé sur la page.\n⇥ La valeur par défaut est suffisant pour une utilisation normale, cet attribut est simplement requis par le widget liste des évènements si plusieurs shortcode sont affichés sur la même page ou article."
+
+#: includes/sc_event-list.php:138
+msgid "Event Information:"
+msgstr "Information sur l'évènement"
+
+#: includes/widget_helptexts.php:10
+msgid "This option defines the displayed title for the widget."
+msgstr "Cette option définie le titre affiché pour le widget"
+
+#: includes/widget_helptexts.php:15
+msgid "Category Filter"
+msgstr "Filtre par catégories"
+
+#: 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 "Cette option définie la catégorie d'évènement qui doit être affiché. Par défaut est \"all\" ou une chaîne vide pour afficher tous les évènements.\nSpécifiez un slug de catégorie ou une liste de slug de catégories pour afficher seulement les évènements de ces catégories.\nVoir la description des attributs du shortcode cat_filter pour avoir les informations détaillées de toutes les possibilités."
+
+#: includes/widget_helptexts.php:22
+msgid "Number of listed events"
+msgstr "Nombre d'événement listés."
+
+#: includes/widget_helptexts.php:24
+msgid "The number of upcoming events to display"
+msgstr "Le nombre des prochains d'évènements à afficher."
+
+#: includes/widget_helptexts.php:29
+msgid "Truncate event title to"
+msgstr "Tronquer le titre à"
+
+#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
+#: includes/widget_helptexts.php:67
+msgid "characters"
+msgstr "caractères"
+
+#: 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 "Afficher l'horaire de début de l'évènement"
+
+#: includes/widget_helptexts.php:39
+msgid "This option defines if the event start time will be displayed."
+msgstr "Cette option définie si l’horaire de début doit être affiché."
+
+#: includes/widget_helptexts.php:44
+msgid "Show event location"
+msgstr "Afficher la localisation de l'évènement"
+
+#: includes/widget_helptexts.php:46
+msgid "This option defines if the event location will be displayed."
+msgstr "Cette option définie si la localisation de l'évènement doit être affiché."
+
+#: includes/widget_helptexts.php:51
+msgid "Truncate location to"
+msgstr "Tronquer la localisation à"
+
+#: 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 details"
+msgstr "Afficher les détails de l'évènements"
+
+#: 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é."
+
+#: includes/widget_helptexts.php:66
+msgid "Truncate details to"
+msgstr "Tronquer les détails à "
+
+#: includes/widget_helptexts.php:68
+msgid ""
+"If the event details 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 "URL vers la page d'évènement"
+
+#: 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 "Cette option définie l'url de la page affichant la liste des évènements. Cette option est obligatoire si vous voulez utiliser une des options ci-dessous."
+
+#: includes/widget_helptexts.php:81
+msgid "Shortcode ID on linked page"
+msgstr "Identifiant du shortcode sur la page lié"
+
+#: 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 "Cette option définie l'identifiant dans le shortcode sur la page lié. Normalement, la valeur 1 est correct, vous avez à changer cela seulement si vous afficher plusieurs shortcode sur la page lié."
+
+#: includes/widget_helptexts.php:90
+msgid ""
+"With this option you can add a link to the single event page for every "
+"displayed event. You have to specify the url to the page and the shortcode "
+"id option if you want to use it."
+msgstr "Avec cette option vous pouvez afficher un lien vers une page spécifique pour chaque évènement. Vous devez spécifier une url vers la page et le shortcode identifiant pour utiliser cette option."
+
+#: includes/widget_helptexts.php:97
+msgid ""
+"With this option you can add a link to the event-list page below the "
+"diplayed events. You have to specify the url to page option if you want to "
+"use it."
+msgstr "Avec cette option, vous pouvez ajouter un lien vers la liste des évènements affiché en dessous des évènements affichés. Vous devez spécifier l'url de la page si vous voulez utiliser cette option."
+
+#: includes/widget_helptexts.php:102
+msgid "Caption for the link"
+msgstr "Texte du lien."
+
+#: 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 "Cette option définie le texte du lien vers la liste des évènements si l'option est activé."
+
+#: includes/widget.php:20
+msgid "With this widget a list of upcoming events can be displayed."
+msgstr "Avec ce widget une liste des prochains évènements peut être affichées."
+
+#: includes/widget.php:25
+msgid "Upcoming events"
+msgstr "Prochains évènements"
+
+#: includes/widget.php:38
+msgid "show events page"
+msgstr "Voir tous les évènements"
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
new file mode 100644
index 0000000000000000000000000000000000000000..75aa0630a83b71c0a09e9bdf43d460a36dd4ee9b
Binary files /dev/null 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
new file mode 100644
index 0000000000000000000000000000000000000000..a946bc5fdf8114ad37744c93d301dfaa3ff38195
--- /dev/null
+++ b/wp-content/plugins/event-list/languages/event-list-it_IT.po
@@ -0,0 +1,1595 @@
+# Translation file for the 'Event List' WordPress plugin
+# Copyright (C) 2017 by mibuthu
+# This file is distributed under the same license as the corresponding wordpress plugin.
+# 
+# Translators:
+# Adam <caldanei@gmail.com>, 2015
+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-03-17 17:25+0100\n"
+"PO-Revision-Date: 2017-03-17 16:25+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"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: it_IT\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: admin/admin.php:45
+msgid "Event List"
+msgstr "Lista Eventi"
+
+#: admin/admin.php:48 admin/admin.php:80 admin/includes/admin-main.php:117
+#: admin/includes/category_table.php:110
+msgid "Events"
+msgstr "Eventi"
+
+#: admin/admin.php:48
+msgid "All Events"
+msgstr "Tutti gli eventi"
+
+#: admin/admin.php:52 admin/includes/admin-new.php:41
+msgid "Add New Event"
+msgstr "Aggiungi un nuovo evento"
+
+#: admin/admin.php:52 admin/includes/admin-main.php:119
+msgid "Add New"
+msgstr "Aggiungi nuovo"
+
+#: admin/admin.php:56 admin/includes/admin-categories.php:50
+msgid "Event List Categories"
+msgstr "Categorie Lista Eventi"
+
+#: admin/admin.php:56 admin/includes/admin-new.php:145
+#: admin/includes/event_table.php:111
+msgid "Categories"
+msgstr "Categorie"
+
+#: admin/admin.php:60 admin/includes/admin-settings.php:53
+msgid "Event List Settings"
+msgstr "Impostazioni Eventi Lista"
+
+#: admin/admin.php:60
+msgid "Settings"
+msgstr "Impostazioni"
+
+#: admin/admin.php:64 admin/includes/admin-about.php:37
+msgid "About Event List"
+msgstr "Informazioni su Lista Eventi"
+
+#: admin/admin.php:64
+msgid "About"
+msgstr "Informazioni su"
+
+#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:68
+msgid "General"
+msgstr "Generico"
+
+#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
+#: admin/includes/admin-about.php:103
+msgid "Shortcode Attributes"
+msgstr "Attributi dello Shortcode"
+
+#: admin/includes/admin-about.php:71
+msgid "Help and Instructions"
+msgstr "Aiuto e Istruzioni"
+
+#: admin/includes/admin-about.php:72
+#, php-format
+msgid "You can manage the events %1$shere%2$s"
+msgstr ""
+
+#: admin/includes/admin-about.php:73
+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
+#, 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
+#, 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
+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
+#, 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
+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
+#, 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
+msgid "Add links to the single events"
+msgstr "Aggiungi link ai singoli eventi"
+
+#: admin/includes/admin-about.php:79 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
+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
+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
+#, 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
+#, 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
+#, 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
+msgid "Settings page"
+msgstr ""
+
+#: admin/includes/admin-about.php:91
+msgid "About the plugin author"
+msgstr ""
+
+#: admin/includes/admin-about.php:93
+#, 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
+msgid "wordpress plugin site"
+msgstr ""
+
+#: admin/includes/admin-about.php:94
+#, php-format
+msgid "If you like the plugin please rate it on the %1$s."
+msgstr ""
+
+#: admin/includes/admin-about.php:94
+msgid "wordpress plugin review site"
+msgstr ""
+
+#: admin/includes/admin-about.php:95
+msgid ""
+"If you want to support the plugin I would be happy to get a small donation"
+msgstr ""
+
+#: admin/includes/admin-about.php:105
+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:106
+#, 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:108
+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:122
+msgid "Attribute name"
+msgstr "Nome attributo"
+
+#: admin/includes/admin-about.php:123
+msgid "Value options"
+msgstr "Valore opzioni"
+
+#: admin/includes/admin-about.php:124
+msgid "Default value"
+msgstr "Valore di default"
+
+#: admin/includes/admin-about.php:125 admin/includes/admin-categories.php:188
+#: admin/includes/category_table.php:108
+msgid "Description"
+msgstr "Descrizione"
+
+#: admin/includes/admin-about.php:143 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:144
+msgid ""
+"For date and cat filters you can specify complex filters with the following "
+"syntax:"
+msgstr ""
+
+#: admin/includes/admin-about.php:145
+#, 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:145
+msgid "AND"
+msgstr "E"
+
+#: admin/includes/admin-about.php:145
+msgid "OR"
+msgstr "O"
+
+#: admin/includes/admin-about.php:145
+msgid "or"
+msgstr "o"
+
+#: admin/includes/admin-about.php:145
+msgid "and"
+msgstr "e"
+
+#: admin/includes/admin-about.php:146
+msgid "Examples for cat filters:"
+msgstr "Esempio per il filtro di categorie:"
+
+#: admin/includes/admin-about.php:147
+#, php-format
+msgid "Show all events with category %1$s."
+msgstr "Mostra tutti gli eventi aventi categoria %1$s."
+
+#: admin/includes/admin-about.php:148
+#, 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:149
+#, 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:154 includes/sc_event-list_helptexts.php:25
+msgid "Available Date Formats"
+msgstr "Formati data disponibili"
+
+#: admin/includes/admin-about.php:155
+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:163 includes/sc_event-list_helptexts.php:25
+msgid "Available Date Range Formats"
+msgstr "Formati intervallo date disponibili"
+
+#: admin/includes/admin-about.php:164
+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:176
+msgid "Value"
+msgstr "Valore"
+
+#: admin/includes/admin-about.php:180
+msgid "Example"
+msgstr "Esempio"
+
+#: admin/includes/admin-categories.php:53
+msgid "Edit Category"
+msgstr "Modifica categoria"
+
+#: admin/includes/admin-categories.php:53
+msgid "Update Category"
+msgstr "Categoria aggiornata"
+
+#: admin/includes/admin-categories.php:59
+msgid "Add New Category"
+msgstr "Aggiunta nuova categoria"
+
+#: admin/includes/admin-categories.php:84
+#, php-format
+msgid "Category \"%s\" deleted."
+msgstr "Categoria \"%s\" cancellata."
+
+#: admin/includes/admin-categories.php:86
+#, php-format
+msgid "This Category was also removed from %d events."
+msgstr "Questa categoria è stato rimossa anche da %d eventi."
+
+#: admin/includes/admin-categories.php:92
+#, php-format
+msgid "Error while deleting category \"%s\""
+msgstr "Errore durante la cancellazione della categoria \"%s\""
+
+#: admin/includes/admin-categories.php:102
+msgid "Sync with post categories enabled."
+msgstr "La sincronizzazione con le categorie degli articoli è abilitata."
+
+#: admin/includes/admin-categories.php:105
+msgid "Sync with post categories disabled."
+msgstr "Sincronizzazione con le categorie dei post abilitata"
+
+#: admin/includes/admin-categories.php:111
+msgid "Manual sync with post categories sucessfully finished."
+msgstr "Sincronizzazione manuale con le categorie dei post terminata con successo."
+
+#: admin/includes/admin-categories.php:119
+#, php-format
+msgid "New Category \"%s\" was added"
+msgstr "La nuova categoria \"%s\" è stata aggiunta"
+
+#: admin/includes/admin-categories.php:122
+#, php-format
+msgid "Error: New Category \"%s\" could not be added"
+msgstr "Errore: la nuova categoria \"%s\" non può essere aggiunta"
+
+#: admin/includes/admin-categories.php:128
+#, php-format
+msgid "Category \"%s\" was modified"
+msgstr "Categoria \"%s\" è stata modificata"
+
+#: admin/includes/admin-categories.php:131
+#, php-format
+msgid "Error: Category \"%s\" could not be modified"
+msgstr "Errore: Categoria \"%s\" non può essere modificata"
+
+#: admin/includes/admin-categories.php:138
+msgid "Categories are automatically synced with the post categories."
+msgstr ""
+
+#: admin/includes/admin-categories.php:139
+msgid ""
+"Because of this all options to add new categories or editing existing "
+"categories are disabled."
+msgstr ""
+
+#: admin/includes/admin-categories.php:140
+msgid ""
+"If you want to manually edit the categories you have to disable this option."
+msgstr ""
+
+#: admin/includes/admin-categories.php:167
+msgid "The name is how it appears on your site."
+msgstr "Il nome è come appare sul tuo sito."
+
+#: admin/includes/admin-categories.php:172
+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."
+
+#: admin/includes/admin-categories.php:185
+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."
+
+#: admin/includes/admin-categories.php:232
+msgid "Apply"
+msgstr "Applica"
+
+#: admin/includes/admin-categories.php:242
+msgid "Do a manual sync with post categories"
+msgstr "Eseguire una sincronizzazione manuale con le categorie degli articoli"
+
+#: admin/includes/admin-import.php:45
+msgid "Import Events"
+msgstr "Importazione Eventi"
+
+#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:120
+msgid "Step"
+msgstr "Passo"
+
+#: admin/includes/admin-import.php:65
+msgid "Set import file and options"
+msgstr "Insieme dei file e delle opzioni di importazione"
+
+#: admin/includes/admin-import.php:68
+#, php-format
+msgid "Proceed with Step %1$s"
+msgstr ""
+
+#: admin/includes/admin-import.php:71
+msgid "Example file"
+msgstr "File di esempio"
+
+#: admin/includes/admin-import.php:72
+#, 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
+msgid "Note"
+msgstr "Nota"
+
+#: admin/includes/admin-import.php:73
+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
+msgid "Sorry, there has been an error."
+msgstr "Siamo spiacenti, si è verificato un errore."
+
+#: admin/includes/admin-import.php:81
+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:120
+msgid "Events review and additonal category selection"
+msgstr ""
+
+#: admin/includes/admin-import.php:123
+msgid ""
+"Warning: The following category slugs are not available and will be removed "
+"from the imported events:"
+msgstr ""
+
+#: admin/includes/admin-import.php:129
+msgid ""
+"If you want to keep these categories, please create these Categories first "
+"and do the import afterwards."
+msgstr ""
+
+#: admin/includes/admin-import.php:147
+msgid "Add additional categories"
+msgstr ""
+
+#: admin/includes/admin-import.php:148
+msgid "Import events"
+msgstr ""
+
+#: admin/includes/admin-import.php:162
+msgid "Import with errors!"
+msgstr "Importazione avvenuta con errori!"
+
+#: admin/includes/admin-import.php:163
+#, php-format
+msgid ""
+"An error occurred during import! Please send your import file to %1$sthe "
+"administrator%2$s for analysis."
+msgstr "Si è verificato un errore durante l'importazione! Si prega di inviare il file di importazione %1$s all' amministratore %2$s per l'analisi."
+
+#: admin/includes/admin-import.php:167
+msgid "Import successful!"
+msgstr "Importazione avvenuta con successo"
+
+#: admin/includes/admin-import.php:168
+msgid "Go back to All Events"
+msgstr "Torna a Tutti gli Eventi"
+
+#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:106
+#: admin/includes/event_table.php:108 includes/widget_helptexts.php:8
+msgid "Title"
+msgstr "Titolo"
+
+#: admin/includes/admin-import.php:176
+msgid "Start Date"
+msgstr "Data di inizio"
+
+#: admin/includes/admin-import.php:177
+msgid "End Date"
+msgstr "Data di fine"
+
+#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:119
+#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
+msgid "Time"
+msgstr "Ora"
+
+#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:123
+#: admin/includes/event_table.php:109 includes/options_helptexts.php:53
+#: includes/options_helptexts.php:54
+msgid "Location"
+msgstr "Ubicazione"
+
+#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:127
+#: admin/includes/event_table.php:110
+msgid "Details"
+msgstr "Dettagli"
+
+#: admin/includes/admin-import.php:181
+msgid "Category slugs"
+msgstr ""
+
+#: admin/includes/admin-import.php:220
+#, php-format
+msgid ""
+"There was an error at line %1$s when reading this CSV file: Header line is "
+"missing or not correct!"
+msgstr ""
+
+#: admin/includes/admin-import.php:252 admin/includes/admin-main.php:120
+msgid "Import"
+msgstr "Importazione"
+
+#: admin/includes/admin-main.php:114
+msgid "Edit Event"
+msgstr "Modifica Evento"
+
+#: admin/includes/admin-main.php:114 admin/includes/event_table.php:72
+msgid "Duplicate"
+msgstr "Duplica"
+
+#: admin/includes/admin-new.php:43
+#, php-format
+msgid "Duplicate of event id:%d"
+msgstr "Duplicazione di evento avente id: %d"
+
+#: admin/includes/admin-new.php:106 admin/includes/admin-new.php:110
+msgid "required"
+msgstr "richiesto"
+
+#: admin/includes/admin-new.php:110 admin/includes/event_table.php:107
+msgid "Date"
+msgstr "Data"
+
+#: admin/includes/admin-new.php:113
+msgid "Multi-Day Event"
+msgstr "Evento multi giornaliero"
+
+#: admin/includes/admin-new.php:143 admin/includes/admin-new.php:160
+msgid "Publish"
+msgstr "Pubblica"
+
+#: admin/includes/admin-new.php:160
+msgid "Update"
+msgstr "Aggiorna"
+
+#: admin/includes/admin-new.php:162
+msgid "Cancel"
+msgstr "Annulla"
+
+#: admin/includes/admin-new.php:175
+msgid "No categories available."
+msgstr "Nessuna categoria disponibile"
+
+#: admin/includes/admin-new.php:221
+msgid "Goto Category Settings"
+msgstr "Vai alle impostazioni delle categorie"
+
+#: admin/includes/admin-settings.php:41
+msgid "Settings saved."
+msgstr "Impostazioni salvate."
+
+#: admin/includes/admin-settings.php:69
+msgid "Frontend Settings"
+msgstr "Impostazioni interfaccia grafica"
+
+#: admin/includes/admin-settings.php:70
+msgid "Admin Page Settings"
+msgstr "Impostazioni di amministrazione"
+
+#: admin/includes/admin-settings.php:71
+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:70 admin/includes/event_table.php:71
+msgid "Edit"
+msgstr "Modifica"
+
+#: admin/includes/category_table.php:71 admin/includes/category_table.php:145
+#: admin/includes/event_table.php:73 admin/includes/event_table.php:146
+msgid "Delete"
+msgstr "Cancella"
+
+#: admin/includes/category_table.php:107
+msgid "Name"
+msgstr "Nome"
+
+#: admin/includes/category_table.php:109
+msgid "Slug"
+msgstr "Slug"
+
+#: admin/includes/event_table.php:112
+msgid "Author"
+msgstr "Autore"
+
+#: admin/includes/event_table.php:113
+msgid "Published"
+msgstr "Pubblicato"
+
+#: admin/includes/event_table.php:175
+msgid "Filter"
+msgstr "Filtro"
+
+#: admin/includes/event_table.php:297
+#, php-format
+msgid "%s ago"
+msgstr "%s fa"
+
+#: includes/daterange_helptexts.php:7
+msgid "Year"
+msgstr "Anno"
+
+#: includes/daterange_helptexts.php:8
+msgid "A year can be specified in 4 digit format."
+msgstr "Un anno può essere specificato in un formato a 4 cifre."
+
+#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14
+#: includes/daterange_helptexts.php:36
+#, php-format
+msgid ""
+"For a start date filter the first day of %1$s is used, in an end date the "
+"last day."
+msgstr "Per un filtro sulla data di inizio viene utilizzato %1$s come primo giorno, nella data finale viene usato l'ultimo giorno."
+
+#: includes/daterange_helptexts.php:9
+msgid "the resulting year"
+msgstr "L' anno risultante"
+
+#: includes/daterange_helptexts.php:12
+msgid "Month"
+msgstr "Mese"
+
+#: 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 "Il mese risultante"
+
+#: includes/daterange_helptexts.php:17
+msgid "Day"
+msgstr "Giorno"
+
+#: 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 "Un giorno può essere specificato nel formato a 4 cifre per l'anno, 2 cifre per il mese e 2 cifre per il giorno, separati da trattini (-)."
+
+#: includes/daterange_helptexts.php:21
+msgid "Relative Year"
+msgstr "Anno relativo"
+
+#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28
+#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42
+#, php-format
+msgid "%1$s from now can be specified in the following notation: %2$s"
+msgstr "da questo momento %1$s può essere specificato nella seguente notazione: %2$s"
+
+#: includes/daterange_helptexts.php:22
+msgid "A relative year"
+msgstr "Un anno relativo"
+
+#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29
+#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43
+#, 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 "Numero di anni"
+
+#: 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 "Inoltre sono disponibili i seguenti valori: %1$s"
+
+#: includes/daterange_helptexts.php:27
+msgid "Relative Month"
+msgstr "Mese relativo"
+
+#: includes/daterange_helptexts.php:28
+msgid "A relative month"
+msgstr "Un mese relativo"
+
+#: includes/daterange_helptexts.php:29
+msgid "number of months"
+msgstr "Numero di mesi"
+
+#: includes/daterange_helptexts.php:33
+msgid "Relative Week"
+msgstr "Settimana relativa"
+
+#: includes/daterange_helptexts.php:34
+msgid "A relative week"
+msgstr "Una settimana relativa"
+
+#: includes/daterange_helptexts.php:35
+msgid "number of weeks"
+msgstr "numero di settimane"
+
+#: includes/daterange_helptexts.php:36
+msgid "the resulting week"
+msgstr "La settimana risultante"
+
+#: 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 "Il primo giorno della settimana dipende dall'opzione %1$s che può essere trovata e cambiata in %2$s."
+
+#: includes/daterange_helptexts.php:41
+msgid "Relative Day"
+msgstr "Giorno relativo"
+
+#: includes/daterange_helptexts.php:42
+msgid "A relative day"
+msgstr "Un giorno relativo"
+
+#: includes/daterange_helptexts.php:43
+msgid "number of days"
+msgstr "Numero di giorni"
+
+#: includes/daterange_helptexts.php:49
+msgid "Date range"
+msgstr "Intervallo date"
+
+#: 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 "Il corrispondente formato intervallo date è: %1$s"
+
+#: includes/daterange_helptexts.php:59 includes/filterbar.php:291
+msgid "Upcoming"
+msgstr "Prossimi"
+
+#: 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:295
+msgid "Past"
+msgstr "Passati"
+
+#: includes/daterange_helptexts.php:65
+msgid "This value defines a range from the past to the previous day."
+msgstr ""
+
+#: includes/filterbar.php:282
+msgid "All"
+msgstr "Tutti"
+
+#: includes/filterbar.php:285
+msgid "Show all dates"
+msgstr "Visualizza tutte le date"
+
+#: includes/filterbar.php:285
+msgid "Show all categories"
+msgstr "Visualizza tutte le categorie"
+
+#: includes/options_helptexts.php:11
+msgid "Sync Categories"
+msgstr "Sincronizza categorie"
+
+#: includes/options_helptexts.php:12
+msgid "Keep event categories in sync with post categories automatically"
+msgstr ""
+
+#: includes/options_helptexts.php:13
+msgid "Attention"
+msgstr "Attenzione"
+
+#: 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 ""
+
+#: includes/options_helptexts.php:18
+msgid "CSV File to import"
+msgstr "File CSV da importare"
+
+#: includes/options_helptexts.php:20
+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
+msgid "Used date format"
+msgstr "Formato data utilizzato"
+
+#: 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 ""
+
+#: includes/options_helptexts.php:29
+msgid "Text for no events"
+msgstr "Testo per assenza di eventi"
+
+#: includes/options_helptexts.php:31
+msgid ""
+"This option defines the displayed text when no events are available for the "
+"selected view."
+msgstr ""
+
+#: includes/options_helptexts.php:34
+msgid "Multiday filter range"
+msgstr "Filtro intervallo multi giornaliero"
+
+#: includes/options_helptexts.php:35
+msgid "Use the complete event range in the date filter"
+msgstr ""
+
+#: includes/options_helptexts.php:36
+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
+msgid ""
+"If disabled, only the start day of an event is considered in the filter."
+msgstr ""
+
+#: includes/options_helptexts.php:38
+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
+msgid "Date display"
+msgstr "Visualizza data"
+
+#: includes/options_helptexts.php:42
+msgid "Show the date only once per day"
+msgstr ""
+
+#: includes/options_helptexts.php:43
+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
+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
+msgid "HTML tags"
+msgstr "HTML tags"
+
+#: includes/options_helptexts.php:48 includes/options_helptexts.php:53
+#, php-format
+msgid "Allow HTML tags in the event field \"%1$s\""
+msgstr ""
+
+#: includes/options_helptexts.php:49 includes/options_helptexts.php:54
+#, php-format
+msgid ""
+"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
+msgstr ""
+
+#: includes/options_helptexts.php:57
+msgid "Preferred language file"
+msgstr ""
+
+#: includes/options_helptexts.php:58
+msgid "Load translations from general language directory first"
+msgstr ""
+
+#: includes/options_helptexts.php:59
+#, 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
+#, 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\""
+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."
+msgstr ""
+
+#: includes/options_helptexts.php:68
+msgid "Text for \"Hide details\""
+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."
+msgstr ""
+
+#: includes/options_helptexts.php:72
+msgid "Disable CSS file"
+msgstr "Disabilita file CSS"
+
+#: includes/options_helptexts.php:73
+#, php-format
+msgid "Disable the %1$s file."
+msgstr ""
+
+#: includes/options_helptexts.php:74
+#, php-format
+msgid "With this option you can disable the inclusion of the %1$s file."
+msgstr ""
+
+#: includes/options_helptexts.php:75
+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
+msgid "Date format in edit form"
+msgstr ""
+
+#: includes/options_helptexts.php:80
+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
+msgid "The default is an empty string to use the Wordpress standard setting."
+msgstr ""
+
+#: includes/options_helptexts.php:82
+#, 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
+msgid "Enable RSS feed"
+msgstr "Abilita feed RSS"
+
+#: includes/options_helptexts.php:87
+msgid "Enable support for an event RSS feed"
+msgstr ""
+
+#: includes/options_helptexts.php:88
+msgid "This option activates a RSS feed for the events."
+msgstr ""
+
+#: includes/options_helptexts.php:89
+msgid ""
+"You have to enable this option if you want to use one of the RSS feed "
+"features."
+msgstr ""
+
+#: includes/options_helptexts.php:92
+msgid "Feed name"
+msgstr "Nome del Feed"
+
+#: includes/options_helptexts.php:93
+#, php-format
+msgid "This option sets the feed name. The default value is %1$s."
+msgstr ""
+
+#: includes/options_helptexts.php:94
+#, 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
+msgid "Feed Description"
+msgstr "Descrizione del Feed"
+
+#: includes/options_helptexts.php:98
+#, php-format
+msgid "This options set the feed description. The default value is %1$s."
+msgstr ""
+
+#: includes/options_helptexts.php:99
+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
+msgid "Listed events"
+msgstr "Eventi elencati"
+
+#: includes/options_helptexts.php:103
+msgid "Only show upcoming events in feed"
+msgstr "Mostra solo i prossimi eventi nel Feed"
+
+#: includes/options_helptexts.php:104
+msgid ""
+"If this option is enabled only the upcoming events are listed in the feed."
+msgstr ""
+
+#: includes/options_helptexts.php:105
+msgid "If disabled all events (upcoming and past) will be listed."
+msgstr ""
+
+#: includes/options_helptexts.php:108
+msgid "Add RSS feed link in head"
+msgstr ""
+
+#: includes/options_helptexts.php:109
+msgid "Add RSS feed link in the html head"
+msgstr ""
+
+#: includes/options_helptexts.php:110
+msgid "This option adds a RSS feed in the html head for the events."
+msgstr ""
+
+#: includes/options_helptexts.php:111
+msgid "There are 2 alternatives to include the RSS feed"
+msgstr ""
+
+#: includes/options_helptexts.php:112
+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
+#, 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
+#, php-format
+msgid "This option is only valid if the setting %1$s is enabled."
+msgstr ""
+
+#: includes/options_helptexts.php:117
+msgid "Position of the RSS feed link"
+msgstr ""
+
+#: includes/options_helptexts.php:118
+msgid "at the top (above the navigation bar)"
+msgstr ""
+
+#: includes/options_helptexts.php:118
+msgid "between navigation bar and events"
+msgstr ""
+
+#: includes/options_helptexts.php:118
+msgid "at the bottom"
+msgstr ""
+
+#: includes/options_helptexts.php:119
+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
+#, 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
+msgid "Align of the RSS feed link"
+msgstr ""
+
+#: includes/options_helptexts.php:124
+msgid "left"
+msgstr ""
+
+#: includes/options_helptexts.php:124
+msgid "center"
+msgstr ""
+
+#: includes/options_helptexts.php:124
+msgid "right"
+msgstr ""
+
+#: includes/options_helptexts.php:125
+msgid ""
+"This option specifies the align of the RSS feed link in the event list."
+msgstr ""
+
+#: includes/options_helptexts.php:129
+msgid "Feed link text"
+msgstr ""
+
+#: includes/options_helptexts.php:130
+msgid ""
+"This option specifies the caption of the RSS feed link in the event list."
+msgstr ""
+
+#: includes/options_helptexts.php:131
+msgid ""
+"Insert an empty text to hide any text if you only want to show the rss "
+"image."
+msgstr ""
+
+#: includes/options_helptexts.php:135
+msgid "Feed link image"
+msgstr ""
+
+#: includes/options_helptexts.php:136
+msgid "Show rss image in feed link"
+msgstr ""
+
+#: includes/options_helptexts.php:137
+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 ""
+
+#: includes/options.php:44
+msgid "Hide details"
+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-details 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:76
+#: includes/sc_event-list_helptexts.php:91
+#: includes/sc_event-list_helptexts.php:106
+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:77
+#: includes/sc_event-list_helptexts.php:92
+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:78
+#: includes/sc_event-list_helptexts.php:93
+#, 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:79
+#: includes/sc_event-list_helptexts.php:94
+#: includes/sc_event-list_helptexts.php:109
+msgid "This attribute has no influence if only a single event is shown."
+msgstr ""
+
+#: includes/sc_event-list_helptexts.php:82
+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:87
+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:97
+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:102
+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 ""
+
+#: includes/sc_event-list_helptexts.php:107
+msgid ""
+"This attribute specifies if the details should be truncate to the given "
+"number of characters in the event list."
+msgstr ""
+
+#: includes/sc_event-list_helptexts.php:108
+#, php-format
+msgid "With the standard value %1$s the full text is displayed."
+msgstr ""
+
+#: includes/sc_event-list_helptexts.php:112
+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 ""
+
+#: includes/sc_event-list_helptexts.php:118
+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 ""
+
+#: includes/sc_event-list_helptexts.php:124
+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:130
+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:137
+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:138
+msgid "Event Information:"
+msgstr "Informazioni Evento"
+
+#: 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 "Filtro per categoria"
+
+#: 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 "Il numero degli eventi elencati"
+
+#: includes/widget_helptexts.php:24
+msgid "The number of upcoming events to display"
+msgstr "Il numero degli eventi prossimi da visualizzare"
+
+#: includes/widget_helptexts.php:29
+msgid "Truncate event title to"
+msgstr "Tronca il titolo dell'evento al"
+
+#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
+#: includes/widget_helptexts.php:67
+msgid "characters"
+msgstr "caratteri"
+
+#: 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 "Mostra l'ora di inizio dell'evento"
+
+#: includes/widget_helptexts.php:39
+msgid "This option defines if the event start time will be displayed."
+msgstr "Questa opzione definisce se la data di inizio dell'evento sarà visualizzata."
+
+#: includes/widget_helptexts.php:44
+msgid "Show event location"
+msgstr "Mostra ubicazione evento"
+
+#: includes/widget_helptexts.php:46
+msgid "This option defines if the event location will be displayed."
+msgstr "Questa opzione definisce se l'ubicazione dell'evento sarà visualizzata."
+
+#: includes/widget_helptexts.php:51
+msgid "Truncate location to"
+msgstr "Tronca ubicazione al"
+
+#: 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 details"
+msgstr "Mostra i dettagli dell'evento"
+
+#: 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."
+
+#: includes/widget_helptexts.php:66
+msgid "Truncate details to"
+msgstr "Tronca i dettagli al"
+
+#: includes/widget_helptexts.php:68
+msgid ""
+"If the event details 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 "Didascalia per il link"
+
+#: 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 "Con questo widget può essere mostrata una lista di eventi"
+
+#: includes/widget.php:25
+msgid "Upcoming events"
+msgstr "Prossimi eventi"
+
+#: includes/widget.php:38
+msgid "show events page"
+msgstr "mostra pagina eventi"
diff --git a/wp-content/plugins/event-list/languages/event-list-nl_NL.mo b/wp-content/plugins/event-list/languages/event-list-nl_NL.mo
new file mode 100644
index 0000000000000000000000000000000000000000..938f1f687fec774be25128e4d5c3ba44384789be
Binary files /dev/null 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
new file mode 100644
index 0000000000000000000000000000000000000000..c1c5f7c259b135d66b896987dc1289bd747fe0f1
--- /dev/null
+++ b/wp-content/plugins/event-list/languages/event-list-nl_NL.po
@@ -0,0 +1,1597 @@
+# Translation file for the 'Event List' WordPress plugin
+# Copyright (C) 2017 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
+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-03-17 17:25+0100\n"
+"PO-Revision-Date: 2017-03-17 16:25+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"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: nl_NL\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: admin/admin.php:45
+msgid "Event List"
+msgstr "Gebeurtenislijst"
+
+#: admin/admin.php:48 admin/admin.php:80 admin/includes/admin-main.php:117
+#: admin/includes/category_table.php:110
+msgid "Events"
+msgstr "Gebeurtenissen"
+
+#: admin/admin.php:48
+msgid "All Events"
+msgstr "Alle gebeurtenissen"
+
+#: admin/admin.php:52 admin/includes/admin-new.php:41
+msgid "Add New Event"
+msgstr "Maak een nieuwe gebeurtenis"
+
+#: admin/admin.php:52 admin/includes/admin-main.php:119
+msgid "Add New"
+msgstr "Nieuwe toevoegen"
+
+#: admin/admin.php:56 admin/includes/admin-categories.php:50
+msgid "Event List Categories"
+msgstr "Gebeurtenislijst Categorieën "
+
+#: admin/admin.php:56 admin/includes/admin-new.php:145
+#: admin/includes/event_table.php:111
+msgid "Categories"
+msgstr "Categorieën"
+
+#: admin/admin.php:60 admin/includes/admin-settings.php:53
+msgid "Event List Settings"
+msgstr "Gebeurtenislijst Instellingen"
+
+#: admin/admin.php:60
+msgid "Settings"
+msgstr "Instellingen"
+
+#: admin/admin.php:64 admin/includes/admin-about.php:37
+msgid "About Event List"
+msgstr "Over Gebeurtenislijst"
+
+#: admin/admin.php:64
+msgid "About"
+msgstr "Over"
+
+#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:68
+msgid "General"
+msgstr "Algemeen"
+
+#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
+#: admin/includes/admin-about.php:103
+msgid "Shortcode Attributes"
+msgstr "Shortcode Attributen"
+
+#: admin/includes/admin-about.php:71
+msgid "Help and Instructions"
+msgstr "Hulp en instructies"
+
+#: admin/includes/admin-about.php:72
+#, php-format
+msgid "You can manage the events %1$shere%2$s"
+msgstr ""
+
+#: admin/includes/admin-about.php:73
+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
+#, 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
+#, 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
+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
+#, 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
+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
+#, 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
+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
+msgid "Add a link to the Event List page"
+msgstr "Voeg een link to aan de Gebeurtenislijst pagina"
+
+#: admin/includes/admin-about.php:80
+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
+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
+#, 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
+#, 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
+#, 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
+msgid "Settings page"
+msgstr ""
+
+#: admin/includes/admin-about.php:91
+msgid "About the plugin author"
+msgstr ""
+
+#: admin/includes/admin-about.php:93
+#, 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
+msgid "wordpress plugin site"
+msgstr ""
+
+#: admin/includes/admin-about.php:94
+#, php-format
+msgid "If you like the plugin please rate it on the %1$s."
+msgstr ""
+
+#: admin/includes/admin-about.php:94
+msgid "wordpress plugin review site"
+msgstr ""
+
+#: admin/includes/admin-about.php:95
+msgid ""
+"If you want to support the plugin I would be happy to get a small donation"
+msgstr ""
+
+#: admin/includes/admin-about.php:105
+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:106
+#, 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:108
+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:122
+msgid "Attribute name"
+msgstr "Attribuut naam"
+
+#: admin/includes/admin-about.php:123
+msgid "Value options"
+msgstr "Waarde opties"
+
+#: admin/includes/admin-about.php:124
+msgid "Default value"
+msgstr "Standaard waarde"
+
+#: admin/includes/admin-about.php:125 admin/includes/admin-categories.php:188
+#: admin/includes/category_table.php:108
+msgid "Description"
+msgstr "Omschrijving"
+
+#: admin/includes/admin-about.php:143 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:144
+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:145
+#, 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:145
+msgid "AND"
+msgstr "EN"
+
+#: admin/includes/admin-about.php:145
+msgid "OR"
+msgstr "OF"
+
+#: admin/includes/admin-about.php:145
+msgid "or"
+msgstr "of"
+
+#: admin/includes/admin-about.php:145
+msgid "and"
+msgstr "en"
+
+#: admin/includes/admin-about.php:146
+msgid "Examples for cat filters:"
+msgstr "Voorbeelden voor categorie filters:"
+
+#: admin/includes/admin-about.php:147
+#, php-format
+msgid "Show all events with category %1$s."
+msgstr "Laat alle gebeurtenissen zien met categorie %1$s."
+
+#: admin/includes/admin-about.php:148
+#, 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:149
+#, 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:154 includes/sc_event-list_helptexts.php:25
+msgid "Available Date Formats"
+msgstr "Beschikbare Datum Notaties"
+
+#: admin/includes/admin-about.php:155
+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:163 includes/sc_event-list_helptexts.php:25
+msgid "Available Date Range Formats"
+msgstr "Beschikbare Datum Bereik Notaties"
+
+#: admin/includes/admin-about.php:164
+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:176
+msgid "Value"
+msgstr "Waarde"
+
+#: admin/includes/admin-about.php:180
+msgid "Example"
+msgstr "Voorbeeld"
+
+#: admin/includes/admin-categories.php:53
+msgid "Edit Category"
+msgstr "Bewerk Categorie"
+
+#: admin/includes/admin-categories.php:53
+msgid "Update Category"
+msgstr "Pas Categorie aan"
+
+#: admin/includes/admin-categories.php:59
+msgid "Add New Category"
+msgstr "Voeg Nieuwe Categorie toe"
+
+#: admin/includes/admin-categories.php:84
+#, php-format
+msgid "Category \"%s\" deleted."
+msgstr "Categorie \"%s\" verwijderd."
+
+#: admin/includes/admin-categories.php:86
+#, php-format
+msgid "This Category was also removed from %d events."
+msgstr "Deze Categorie was ook verwijderd uit %d gebeurtenissen."
+
+#: admin/includes/admin-categories.php:92
+#, php-format
+msgid "Error while deleting category \"%s\""
+msgstr "Fout bij het verwijderen van categorie \"%s\""
+
+#: admin/includes/admin-categories.php:102
+msgid "Sync with post categories enabled."
+msgstr "Synchronisatie met bericht categorieën ingeschakeld."
+
+#: admin/includes/admin-categories.php:105
+msgid "Sync with post categories disabled."
+msgstr "Synchronisatie met bericht categorieen uitgeschakeld."
+
+#: admin/includes/admin-categories.php:111
+msgid "Manual sync with post categories sucessfully finished."
+msgstr "Handmatige synchronisatie met berichtcategorieën succesvol afgerond."
+
+#: admin/includes/admin-categories.php:119
+#, php-format
+msgid "New Category \"%s\" was added"
+msgstr "Nieuwe Categorie \"%s\" is toegevoegd"
+
+#: admin/includes/admin-categories.php:122
+#, php-format
+msgid "Error: New Category \"%s\" could not be added"
+msgstr "Fout: Nieuwe Categorie \"%s\" kon niet worden toegevoegd"
+
+#: admin/includes/admin-categories.php:128
+#, php-format
+msgid "Category \"%s\" was modified"
+msgstr "Categorie \"%s\" is aangepast"
+
+#: admin/includes/admin-categories.php:131
+#, php-format
+msgid "Error: Category \"%s\" could not be modified"
+msgstr "Fout: Categorie \"%s\" kon niet worden aangepast"
+
+#: admin/includes/admin-categories.php:138
+msgid "Categories are automatically synced with the post categories."
+msgstr ""
+
+#: admin/includes/admin-categories.php:139
+msgid ""
+"Because of this all options to add new categories or editing existing "
+"categories are disabled."
+msgstr ""
+
+#: admin/includes/admin-categories.php:140
+msgid ""
+"If you want to manually edit the categories you have to disable this option."
+msgstr ""
+
+#: admin/includes/admin-categories.php:167
+msgid "The name is how it appears on your site."
+msgstr "De naam zoals deze verschijnt op de site"
+
+#: admin/includes/admin-categories.php:172
+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."
+
+#: admin/includes/admin-categories.php:185
+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."
+
+#: admin/includes/admin-categories.php:232
+msgid "Apply"
+msgstr "Toepassen"
+
+#: admin/includes/admin-categories.php:242
+msgid "Do a manual sync with post categories"
+msgstr "Doe een handmatige synchronisatie met bericht categorieen"
+
+#: admin/includes/admin-import.php:45
+msgid "Import Events"
+msgstr "Importeer Gebeurtenissen"
+
+#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:120
+msgid "Step"
+msgstr "Stap"
+
+#: admin/includes/admin-import.php:65
+msgid "Set import file and options"
+msgstr "Stel het import bestand en opties in"
+
+#: admin/includes/admin-import.php:68
+#, php-format
+msgid "Proceed with Step %1$s"
+msgstr ""
+
+#: admin/includes/admin-import.php:71
+msgid "Example file"
+msgstr "Voorbeeld bestand"
+
+#: admin/includes/admin-import.php:72
+#, 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
+msgid "Note"
+msgstr "Aantekening"
+
+#: admin/includes/admin-import.php:73
+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
+msgid "Sorry, there has been an error."
+msgstr "Sorry, er ging iets fout."
+
+#: admin/includes/admin-import.php:81
+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:120
+msgid "Events review and additonal category selection"
+msgstr ""
+
+#: admin/includes/admin-import.php:123
+msgid ""
+"Warning: The following category slugs are not available and will be removed "
+"from the imported events:"
+msgstr ""
+
+#: admin/includes/admin-import.php:129
+msgid ""
+"If you want to keep these categories, please create these Categories first "
+"and do the import afterwards."
+msgstr ""
+
+#: admin/includes/admin-import.php:147
+msgid "Add additional categories"
+msgstr ""
+
+#: admin/includes/admin-import.php:148
+msgid "Import events"
+msgstr ""
+
+#: admin/includes/admin-import.php:162
+msgid "Import with errors!"
+msgstr "Import met fouten!"
+
+#: admin/includes/admin-import.php:163
+#, php-format
+msgid ""
+"An error occurred during import! Please send your import file to %1$sthe "
+"administrator%2$s for analysis."
+msgstr "Er heeft zich een fout voorgedaan tijdens de import! Verstuur je import bestand naar %1$sde administrator%2$s voor analyse."
+
+#: admin/includes/admin-import.php:167
+msgid "Import successful!"
+msgstr "Import succesvol!"
+
+#: admin/includes/admin-import.php:168
+msgid "Go back to All Events"
+msgstr "Ga terug naar Alle Gebeurtenissen"
+
+#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:106
+#: admin/includes/event_table.php:108 includes/widget_helptexts.php:8
+msgid "Title"
+msgstr "Titel"
+
+#: admin/includes/admin-import.php:176
+msgid "Start Date"
+msgstr "Start Datum"
+
+#: admin/includes/admin-import.php:177
+msgid "End Date"
+msgstr "Eind Datum"
+
+#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:119
+#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
+msgid "Time"
+msgstr "Tijd"
+
+#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:123
+#: admin/includes/event_table.php:109 includes/options_helptexts.php:53
+#: includes/options_helptexts.php:54
+msgid "Location"
+msgstr "Locatie"
+
+#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:127
+#: admin/includes/event_table.php:110
+msgid "Details"
+msgstr "Details"
+
+#: admin/includes/admin-import.php:181
+msgid "Category slugs"
+msgstr ""
+
+#: admin/includes/admin-import.php:220
+#, php-format
+msgid ""
+"There was an error at line %1$s when reading this CSV file: Header line is "
+"missing or not correct!"
+msgstr ""
+
+#: admin/includes/admin-import.php:252 admin/includes/admin-main.php:120
+msgid "Import"
+msgstr "Importeer"
+
+#: admin/includes/admin-main.php:114
+msgid "Edit Event"
+msgstr "Gebeurtenis Aanpassen"
+
+#: admin/includes/admin-main.php:114 admin/includes/event_table.php:72
+msgid "Duplicate"
+msgstr "Maak een kopie"
+
+#: admin/includes/admin-new.php:43
+#, php-format
+msgid "Duplicate of event id:%d"
+msgstr "Kopie van gebeurtenis id:%d"
+
+#: admin/includes/admin-new.php:106 admin/includes/admin-new.php:110
+msgid "required"
+msgstr "vereist"
+
+#: admin/includes/admin-new.php:110 admin/includes/event_table.php:107
+msgid "Date"
+msgstr "Datum"
+
+#: admin/includes/admin-new.php:113
+msgid "Multi-Day Event"
+msgstr "Meerdaagse gebeurtenis"
+
+#: admin/includes/admin-new.php:143 admin/includes/admin-new.php:160
+msgid "Publish"
+msgstr "Publiceer"
+
+#: admin/includes/admin-new.php:160
+msgid "Update"
+msgstr "Bijwerken"
+
+#: admin/includes/admin-new.php:162
+msgid "Cancel"
+msgstr "Annuleer"
+
+#: admin/includes/admin-new.php:175
+msgid "No categories available."
+msgstr "Geen categorieen beschikbaar."
+
+#: admin/includes/admin-new.php:221
+msgid "Goto Category Settings"
+msgstr "Ga naar Categorie Instellingen"
+
+#: admin/includes/admin-settings.php:41
+msgid "Settings saved."
+msgstr "Instellingen bewaard."
+
+#: admin/includes/admin-settings.php:69
+msgid "Frontend Settings"
+msgstr "Frontend Instellingen"
+
+#: admin/includes/admin-settings.php:70
+msgid "Admin Page Settings"
+msgstr "Admin Pagina Instellingen"
+
+#: admin/includes/admin-settings.php:71
+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:70 admin/includes/event_table.php:71
+msgid "Edit"
+msgstr "Aanpassen"
+
+#: admin/includes/category_table.php:71 admin/includes/category_table.php:145
+#: admin/includes/event_table.php:73 admin/includes/event_table.php:146
+msgid "Delete"
+msgstr "Verwijderen"
+
+#: admin/includes/category_table.php:107
+msgid "Name"
+msgstr "Naam"
+
+#: admin/includes/category_table.php:109
+msgid "Slug"
+msgstr "Slug"
+
+#: admin/includes/event_table.php:112
+msgid "Author"
+msgstr "Auteur"
+
+#: admin/includes/event_table.php:113
+msgid "Published"
+msgstr "Gepubliceerd"
+
+#: admin/includes/event_table.php:175
+msgid "Filter"
+msgstr "Filter"
+
+#: admin/includes/event_table.php:297
+#, php-format
+msgid "%s ago"
+msgstr "%s geleden"
+
+#: includes/daterange_helptexts.php:7
+msgid "Year"
+msgstr "Jaar"
+
+#: includes/daterange_helptexts.php:8
+msgid "A year can be specified in 4 digit format."
+msgstr "Een jaar kan aangegeven worden in 4 cijferig formaat."
+
+#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14
+#: includes/daterange_helptexts.php:36
+#, php-format
+msgid ""
+"For a start date filter the first day of %1$s is used, in an end date the "
+"last day."
+msgstr "Voor een filter op startdatum wordt de eerste dag van %1$s gebruikt, bij een einddatum de laatste dag"
+
+#: includes/daterange_helptexts.php:9
+msgid "the resulting year"
+msgstr "het betreffende jaar"
+
+#: includes/daterange_helptexts.php:12
+msgid "Month"
+msgstr "Maand"
+
+#: 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 "Een maand kan aangegeven worden met 4 cijfers voor het jaar en 2 cijfers voor de maand, gescheiden door een streepje (-)"
+
+#: includes/daterange_helptexts.php:14
+msgid "the resulting month"
+msgstr "de betreffende maand"
+
+#: 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 "Een dag kan aangegeven worden met 4 cijfers voor het jaar, 2 cijfers voor de maand en 2 cijfers voor de dag, gescheiden door een streepje (-)"
+
+#: includes/daterange_helptexts.php:21
+msgid "Relative Year"
+msgstr "Relatief Jaar"
+
+#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28
+#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42
+#, php-format
+msgid "%1$s from now can be specified in the following notation: %2$s"
+msgstr "%1$s vanaf nu kan aangegeven worden in de volgende notatie: %2$s"
+
+#: includes/daterange_helptexts.php:22
+msgid "A relative year"
+msgstr "Een relatief jaar"
+
+#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29
+#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43
+#, php-format
+msgid ""
+"This means you can specify a positive or negative (%1$s) %2$s from now with "
+"%3$s or %4$s attached (see also the example below)."
+msgstr "Dit betekent dat je een een positief of negatief (%1$s) %2$s vanaf nu kan aangeven met %3$s of %4$s erachter gevoegd (zie ook het voorbeeld hieronder)."
+
+#: includes/daterange_helptexts.php:23
+msgid "number of years"
+msgstr "aantal jaar"
+
+#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30
+#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44
+#, php-format
+msgid "Additionally the following values are available: %1$s"
+msgstr "Daarnaast zijn de volgende waarden te gebruiken: %1$s"
+
+#: includes/daterange_helptexts.php:27
+msgid "Relative Month"
+msgstr "Relatieve Maand"
+
+#: includes/daterange_helptexts.php:28
+msgid "A relative month"
+msgstr "Een relatieve maand"
+
+#: includes/daterange_helptexts.php:29
+msgid "number of months"
+msgstr "aantal maand"
+
+#: includes/daterange_helptexts.php:33
+msgid "Relative Week"
+msgstr "Relatieve Week"
+
+#: includes/daterange_helptexts.php:34
+msgid "A relative week"
+msgstr "Een relatieve week"
+
+#: includes/daterange_helptexts.php:35
+msgid "number of weeks"
+msgstr "aantal weken"
+
+#: includes/daterange_helptexts.php:36
+msgid "the resulting week"
+msgstr "de betreffende week"
+
+#: 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 "De eerste dag van de week is afhankelijk van de optie %1$s, die terug te vinden en aan te passen is bij %2$s."
+
+#: includes/daterange_helptexts.php:41
+msgid "Relative Day"
+msgstr "Relatieve Dag"
+
+#: includes/daterange_helptexts.php:42
+msgid "A relative day"
+msgstr "Een relatieve dag"
+
+#: includes/daterange_helptexts.php:43
+msgid "number of days"
+msgstr "aantal dagen"
+
+#: includes/daterange_helptexts.php:49
+msgid "Date range"
+msgstr "Datumbereik"
+
+#: 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 "Een datumbereik kan aangegeven worden via een startdatum en einddatum gescheiden door een tilde (~).<br />\n\t                                     Voor de start- en einddatum kan elk datumnotatie gebruikt worden."
+
+#: includes/daterange_helptexts.php:55
+msgid "This value defines a range without any limits."
+msgstr "Deze waarde geeft een bereik zonder einde aan."
+
+#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61
+#: includes/daterange_helptexts.php:66
+#, php-format
+msgid "The corresponding date_range format is: %1$s"
+msgstr "De bijbehorende date_range instelling is: %1$s"
+
+#: includes/daterange_helptexts.php:59 includes/filterbar.php:291
+msgid "Upcoming"
+msgstr "Komende"
+
+#: includes/daterange_helptexts.php:60
+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
+msgid "Past"
+msgstr "Eerdere"
+
+#: includes/daterange_helptexts.php:65
+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:282
+msgid "All"
+msgstr "Alles"
+
+#: includes/filterbar.php:285
+msgid "Show all dates"
+msgstr "Toon alle data"
+
+#: includes/filterbar.php:285
+msgid "Show all categories"
+msgstr "Toon alle categoriën"
+
+#: includes/options_helptexts.php:11
+msgid "Sync Categories"
+msgstr "Synchroniseer categoriën"
+
+#: 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/options_helptexts.php:13
+msgid "Attention"
+msgstr "Let op"
+
+#: 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/options_helptexts.php:18
+msgid "CSV File to import"
+msgstr "CSV-bestand om te importeren"
+
+#: includes/options_helptexts.php:20
+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
+msgid "Used date format"
+msgstr "Gebruikte datumweergave"
+
+#: 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."
+
+#: includes/options_helptexts.php:29
+msgid "Text for no events"
+msgstr "Tekst indien geen evenementen"
+
+#: includes/options_helptexts.php:31
+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
+msgid "Multiday filter range"
+msgstr "Meerdaags filter bereik"
+
+#: includes/options_helptexts.php:35
+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
+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
+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
+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
+msgid "Date display"
+msgstr "Datumweergave"
+
+#: includes/options_helptexts.php:42
+msgid "Show the date only once per day"
+msgstr "Toon de datum slechts één keer per dag"
+
+#: includes/options_helptexts.php:43
+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
+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
+msgid "HTML tags"
+msgstr "HTML-elementen"
+
+#: includes/options_helptexts.php:48 includes/options_helptexts.php:53
+#, 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
+#, 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
+msgid "Preferred language file"
+msgstr ""
+
+#: includes/options_helptexts.php:58
+msgid "Load translations from general language directory first"
+msgstr ""
+
+#: includes/options_helptexts.php:59
+#, 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
+#, 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\""
+msgstr "Tekst voor \"Toon details\""
+
+#: 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."
+msgstr "Met deze optie kan de weergegeven tekst voor de link naar de evenement details worden aangepast, als uitklappen is ingeschakeld."
+
+#: includes/options_helptexts.php:68
+msgid "Text for \"Hide details\""
+msgstr "Tekst voor \"Verberg details\""
+
+#: 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."
+msgstr "Met deze optie kan de weergegeven tekst voor de link om de evenement details te verbergen worden aangepast, als uitklappen is ingeschakeld."
+
+#: includes/options_helptexts.php:72
+msgid "Disable CSS file"
+msgstr "CSS-bestand uitschakelen"
+
+#: includes/options_helptexts.php:73
+#, php-format
+msgid "Disable the %1$s file."
+msgstr "Schakel het %1$s bestand uit."
+
+#: includes/options_helptexts.php:74
+#, 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
+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
+msgid "Date format in edit form"
+msgstr "Datumweergave in formulieren"
+
+#: includes/options_helptexts.php:80
+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
+msgid "The default is an empty string to use the Wordpress standard setting."
+msgstr ""
+
+#: includes/options_helptexts.php:82
+#, 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
+msgid "Enable RSS feed"
+msgstr "RSS feed inschakelen"
+
+#: includes/options_helptexts.php:87
+msgid "Enable support for an event RSS feed"
+msgstr "Ondersteuning voor een RSS feed inschakelen"
+
+#: includes/options_helptexts.php:88
+msgid "This option activates a RSS feed for the events."
+msgstr ""
+
+#: includes/options_helptexts.php:89
+msgid ""
+"You have to enable this option if you want to use one of the RSS feed "
+"features."
+msgstr ""
+
+#: includes/options_helptexts.php:92
+msgid "Feed name"
+msgstr "Feed naam"
+
+#: includes/options_helptexts.php:93
+#, php-format
+msgid "This option sets the feed name. The default value is %1$s."
+msgstr ""
+
+#: includes/options_helptexts.php:94
+#, 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
+msgid "Feed Description"
+msgstr "Feed beschrijving"
+
+#: includes/options_helptexts.php:98
+#, php-format
+msgid "This options set the feed description. The default value is %1$s."
+msgstr ""
+
+#: includes/options_helptexts.php:99
+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
+msgid "Listed events"
+msgstr "Vermeldde evenementen"
+
+#: includes/options_helptexts.php:103
+msgid "Only show upcoming events in feed"
+msgstr "Toon alleen komende evenementen in feed"
+
+#: includes/options_helptexts.php:104
+msgid ""
+"If this option is enabled only the upcoming events are listed in the feed."
+msgstr ""
+
+#: includes/options_helptexts.php:105
+msgid "If disabled all events (upcoming and past) will be listed."
+msgstr ""
+
+#: includes/options_helptexts.php:108
+msgid "Add RSS feed link in head"
+msgstr "Voeg RSS feed toe in kop"
+
+#: includes/options_helptexts.php:109
+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
+msgid "This option adds a RSS feed in the html head for the events."
+msgstr ""
+
+#: includes/options_helptexts.php:111
+msgid "There are 2 alternatives to include the RSS feed"
+msgstr ""
+
+#: includes/options_helptexts.php:112
+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
+#, 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
+#, php-format
+msgid "This option is only valid if the setting %1$s is enabled."
+msgstr ""
+
+#: includes/options_helptexts.php:117
+msgid "Position of the RSS feed link"
+msgstr "Plek van de RSS feed link"
+
+#: includes/options_helptexts.php:118
+msgid "at the top (above the navigation bar)"
+msgstr ""
+
+#: includes/options_helptexts.php:118
+msgid "between navigation bar and events"
+msgstr ""
+
+#: includes/options_helptexts.php:118
+msgid "at the bottom"
+msgstr ""
+
+#: includes/options_helptexts.php:119
+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
+#, 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
+msgid "Align of the RSS feed link"
+msgstr "Uitlijning van RSS feed link"
+
+#: includes/options_helptexts.php:124
+msgid "left"
+msgstr ""
+
+#: includes/options_helptexts.php:124
+msgid "center"
+msgstr ""
+
+#: includes/options_helptexts.php:124
+msgid "right"
+msgstr ""
+
+#: includes/options_helptexts.php:125
+msgid ""
+"This option specifies the align of the RSS feed link in the event list."
+msgstr ""
+
+#: includes/options_helptexts.php:129
+msgid "Feed link text"
+msgstr "Tekst feed link"
+
+#: includes/options_helptexts.php:130
+msgid ""
+"This option specifies the caption of the RSS feed link in the event list."
+msgstr ""
+
+#: includes/options_helptexts.php:131
+msgid ""
+"Insert an empty text to hide any text if you only want to show the rss "
+"image."
+msgstr ""
+
+#: includes/options_helptexts.php:135
+msgid "Feed link image"
+msgstr "Afbeelding feed link"
+
+#: includes/options_helptexts.php:136
+msgid "Show rss image in feed link"
+msgstr "Toon RSS afbeelding in feed link"
+
+#: includes/options_helptexts.php:137
+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.php:44
+msgid "Hide details"
+msgstr "Verberg details"
+
+#: 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-details 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:76
+#: includes/sc_event-list_helptexts.php:91
+#: includes/sc_event-list_helptexts.php:106
+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:77
+#: includes/sc_event-list_helptexts.php:92
+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:78
+#: includes/sc_event-list_helptexts.php:93
+#, 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:79
+#: includes/sc_event-list_helptexts.php:94
+#: includes/sc_event-list_helptexts.php:109
+msgid "This attribute has no influence if only a single event is shown."
+msgstr ""
+
+#: includes/sc_event-list_helptexts.php:82
+msgid ""
+"This attribute specifies if the starttime is displayed in the event list.<br />\n"
+"\t                                            Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
+"\t                                            With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
+msgstr "Dit attribuut bepaalt of de starttijd wordt getoond in de evenementenlijst.<br />\n\t                                            Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de starttijd.<br />\n\t                                            Met 'event_list_only' is de starttijd alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
+
+#: includes/sc_event-list_helptexts.php:87
+msgid ""
+"This attribute specifies if the location is displayed in the event list.<br />\n"
+"\t                                            Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
+"\t                                            With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
+msgstr "Dit attribuut bepaalt of de locatie wordt getoond in de evenementenlijst.<br />\n\t                                            Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de locatie.<br />\n\t                                            Met 'event_list_only' is de locatie alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
+
+#: includes/sc_event-list_helptexts.php:97
+msgid ""
+"This attribute specifies if the categories are displayed in the event list.<br />\n"
+"\t                                            Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
+"\t                                            With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
+msgstr "Dit attribuut bepaalt of de categorieën worden getoond in de evenementenlijst.<br />\n\t                                            Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de categorie.<br />\n\t                                            Met 'event_list_only' zijn de categorieën alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
+
+#: includes/sc_event-list_helptexts.php:102
+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."
+
+#: includes/sc_event-list_helptexts.php:107
+msgid ""
+"This attribute specifies if the details should be truncate to the given "
+"number of characters in the event list."
+msgstr ""
+
+#: includes/sc_event-list_helptexts.php:108
+#, php-format
+msgid "With the standard value %1$s the full text is displayed."
+msgstr ""
+
+#: includes/sc_event-list_helptexts.php:112
+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."
+
+#: includes/sc_event-list_helptexts.php:118
+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."
+
+#: includes/sc_event-list_helptexts.php:124
+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 "Dit attribuut bepaalt of een RSS feed link toegevoegd moet worden.<br />\n\t                                            Je dient de RSS feed in te schakelen bij de instellingen om dit attribuut te laten werken.<br />\n\t                                            Op die pagina vind je ook meer instellingen om de RSS feed aan te passen.<br />\n\t                                            Gebruik 'false' om nooit een link toe te voegen en 'true' om dit altijd te doen.<br />\n\t                                            Met 'event_list_only' wordt links alleen toegevoegd in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
+
+#: includes/sc_event-list_helptexts.php:130
+msgid ""
+"This attribute specifies the page or post url for event links.<br />\n"
+"\t                                            The standard is an empty string. Then the url will be calculated automatically.<br />\n"
+"\t                                            An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
+msgstr "Dit attribuut bepaalt de URL van de pagina of het bericht voor de evenementlinks.<br />\n\t                                            Standaard is een lege waarde. In dat geval wordt de URL automatisch bepaald.<br />\n\t                                            Een URL is normaal gesproken alleen nodig als de shortcode in een sidebar wordt gebruikt. Het wordt ook gebruikt in de evenementenlijst-widget."
+
+#: includes/sc_event-list_helptexts.php:137
+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:138
+msgid "Event Information:"
+msgstr "Evenement details:"
+
+#: includes/widget_helptexts.php:10
+msgid "This option defines the displayed title for the widget."
+msgstr "Deze optie bepaalt de getoonde titel voor de widget."
+
+#: includes/widget_helptexts.php:15
+msgid "Category Filter"
+msgstr "Categoriefilter"
+
+#: 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 "Deze optie bepaalt welke categorieën evenementen worden getoond. Standaard is 'all' of geen waarde om alle evenementen te tonen. Gebruikt een categorie-slug of een lijst van slugs om alleen evenementen uit bepaalde categorieën te tonen. Zie de beschrijving van het shortcode-attribuut 'cat_filter' voor meer informatie over de opties."
+
+#: includes/widget_helptexts.php:22
+msgid "Number of listed events"
+msgstr "Aantal getoonde events"
+
+#: includes/widget_helptexts.php:24
+msgid "The number of upcoming events to display"
+msgstr "Het aantal komende evenementen om te tonen"
+
+#: includes/widget_helptexts.php:29
+msgid "Truncate event title to"
+msgstr "Kort evenementtitel in tot"
+
+#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
+#: includes/widget_helptexts.php:67
+msgid "characters"
+msgstr "tekens"
+
+#: 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 "Toon starttijd evenement"
+
+#: includes/widget_helptexts.php:39
+msgid "This option defines if the event start time will be displayed."
+msgstr "Deze optie bepaalt of de starttijd van het evenement wordt getoond"
+
+#: includes/widget_helptexts.php:44
+msgid "Show event location"
+msgstr "Toon evenementlocatie"
+
+#: includes/widget_helptexts.php:46
+msgid "This option defines if the event location will be displayed."
+msgstr "Deze optie bepaalt of de evenementlocatie wordt getoond."
+
+#: includes/widget_helptexts.php:51
+msgid "Truncate location to"
+msgstr "Kort de locatie in tot"
+
+#: 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 details"
+msgstr "Toon evenementdetails"
+
+#: 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."
+
+#: includes/widget_helptexts.php:66
+msgid "Truncate details to"
+msgstr "Kort de details in tot"
+
+#: includes/widget_helptexts.php:68
+msgid ""
+"If the event details 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 "URL naar de gelinkte evenementenlijst-pagina"
+
+#: 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 "Deze optie bepaalt de URL van de gelinkte evenementenlijst-pagina."
+
+#: includes/widget_helptexts.php:81
+msgid "Shortcode ID on linked page"
+msgstr "Shortcode ID op de gelinkte pagina"
+
+#: 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 "Deze optie bepaalt de shortcode ID voor de evenementenlijst op de gelinkte pagina. Normaal gesproken is de standaardwaarde 1 correct. Dit hoeft alleen aangepast te worden bij gebruik van meerdere evenementenlijsten op de gelinkte pagina."
+
+#: includes/widget_helptexts.php:90
+msgid ""
+"With this option you can add a link to the single event page for every "
+"displayed event. You have to specify the url to the page and the shortcode "
+"id option if you want to use it."
+msgstr "Met deze optie kan je een link naar de pagina van de individuele evenementen toevoegen voor elk getoonde evenement. Je dient een URL te specificeren naar de pagina en de shortcode ID als je dit wil gebruiken."
+
+#: includes/widget_helptexts.php:97
+msgid ""
+"With this option you can add a link to the event-list page below the "
+"diplayed events. You have to specify the url to page option if you want to "
+"use it."
+msgstr "Met deze optie kan je een link naar de evenementenlijst-pagina toevoegen onder de getoonde evenementen. Je dient een URL naar de pagina te specificeren als je dit wil gebruiken."
+
+#: includes/widget_helptexts.php:102
+msgid "Caption for the link"
+msgstr "Bijschrift bij de link"
+
+#: 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 "Deze optie bepaalt de tekst voor de link naar de evenementenlijst-pagina, als de bijbehorende optie is geselecteerd."
+
+#: includes/widget.php:20
+msgid "With this widget a list of upcoming events can be displayed."
+msgstr "Met dit widget kan een lijst van komende evenementen worden getoond."
+
+#: includes/widget.php:25
+msgid "Upcoming events"
+msgstr "Komende evenementen"
+
+#: includes/widget.php:38
+msgid "show events page"
+msgstr "toon evenementenpagina"
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
new file mode 100644
index 0000000000000000000000000000000000000000..4d1044694d9e62ea7d5f3c2a8765825ad3888720
Binary files /dev/null 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
new file mode 100644
index 0000000000000000000000000000000000000000..ae59ec61908b222873d68a6a0c877d8f4d2a9e19
--- /dev/null
+++ b/wp-content/plugins/event-list/languages/event-list-pt_BR.po
@@ -0,0 +1,1596 @@
+# Translation file for the 'Event List' WordPress plugin
+# Copyright (C) 2017 by mibuthu
+# This file is distributed under the same license as the corresponding wordpress plugin.
+# 
+# Translators:
+# Fagner C. Andrade <fagner88@gmail.com>, 2015
+# Glauber Portella Ornelas de Melo <glauberportella@gmail.com>, 2015
+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-03-17 17:25+0100\n"
+"PO-Revision-Date: 2017-03-17 16:25+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"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: pt_BR\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: admin/admin.php:45
+msgid "Event List"
+msgstr "Lista de Eventos"
+
+#: admin/admin.php:48 admin/admin.php:80 admin/includes/admin-main.php:117
+#: admin/includes/category_table.php:110
+msgid "Events"
+msgstr "Eventos"
+
+#: admin/admin.php:48
+msgid "All Events"
+msgstr "Todos os Eventos"
+
+#: admin/admin.php:52 admin/includes/admin-new.php:41
+msgid "Add New Event"
+msgstr "Adicionar Novo Evento"
+
+#: admin/admin.php:52 admin/includes/admin-main.php:119
+msgid "Add New"
+msgstr "Adicionar Novo"
+
+#: admin/admin.php:56 admin/includes/admin-categories.php:50
+msgid "Event List Categories"
+msgstr "Categorias da Lista de Eventos"
+
+#: admin/admin.php:56 admin/includes/admin-new.php:145
+#: admin/includes/event_table.php:111
+msgid "Categories"
+msgstr "Categorias"
+
+#: admin/admin.php:60 admin/includes/admin-settings.php:53
+msgid "Event List Settings"
+msgstr "Configurações da Lista de Eventos"
+
+#: admin/admin.php:60
+msgid "Settings"
+msgstr "Configurações"
+
+#: admin/admin.php:64 admin/includes/admin-about.php:37
+msgid "About Event List"
+msgstr "Sobre o Lista de Eventos"
+
+#: admin/admin.php:64
+msgid "About"
+msgstr "Sobre"
+
+#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:68
+msgid "General"
+msgstr "Geral"
+
+#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
+#: admin/includes/admin-about.php:103
+msgid "Shortcode Attributes"
+msgstr ""
+
+#: admin/includes/admin-about.php:71
+msgid "Help and Instructions"
+msgstr "Ajuda e Instruções"
+
+#: admin/includes/admin-about.php:72
+#, php-format
+msgid "You can manage the events %1$shere%2$s"
+msgstr ""
+
+#: admin/includes/admin-about.php:73
+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
+#, 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
+#, 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
+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
+#, 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
+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
+#, 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
+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
+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
+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
+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
+#, 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
+#, 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
+#, 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
+msgid "Settings page"
+msgstr ""
+
+#: admin/includes/admin-about.php:91
+msgid "About the plugin author"
+msgstr ""
+
+#: admin/includes/admin-about.php:93
+#, 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
+msgid "wordpress plugin site"
+msgstr ""
+
+#: admin/includes/admin-about.php:94
+#, php-format
+msgid "If you like the plugin please rate it on the %1$s."
+msgstr ""
+
+#: admin/includes/admin-about.php:94
+msgid "wordpress plugin review site"
+msgstr ""
+
+#: admin/includes/admin-about.php:95
+msgid ""
+"If you want to support the plugin I would be happy to get a small donation"
+msgstr ""
+
+#: admin/includes/admin-about.php:105
+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:106
+#, 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:108
+msgid ""
+"Below you can find a list of all supported attributes with their "
+"descriptions and available options:"
+msgstr ""
+
+#: admin/includes/admin-about.php:122
+msgid "Attribute name"
+msgstr "Nome do atributo"
+
+#: admin/includes/admin-about.php:123
+msgid "Value options"
+msgstr "Opções de valor"
+
+#: admin/includes/admin-about.php:124
+msgid "Default value"
+msgstr "Valor padrão"
+
+#: admin/includes/admin-about.php:125 admin/includes/admin-categories.php:188
+#: admin/includes/category_table.php:108
+msgid "Description"
+msgstr "Descrição"
+
+#: admin/includes/admin-about.php:143 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:144
+msgid ""
+"For date and cat filters you can specify complex filters with the following "
+"syntax:"
+msgstr ""
+
+#: admin/includes/admin-about.php:145
+#, 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:145
+msgid "AND"
+msgstr "E"
+
+#: admin/includes/admin-about.php:145
+msgid "OR"
+msgstr "OU"
+
+#: admin/includes/admin-about.php:145
+msgid "or"
+msgstr "ou"
+
+#: admin/includes/admin-about.php:145
+msgid "and"
+msgstr "e"
+
+#: admin/includes/admin-about.php:146
+msgid "Examples for cat filters:"
+msgstr ""
+
+#: admin/includes/admin-about.php:147
+#, php-format
+msgid "Show all events with category %1$s."
+msgstr ""
+
+#: admin/includes/admin-about.php:148
+#, php-format
+msgid "Show all events with category %1$s or %2$s."
+msgstr ""
+
+#: admin/includes/admin-about.php:149
+#, 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:154 includes/sc_event-list_helptexts.php:25
+msgid "Available Date Formats"
+msgstr ""
+
+#: admin/includes/admin-about.php:155
+msgid "For date filters you can use the following date formats:"
+msgstr ""
+
+#: admin/includes/admin-about.php:163 includes/sc_event-list_helptexts.php:25
+msgid "Available Date Range Formats"
+msgstr ""
+
+#: admin/includes/admin-about.php:164
+msgid "For date filters you can use the following daterange formats:"
+msgstr ""
+
+#: admin/includes/admin-about.php:176
+msgid "Value"
+msgstr "Valor"
+
+#: admin/includes/admin-about.php:180
+msgid "Example"
+msgstr "Exemplo"
+
+#: admin/includes/admin-categories.php:53
+msgid "Edit Category"
+msgstr "Editar Categoria"
+
+#: admin/includes/admin-categories.php:53
+msgid "Update Category"
+msgstr "Atualizar Categoria"
+
+#: admin/includes/admin-categories.php:59
+msgid "Add New Category"
+msgstr "Adicionar Nova Categoria"
+
+#: admin/includes/admin-categories.php:84
+#, php-format
+msgid "Category \"%s\" deleted."
+msgstr "Categoria \"%s\" removida."
+
+#: admin/includes/admin-categories.php:86
+#, php-format
+msgid "This Category was also removed from %d events."
+msgstr "Esta Categoria também foi removida de %d eventos."
+
+#: admin/includes/admin-categories.php:92
+#, php-format
+msgid "Error while deleting category \"%s\""
+msgstr "Erro ao remover categoria \"%s\""
+
+#: admin/includes/admin-categories.php:102
+msgid "Sync with post categories enabled."
+msgstr "Sincronizar com categorias de post habilitado."
+
+#: admin/includes/admin-categories.php:105
+msgid "Sync with post categories disabled."
+msgstr "Sincronizar com categorias de post desabilitado"
+
+#: admin/includes/admin-categories.php:111
+msgid "Manual sync with post categories sucessfully finished."
+msgstr "Sincronizar manualmente com categorias de post finalizado com sucesso."
+
+#: admin/includes/admin-categories.php:119
+#, php-format
+msgid "New Category \"%s\" was added"
+msgstr "Nova Categoria \"%s\" foi adicionada"
+
+#: admin/includes/admin-categories.php:122
+#, php-format
+msgid "Error: New Category \"%s\" could not be added"
+msgstr "Erro: Nova Categoria \"%s\" não pode ser adicionada"
+
+#: admin/includes/admin-categories.php:128
+#, php-format
+msgid "Category \"%s\" was modified"
+msgstr "Categoria \"%s\" foi modificada"
+
+#: admin/includes/admin-categories.php:131
+#, php-format
+msgid "Error: Category \"%s\" could not be modified"
+msgstr "Erro: Categoria \"%s\" não pode ser modificada"
+
+#: admin/includes/admin-categories.php:138
+msgid "Categories are automatically synced with the post categories."
+msgstr ""
+
+#: admin/includes/admin-categories.php:139
+msgid ""
+"Because of this all options to add new categories or editing existing "
+"categories are disabled."
+msgstr ""
+
+#: admin/includes/admin-categories.php:140
+msgid ""
+"If you want to manually edit the categories you have to disable this option."
+msgstr ""
+
+#: admin/includes/admin-categories.php:167
+msgid "The name is how it appears on your site."
+msgstr "O nome é como é exibido em seu site."
+
+#: admin/includes/admin-categories.php:172
+msgid ""
+"The “slug” is the URL-friendly version of the name. It is usually all "
+"lowercase and contains only letters, numbers, and hyphens."
+msgstr ""
+
+#: admin/includes/admin-categories.php:185
+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 ""
+
+#: admin/includes/admin-categories.php:232
+msgid "Apply"
+msgstr "Aplicar"
+
+#: admin/includes/admin-categories.php:242
+msgid "Do a manual sync with post categories"
+msgstr "Fazer sincronia manual com categorias de post"
+
+#: admin/includes/admin-import.php:45
+msgid "Import Events"
+msgstr "Importar Eventos"
+
+#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:120
+msgid "Step"
+msgstr "Passo"
+
+#: admin/includes/admin-import.php:65
+msgid "Set import file and options"
+msgstr "Informar arquivo de importação e opções"
+
+#: admin/includes/admin-import.php:68
+#, php-format
+msgid "Proceed with Step %1$s"
+msgstr ""
+
+#: admin/includes/admin-import.php:71
+msgid "Example file"
+msgstr "Arquivo de exemplo"
+
+#: admin/includes/admin-import.php:72
+#, 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
+msgid "Note"
+msgstr "Nota"
+
+#: admin/includes/admin-import.php:73
+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
+msgid "Sorry, there has been an error."
+msgstr ""
+
+#: admin/includes/admin-import.php:81
+msgid "The file does not exist, please try again."
+msgstr ""
+
+#: admin/includes/admin-import.php:89
+msgid "The file is not a CSV file."
+msgstr ""
+
+#: admin/includes/admin-import.php:120
+msgid "Events review and additonal category selection"
+msgstr ""
+
+#: admin/includes/admin-import.php:123
+msgid ""
+"Warning: The following category slugs are not available and will be removed "
+"from the imported events:"
+msgstr ""
+
+#: admin/includes/admin-import.php:129
+msgid ""
+"If you want to keep these categories, please create these Categories first "
+"and do the import afterwards."
+msgstr ""
+
+#: admin/includes/admin-import.php:147
+msgid "Add additional categories"
+msgstr ""
+
+#: admin/includes/admin-import.php:148
+msgid "Import events"
+msgstr ""
+
+#: admin/includes/admin-import.php:162
+msgid "Import with errors!"
+msgstr "Importar com erros!"
+
+#: admin/includes/admin-import.php:163
+#, php-format
+msgid ""
+"An error occurred during import! Please send your import file to %1$sthe "
+"administrator%2$s for analysis."
+msgstr ""
+
+#: admin/includes/admin-import.php:167
+msgid "Import successful!"
+msgstr "Importado com sucesso!"
+
+#: admin/includes/admin-import.php:168
+msgid "Go back to All Events"
+msgstr "Voltar para Todos os Eventos"
+
+#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:106
+#: admin/includes/event_table.php:108 includes/widget_helptexts.php:8
+msgid "Title"
+msgstr "Título"
+
+#: admin/includes/admin-import.php:176
+msgid "Start Date"
+msgstr "Início"
+
+#: admin/includes/admin-import.php:177
+msgid "End Date"
+msgstr "Término"
+
+#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:119
+#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
+msgid "Time"
+msgstr "Hora"
+
+#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:123
+#: admin/includes/event_table.php:109 includes/options_helptexts.php:53
+#: includes/options_helptexts.php:54
+msgid "Location"
+msgstr "Localização"
+
+#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:127
+#: admin/includes/event_table.php:110
+msgid "Details"
+msgstr "Detalhes"
+
+#: admin/includes/admin-import.php:181
+msgid "Category slugs"
+msgstr ""
+
+#: admin/includes/admin-import.php:220
+#, php-format
+msgid ""
+"There was an error at line %1$s when reading this CSV file: Header line is "
+"missing or not correct!"
+msgstr ""
+
+#: admin/includes/admin-import.php:252 admin/includes/admin-main.php:120
+msgid "Import"
+msgstr "Importar"
+
+#: admin/includes/admin-main.php:114
+msgid "Edit Event"
+msgstr "Editar Evento"
+
+#: admin/includes/admin-main.php:114 admin/includes/event_table.php:72
+msgid "Duplicate"
+msgstr "Duplicar"
+
+#: admin/includes/admin-new.php:43
+#, php-format
+msgid "Duplicate of event id:%d"
+msgstr "Duplicar evento id:%d"
+
+#: admin/includes/admin-new.php:106 admin/includes/admin-new.php:110
+msgid "required"
+msgstr "obrigatório"
+
+#: admin/includes/admin-new.php:110 admin/includes/event_table.php:107
+msgid "Date"
+msgstr "Data"
+
+#: admin/includes/admin-new.php:113
+msgid "Multi-Day Event"
+msgstr "Evento de vários dias"
+
+#: admin/includes/admin-new.php:143 admin/includes/admin-new.php:160
+msgid "Publish"
+msgstr "Publicar"
+
+#: admin/includes/admin-new.php:160
+msgid "Update"
+msgstr "Atualizar"
+
+#: admin/includes/admin-new.php:162
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: admin/includes/admin-new.php:175
+msgid "No categories available."
+msgstr "Nenhuma categoria disponível."
+
+#: admin/includes/admin-new.php:221
+msgid "Goto Category Settings"
+msgstr "Ir para Configurações de Categoria"
+
+#: admin/includes/admin-settings.php:41
+msgid "Settings saved."
+msgstr "Configurações salvas."
+
+#: admin/includes/admin-settings.php:69
+msgid "Frontend Settings"
+msgstr "Configurações de Frontend"
+
+#: admin/includes/admin-settings.php:70
+msgid "Admin Page Settings"
+msgstr "Configurações do Administrador"
+
+#: admin/includes/admin-settings.php:71
+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:70 admin/includes/event_table.php:71
+msgid "Edit"
+msgstr "Editar"
+
+#: admin/includes/category_table.php:71 admin/includes/category_table.php:145
+#: admin/includes/event_table.php:73 admin/includes/event_table.php:146
+msgid "Delete"
+msgstr "Remover"
+
+#: admin/includes/category_table.php:107
+msgid "Name"
+msgstr "Nome"
+
+#: admin/includes/category_table.php:109
+msgid "Slug"
+msgstr "Slug"
+
+#: admin/includes/event_table.php:112
+msgid "Author"
+msgstr "Autor"
+
+#: admin/includes/event_table.php:113
+msgid "Published"
+msgstr "Publicado"
+
+#: admin/includes/event_table.php:175
+msgid "Filter"
+msgstr "Filtro"
+
+#: admin/includes/event_table.php:297
+#, php-format
+msgid "%s ago"
+msgstr "%s atrás"
+
+#: includes/daterange_helptexts.php:7
+msgid "Year"
+msgstr "Ano"
+
+#: includes/daterange_helptexts.php:8
+msgid "A year can be specified in 4 digit format."
+msgstr "Um ano pode ser especificado em formato de 4 dígitos."
+
+#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14
+#: includes/daterange_helptexts.php:36
+#, 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 "o ano resultado"
+
+#: includes/daterange_helptexts.php:12
+msgid "Month"
+msgstr "Mês"
+
+#: 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 "o mês resultado"
+
+#: includes/daterange_helptexts.php:17
+msgid "Day"
+msgstr "Dia"
+
+#: 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 "Ano Relativo"
+
+#: 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 "Um ano relativo"
+
+#: 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 "número de anos"
+
+#: 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 "Adicionalmente os seguintes valores estão disponíveis: %1$s"
+
+#: includes/daterange_helptexts.php:27
+msgid "Relative Month"
+msgstr "Mês Relativo"
+
+#: includes/daterange_helptexts.php:28
+msgid "A relative month"
+msgstr "Um mês relativo"
+
+#: includes/daterange_helptexts.php:29
+msgid "number of months"
+msgstr "número de meses"
+
+#: includes/daterange_helptexts.php:33
+msgid "Relative Week"
+msgstr "Semana Relativa"
+
+#: includes/daterange_helptexts.php:34
+msgid "A relative week"
+msgstr "Uma semana relativa"
+
+#: includes/daterange_helptexts.php:35
+msgid "number of weeks"
+msgstr "número de semanas"
+
+#: includes/daterange_helptexts.php:36
+msgid "the resulting week"
+msgstr "a semana resultante"
+
+#: 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 "Dia Relativo"
+
+#: includes/daterange_helptexts.php:42
+msgid "A relative day"
+msgstr "Um dia relativo"
+
+#: includes/daterange_helptexts.php:43
+msgid "number of days"
+msgstr "número de dias"
+
+#: includes/daterange_helptexts.php:49
+msgid "Date range"
+msgstr "Intervalo de data"
+
+#: 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 "Este valor defina um intervalo sem qualquer limite."
+
+#: 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:291
+msgid "Upcoming"
+msgstr "Próximos"
+
+#: 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:295
+msgid "Past"
+msgstr "Passado"
+
+#: includes/daterange_helptexts.php:65
+msgid "This value defines a range from the past to the previous day."
+msgstr ""
+
+#: includes/filterbar.php:282
+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/options_helptexts.php:11
+msgid "Sync Categories"
+msgstr "Sincronizar Categorias"
+
+#: includes/options_helptexts.php:12
+msgid "Keep event categories in sync with post categories automatically"
+msgstr ""
+
+#: includes/options_helptexts.php:13
+msgid "Attention"
+msgstr "Atenção"
+
+#: 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 ""
+
+#: includes/options_helptexts.php:18
+msgid "CSV File to import"
+msgstr "Arquivo CSV a importar"
+
+#: includes/options_helptexts.php:20
+msgid "Please select the file which contains the event data in CSV format."
+msgstr ""
+
+#: includes/options_helptexts.php:23
+msgid "Used date format"
+msgstr "Formato de data usado"
+
+#: 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 ""
+
+#: includes/options_helptexts.php:29
+msgid "Text for no events"
+msgstr "Texto para \"nenhum evento\""
+
+#: includes/options_helptexts.php:31
+msgid ""
+"This option defines the displayed text when no events are available for the "
+"selected view."
+msgstr ""
+
+#: includes/options_helptexts.php:34
+msgid "Multiday filter range"
+msgstr ""
+
+#: includes/options_helptexts.php:35
+msgid "Use the complete event range in the date filter"
+msgstr ""
+
+#: includes/options_helptexts.php:36
+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
+msgid ""
+"If disabled, only the start day of an event is considered in the filter."
+msgstr ""
+
+#: includes/options_helptexts.php:38
+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
+msgid "Date display"
+msgstr "Exibição de data"
+
+#: includes/options_helptexts.php:42
+msgid "Show the date only once per day"
+msgstr ""
+
+#: includes/options_helptexts.php:43
+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
+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
+msgid "HTML tags"
+msgstr "Tags HTML"
+
+#: includes/options_helptexts.php:48 includes/options_helptexts.php:53
+#, php-format
+msgid "Allow HTML tags in the event field \"%1$s\""
+msgstr ""
+
+#: includes/options_helptexts.php:49 includes/options_helptexts.php:54
+#, php-format
+msgid ""
+"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
+msgstr ""
+
+#: includes/options_helptexts.php:57
+msgid "Preferred language file"
+msgstr ""
+
+#: includes/options_helptexts.php:58
+msgid "Load translations from general language directory first"
+msgstr ""
+
+#: includes/options_helptexts.php:59
+#, 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
+#, 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\""
+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."
+msgstr ""
+
+#: includes/options_helptexts.php:68
+msgid "Text for \"Hide details\""
+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."
+msgstr ""
+
+#: includes/options_helptexts.php:72
+msgid "Disable CSS file"
+msgstr "Desativar arquivo CSS"
+
+#: includes/options_helptexts.php:73
+#, php-format
+msgid "Disable the %1$s file."
+msgstr ""
+
+#: includes/options_helptexts.php:74
+#, php-format
+msgid "With this option you can disable the inclusion of the %1$s file."
+msgstr ""
+
+#: includes/options_helptexts.php:75
+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
+msgid "Date format in edit form"
+msgstr ""
+
+#: includes/options_helptexts.php:80
+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
+msgid "The default is an empty string to use the Wordpress standard setting."
+msgstr ""
+
+#: includes/options_helptexts.php:82
+#, 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
+msgid "Enable RSS feed"
+msgstr "Habilitar Feed RSS"
+
+#: includes/options_helptexts.php:87
+msgid "Enable support for an event RSS feed"
+msgstr ""
+
+#: includes/options_helptexts.php:88
+msgid "This option activates a RSS feed for the events."
+msgstr ""
+
+#: includes/options_helptexts.php:89
+msgid ""
+"You have to enable this option if you want to use one of the RSS feed "
+"features."
+msgstr ""
+
+#: includes/options_helptexts.php:92
+msgid "Feed name"
+msgstr "Nome do feed"
+
+#: includes/options_helptexts.php:93
+#, php-format
+msgid "This option sets the feed name. The default value is %1$s."
+msgstr ""
+
+#: includes/options_helptexts.php:94
+#, 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
+msgid "Feed Description"
+msgstr "Descrição do feed"
+
+#: includes/options_helptexts.php:98
+#, php-format
+msgid "This options set the feed description. The default value is %1$s."
+msgstr ""
+
+#: includes/options_helptexts.php:99
+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
+msgid "Listed events"
+msgstr "Eventos listados"
+
+#: includes/options_helptexts.php:103
+msgid "Only show upcoming events in feed"
+msgstr ""
+
+#: includes/options_helptexts.php:104
+msgid ""
+"If this option is enabled only the upcoming events are listed in the feed."
+msgstr ""
+
+#: includes/options_helptexts.php:105
+msgid "If disabled all events (upcoming and past) will be listed."
+msgstr ""
+
+#: includes/options_helptexts.php:108
+msgid "Add RSS feed link in head"
+msgstr ""
+
+#: includes/options_helptexts.php:109
+msgid "Add RSS feed link in the html head"
+msgstr ""
+
+#: includes/options_helptexts.php:110
+msgid "This option adds a RSS feed in the html head for the events."
+msgstr ""
+
+#: includes/options_helptexts.php:111
+msgid "There are 2 alternatives to include the RSS feed"
+msgstr ""
+
+#: includes/options_helptexts.php:112
+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
+#, 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
+#, php-format
+msgid "This option is only valid if the setting %1$s is enabled."
+msgstr ""
+
+#: includes/options_helptexts.php:117
+msgid "Position of the RSS feed link"
+msgstr ""
+
+#: includes/options_helptexts.php:118
+msgid "at the top (above the navigation bar)"
+msgstr ""
+
+#: includes/options_helptexts.php:118
+msgid "between navigation bar and events"
+msgstr ""
+
+#: includes/options_helptexts.php:118
+msgid "at the bottom"
+msgstr ""
+
+#: includes/options_helptexts.php:119
+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
+#, 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
+msgid "Align of the RSS feed link"
+msgstr ""
+
+#: includes/options_helptexts.php:124
+msgid "left"
+msgstr ""
+
+#: includes/options_helptexts.php:124
+msgid "center"
+msgstr ""
+
+#: includes/options_helptexts.php:124
+msgid "right"
+msgstr ""
+
+#: includes/options_helptexts.php:125
+msgid ""
+"This option specifies the align of the RSS feed link in the event list."
+msgstr ""
+
+#: includes/options_helptexts.php:129
+msgid "Feed link text"
+msgstr "Texto do link do Feed"
+
+#: includes/options_helptexts.php:130
+msgid ""
+"This option specifies the caption of the RSS feed link in the event list."
+msgstr ""
+
+#: includes/options_helptexts.php:131
+msgid ""
+"Insert an empty text to hide any text if you only want to show the rss "
+"image."
+msgstr ""
+
+#: includes/options_helptexts.php:135
+msgid "Feed link image"
+msgstr "Imagem do link do Feed"
+
+#: includes/options_helptexts.php:136
+msgid "Show rss image in feed link"
+msgstr "Exibir imagem rss no link do feed"
+
+#: includes/options_helptexts.php:137
+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 ""
+
+#: includes/options.php:44
+msgid "Hide details"
+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-details 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:76
+#: includes/sc_event-list_helptexts.php:91
+#: includes/sc_event-list_helptexts.php:106
+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:77
+#: includes/sc_event-list_helptexts.php:92
+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:78
+#: includes/sc_event-list_helptexts.php:93
+#, 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:79
+#: includes/sc_event-list_helptexts.php:94
+#: includes/sc_event-list_helptexts.php:109
+msgid "This attribute has no influence if only a single event is shown."
+msgstr ""
+
+#: includes/sc_event-list_helptexts.php:82
+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:87
+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:97
+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:102
+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 ""
+
+#: includes/sc_event-list_helptexts.php:107
+msgid ""
+"This attribute specifies if the details should be truncate to the given "
+"number of characters in the event list."
+msgstr ""
+
+#: includes/sc_event-list_helptexts.php:108
+#, php-format
+msgid "With the standard value %1$s the full text is displayed."
+msgstr ""
+
+#: includes/sc_event-list_helptexts.php:112
+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 ""
+
+#: includes/sc_event-list_helptexts.php:118
+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 ""
+
+#: includes/sc_event-list_helptexts.php:124
+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:130
+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:137
+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:138
+msgid "Event Information:"
+msgstr "Informação do Evento:"
+
+#: 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 "Filtro de Categoria"
+
+#: 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 "Número de eventos listados"
+
+#: includes/widget_helptexts.php:24
+msgid "The number of upcoming events to display"
+msgstr "Número de próximos eventos a exibir"
+
+#: includes/widget_helptexts.php:29
+msgid "Truncate event title to"
+msgstr "Truncar título do evento em"
+
+#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
+#: includes/widget_helptexts.php:67
+msgid "characters"
+msgstr "caracteres"
+
+#: 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 "Exibir data de início do evento"
+
+#: 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 "Exibir localização do evento"
+
+#: 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 "Truncar localização em"
+
+#: 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 details"
+msgstr "Exibir detalhes do evento"
+
+#: includes/widget_helptexts.php:61
+msgid "This option defines if the event details will be displayed."
+msgstr ""
+
+#: includes/widget_helptexts.php:66
+msgid "Truncate details to"
+msgstr "Truncar detalhes em"
+
+#: includes/widget_helptexts.php:68
+msgid ""
+"If the event details 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 "URL para página associada ao Event List"
+
+#: 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 "ID do Shortcode na página associada"
+
+#: 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 "Legenda para o link"
+
+#: 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 "Próximos eventos"
+
+#: includes/widget.php:38
+msgid "show events page"
+msgstr "exibir página de eventos"
diff --git a/wp-content/plugins/event-list/languages/event-list.pot b/wp-content/plugins/event-list/languages/event-list.pot
new file mode 100644
index 0000000000000000000000000000000000000000..fcc01d7eca29e92384b1ec9f3829b38d6cfa4085
--- /dev/null
+++ b/wp-content/plugins/event-list/languages/event-list.pot
@@ -0,0 +1,1414 @@
+# Translation file for the 'Event List' WordPress plugin
+# Copyright (C) 2017 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-03-17 17:25+0100\n"
+"Language: en\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: admin/admin.php:45
+msgid "Event List"
+msgstr ""
+
+#: admin/admin.php:48 admin/admin.php:80 admin/includes/admin-main.php:117
+#: admin/includes/category_table.php:110
+msgid "Events"
+msgstr ""
+
+#: admin/admin.php:48
+msgid "All Events"
+msgstr ""
+
+#: admin/admin.php:52 admin/includes/admin-new.php:41
+msgid "Add New Event"
+msgstr ""
+
+#: admin/admin.php:52 admin/includes/admin-main.php:119
+msgid "Add New"
+msgstr ""
+
+#: admin/admin.php:56 admin/includes/admin-categories.php:50
+msgid "Event List Categories"
+msgstr ""
+
+#: admin/admin.php:56 admin/includes/admin-new.php:145
+#: admin/includes/event_table.php:111
+msgid "Categories"
+msgstr ""
+
+#: admin/admin.php:60 admin/includes/admin-settings.php:53
+msgid "Event List Settings"
+msgstr ""
+
+#: admin/admin.php:60
+msgid "Settings"
+msgstr ""
+
+#: admin/admin.php:64 admin/includes/admin-about.php:37
+msgid "About Event List"
+msgstr ""
+
+#: admin/admin.php:64
+msgid "About"
+msgstr ""
+
+#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:68
+msgid "General"
+msgstr ""
+
+#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
+#: admin/includes/admin-about.php:103
+msgid "Shortcode Attributes"
+msgstr ""
+
+#: admin/includes/admin-about.php:71
+msgid "Help and Instructions"
+msgstr ""
+
+#: admin/includes/admin-about.php:72
+#, php-format
+msgid "You can manage the events %1$shere%2$s"
+msgstr ""
+
+#: admin/includes/admin-about.php:73
+msgid "To show the events on your site you have 2 possibilities"
+msgstr ""
+
+#: admin/includes/admin-about.php:74
+#, php-format
+msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
+msgstr ""
+
+#: admin/includes/admin-about.php:75
+#, php-format
+msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
+msgstr ""
+
+#: admin/includes/admin-about.php:76
+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
+#, 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
+msgid "The available  widget options are described in their tooltip text."
+msgstr ""
+
+#: admin/includes/admin-about.php:79
+#, 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
+msgid "Add links to the single events"
+msgstr ""
+
+#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:95
+msgid "Add a link to the Event List page"
+msgstr ""
+
+#: admin/includes/admin-about.php:80
+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
+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
+#, 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
+#, 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
+#, 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
+msgid "Settings page"
+msgstr ""
+
+#: admin/includes/admin-about.php:91
+msgid "About the plugin author"
+msgstr ""
+
+#: admin/includes/admin-about.php:93
+#, 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
+msgid "wordpress plugin site"
+msgstr ""
+
+#: admin/includes/admin-about.php:94
+#, php-format
+msgid "If you like the plugin please rate it on the %1$s."
+msgstr ""
+
+#: admin/includes/admin-about.php:94
+msgid "wordpress plugin review site"
+msgstr ""
+
+#: admin/includes/admin-about.php:95
+msgid "If you want to support the plugin I would be happy to get a small donation"
+msgstr ""
+
+#: admin/includes/admin-about.php:105
+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:106
+#, 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:108
+msgid "Below you can find a list of all supported attributes with their descriptions and available options:"
+msgstr ""
+
+#: admin/includes/admin-about.php:122
+msgid "Attribute name"
+msgstr ""
+
+#: admin/includes/admin-about.php:123
+msgid "Value options"
+msgstr ""
+
+#: admin/includes/admin-about.php:124
+msgid "Default value"
+msgstr ""
+
+#: admin/includes/admin-about.php:125 admin/includes/admin-categories.php:188
+#: admin/includes/category_table.php:108
+msgid "Description"
+msgstr ""
+
+#: admin/includes/admin-about.php:143 includes/sc_event-list_helptexts.php:26
+#: includes/sc_event-list_helptexts.php:31
+msgid "Filter Syntax"
+msgstr ""
+
+#: admin/includes/admin-about.php:144
+msgid "For date and cat filters you can specify complex filters with the following syntax:"
+msgstr ""
+
+#: admin/includes/admin-about.php:145
+#, 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:145
+msgid "AND"
+msgstr ""
+
+#: admin/includes/admin-about.php:145
+msgid "OR"
+msgstr ""
+
+#: admin/includes/admin-about.php:145
+msgid "or"
+msgstr ""
+
+#: admin/includes/admin-about.php:145
+msgid "and"
+msgstr ""
+
+#: admin/includes/admin-about.php:146
+msgid "Examples for cat filters:"
+msgstr ""
+
+#: admin/includes/admin-about.php:147
+#, php-format
+msgid "Show all events with category %1$s."
+msgstr ""
+
+#: admin/includes/admin-about.php:148
+#, php-format
+msgid "Show all events with category %1$s or %2$s."
+msgstr ""
+
+#: admin/includes/admin-about.php:149
+#, 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:154 includes/sc_event-list_helptexts.php:25
+msgid "Available Date Formats"
+msgstr ""
+
+#: admin/includes/admin-about.php:155
+msgid "For date filters you can use the following date formats:"
+msgstr ""
+
+#: admin/includes/admin-about.php:163 includes/sc_event-list_helptexts.php:25
+msgid "Available Date Range Formats"
+msgstr ""
+
+#: admin/includes/admin-about.php:164
+msgid "For date filters you can use the following daterange formats:"
+msgstr ""
+
+#: admin/includes/admin-about.php:176
+msgid "Value"
+msgstr ""
+
+#: admin/includes/admin-about.php:180
+msgid "Example"
+msgstr ""
+
+#: admin/includes/admin-categories.php:53
+msgid "Edit Category"
+msgstr ""
+
+#: admin/includes/admin-categories.php:53
+msgid "Update Category"
+msgstr ""
+
+#: admin/includes/admin-categories.php:59
+msgid "Add New Category"
+msgstr ""
+
+#: admin/includes/admin-categories.php:84
+#, php-format
+msgid "Category \"%s\" deleted."
+msgstr ""
+
+#: admin/includes/admin-categories.php:86
+#, php-format
+msgid "This Category was also removed from %d events."
+msgstr ""
+
+#: admin/includes/admin-categories.php:92
+#, php-format
+msgid "Error while deleting category \"%s\""
+msgstr ""
+
+#: admin/includes/admin-categories.php:102
+msgid "Sync with post categories enabled."
+msgstr ""
+
+#: admin/includes/admin-categories.php:105
+msgid "Sync with post categories disabled."
+msgstr ""
+
+#: admin/includes/admin-categories.php:111
+msgid "Manual sync with post categories sucessfully finished."
+msgstr ""
+
+#: admin/includes/admin-categories.php:119
+#, php-format
+msgid "New Category \"%s\" was added"
+msgstr ""
+
+#: admin/includes/admin-categories.php:122
+#, php-format
+msgid "Error: New Category \"%s\" could not be added"
+msgstr ""
+
+#: admin/includes/admin-categories.php:128
+#, php-format
+msgid "Category \"%s\" was modified"
+msgstr ""
+
+#: admin/includes/admin-categories.php:131
+#, php-format
+msgid "Error: Category \"%s\" could not be modified"
+msgstr ""
+
+#: admin/includes/admin-categories.php:138
+msgid "Categories are automatically synced with the post categories."
+msgstr ""
+
+#: admin/includes/admin-categories.php:139
+msgid "Because of this all options to add new categories or editing existing categories are disabled."
+msgstr ""
+
+#: admin/includes/admin-categories.php:140
+msgid "If you want to manually edit the categories you have to disable this option."
+msgstr ""
+
+#: admin/includes/admin-categories.php:167
+msgid "The name is how it appears on your site."
+msgstr ""
+
+#: admin/includes/admin-categories.php:172
+msgid "The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens."
+msgstr ""
+
+#: admin/includes/admin-categories.php:185
+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 ""
+
+#: admin/includes/admin-categories.php:232
+msgid "Apply"
+msgstr ""
+
+#: admin/includes/admin-categories.php:242
+msgid "Do a manual sync with post categories"
+msgstr ""
+
+#: admin/includes/admin-import.php:45
+msgid "Import Events"
+msgstr ""
+
+#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:120
+msgid "Step"
+msgstr ""
+
+#: admin/includes/admin-import.php:65
+msgid "Set import file and options"
+msgstr ""
+
+#: admin/includes/admin-import.php:68
+#, php-format
+msgid "Proceed with Step %1$s"
+msgstr ""
+
+#: admin/includes/admin-import.php:71
+msgid "Example file"
+msgstr ""
+
+#: admin/includes/admin-import.php:72
+#, 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
+msgid "Note"
+msgstr ""
+
+#: admin/includes/admin-import.php:73
+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
+msgid "Sorry, there has been an error."
+msgstr ""
+
+#: admin/includes/admin-import.php:81
+msgid "The file does not exist, please try again."
+msgstr ""
+
+#: admin/includes/admin-import.php:89
+msgid "The file is not a CSV file."
+msgstr ""
+
+#: admin/includes/admin-import.php:120
+msgid "Events review and additonal category selection"
+msgstr ""
+
+#: admin/includes/admin-import.php:123
+msgid "Warning: The following category slugs are not available and will be removed from the imported events:"
+msgstr ""
+
+#: admin/includes/admin-import.php:129
+msgid "If you want to keep these categories, please create these Categories first and do the import afterwards."
+msgstr ""
+
+#: admin/includes/admin-import.php:147
+msgid "Add additional categories"
+msgstr ""
+
+#: admin/includes/admin-import.php:148
+msgid "Import events"
+msgstr ""
+
+#: admin/includes/admin-import.php:162
+msgid "Import with errors!"
+msgstr ""
+
+#: admin/includes/admin-import.php:163
+#, php-format
+msgid "An error occurred during import! Please send your import file to %1$sthe administrator%2$s for analysis."
+msgstr ""
+
+#: admin/includes/admin-import.php:167
+msgid "Import successful!"
+msgstr ""
+
+#: admin/includes/admin-import.php:168
+msgid "Go back to All Events"
+msgstr ""
+
+#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:106
+#: admin/includes/event_table.php:108 includes/widget_helptexts.php:8
+msgid "Title"
+msgstr ""
+
+#: admin/includes/admin-import.php:176
+msgid "Start Date"
+msgstr ""
+
+#: admin/includes/admin-import.php:177
+msgid "End Date"
+msgstr ""
+
+#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:119
+#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
+msgid "Time"
+msgstr ""
+
+#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:123
+#: admin/includes/event_table.php:109 includes/options_helptexts.php:53
+#: includes/options_helptexts.php:54
+msgid "Location"
+msgstr ""
+
+#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:127
+#: admin/includes/event_table.php:110
+msgid "Details"
+msgstr ""
+
+#: admin/includes/admin-import.php:181
+msgid "Category slugs"
+msgstr ""
+
+#: admin/includes/admin-import.php:220
+#, php-format
+msgid "There was an error at line %1$s when reading this CSV file: Header line is missing or not correct!"
+msgstr ""
+
+#: admin/includes/admin-import.php:252 admin/includes/admin-main.php:120
+msgid "Import"
+msgstr ""
+
+#: admin/includes/admin-main.php:114
+msgid "Edit Event"
+msgstr ""
+
+#: admin/includes/admin-main.php:114 admin/includes/event_table.php:72
+msgid "Duplicate"
+msgstr ""
+
+#: admin/includes/admin-new.php:43
+#, php-format
+msgid "Duplicate of event id:%d"
+msgstr ""
+
+#: admin/includes/admin-new.php:106 admin/includes/admin-new.php:110
+msgid "required"
+msgstr ""
+
+#: admin/includes/admin-new.php:110 admin/includes/event_table.php:107
+msgid "Date"
+msgstr ""
+
+#: admin/includes/admin-new.php:113
+msgid "Multi-Day Event"
+msgstr ""
+
+#: admin/includes/admin-new.php:143 admin/includes/admin-new.php:160
+msgid "Publish"
+msgstr ""
+
+#: admin/includes/admin-new.php:160
+msgid "Update"
+msgstr ""
+
+#: admin/includes/admin-new.php:162
+msgid "Cancel"
+msgstr ""
+
+#: admin/includes/admin-new.php:175
+msgid "No categories available."
+msgstr ""
+
+#: admin/includes/admin-new.php:221
+msgid "Goto Category Settings"
+msgstr ""
+
+#: admin/includes/admin-settings.php:41
+msgid "Settings saved."
+msgstr ""
+
+#: admin/includes/admin-settings.php:69
+msgid "Frontend Settings"
+msgstr ""
+
+#: admin/includes/admin-settings.php:70
+msgid "Admin Page Settings"
+msgstr ""
+
+#: admin/includes/admin-settings.php:71
+msgid "Feed Settings"
+msgstr ""
+
+#: admin/includes/category_table.php:27 admin/includes/event_table.php:29
+msgid "event"
+msgstr ""
+
+#: admin/includes/category_table.php:28 admin/includes/event_table.php:30
+msgid "events"
+msgstr ""
+
+#: admin/includes/category_table.php:70 admin/includes/event_table.php:71
+msgid "Edit"
+msgstr ""
+
+#: admin/includes/category_table.php:71 admin/includes/category_table.php:145
+#: admin/includes/event_table.php:73 admin/includes/event_table.php:146
+msgid "Delete"
+msgstr ""
+
+#: admin/includes/category_table.php:107
+msgid "Name"
+msgstr ""
+
+#: admin/includes/category_table.php:109
+msgid "Slug"
+msgstr ""
+
+#: admin/includes/event_table.php:112
+msgid "Author"
+msgstr ""
+
+#: admin/includes/event_table.php:113
+msgid "Published"
+msgstr ""
+
+#: admin/includes/event_table.php:175
+msgid "Filter"
+msgstr ""
+
+#: admin/includes/event_table.php:297
+#, php-format
+msgid "%s ago"
+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:291
+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:295
+msgid "Past"
+msgstr ""
+
+#: includes/daterange_helptexts.php:65
+msgid "This value defines a range from the past to the previous day."
+msgstr ""
+
+#: includes/filterbar.php:282
+msgid "All"
+msgstr ""
+
+#: includes/filterbar.php:285
+msgid "Show all dates"
+msgstr ""
+
+#: includes/filterbar.php:285
+msgid "Show all categories"
+msgstr ""
+
+#: includes/options_helptexts.php:11
+msgid "Sync Categories"
+msgstr ""
+
+#: includes/options_helptexts.php:12
+msgid "Keep event categories in sync with post categories automatically"
+msgstr ""
+
+#: includes/options_helptexts.php:13
+msgid "Attention"
+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 ""
+
+#: includes/options_helptexts.php:18
+msgid "CSV File to import"
+msgstr ""
+
+#: includes/options_helptexts.php:20
+msgid "Please select the file which contains the event data in CSV format."
+msgstr ""
+
+#: includes/options_helptexts.php:23
+msgid "Used date format"
+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 ""
+
+#: includes/options_helptexts.php:29
+msgid "Text for no events"
+msgstr ""
+
+#: includes/options_helptexts.php:31
+msgid "This option defines the displayed text when no events are available for the selected view."
+msgstr ""
+
+#: includes/options_helptexts.php:34
+msgid "Multiday filter range"
+msgstr ""
+
+#: includes/options_helptexts.php:35
+msgid "Use the complete event range in the date filter"
+msgstr ""
+
+#: includes/options_helptexts.php:36
+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
+msgid "If disabled, only the start day of an event is considered in the filter."
+msgstr ""
+
+#: includes/options_helptexts.php:38
+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
+msgid "Date display"
+msgstr ""
+
+#: includes/options_helptexts.php:42
+msgid "Show the date only once per day"
+msgstr ""
+
+#: includes/options_helptexts.php:43
+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
+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
+msgid "HTML tags"
+msgstr ""
+
+#: includes/options_helptexts.php:48 includes/options_helptexts.php:53
+#, php-format
+msgid "Allow HTML tags in the event field \"%1$s\""
+msgstr ""
+
+#: includes/options_helptexts.php:49 includes/options_helptexts.php:54
+#, php-format
+msgid "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
+msgstr ""
+
+#: includes/options_helptexts.php:57
+msgid "Preferred language file"
+msgstr ""
+
+#: includes/options_helptexts.php:58
+msgid "Load translations from general language directory first"
+msgstr ""
+
+#: includes/options_helptexts.php:59
+#, 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
+#, 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\""
+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."
+msgstr ""
+
+#: includes/options_helptexts.php:68
+msgid "Text for \"Hide details\""
+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."
+msgstr ""
+
+#: includes/options_helptexts.php:72
+msgid "Disable CSS file"
+msgstr ""
+
+#: includes/options_helptexts.php:73
+#, php-format
+msgid "Disable the %1$s file."
+msgstr ""
+
+#: includes/options_helptexts.php:74
+#, php-format
+msgid "With this option you can disable the inclusion of the %1$s file."
+msgstr ""
+
+#: includes/options_helptexts.php:75
+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
+msgid "Date format in edit form"
+msgstr ""
+
+#: includes/options_helptexts.php:80
+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
+msgid "The default is an empty string to use the Wordpress standard setting."
+msgstr ""
+
+#: includes/options_helptexts.php:82
+#, 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
+msgid "Enable RSS feed"
+msgstr ""
+
+#: includes/options_helptexts.php:87
+msgid "Enable support for an event RSS feed"
+msgstr ""
+
+#: includes/options_helptexts.php:88
+msgid "This option activates a RSS feed for the events."
+msgstr ""
+
+#: includes/options_helptexts.php:89
+msgid "You have to enable this option if you want to use one of the RSS feed features."
+msgstr ""
+
+#: includes/options_helptexts.php:92
+msgid "Feed name"
+msgstr ""
+
+#: includes/options_helptexts.php:93
+#, php-format
+msgid "This option sets the feed name. The default value is %1$s."
+msgstr ""
+
+#: includes/options_helptexts.php:94
+#, 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
+msgid "Feed Description"
+msgstr ""
+
+#: includes/options_helptexts.php:98
+#, php-format
+msgid "This options set the feed description. The default value is %1$s."
+msgstr ""
+
+#: includes/options_helptexts.php:99
+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
+msgid "Listed events"
+msgstr ""
+
+#: includes/options_helptexts.php:103
+msgid "Only show upcoming events in feed"
+msgstr ""
+
+#: includes/options_helptexts.php:104
+msgid "If this option is enabled only the upcoming events are listed in the feed."
+msgstr ""
+
+#: includes/options_helptexts.php:105
+msgid "If disabled all events (upcoming and past) will be listed."
+msgstr ""
+
+#: includes/options_helptexts.php:108
+msgid "Add RSS feed link in head"
+msgstr ""
+
+#: includes/options_helptexts.php:109
+msgid "Add RSS feed link in the html head"
+msgstr ""
+
+#: includes/options_helptexts.php:110
+msgid "This option adds a RSS feed in the html head for the events."
+msgstr ""
+
+#: includes/options_helptexts.php:111
+msgid "There are 2 alternatives to include the RSS feed"
+msgstr ""
+
+#: includes/options_helptexts.php:112
+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
+#, 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
+#, php-format
+msgid "This option is only valid if the setting %1$s is enabled."
+msgstr ""
+
+#: includes/options_helptexts.php:117
+msgid "Position of the RSS feed link"
+msgstr ""
+
+#: includes/options_helptexts.php:118
+msgid "at the top (above the navigation bar)"
+msgstr ""
+
+#: includes/options_helptexts.php:118
+msgid "between navigation bar and events"
+msgstr ""
+
+#: includes/options_helptexts.php:118
+msgid "at the bottom"
+msgstr ""
+
+#: includes/options_helptexts.php:119
+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
+#, 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
+msgid "Align of the RSS feed link"
+msgstr ""
+
+#: includes/options_helptexts.php:124
+msgid "left"
+msgstr ""
+
+#: includes/options_helptexts.php:124
+msgid "center"
+msgstr ""
+
+#: includes/options_helptexts.php:124
+msgid "right"
+msgstr ""
+
+#: includes/options_helptexts.php:125
+msgid "This option specifies the align of the RSS feed link in the event list."
+msgstr ""
+
+#: includes/options_helptexts.php:129
+msgid "Feed link text"
+msgstr ""
+
+#: includes/options_helptexts.php:130
+msgid "This option specifies the caption of the RSS feed link in the event list."
+msgstr ""
+
+#: includes/options_helptexts.php:131
+msgid "Insert an empty text to hide any text if you only want to show the rss image."
+msgstr ""
+
+#: includes/options_helptexts.php:135
+msgid "Feed link image"
+msgstr ""
+
+#: includes/options_helptexts.php:136
+msgid "Show rss image in feed link"
+msgstr ""
+
+#: includes/options_helptexts.php:137
+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 ""
+
+#: includes/options.php:44
+msgid "Hide details"
+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-details 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:76
+#: includes/sc_event-list_helptexts.php:91
+#: includes/sc_event-list_helptexts.php:106
+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:77
+#: includes/sc_event-list_helptexts.php:92
+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:78
+#: includes/sc_event-list_helptexts.php:93
+#, 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:79
+#: includes/sc_event-list_helptexts.php:94
+#: includes/sc_event-list_helptexts.php:109
+msgid "This attribute has no influence if only a single event is shown."
+msgstr ""
+
+#: includes/sc_event-list_helptexts.php:82
+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:87
+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:97
+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:102
+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 ""
+
+#: includes/sc_event-list_helptexts.php:107
+msgid "This attribute specifies if the details should be truncate to the given number of characters in the event list."
+msgstr ""
+
+#: includes/sc_event-list_helptexts.php:108
+#, php-format
+msgid "With the standard value %1$s the full text is displayed."
+msgstr ""
+
+#: includes/sc_event-list_helptexts.php:112
+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 ""
+
+#: includes/sc_event-list_helptexts.php:118
+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 ""
+
+#: includes/sc_event-list_helptexts.php:124
+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:130
+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:137
+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:138
+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 details"
+msgstr ""
+
+#: includes/widget_helptexts.php:61
+msgid "This option defines if the event details will be displayed."
+msgstr ""
+
+#: includes/widget_helptexts.php:66
+msgid "Truncate details to"
+msgstr ""
+
+#: includes/widget_helptexts.php:68
+msgid "If the event details 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/readme.txt b/wp-content/plugins/event-list/readme.txt
new file mode 100644
index 0000000000000000000000000000000000000000..afb84bda4e7ff7af36354e1605dfb7933286b8c2
--- /dev/null
+++ b/wp-content/plugins/event-list/readme.txt
@@ -0,0 +1,367 @@
+=== Event List ===
+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
+Tested up to: 4.7
+Stable tag: 0.7.8
+Plugin URI: http://wordpress.org/extend/plugins/event-list
+Licence: GPLv2
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+
+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.
+
+= 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
+* 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.
+* A duplicate function for events to easier create similar event copies
+* Import multiple events via csv files
+* Event categories
+* Sync event categories with post categories
+* Filter events according to dates or categories
+* Include an event feed in your site
+
+= Usage: =
+New events can be added in the WordPress admin area.
+
+To display the events on your site simply insert the shortcode `[event-list]` into a page or post.
+You can modify the listed events and their style with attributes. All available attributes can be found on the Event List -> About page in the Wordpress admin area.
+
+Additionally there is also a widget available to show the upcoming events in your sidebar.
+
+= Development: =
+If you want to follow the development status have a look at the [git-repository on github](https://github.com/mibuthu/wp-event-list "wp-event-list git-repository").
+Feel free to add your merge requests there, if you want to help to improve the plugin.
+
+= Translations: =
+Please help translating this plugin into multiple languages.
+You can submit your translations at [transifex.com](https://www.transifex.com/projects/p/wp-event-list "wp-event-list at transifex").
+There the source strings will always be in sync with the actual development version.
+
+
+== Installation ==
+
+The easiest version of installing is to go to the admin page. There you can install new plugins in the menu Plugins -> Add new. Search for "Event List" and press "Install now".
+
+If you want to install the plugin manually download the zip-file and extract the files into your wp-content/plugins folder.
+
+
+== Frequently Asked Questions ==
+
+= 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? =
+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? =
+Yes, you can create an instance of the "SC_Event_List" class which is located in the plugin folder under "includes/sc_event-list.php" and call the function show_html($atts). With $atts you can specify all the shortcode attributes you require.
+Another possibility would be to call the wordpress function "do_shortcode()".
+
+
+== Screenshots ==
+
+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
+
+
+== Changelog ==
+
+= 0.7.8 (2017-03-17) =
+* improved datepicker style in new/edit event view
+* show datepicker in correct language
+* respect first day of week wordpress setting in the datepicker
+* include event categories in the event feed
+* added support for categories in event import file
+* improvements and better error messages in event import
+* fixed html tag handling truncate function
+* splitted about page into 2 tabs
+* changes in language file handling, additional option to define which language file shall be loaded first
+* some improvements in the language files itself
+* prepare more help strings for translation
+* updated translations and added more german translations
+* moved screenshots to assets folder to reduce download size
+* changed mimimum required wordpress version to 3.8
+
+= 0.7.7 (2017-01-13) =
+* replaced custom admin menu icon with wordpress integrated icon for a consistent styling
+* added support to truncate text via css to exactly 1 line (length='auto')
+* added a link to the event at the ellipsis of a truncated details text
+* improved code for deleting of events
+* fixed some issues with the bulk action menu and button in admin event table
+* improved security for external links
+* updated translations
+
+= 0.7.6 (2015-12-13) =
+* added shortcode attribute "collapse_details"
+* correct handling of "more"-tag in event details
+* show "url_to_page" shortcode attribute in the documentation
+* fixed wrong date format in events import sample
+* some help texts improvements
+* updated translation de_DE (78%) and fi_FI (35%)
+* added italian translation it_IT (69%)
+* added portuguese translation pt_BR (58%)
+* added dutch translation nl_NL (46%)
+* added spanish translation es_ES (39%)
+* added spanish translation es_AR (18%)
+* added frensh translation fr_FR (0%)
+* Thanks to all translators at transifex!
+
+= 0.7.5 (2015-07-19) =
+* added support for transifex localization platform
+* added sorting option (see initial_order shortcode option)
+* added relative date format for weeks
+* added import option to set date format in import file
+* several fixes and improvements in truncate function
+* some import improvements
+* set standard import date format to mysql dateformat
+* some speed improvements
+* updated some dates and daterange helptexts and added german translations
+* added finnish translation (thanks to jvesaladesign)
+
+= 0.7.4 (2015-05-16) =
+* fixed allowed daterange for datepicker with custom date formats
+* added option to disable event-list.css
+* added option to set considered daterange for multiday event
+
+= 0.7.3 (2015-05-15) =
+* added csv import functionality
+* added relative and special date selection options for date filter
+* changed required permission to view/edit category admin page
+* added some missing translation functions
+* added some more german translations
+* only allow valid dates (>= 1.1.1970)
+* only load some data on pages where they are required
+
+= 0.7.2 (2015-03-21) =
+* fixed an issue with multiday events when deleting a category
+* fixed displaying the category slug instead of the category name in event listing
+* fixed sub-category handling of deleted categories
+* fixed sub-category handling when a category slug is changed
+* fixed parent selection list in category edit mode
+* some helptext fixes
+
+= 0.7.1 (2015-02-01) =
+* added options for month filterbar item
+* only show years, months and cats with events in filterbar (acc. to available events and date/cat filter
+* fixed event-list feed
+* changed textdomain for translations to event-list
+* some small code and html fixes
+* some code improvements
+
+= 0.7.0 (2014-12-22) =
+* initial multilanguage support
+* German translation (not complete yet)
+* Unicode support in truncate function
+* Changed position of admin menu
+* Changed icon in admin menu
+
+= 0.6.9 (2014-11-09) =
+* added months option in filterbar items
+* added a class for each category slug in each event li element
+* fixed error due to wrong function name when using daterange in date filter
+
+= 0.6.8 (2014-10-14) =
+* added filterbar item "daterange" (to view all, upcoming and past)
+* added options to change feed name and feed description
+* added "Duplicate" and "Add new" button in edit event view
+* corrected embedding of feed (should solve some problems and increase speed)
+* corrected view of event details for single day events
+* changed standard value for feed link in html head to true
+
+= 0.6.7 (2014-06-18) =
+* added month and day support in date_filter
+* added available date and date range formats description in admin about page
+* added support for wpautop in event details
+* added "Past" entry in admin event table filter
+
+= 0.6.6 (2014-06-16) =
+* added date_filter shortcode option
+* added option to change text for filterbar reset item
+* added option "years_order" for years filterbar element
+* preparations to include more date filters / filterbar elements in future versions
+* small css style modification
+* updated some help texts
+
+= 0.6.5 (2014-04-26) =
+* added shortcode attribute "initial_event_id"
+* added an option to only show umpcoming events in the feed
+* fixed a problem in truncate function
+
+= 0.6.4 (2014-02-10) =
+* fixed css file inclusion for shortcodes with parameters
+* fixed css file inclusion for shortcodes outside post content (e.g. theme template)
+
+= 0.6.3 (2014-02-09) =
+* added options to allow html tags in event time and location
+* fixed date check for PHP version 5.2
+* fixed edit view after adding a new event
+* strip slashes in event time field
+* fixed url to event-list css file
+* only load event-list css if required
+
+= 0.6.2 (2014-02-01) =
+* complete rewrite of date handling in new/edit event form and date validation
+* added option to change date format in event new/edit form
+* fixed a css issue in the filterbar hlist when list-style-image is used in the theme
+* some css fixes in admin settings page
+* some html output code style fixes
+
+= 0.6.1 (2014-01-03) =
+* fixed redirect issue in admin event table
+* fixed a bug in filterbar javascript
+* fixed a problem with wrong format of deatails in admin event table
+* changed button text for event update from "Publish" to "Update"
+* show required manual widget update message on the frontpage only to users with required privileges
+
+= 0.6.0 (2013-12-31) =
+* added adjustment options for the filterbar (shortcode attribute "filterbar_items")
+* added "All" and "Past" options to years filter in filterbar
+* added category filter option in filterbar
+* change "cat_filter" behavior with additional features
+* added option to display categorys/years filter in a dropdown
+* added reset option to filterbar
+* added category filter selection in admin event table
+* added shortcode attribute "initial_date"
+* renamed shortcode attribute "show_nav" into "show_filterbar"
+* renamed url parameter "ytd" to "years"
+* removed underline before event-list id in url
+* some css fixes
+* some help text updates
+
+Attention:
+In this version some of the shortcode attributes and the behavior of some existing attributes have changed and are not compatible with the old version! Please check all your shortcodes after the update.
+Additionally the url parameter has changed. So if you are using existing links to an eventlist with parameters you have to update them.
+Also existing widgets must be updated after plugin upgrade. Please visit the widget admin page and press save for all evenlist wigets.
+
+= 0.5.2 (2013-11-09) =
+* added number of events in Right Now dashboard widget
+* fixed some css issues
+
+= 0.5.1 (2013-10-27) =
+* added site name in eventlist feed name (similar to standard feed captions)
+* fixed not working feed link in header
+* fixed problem with new widget options after upgrade
+* fixed not working permalink for the eventlist feed
+
+= 0.5.0 (2013-10-26) =
+* added event feed with a lot of options
+* added widget option for cat filter
+
+= 0.4.5 (2013-08-05) =
+* added capability to sync the event categories with the post categories (manually or automatically)
+* fixed problem with empty category list
+* fixed link to category page in new event page
+* fixed indention in in category parent combo box
+
+= 0.4.4 (2013-07-20) =
+* added support for sub-categories
+* moved category administration to seperate page
+* improved category sorting
+
+= 0.4.3 (2013-07-05) =
+* added possibility to edit existing categories
+* added tooptip texts for the widget option
+* changed css classes to differ between event-list-view and single-event-view
+* added missing permission check for new events and about page
+* do not change publish date and user when an event is modified
+* fixed a small issue in info messages
+* code improvements and cleanup in admin pages
+
+= 0.4.2 (2013-06-09) =
+* fixed links urls to events in eventlist-widget
+* added option to show date only once per day
+
+= 0.4.1 (2013-05-31) =
+* fixed deleting of categories
+* fixed url to calendar icon in new/edit event form
+* fixed date format localization in new/edit event form
+* added some widget options
+* only show links in widget if all required info are available
+* small security improvements
+
+= 0.4.0 (2013-05-04) =
+* added category support
+* added settings page
+* small changes in add/edit event admin page
+* added settings page
+* added option "no_event_text"
+* execute shortcodes in event details field on front page
+* change of plugin folder structure and file names
+* small fixes in widget code
+
+= 0.3.4 (2013-03-16) =
+* fixed deleting of events
+* removed link to not available settings page in about page
+* changed parameter values from numbers to a more significant wording
+* added the options 'event_list_only' and 'single_event_only' for the shortcode attributes 'show_nav', 'show_location', 'show_details' and 'link_to_event'
+* added shortcode attribute details_length to truncate details
+
+= 0.3.3 (2013-03-01) =
+* fixed event creation/modification problem with php versions < 5.3
+* improved truncate of details in admin event table
+
+= 0.3.2 (2013-02-24) =
+* removed empty settings page (will be added again when settings are available)
+* fixed view of details in admin event table
+* fixed adding or modifying events with alternative date formats
+* only set time format in output if a known time format was entered
+
+= 0.3.1 (2013-01-03) =
+* added widget option "show_location"
+* fixed wrong url for single event page link
+* fixed issue with different shortcodes on one page or post
+* changed required prevelegs for admin about page
+* updated help messages on admin about page
+* small style changes on frontpage
+
+
+= 0.3.0 (2012-12-31) =
+* added a widget to show upcoming events in a sidebar
+* added some shortcode attributes to modify the output
+* internal code changes
+* fixed some html issues
+* updated help texts on admin about page
+
+= 0.2.2 (2012-11-18) =
+* localization of date and time on the frontpage
+* changed and localized date and time view in the admin event list table
+* localization of date in the new event form
+
+= 0.2.1 (2012-10-26) =
+* changed field order and align in new/edit event form
+* added datepicker for start and end date in new/edit event form
+* improved multiday event selection in new/edit event form
+* small changes in event table on admin page
+
+= 0.2.0 (2012-09-29) =
+* adapted menu names to wordpress standard (similar to posts and pages)
+* adapted event list table admin page to wordpress standard layout
+* used wordpress included table view for admin event table
+* added sort functionality in admin event table
+* added bulk action delete in admin event table
+* added status messages for added, modified and deleted events on admin page
+
+= 0.1.1 (2012-09-24) =
+* fixed an issue with additional quotes after adding or editing an event
+* fixed saving of wrong date when adding a new event
+* fixed sorting of events when more events are at the same day
+* added validation of data before saving to database
+
+= 0.1.0 (2012-09-08) =
+* Initial release