Events Manager - Version 3.0.6

Version Description

  • Added revised German translation
  • Fixed ordering issue
  • Fixed old template tag attributes not being read
  • Changed map ballon wrapper id to class
Download this release

Release Info

Developer netweblogic
Plugin Icon 128x128 Events Manager
Version 3.0.6
Comparing to
See all releases

Code changes from version 3.0.5 to 3.0.6

admin/help.php CHANGED
@@ -17,13 +17,13 @@ function em_admin_help(){
17
  if( $wpdb->get_var("SHOW TABLES LIKE '$old_table_name'") == $old_table_name ){
18
  ?>
19
  <div class="updated">
20
- <h2>Troubleshooting upgrades from version 2.x to 3.x</h2>
21
  <p>We notice that you upgraded from version 2, as we are now using new database tables, and we do not delete the old tables in case something went wrong with this upgrade.</p>
22
  <p>If something went wrong with the update to version 3 read on:</p>
23
- <h3>Scenario 1: the plugin is working, but for some reason the old events weren't imported</h3>
24
  <p>You can safely reimport your old events from the previous tables without any risk of deleting them. However, if you click the link below <b>YOU WILL OVERWRITE ANY NEW EVENTS YOU CREATED IN VERSION 3</b></p>
25
  <p><a onclick="return confirm('Are you sure you want to do this? Any new changes made since updating will be overwritten by your old ones, and this cannot be undone');" href="<?php echo wp_nonce_url( get_bloginfo('wpurl').'/wp-admin/admin.php?page=events-manager-help&em_reimport=1', 'em_reimport' ) ?>">Reimport Events from version 2</a></p>
26
- <h3>Scenario 2: the plugin is not working, I want to go back to version 2!</h3>
27
  <p>You can safely downgrade and will not lose any information.</p>
28
  <ol>
29
  <li>First of all, <a href='http://downloads.wordpress.org/plugin/events-manager.2.2.2.zip'>dowload a copy of version 2.2</a></li>
17
  if( $wpdb->get_var("SHOW TABLES LIKE '$old_table_name'") == $old_table_name ){
18
  ?>
19
  <div class="updated">
20
+ <h3>Troubleshooting upgrades from version 2.x to 3.x</h3>
21
  <p>We notice that you upgraded from version 2, as we are now using new database tables, and we do not delete the old tables in case something went wrong with this upgrade.</p>
22
  <p>If something went wrong with the update to version 3 read on:</p>
23
+ <h4>Scenario 1: the plugin is working, but for some reason the old events weren't imported</h4>
24
  <p>You can safely reimport your old events from the previous tables without any risk of deleting them. However, if you click the link below <b>YOU WILL OVERWRITE ANY NEW EVENTS YOU CREATED IN VERSION 3</b></p>
25
  <p><a onclick="return confirm('Are you sure you want to do this? Any new changes made since updating will be overwritten by your old ones, and this cannot be undone');" href="<?php echo wp_nonce_url( get_bloginfo('wpurl').'/wp-admin/admin.php?page=events-manager-help&em_reimport=1', 'em_reimport' ) ?>">Reimport Events from version 2</a></p>
26
+ <h4>Scenario 2: the plugin is not working, I want to go back to version 2!</h4>
27
  <p>You can safely downgrade and will not lose any information.</p>
28
  <ol>
29
  <li>First of all, <a href='http://downloads.wordpress.org/plugin/events-manager.2.2.2.zip'>dowload a copy of version 2.2</a></li>
classes/event.php CHANGED
@@ -424,7 +424,7 @@ class EM_Event extends EM_Object{
424
  //SEE AT BOTTOM OF FILE FOR OLD TARGET FILTERS FROM 2.x
425
  $replace = $this->notes;
426
  if($result == "#_EXCERPT"){
427
- $matches = explode('<!--more-->', $this->notes);
428
  $replace = $matches[0];
429
  }
430
  break;
424
  //SEE AT BOTTOM OF FILE FOR OLD TARGET FILTERS FROM 2.x
425
  $replace = $this->notes;
426
  if($result == "#_EXCERPT"){
427
+ $matches = explode('<!--more', $this->notes);
428
  $replace = $matches[0];
429
  }
430
  break;
classes/events.php CHANGED
@@ -58,7 +58,7 @@ class EM_Events extends EM_Object {
58
  $where
59
  $orderby_sql
60
  $limit $offset
61
- ";
62
 
63
  $results = $wpdb->get_results($sql, ARRAY_A);
64
 
58
  $where
59
  $orderby_sql
60
  $limit $offset
61
+ ";
62
 
63
  $results = $wpdb->get_results($sql, ARRAY_A);
64
 
classes/location.php CHANGED
@@ -209,7 +209,7 @@ class EM_Location extends EM_Object {
209
  case '#_LOCATIONEXCERPT':
210
  $replace = $this->description;
211
  if($result == "#_EXCERPT" || $result == "#_LOCATIONEXCERPT"){
212
- $matches = explode('<!--more-->', $this->description);
213
  $replace = $matches[0];
214
  }
215
  break;
209
  case '#_LOCATIONEXCERPT':
210
  $replace = $this->description;
211
  if($result == "#_EXCERPT" || $result == "#_LOCATIONEXCERPT"){
212
+ $matches = explode('<!--more', $this->description);
213
  $replace = $matches[0];
214
  }
215
  break;
classes/locations.php CHANGED
@@ -43,7 +43,9 @@ class EM_Locations extends EM_Object {
43
  $where = ( count($conditions) > 0 ) ? " WHERE " . implode ( " AND ", $conditions ):'';
44
 
45
  //Get ordering instructions
 
46
  $accepted_fields = $EM_Location->get_fields(true);
 
47
  $orderby = self::build_sql_orderby($args, $accepted_fields, get_option('dbem_events_default_order'));
48
  //Now, build orderby sql
49
  $orderby_sql = ( count($orderby) > 0 ) ? 'ORDER BY '. implode(', ', $orderby) : '';
43
  $where = ( count($conditions) > 0 ) ? " WHERE " . implode ( " AND ", $conditions ):'';
44
 
45
  //Get ordering instructions
46
+ $EM_Event = new EM_Event(); //blank event for below
47
  $accepted_fields = $EM_Location->get_fields(true);
48
+ $accepted_fields = array_merge($accepted_fields, $EM_Event->get_fields(true));
49
  $orderby = self::build_sql_orderby($args, $accepted_fields, get_option('dbem_events_default_order'));
50
  //Now, build orderby sql
51
  $orderby_sql = ( count($orderby) > 0 ) ? 'ORDER BY '. implode(', ', $orderby) : '';
classes/map.php CHANGED
@@ -46,7 +46,7 @@ class EM_Map extends EM_Object {
46
  ob_start();
47
  ?>
48
  <div id='em-location-map' style='background: #CDCDCD; width: <?php echo $width ?>px; height: <?php echo $height ?>px'><?php _e('Loading Map....', 'dbem'); ?></div>
49
- <div id='em-location-map-info' style="display:none; visibility:hidden;"><div id="em-map-balloon" style="font-size:12px;"><div id="content"><?php echo $location->output(get_option('dbem_location_baloon_format')); ?></div></div></div>
50
  <script src='<?php bloginfo('wpurl'); ?>/wp-content/plugins/events-manager/includes/js/em_maps.js' type='text/javascript'></script>
51
  <script type='text/javascript'>
52
  <!--//
46
  ob_start();
47
  ?>
48
  <div id='em-location-map' style='background: #CDCDCD; width: <?php echo $width ?>px; height: <?php echo $height ?>px'><?php _e('Loading Map....', 'dbem'); ?></div>
49
+ <div id='em-location-map-info' style="display:none; visibility:hidden;"><div class="em-map-balloon" style="font-size:12px;"><div id="content"><?php echo $location->output(get_option('dbem_location_baloon_format')); ?></div></div></div>
50
  <script src='<?php bloginfo('wpurl'); ?>/wp-content/plugins/events-manager/includes/js/em_maps.js' type='text/javascript'></script>
51
  <script type='text/javascript'>
52
  <!--//
classes/object.php CHANGED
@@ -232,6 +232,7 @@ class EM_Object {
232
  $orderby[$i] .= ( in_array($args['order'], array('ASC','DESC')) ) ? $args['order'] : $default_order;
233
  }
234
  }
 
235
  }
236
 
237
  /**
232
  $orderby[$i] .= ( in_array($args['order'], array('ASC','DESC')) ) ? $args['order'] : $default_order;
233
  }
234
  }
235
+ return $orderby;
236
  }
237
 
238
  /**
em-bugs.txt DELETED
@@ -1,59 +0,0 @@
1
- http://davidebenini.it/events-manager-forum/topic.php?id=912&replies=2#post-2804
2
- Map not working
3
-
4
- location automcomplete, duplicates?
5
- droipdorn or autocomplete, is it working?
6
- Weekly view?
7
-
8
-
9
- http://davidebenini.it/events-manager-forum/topic.php?id=916
10
- Mail line endings
11
-
12
- http://davidebenini.it/events-manager-forum/topic.php?id=917
13
- "It seems since he last used the plug-in, he's lost the ability to assign a contact person to events. Has this option been removed in a recent update? Is there a way around this?"
14
-
15
- http://davidebenini.it/events-manager-forum/topic.php?id=911&replies=2#post-2805
16
- events with NO limit? Is it possible?
17
-
18
- http://davidebenini.it/events-manager-forum/topic.php?id=910
19
- Weekly view? Is it possible?
20
-
21
-
22
- http://davidebenini.it/events-manager-forum/topic.php?id=898
23
- confirmation email, RSVP problems
24
-
25
- http://davidebenini.it/events-manager-forum/topic.php?id=918
26
- table encoding bug
27
- liebedex suggestion:
28
- ALTER TABLE wp_dbem_events CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;
29
- ALTER TABLE wp_dbem_locations CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;
30
-
31
- #_NOTES problem and fix:
32
- http://davidebenini.it/events-manager-forum/topic.php?id=597
33
-
34
- http://davidebenini.it/events-manager-forum/topic.php?id=803
35
- curious.... NSBP
36
-
37
-
38
- http://davidebenini.it/events-manager-forum/topic.php?id=893
39
- fields missing in the db?
40
-
41
- http://davidebenini.it/events-manager-forum/topic.php?id=614
42
- 130 seats limit
43
-
44
- http://davidebenini.it/events-manager-forum/topic.php?id=896
45
- Group of Events on not periodical dates
46
-
47
- http://davidebenini.it/events-manager-forum/topic.php?id=913
48
- PAge and vavbar MAJOR BUG?
49
-
50
-
51
- http://davidebenini.it/events-manager-forum/topic.php?id=158
52
- locations-map shortcode not working
53
-
54
- PATCHES:
55
- Location related bug
56
- http://davidebenini.it/events-manager-forum/topic.php?id=31
57
-
58
- Export to excel
59
- http://davidebenini.it/events-manager-forum/topic.php?id=906
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
events-manager.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: Events Manager
4
- Version: 3.0.5
5
  Plugin URI: http://davidebenini.it/wordpress-plugins/events-manager/
6
  Description: Manage events specifying precise spatial data (Location, Town, Province, etc).
7
  Author: Davide Benini, Marcus Sykes
1
  <?php
2
  /*
3
  Plugin Name: Events Manager
4
+ Version: 3.0.6
5
  Plugin URI: http://davidebenini.it/wordpress-plugins/events-manager/
6
  Description: Manage events specifying precise spatial data (Location, Town, Province, etc).
7
  Author: Davide Benini, Marcus Sykes
includes/css/events_manager.css CHANGED
@@ -147,4 +147,4 @@ table.fullcalendar td {
147
  }
148
 
149
  /*Maps*/
150
- #em-map-balloon #content { margin:0px; padding:0px; font-size:12px; }
147
  }
148
 
149
  /*Maps*/
150
+ .em-map-balloon #content { margin:0px !important; padding:0px !important; font-size:12px !important; }
includes/js/em_maps.js CHANGED
@@ -45,7 +45,7 @@ function em_map_global() {
45
  map: map
46
  });
47
  marker.setTitle(data[i].location_name);
48
- var myContent = '<div id="em-map-balloon"><div id="content">'+ data[i].location_balloon +'</div></div>';
49
  em_map_infobox(marker, myContent);
50
 
51
  //Get min and max long/lats
45
  map: map
46
  });
47
  marker.setTitle(data[i].location_name);
48
+ var myContent = '<div class="em-map-balloon"><div id="content">'+ data[i].location_balloon +'</div></div>';
49
  em_map_infobox(marker, myContent);
50
 
51
  //Get min and max long/lats
includes/langs/dbem-de_DE.mo CHANGED
Binary file
includes/langs/dbem-de_DE.po ADDED
@@ -0,0 +1,1578 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of the WordPress plugin Events Manager 3.0.4 by Davide Benini, Marcus Sykes.
2
+ # Copyright (C) 2010 Davide Benini, Marcus Sykes
3
+ # This file is distributed under the same license as the Events Manager package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: Events Manager 3.0.4\n"
9
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/events-manager\n"
10
+ "POT-Creation-Date: 2010-10-22 13:29+0000\n"
11
+ "PO-Revision-Date: 2010-10-29 10:48+0100\n"
12
+ "Last-Translator: Andre Tertling <info@passwort-retter.de>\n"
13
+ "Language-Team: Andre Tertling <info@passwort-retter.de>\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=utf-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "X-Poedit-Language: German\n"
18
+ "X-Poedit-Country: GERMANY\n"
19
+
20
+ #: admin/admin.php:125
21
+ #: admin/categories.php:76
22
+ #: admin/categories.php:83
23
+ #: admin/event.php:279
24
+ #: admin/events.php:192
25
+ #: admin/locations.php:103
26
+ #: admin/locations.php:111
27
+ #: admin/people.php:39
28
+ #: bookings.php:78
29
+ #: bookings.php:149
30
+ msgid "Name"
31
+ msgstr "Name"
32
+
33
+ #: admin/admin.php:126
34
+ msgid "Date"
35
+ msgstr "Datum"
36
+
37
+ #: admin/admin.php:127
38
+ #: admin/event.php:338
39
+ #: admin/events.php:194
40
+ msgid "Location"
41
+ msgstr "Veranstaltungsort"
42
+
43
+ #: admin/admin.php:128
44
+ #: admin/locations.php:104
45
+ #: admin/locations.php:112
46
+ msgid "Address"
47
+ msgstr "Adresse"
48
+
49
+ #: admin/admin.php:129
50
+ #: admin/locations.php:105
51
+ #: admin/locations.php:113
52
+ msgid "Town"
53
+ msgstr "Stadt"
54
+
55
+ #: admin/admin.php:143
56
+ msgid "Some required fields are missing:"
57
+ msgstr "Bitte füllen Sie diese Felder aus:"
58
+
59
+ #: admin/admin.php:146
60
+ msgid "Since the event is repeated, you must specify an end date"
61
+ msgstr "Da die Veranstaltung sich wiederholt, müssen Sie ein Enddatum festlegen"
62
+
63
+ #: admin/bookings.php:17
64
+ msgid "Bookings deleted"
65
+ msgstr "Buchungen gelöscht"
66
+
67
+ #: admin/categories.php:56
68
+ #: events-manager.php:227
69
+ msgid "Categories"
70
+ msgstr "Kategorien"
71
+
72
+ #: admin/categories.php:75
73
+ #: admin/categories.php:82
74
+ msgid "ID"
75
+ msgstr "ID"
76
+
77
+ #: admin/categories.php:106
78
+ msgid "No categories have been inserted yet!"
79
+ msgstr "Es wurden noch keine Kategorien angelegt!"
80
+
81
+ #: admin/categories.php:118
82
+ #: admin/categories.php:126
83
+ msgid "Add category"
84
+ msgstr "Kategorie hinzufügen"
85
+
86
+ #: admin/categories.php:122
87
+ #: admin/categories.php:164
88
+ msgid "Category name"
89
+ msgstr "Kategoriename"
90
+
91
+ #: admin/categories.php:124
92
+ #: admin/categories.php:166
93
+ msgid "The name of the category"
94
+ msgstr "Der Name der Kategorie"
95
+
96
+ #: admin/categories.php:148
97
+ msgid "Edit category"
98
+ msgstr "Kategorie bearbeiten"
99
+
100
+ #: admin/categories.php:169
101
+ msgid "Update category"
102
+ msgstr "Kategorie aktualisieren"
103
+
104
+ #: admin/event.php:4
105
+ #: admin/events.php:72
106
+ msgid "Insert New Event"
107
+ msgstr "Neue Veranstaltung anlegen"
108
+
109
+ #: admin/event.php:31
110
+ msgid "Mon"
111
+ msgstr "Mo"
112
+
113
+ #: admin/event.php:31
114
+ msgid "Tue"
115
+ msgstr "Di"
116
+
117
+ #: admin/event.php:31
118
+ msgid "Wed"
119
+ msgstr "Mi"
120
+
121
+ #: admin/event.php:31
122
+ msgid "Thu"
123
+ msgstr "Do"
124
+
125
+ #: admin/event.php:31
126
+ msgid "Fri"
127
+ msgstr "Fr"
128
+
129
+ #: admin/event.php:31
130
+ msgid "Sat"
131
+ msgstr "Sa"
132
+
133
+ #: admin/event.php:31
134
+ msgid "Sun"
135
+ msgstr "So"
136
+
137
+ #: admin/event.php:42
138
+ msgid "WARNING: This is a recurring event."
139
+ msgstr "WARNUNG: Dies ist eine wiederkehrende Veranstaltung."
140
+
141
+ #: admin/event.php:44
142
+ msgid "Modifying these data all the events linked to this recurrence will be rescheduled"
143
+ msgstr "Wenn Sie diese Daten ändern, werden alle mit dieser Wiederholung verbundenen Veranstaltungen auch geändert"
144
+
145
+ #: admin/event.php:46
146
+ msgid "and all booking information will be deleted!"
147
+ msgstr "und alle Buchungsinformationen werden gelöscht!"
148
+
149
+ #: admin/event.php:49
150
+ msgid "WARNING: This is a recurrence."
151
+ msgstr "WARNUNG: Dies ist die Wiederholung einer Veranstaltung."
152
+
153
+ #: admin/event.php:51
154
+ msgid "If you change these data and save, this will become an independent event."
155
+ msgstr "Wenn Sie diese Daten ändern und speichern, wird daraus eine neue, unabhängige Veranstaltung."
156
+
157
+ #: admin/event.php:66
158
+ msgid "Recurrence"
159
+ msgstr "Wiederholung"
160
+
161
+ #: admin/event.php:73
162
+ msgid "Repeated event"
163
+ msgstr "Veranstaltung wiederholt sich"
164
+
165
+ #: admin/event.php:80
166
+ msgid "Daily"
167
+ msgstr "Täglich"
168
+
169
+ #: admin/event.php:80
170
+ msgid "Weekly"
171
+ msgstr "Wöchentlich"
172
+
173
+ #: admin/event.php:80
174
+ msgid "Monthly"
175
+ msgstr "Monatlich"
176
+
177
+ #: admin/event.php:86
178
+ #: admin/event.php:109
179
+ msgid "Every"
180
+ msgstr "Alle"
181
+
182
+ #: admin/event.php:89
183
+ msgid "day"
184
+ msgstr "Tag"
185
+
186
+ #: admin/event.php:91
187
+ msgid "days"
188
+ msgstr "Tage"
189
+
190
+ #: admin/event.php:93
191
+ msgid "week"
192
+ msgstr "Woche"
193
+
194
+ #: admin/event.php:95
195
+ msgid "weeks"
196
+ msgstr "Wochen"
197
+
198
+ #: admin/event.php:97
199
+ msgid "month"
200
+ msgstr "Monat"
201
+
202
+ #: admin/event.php:99
203
+ msgid "months"
204
+ msgstr "Monate"
205
+
206
+ #: admin/event.php:112
207
+ msgid "first"
208
+ msgstr "Erste"
209
+
210
+ #: admin/event.php:112
211
+ msgid "second"
212
+ msgstr "Zweite"
213
+
214
+ #: admin/event.php:112
215
+ msgid "third"
216
+ msgstr "Dritte"
217
+
218
+ #: admin/event.php:112
219
+ msgid "fourth"
220
+ msgstr "Vierte"
221
+
222
+ #: admin/event.php:112
223
+ msgid "last"
224
+ msgstr "Letzte"
225
+
226
+ #: admin/event.php:123
227
+ msgid "Check if your event happens more than once according to a regular pattern"
228
+ msgstr "Hier Haken setzen wenn die Veranstaltung sich regelmäßig wiederholt"
229
+
230
+ #: admin/event.php:130
231
+ #: admin/events.php:36
232
+ #: admin/events.php:255
233
+ msgid "Reschedule"
234
+ msgstr "Termin ändern"
235
+
236
+ #: admin/event.php:135
237
+ msgid "This is't a recurrent event"
238
+ msgstr "Dies ist keine wiederkehrende Veranstaltung"
239
+
240
+ #: admin/event.php:147
241
+ msgid "Contact Person"
242
+ msgstr "Ansprechpartner"
243
+
244
+ #: admin/event.php:150
245
+ msgid "Contact"
246
+ msgstr "Kontakt"
247
+
248
+ #: admin/event.php:151
249
+ msgid "Select..."
250
+ msgstr "Auswählen..."
251
+
252
+ #: admin/event.php:158
253
+ msgid "RSVP"
254
+ msgstr "Reservierung"
255
+
256
+ #: admin/event.php:162
257
+ msgid "Enable registration for this event"
258
+ msgstr "Reservierungen für diese Veranstaltung aktivieren"
259
+
260
+ #: admin/event.php:173
261
+ #: admin/event.php:192
262
+ msgid "Spaces"
263
+ msgstr "Plätze"
264
+
265
+ #: admin/event.php:185
266
+ msgid "responses so far"
267
+ msgstr "Reservierungen bis jetzt"
268
+
269
+ #: admin/event.php:191
270
+ msgid "Responder"
271
+ msgstr "Reservierungen"
272
+
273
+ #: admin/event.php:197
274
+ msgid "Booked spaces"
275
+ msgstr "Gebuchte Plätze"
276
+
277
+ #: admin/event.php:198
278
+ msgid "Available spaces"
279
+ msgstr "Verfügbare Plätze"
280
+
281
+ #: admin/event.php:208
282
+ msgid "Comment:"
283
+ msgstr "Kommentar:"
284
+
285
+ #: admin/event.php:226
286
+ msgid "Printable view"
287
+ msgstr "Druckansicht"
288
+
289
+ #: admin/event.php:234
290
+ msgid "No responses yet!"
291
+ msgstr "Bisher keine Reservierungen!"
292
+
293
+ #: admin/event.php:251
294
+ #: admin/events.php:228
295
+ msgid "Category"
296
+ msgstr "Kategorie"
297
+
298
+ #: admin/event.php:254
299
+ msgid "Category:"
300
+ msgstr "Kategorie:"
301
+
302
+ #: admin/event.php:284
303
+ msgid "The event name. Example: Birthday party"
304
+ msgstr "Name der Veranstaltung, z.B. Geburtstagsparty"
305
+
306
+ #: admin/event.php:289
307
+ msgid "Event date"
308
+ msgstr "Veranstaltungsdatum"
309
+
310
+ #: admin/event.php:292
311
+ msgid "Recurrence dates"
312
+ msgstr "Wiederholungsdatum"
313
+
314
+ #: admin/event.php:302
315
+ msgid "The event date."
316
+ msgstr "Das Datum der Veranstaltung."
317
+
318
+ #: admin/event.php:305
319
+ msgid "When not reoccurring, this event spans between the beginning and end date."
320
+ msgstr "Wenn die Veranstaltung sich nicht wiederholt, findet sie vom Anfangs- bis Enddatum statt."
321
+
322
+ #: admin/event.php:310
323
+ msgid "The recurrence beginning and end date."
324
+ msgstr "Anfangs- und Enddatum der Wiederholung."
325
+
326
+ #: admin/event.php:316
327
+ msgid "Event time"
328
+ msgstr "Beginn der Veranstaltung"
329
+
330
+ #: admin/event.php:323
331
+ msgid "The time of the event beginning and end"
332
+ msgstr "Uhrzeiten für Beginn und Ende der Veranstaltung"
333
+
334
+ #: admin/event.php:328
335
+ msgid "Coordinates"
336
+ msgstr "Koordinaten"
337
+
338
+ #: admin/event.php:347
339
+ msgid "Location:"
340
+ msgstr "Veranstaltungsort:"
341
+
342
+ #: admin/event.php:364
343
+ msgid "The name of the location where the event takes place. You can use the name of a venue, a square, etc"
344
+ msgstr "Der Name des Ortes, an dem die Veranstaltung stattfindet. Z.B. ein Treffpunkt, ein Platz, etc."
345
+
346
+ #: admin/event.php:369
347
+ msgid "Name:"
348
+ msgstr "Name:"
349
+
350
+ #: admin/event.php:372
351
+ msgid "Select a location for your event"
352
+ msgstr "Wählen Sie einen Veranstaltungsort"
353
+
354
+ #: admin/event.php:376
355
+ msgid "Address:"
356
+ msgstr "Adresse:"
357
+
358
+ #: admin/event.php:379
359
+ msgid "The address of the location where the event takes place. Example: 21, Dominick Street"
360
+ msgstr "Die Adresse des Veranstaltungsortes. Z.B. Hauptstraße 132"
361
+
362
+ #: admin/event.php:383
363
+ msgid "Town:"
364
+ msgstr "Stadt:"
365
+
366
+ #: admin/event.php:386
367
+ msgid "The town where the location is located. If you're using the Google Map integration and want to avoid geotagging ambiguities include the country in the town field. Example: Verona, Italy."
368
+ msgstr "Der Name der Stadt in der sich der Veranstaltungsort befindet. Wenn Sie die Google Maps-Anbindung benutzen, tragen Sie das Land mit in das Stadtfeld ein, um korrekte Geotags zu erhalten. Beispiel: Nassau, Deutschland."
369
+
370
+ #: admin/event.php:395
371
+ #: admin/locations.php:181
372
+ #: admin/locations.php:265
373
+ msgid "Location not found"
374
+ msgstr "Veranstaltungsort nicht gefunden"
375
+
376
+ #: admin/event.php:406
377
+ msgid "Details"
378
+ msgstr "Details"
379
+
380
+ #: admin/event.php:413
381
+ msgid "Details about the event"
382
+ msgstr "Details zu der Veranstaltung"
383
+
384
+ #: admin/event.php:420
385
+ msgid "Attributes"
386
+ msgstr "Attribute"
387
+
388
+ #: admin/event.php:475
389
+ msgid "Not defined in templates"
390
+ msgstr "In den Templates nicht definiert"
391
+
392
+ #: admin/event.php:519
393
+ msgid "In order to use attributes, you must define some in your templates, otherwise they'll never show. Go to Events > Settings to add attribute placeholders."
394
+ msgstr "Um Attribute zu nutzen müssen Sie diese in Ihren Templates definieren, sonst werden sie nicht angezeigt. Unter Veranstaltungen > Einstellungen können Sie Attribut-Platzhalter hinzufügen."
395
+
396
+ #: admin/event.php:531
397
+ msgid "Submit Event"
398
+ msgstr "Veranstaltung speichern"
399
+
400
+ #: admin/event.php:542
401
+ msgid "Are you sure you want to reschedule this recurring event? If you do this, you will lose all booking information and the old recurring events will be deleted."
402
+ msgstr "Sind Sie sicher, dass Sie diese wiederkehrende Veranstaltung verlegen möchten? Alle Reservierungsdaten und die alten Wiederholungen der Veranstaltung werden dann gelöscht."
403
+
404
+ #: admin/event.php:552
405
+ msgid "Are you sure you want to disable bookings? If you do this and save, you will lose all previous bookings. If you wish to prevent further bookings, reduce the number of seats available to the amount of bookings you currently have"
406
+ msgstr "Sind sie sicher, dass Sie die Reservierungen deaktivieren möchten? Wenn Sie dies tun und dann abspeichern, verlieren Sie alle bisherigen Reservierungsdaten. Um einfach weitere Reservierungen zu verhindern, setzen Sie die Anzahl verfügbarer Plätze auf die Anzahl gebuchter Plätze "
407
+
408
+ #: admin/events.php:51
409
+ #: admin/events.php:61
410
+ #: admin/locations.php:42
411
+ #: admin/locations.php:60
412
+ msgid "Ach, there's a problem here:"
413
+ msgstr "Ähm, da gibt es ein Problem:"
414
+
415
+ #: admin/events.php:74
416
+ #: admin/events.php:85
417
+ msgid "Edit Event"
418
+ msgstr "Veranstaltung bearbeiten"
419
+
420
+ #: admin/events.php:98
421
+ msgid "Past Events"
422
+ msgstr "Vergangene Veranstaltungen"
423
+
424
+ #: admin/events.php:101
425
+ msgid "All Events"
426
+ msgstr "Alle Veranstaltungen"
427
+
428
+ #: admin/events.php:104
429
+ msgid "Future Events"
430
+ msgstr "Zukünftige Veranstaltungen"
431
+
432
+ #: admin/events.php:116
433
+ #: admin/events.php:136
434
+ #: widgets/events.php:72
435
+ msgid "Past events"
436
+ msgstr "Vergangene Veranstaltungen"
437
+
438
+ #: admin/events.php:117
439
+ #: admin/events.php:137
440
+ #: widgets/events.php:71
441
+ msgid "All events"
442
+ msgstr "Alle Veranstaltungen"
443
+
444
+ #: admin/events.php:118
445
+ #: admin/events.php:138
446
+ #: widgets/events.php:70
447
+ msgid "Future events"
448
+ msgstr "Zukünftige Veranstaltungen"
449
+
450
+ #: admin/events.php:143
451
+ msgid "Total"
452
+ msgstr "Gesamt"
453
+
454
+ #: admin/events.php:151
455
+ msgid "Bulk Actions"
456
+ msgstr "Sammelaktionen"
457
+
458
+ #: admin/events.php:152
459
+ msgid "Delete selected"
460
+ msgstr "Markierte löschen"
461
+
462
+ #: admin/events.php:154
463
+ msgid "Apply"
464
+ msgstr "Anwenden"
465
+
466
+ #: admin/events.php:165
467
+ msgid "Filter"
468
+ msgstr "Filter"
469
+
470
+ #: admin/events.php:171
471
+ msgid "Previous Page"
472
+ msgstr "Vorige Seite"
473
+
474
+ #: admin/events.php:173
475
+ msgid "Next Page"
476
+ msgstr "Nächste Seite"
477
+
478
+ #: admin/events.php:182
479
+ msgid "no events"
480
+ msgstr "Keine Veranstaltungen"
481
+
482
+ #: admin/events.php:195
483
+ msgid "Date and time"
484
+ msgstr "Datum und Uhrzeit"
485
+
486
+ #: admin/events.php:207
487
+ #: admin/events.php:208
488
+ msgid "D d M Y"
489
+ msgstr "d.m.Y"
490
+
491
+ #: admin/events.php:232
492
+ msgid "Duplicate this event"
493
+ msgstr "Veranstaltung kopieren"
494
+
495
+ #: admin/locations.php:20
496
+ msgid "Locations Deleted"
497
+ msgstr "Veranstaltungsorte gelöscht"
498
+
499
+ #: admin/locations.php:36
500
+ msgid "The location has been updated."
501
+ msgstr "Der Veranstaltungsort wurde aktualisiert."
502
+
503
+ #: admin/locations.php:55
504
+ msgid "The location has been added."
505
+ msgstr "Der Veranstaltungsort wurde hinzugefügt."
506
+
507
+ #: admin/locations.php:83
508
+ #: events-manager.php:225
509
+ msgid "Locations"
510
+ msgstr "Veranstaltungsorte"
511
+
512
+ #: admin/locations.php:138
513
+ msgid "No venues have been inserted yet!"
514
+ msgstr "Es wurden noch keine Veranstaltungsorte festgelegt!"
515
+
516
+ #: admin/locations.php:148
517
+ #: admin/locations.php:203
518
+ msgid "Add location"
519
+ msgstr "Veranstaltungsort hinzufügen"
520
+
521
+ #: admin/locations.php:152
522
+ #: admin/locations.php:235
523
+ msgid "Location name"
524
+ msgstr "Name des Veranstaltungsortes"
525
+
526
+ #: admin/locations.php:154
527
+ #: admin/locations.php:237
528
+ msgid "The name of the location"
529
+ msgstr "Der Name des Veranstaltungsortes"
530
+
531
+ #: admin/locations.php:158
532
+ #: admin/locations.php:241
533
+ msgid "Location address"
534
+ msgstr "Adresse des Veranstaltungsortes"
535
+
536
+ #: admin/locations.php:160
537
+ #: admin/locations.php:243
538
+ msgid "The address of the location"
539
+ msgstr "Die Anschrift des Veranstaltungsortes"
540
+
541
+ #: admin/locations.php:164
542
+ #: admin/locations.php:248
543
+ msgid "Location town"
544
+ msgstr "Stadt des Veranstaltungsortes"
545
+
546
+ #: admin/locations.php:166
547
+ msgid "The town of the location"
548
+ msgstr "In welcher Stadt befindet sich der Veranstaltungsort?"
549
+
550
+ #: admin/locations.php:189
551
+ #: admin/locations.php:285
552
+ msgid "Location image"
553
+ msgstr "Bild des Veranstaltungsortes"
554
+
555
+ #: admin/locations.php:191
556
+ msgid "Select an image to upload"
557
+ msgstr "Bild wählen zum Hochladen"
558
+
559
+ #: admin/locations.php:195
560
+ #: admin/locations.php:274
561
+ msgid "Location description"
562
+ msgstr "Beschreibung des Veranstaltungsortes"
563
+
564
+ #: admin/locations.php:200
565
+ #: admin/locations.php:280
566
+ msgid "A description of the Location. You may include any kind of info here."
567
+ msgstr "Eine Beschreibung des Veranstaltungsortes. Hier können Sie jede Art von Information unterbringen."
568
+
569
+ #: admin/locations.php:221
570
+ msgid "Edit location"
571
+ msgstr "Veranstaltungsort bearbeiten"
572
+
573
+ #: admin/locations.php:250
574
+ msgid "The town where the location is located"
575
+ msgstr "Die Stadt in der sich der Veranstaltungsort befindet"
576
+
577
+ #: admin/locations.php:262
578
+ msgid "Location map"
579
+ msgstr "Karte des Veranstaltungsortes"
580
+
581
+ #: admin/locations.php:290
582
+ msgid "No image uploaded for this location yet"
583
+ msgstr "Für diesen Veranstaltungsort existiert noch kein Bild"
584
+
585
+ #: admin/locations.php:295
586
+ msgid "Upload/change picture"
587
+ msgstr "Bild hochladen/ändern"
588
+
589
+ #: admin/locations.php:299
590
+ msgid "Update location"
591
+ msgstr "Veranstaltungsort aktualisieren"
592
+
593
+ #: admin/options.php:16
594
+ msgid "Changes saved."
595
+ msgstr "Änderungen gespeichert."
596
+
597
+ #: admin/options.php:28
598
+ #: admin/options.php:240
599
+ msgid "Save Changes"
600
+ msgstr "Änderungen speichern"
601
+
602
+ #: admin/options.php:28
603
+ msgid "All"
604
+ msgstr "Alle"
605
+
606
+ #: admin/options.php:32
607
+ msgid "Collapse All"
608
+ msgstr "Alles zuklappen"
609
+
610
+ #: admin/options.php:33
611
+ msgid "Expand All"
612
+ msgstr "Alles aufklappen"
613
+
614
+ #: admin/options.php:51
615
+ msgid "Event Manager Options"
616
+ msgstr "Event Manager Optionen"
617
+
618
+ #: admin/options.php:61
619
+ #: admin/options.php:78
620
+ #: admin/options.php:106
621
+ #: admin/options.php:125
622
+ #: admin/options.php:140
623
+ #: admin/options.php:156
624
+ #: admin/options.php:171
625
+ #: admin/options.php:192
626
+ #: admin/options.php:208
627
+ #: admin/options.php:227
628
+ msgid "Click to toggle"
629
+ msgstr "Umschalten per Klick"
630
+
631
+ #: admin/options.php:61
632
+ msgid "General options"
633
+ msgstr "Allgemeine Optionen"
634
+
635
+ #: admin/options.php:65
636
+ msgid "Use dropdown for locations?"
637
+ msgstr "Auswahlliste für Veranstaltungsorte benutzen?"
638
+
639
+ #: admin/options.php:65
640
+ msgid "Select yes to select location from a drow-down menu; location selection will be faster, but you will lose the ability to insert locations with events"
641
+ msgstr "Wählen Sie Ja um die Veranstaltungsorte aus einer Liste auszuwählen. Dadurch wird die Auswahl schneller aber Sie können keine Veranstaltungsorte durch den Eintrag einer Veranstaltung anlegen"
642
+
643
+ #: admin/options.php:66
644
+ msgid "Use recurrence?"
645
+ msgstr "Wiederkehrende Veranstaltungen benutzen?"
646
+
647
+ #: admin/options.php:66
648
+ msgid "Select yes to enable the recurrence features feature"
649
+ msgstr "Wählen Sie Ja um die Optionen für wiederkehrende Veranstaltungen zu aktivieren"
650
+
651
+ #: admin/options.php:67
652
+ msgid "Use RSVP?"
653
+ msgstr "Reservierungssystem benutzen?"
654
+
655
+ #: admin/options.php:67
656
+ msgid "Select yes to enable the RSVP feature"
657
+ msgstr "Wählen Sie Ja um das Reservierungssystem von Event Manager zu aktivieren"
658
+
659
+ #: admin/options.php:68
660
+ msgid "Use categories?"
661
+ msgstr "Kategorien benutzen?"
662
+
663
+ #: admin/options.php:68
664
+ msgid "Select yes to enable the category features"
665
+ msgstr "Wählen Sie Ja um die Kategorien-Optionen zu aktivieren"
666
+
667
+ #: admin/options.php:69
668
+ msgid "Use attributes?"
669
+ msgstr "Attribute benutzen?"
670
+
671
+ #: admin/options.php:69
672
+ msgid "Select yes to enable the attributes feature"
673
+ msgstr "Wählen Sie Ja um die Attribute-Optionen zu aktivieren"
674
+
675
+ #: admin/options.php:78
676
+ #: admin/options.php:92
677
+ msgid "Events page"
678
+ msgstr "Veranstaltungsseite"
679
+
680
+ #: admin/options.php:87
681
+ msgid "[No Events Page]"
682
+ msgstr "[Keine Veranstaltungsseite]"
683
+
684
+ #: admin/options.php:92
685
+ msgid "This option allows you to select which page to use as an events page"
686
+ msgstr "Mit dieser Option wählen Sie, welche Seite als Veranstaltungsseite benutzt werden soll"
687
+
688
+ #: admin/options.php:95
689
+ msgid "Show events page in lists?"
690
+ msgstr "Veranstaltungsseite in Listen anzeigen?"
691
+
692
+ #: admin/options.php:95
693
+ msgid "Check this option if you want the events page to appear together with other pages in pages lists."
694
+ msgstr "Aktivieren Sie diese Option wenn Sie die Veranstaltungsseite zusammen mit anderen Seiten in Seitenlisten anzeigen lassen möchten."
695
+
696
+ #: admin/options.php:96
697
+ msgid "Display calendar in events page?"
698
+ msgstr "Kalender auf der Veranstaltungsseite anzeigen?"
699
+
700
+ #: admin/options.php:96
701
+ msgid "This options allows to display the calendar in the events page, instead of the default list. It is recommended not to display both the calendar widget and a calendar page."
702
+ msgstr "Diese Option erlaubt auf der Veranstaltungsseite die Darstellung der Kalenderansicht statt der Standardliste. Es wird empfohlen, das Kalender-Widget nicht gleichzeitig mit der Kalenderansicht zu benutzen."
703
+
704
+ #: admin/options.php:97
705
+ msgid "Disable title rewriting?"
706
+ msgstr "Titel-Rewrites deaktivieren?"
707
+
708
+ #: admin/options.php:97
709
+ msgid "Some wordpress themes don't follow best practices when generating navigation menus, and so the automatic title rewriting feature may cause problems, if your menus aren't working correctly on the event pages, try setting this to 'Yes', and provide an appropriate HTML title format below."
710
+ msgstr "Einige Wordpress-Themen folgen bei der Erzeugung der Navigationsmenüs nicht den Empfehlungen, was zu Problemen mit dem automatischen Titel-Rewrite führen kann. Wenn Ihre Menüs auf den Veranstaltungsseiten nicht richtig funktionieren, setzen Sie diese Option auf 'Ja' und tragen Síe unten ein passendes HTML-Titelformat ein."
711
+
712
+ #: admin/options.php:98
713
+ msgid "Event Manager titles"
714
+ msgstr "Event Manager Titel"
715
+
716
+ #: admin/options.php:98
717
+ msgid "This only setting only matters if you selected 'Yes' to above. You will notice the events page titles aren't being rewritten, and you have a new title underneath the default page name. This is where you control the HTML of this title. Make sure you keep the #_PAGETITLE placeholder here, as that's what is rewritten by events manager. To control what's rewritten in this title, see settings further down for page titles."
718
+ msgstr "Diese Einstellung ist nur aktiv wenn Sie die obige Option aktiviert haben. Sie werden bemerken dass die Titel der Veranstaltungsseiten nicht neu geschrieben werden und es erscheint ein neuer Titel unterhalb des Standard-Seitennamens. Hier können Sie den HTML-Code dieses Titels bearbeiten. Stellen Sie sicher, dass der #_PAGETITLE-Platzhalter erhalten bleibt, da dieser durch den Event Manager ersetzt wird. Die Einstellungen dazu, was dort eingefügt wird, finden Sie weiter unten in den Einstellungen für Seitentitel."
719
+
720
+ #: admin/options.php:106
721
+ msgid "Events format"
722
+ msgstr "Veranstaltungsformat"
723
+
724
+ #: admin/options.php:110
725
+ msgid "Default event list format header"
726
+ msgstr "Standard-Kopf für das Veranstaltungslisten-Format"
727
+
728
+ #: admin/options.php:110
729
+ msgid "This content will appear just above your code for the default event list format. Default is blank"
730
+ msgstr "Dieser Inhalt erscheint direkt über dem Inhalt aus dem Standard-Veranstaltungslisten-Format. Vorgabe: Leer."
731
+
732
+ #: admin/options.php:111
733
+ msgid "Default event list format"
734
+ msgstr "Standardformat für die Veranstaltungsliste"
735
+
736
+ #: admin/options.php:111
737
+ msgid "The format of any events in a list.<br/>Insert one or more of the following placeholders: <code>#_NAME</code>, <code>#_LOCATION</code>, <code>#_ADDRESS</code>, <code>#_TOWN</code>, <code>#_NOTES</code>.<br/> Use <code>#_EXCERPT</code> to show <code>#_NOTES</code> until you place a &lt;!&ndash;&ndash; more &ndash;&ndash;&gt; marker.<br/> Use <code>#_LINKEDNAME</code> for the event name with a link to the given event page.<br/> Use <code>#_EVENTPAGEURL</code> to print the event page URL and make your own customised links.<br/> Use <code>#_LOCATIONPAGEURL</code> to print the location page URL and make your own customised links.<br/>Use <code>#_EDITEVENTLINK</code> to add add a link to edit page for the event, which will appear only when a user is logged in.<br/>To insert date and time values, use <a href=\"http://www.php.net/manual/en/function.date.php\">PHP time format characters</a> with a <code>#</code> symbol before them, i.e. <code>#m</code>, <code>#M</code>, <code>#j</code>, etc.<br/> For the end time, put <code>#@</code> in front of the character, ie. <code>#@h</code>, <code>#@i</code>, etc.<br/> You can also create a date format without prepending <code>#</code> by wrapping it in #_{} or #@_{} (e.g. <code>#_{d/m/Y}</code>). If there is no end date, the value is not shown.<br/>Feel free to use HTML tags as <code>li</code>, <code>br</code> and so on.<br/>For custom attributes, you use <code>#_ATT{key}{alternative text}</code>, the second braces are optional and will appear if the attribute is not defined or left blank for that event. This key will appear as an option when adding attributes to your event."
738
+ msgstr "Das Format für alle Veranstaltungen in der Liste.<br /> Sie können einen oder mehrere der folgenden Platzhalter verwenden: <code>#_NAME</code>, <code>#_LOCATION</code>, <code>#_ADDRESS</code>, <code>#_TOWN</code>, <code>#_NOTES</code>.<br/> Benutzen Sie <code>#_EXCERPT</code> um den Anfang der <code>#_NOTES</code> bis zur &lt;!&ndash;&ndash; more &ndash;&ndash;&gt; Markierung anzuzeigen.<br/> <code>#_LINKEDNAME</code> zeigt den Veranstaltungsnamen mit einem Link zur Veranstaltungsseite an.<br/> <code>#_EVENTPAGEURL</code> gibt die URL der Veranstaltungsseite aus und erlaubt damit maßgeschneiderte Links im Eigenbau.<br/> <code>#_LOCATIONPAGEURL</code> gibt die URL der Seite für den Veranstaltungsort aus.<br/> <code>#_EDITEVENTLINK</code> fügt einen Link zum Bearbeiten der Veranstaltungsseite hinzu, der nur für eingeloggte Nutzer angezeigt wird.<br/> Mit <a href=\"http://www.php.net/manual/en/function.date.php\">PHP Zeitformatbezeichnern</a> mit einem <code>#</code> davor können Datum und Uhrzeit der Veranstaltung beliebig formatiert eingebunden werden, z.B. <code>#m</code>, <code>#M</code>, <code>#j</code>, etc.<br/> Für das Veranstaltungsende wird einfach ein <code>#@</code> vor die Formatbezeichner gesetzt, z.B. <code>#@h</code>, <code>#@i</code>, etc.<br/> Alternativ zum führenden <code>#</code> kann der gesamte Formatbezeichner auch in #_{} oder #@_{} eingefaßt werden (z.B. <code>#_{d/m/Y}</code>). Bei Veranstaltungen ohne Enddatum wird der Wert nicht angezeigt.<br/> Sie können auch HTML tags wie <code>li</code>, <code>br</code> und so weiter benutzen<br/> Für selbstdefinierte Attribute benutzen Sie <code>#_ATT{Attribut}{Alternativer Text}</code>, das zweite Klammernpaar ist optional und wird angezeigt wenn das Attribut für die jeweilige Veranstaltung nicht definiert oder leer ist. Dieser Wert steht zur Auswahl wenn Sie Attribute für die Veranstaltung anlegen."
739
+
740
+ #: admin/options.php:112
741
+ msgid "Default event list format footer"
742
+ msgstr "Standard-Fußzeile für das Veranstaltungslisten-Format"
743
+
744
+ #: admin/options.php:112
745
+ msgid "This content will appear just below your code for the default event list format. Default is blank"
746
+ msgstr "Dieser Inhalt erscheint direkt unter dem Inhalt aus dem Standard-Veranstaltungslisten-Format. Vorgabe: Leer."
747
+
748
+ #: admin/options.php:113
749
+ msgid "Single event page title format"
750
+ msgstr "Titelformat für einzelne Veranstaltungsseite"
751
+
752
+ #: admin/options.php:113
753
+ msgid "The format of a single event page title. Follow the previous formatting instructions."
754
+ msgstr "Das Format für den Titel einer einzelnen Veranstaltungsseite. Beachten Sie die obigen Formatierungshinweise."
755
+
756
+ #: admin/options.php:114
757
+ msgid "Default single event format"
758
+ msgstr "Standardformat für einzelne Veranstaltung"
759
+
760
+ #: admin/options.php:114
761
+ msgid "The format of a single event page.<br/>Follow the previous formatting instructions. <br/>Use <code>#_MAP</code> to insert a map.<br/>Use <code>#_CONTACTNAME</code>, <code>#_CONTACTEMAIL</code>, <code>#_CONTACTPHONE</code> to insert respectively the name, e-mail address and phone number of the designated contact person. <br/>Use <code>#_ADDBOOKINGFORM</code> to insert a form to allow the user to respond to your events reserving one or more places (RSVP).<br/> Use <code>#_REMOVEBOOKINGFORM</code> to insert a form where users, inserting their name and e-mail address, can remove their bookings."
762
+ msgstr "Das Format für eine einzelne Veranstaltungsseite.<br/>Beachten Sie die obigen Formatierungshinweise. <br/>Benutzen Sie <code>#_MAP</code> um eine Karte einzublenden.<br/>Benutzen Sie <code>#_CONTACTNAME</code>, <code>#_CONTACTEMAIL</code>, <code>#_CONTACTPHONE</code> um Name, Email-Adresse und Telefonnummer des Ansprechpartners anzuzeigen. <br/>Benutzen Sie <code>#_ADDBOOKINGFORM</code> um dem Besucher die Möglichkeit zu geben, über ein Formular einen oder mehrere Plätze bei einer Veranstaltung zu reservieren.<br/> Benutzen Sie <code>#_REMOVEBOOKINGFORM</code> um ein weiteres Formular einzubinden, mit dem der Besucher seine Reservierung wieder stornieren kann."
763
+
764
+ #: admin/options.php:115
765
+ msgid "Events page title"
766
+ msgstr "Titel der Veranstaltungsseite"
767
+
768
+ #: admin/options.php:115
769
+ msgid "The title on the multiple events page."
770
+ msgstr "Der Titel für die Seite mit mehreren Veranstaltungen"
771
+
772
+ #: admin/options.php:116
773
+ msgid "No events message"
774
+ msgstr "Meldungstext wenn keine Veranstaltungen vorhanden sind"
775
+
776
+ #: admin/options.php:116
777
+ msgid "The message displayed when no events are available."
778
+ msgstr "Dieser Text wird angezeigt wenn keine Veranstaltungen vorhanden sind."
779
+
780
+ #: admin/options.php:117
781
+ msgid "List events by date title"
782
+ msgstr "Titel für Veranstaltungsliste nach Datum"
783
+
784
+ #: admin/options.php:117
785
+ msgid "If viewing a page for events on a specific dates, this is the title that would show up. To insert date values, use <a href=\"http://www.php.net/manual/en/function.date.php\">PHP time format characters</a> with a <code>#</code> symbol before them, i.e. <code>#m</code>, <code>#M</code>, <code>#j</code>, etc.<br/>"
786
+ msgstr "Dies ist der Seitentitel für die Ansicht von Veranstaltungen für ein bestimmtes Datum. Datumswerte können Sie einfach mit den <a href=\"http://www.php.net/manual/en/function.date.php\">Bezeichnern die auch PHP verwendet</a> und einem <code>#</code> davor einbinden, z.B. <code>#m</code>, <code>#M</code>, <code>#j</code>, etc.<br/>"
787
+
788
+ #: admin/options.php:125
789
+ msgid "Calendar format"
790
+ msgstr "Kalenderformat"
791
+
792
+ #: admin/options.php:129
793
+ msgid "Small calendar title"
794
+ msgstr "Titel für den kleinen Kalender"
795
+
796
+ #: admin/options.php:129
797
+ msgid "The format of the title, corresponding to the text that appears when hovering on an eventful calendar day."
798
+ msgstr "Das Format für den Titel, entsprechend dem Text der erscheint wenn man mit der Maus über einen Kalendertag fährt, an dem Veranstaltungen stattfinden."
799
+
800
+ #: admin/options.php:130
801
+ msgid "Small calendar title separator"
802
+ msgstr "Titel-Trenner für den kleinen Kalender"
803
+
804
+ #: admin/options.php:130
805
+ msgid "The separator appearing on the above title when more than one events are taking place on the same day."
806
+ msgstr "Dieser Trenner erscheint im oben angesprochenen Titel wenn mehr als eine Veranstaltung am jeweiligen Tag stattfindet."
807
+
808
+ #: admin/options.php:131
809
+ msgid "Full calendar events format"
810
+ msgstr "Format für volle Kalenderansicht der Veranstaltungen"
811
+
812
+ #: admin/options.php:131
813
+ msgid "The format of each event when displayed in the full calendar. Remember to include <code>li</code> tags before and after the event."
814
+ msgstr "Das Format für jede Veranstaltung bei der Anzeige im großen Kalender. Denken Sie daran, die Veranstaltung in <code>li</code>-Tags einzufassen."
815
+
816
+ #: admin/options.php:132
817
+ msgid "Show list on day with single event?"
818
+ msgstr "Liste auch für Tage mit nur einer Veranstaltung anzeigen?"
819
+
820
+ #: admin/options.php:132
821
+ msgid "By default, if a calendar day only has one event, it display a single event when clicking on the link of that calendar date. If you select Yes here, you will get always see a list of events."
822
+ msgstr "In der Voreinstellung wird für Tage mit nur einer Veranstaltung direkt diese Veranstaltung angezeigt, wenn man auf das jeweilige Kalenderdatum klickt. Wenn Sie hier Ja wählen, wird stattdessen immer eine Liste der Veranstaltungen angezeigt."
823
+
824
+ #: admin/options.php:140
825
+ msgid "Locations format"
826
+ msgstr "Format für Veranstaltungsorte"
827
+
828
+ #: admin/options.php:144
829
+ msgid "Single location page title format"
830
+ msgstr "Titelformat für einzelnen Veranstaltungsort"
831
+
832
+ #: admin/options.php:144
833
+ msgid "The format of a single location page title.<br/>Follow the previous formatting instructions."
834
+ msgstr "Das Titelformat für Seiten mit einzelnen Veranstaltungsorten.<br/>Beachten Sie die obigen Formatierungshinweise."
835
+
836
+ #: admin/options.php:145
837
+ msgid "Default single location page format"
838
+ msgstr "Standard-Seitenformat für einzelnen Veranstaltungsort"
839
+
840
+ #: admin/options.php:145
841
+ msgid "The format of a single location page.<br/>Insert one or more of the following placeholders: <code>#_NAME</code>, <code>#_ADDRESS</code>, <code>#_TOWN</code>, <code>#_DESCRIPTION</code>.<br/> Use <code>#_MAP</code> to display a map of the event location, and <code>#_IMAGE</code> to display an image of the location.<br/> Use <code>#_NEXTEVENTS</code> to insert a list of the upcoming events, <code>#_PASTEVENTS</code> for a list of past events, <code>#_ALLEVENTS</code> for a list of all events taking place in this location."
842
+ msgstr "Das Seitenformat für Seiten mit einzelnen Veranstaltungsorten.<br/>Benutzen Sie einen oder mehrere der folgenden Platzhalter: <code>#_NAME</code>, <code>#_ADDRESS</code>, <code>#_TOWN</code>, <code>#_DESCRIPTION</code>.<br/> Benutzen Sie <code>#_MAP</code> um eine Karte des Veranstaltungsortes anzuzeigen. Mit <code>#_IMAGE</code> binden Sie ein Bild des Veranstaltungsortes ein.<br/> Benutzen Sie <code>#_NEXTEVENTS</code> um kommende Veranstaltungen anzuzeigen, oder <code>#_PASTEVENTS</code> für eine Liste der vergangenen Veranstaltungen. <code>#_ALLEVENTS</code> zeigt eine Liste aller Veranstaltungen für diesen Veranstaltungsort an."
843
+
844
+ #: admin/options.php:146
845
+ msgid "Default location baloon format"
846
+ msgstr "Standardformat für Ballontip-Inhalt für Veranstaltungsorte"
847
+
848
+ #: admin/options.php:146
849
+ msgid "The format of of the text appearing in the baloon describing the location in the map.<br/>Insert one or more of the following placeholders: <code>#_NAME</code>, <code>#_ADDRESS</code>, <code>#_TOWN</code>, <code>#_DESCRIPTION</code> or <code>#_IMAGE</code>."
850
+ msgstr "Das Format für den Text im Ballontip der den Veranstaltungsort auf der Karte beschreibt.<br/>Sie können folgende Platzhalter benutzen: <code>#_NAME</code>, <code>#_ADDRESS</code>, <code>#_TOWN</code>, <code>#_DESCRIPTION</code> und <code>#_IMAGE</code>."
851
+
852
+ #: admin/options.php:147
853
+ msgid "Default location event list format"
854
+ msgstr "Standardformat für die Veranstaltungsliste an einem Veranstaltungsort"
855
+
856
+ #: admin/options.php:147
857
+ msgid "The format of the events the list inserted in the location page through the <code>#_NEXTEVENTS</code>, <code>#_PASTEVENTS</code> and <code>#_ALLEVENTS</code> element. <br/> Follow the events formatting instructions"
858
+ msgstr "Das Format für die Veranstaltungen die auf der Seite des Veranstaltungsortes über die Platzhalter <code>#_NEXTEVENTS</code>, <code>#_PASTEVENTS</code> und <code>#_ALLEVENTS</code> eingefügt werden.<br/> Folgen Sie den Formatierungshinweisen für Veranstaltungen"
859
+
860
+ #: admin/options.php:148
861
+ msgid "Default no events message"
862
+ msgstr "Standardmeldung bei leerer Veranstaltungsliste"
863
+
864
+ #: admin/options.php:148
865
+ msgid "The message to be displayed in the list generated by <code>#_NEXTEVENTS</code>, <code>#_PASTEVENTS</code> and <code>#_ALLEVENTS</code> when no events are available."
866
+ msgstr "Diese Meldung wird anstelle der Liste angezeigt die mit <code>#_NEXTEVENTS</code>, <code>#_PASTEVENTS</code> oder <code>#_ALLEVENTS</code> eingefügt werden kann, wenn keine Veranstaltungen vorhanden sind."
867
+
868
+ #: admin/options.php:156
869
+ msgid "RSS feed format"
870
+ msgstr "Format für den RSS-Feed"
871
+
872
+ #: admin/options.php:160
873
+ msgid "RSS main title"
874
+ msgstr "RSS-Feed Haupttitel"
875
+
876
+ #: admin/options.php:160
877
+ msgid "The main title of your RSS events feed."
878
+ msgstr "Der Haupttitel Ihres RSS-Feeds für Veranstaltungen."
879
+
880
+ #: admin/options.php:161
881
+ msgid "RSS main description"
882
+ msgstr "RSS-Feed Hauptbeschreibung"
883
+
884
+ #: admin/options.php:161
885
+ msgid "The main description of your RSS events feed."
886
+ msgstr "Die Hauptbeschreibung Ihres RSS-Feeds für Veranstaltungen."
887
+
888
+ #: admin/options.php:162
889
+ msgid "RSS title format"
890
+ msgstr "RSS-Feed Titelformat"
891
+
892
+ #: admin/options.php:162
893
+ msgid "The format of the title of each item in the events RSS feed."
894
+ msgstr "Das Format für den Titel jedes Eintrags im RSS-Feed für Veranstaltungen."
895
+
896
+ #: admin/options.php:163
897
+ msgid "RSS description format"
898
+ msgstr "RSS-Feed Beschreibungsformat"
899
+
900
+ #: admin/options.php:163
901
+ msgid "The format of the description of each item in the events RSS feed. Follow the previous formatting instructions."
902
+ msgstr "Das Format für die Beschreibung jedes Eintrags im RSS-Feed für Veranstaltungen. Beachten Sie die vorangegangenen Formatierungshinweise."
903
+
904
+ #: admin/options.php:171
905
+ msgid "Maps and geotagging"
906
+ msgstr "Karten und Geotagging"
907
+
908
+ #: admin/options.php:176
909
+ msgid "Enable Google Maps integration?"
910
+ msgstr "Integration für Google Maps aktivieren?"
911
+
912
+ #: admin/options.php:178
913
+ #: functions.php:114
914
+ msgid "Yes"
915
+ msgstr "Ja"
916
+
917
+ #: admin/options.php:179
918
+ #: functions.php:115
919
+ msgid "No"
920
+ msgstr "Nein"
921
+
922
+ #: admin/options.php:180
923
+ msgid "Check this option to enable Goggle Map integration."
924
+ msgstr "Aktivieren Sie dies Option um Google Maps zu integrieren."
925
+
926
+ #: admin/options.php:184
927
+ msgid "Map text format"
928
+ msgstr "Textformat für die Karte"
929
+
930
+ #: admin/options.php:184
931
+ msgid "The format the text appearing in the event page map cloud.<br/>Follow the previous formatting instructions."
932
+ msgstr "Das Format für die Texteinblendungen auf der Karte für die Veranstaltungsseite.<br/>Bitte beachten Sie die obigen Formatierungshinweise."
933
+
934
+ #: admin/options.php:192
935
+ msgid "RSVP and bookings"
936
+ msgstr "Reservierungen und Buchungen"
937
+
938
+ #: admin/options.php:196
939
+ msgid "Default contact person"
940
+ msgstr "Standard-Ansprechpartner"
941
+
942
+ #: admin/options.php:196
943
+ msgid "Select the default contact person. This user will be employed whenever a contact person is not explicitly specified for an event"
944
+ msgstr "Wählen Sie den Standard-Ansprechpartner aus. Dieser wird immer dann genutzt wenn für eine Veranstaltung kein gesonderter Ansprechpartner angegeben ist."
945
+
946
+ #: admin/options.php:197
947
+ msgid "Enable the RSVP e-mail notifications?"
948
+ msgstr "Emailbenachrichtigungen für Reservierungen aktivieren?"
949
+
950
+ #: admin/options.php:197
951
+ msgid "Check this option if you want to receive an email when someone books places for your events."
952
+ msgstr "Aktivieren Sie diese Option wenn Sie benachrichtigt werden wollen wenn jemand Plätze für Ihre Veranstaltungen bucht."
953
+
954
+ #: admin/options.php:198
955
+ #: admin/options.php:199
956
+ msgid "Contact person email format"
957
+ msgstr "Emailformat Ansprechpartner"
958
+
959
+ #: admin/options.php:198
960
+ msgid "The format or the email which will be sent to the contact person. Follow the events formatting instructions. <br/>Use <code>#_RESPNAME</code>, <code>#_RESPEMAIL</code> and <code>#_RESPPHONE</code> to display respectively the name, e-mail, address and phone of the respondent.<br/>Use <code>#_SPACES</code> to display the number of spaces reserved by the respondent. Use <code>#_COMMENT</code> to display the respondent's comment. <br/> Use <code>#_BOOKEDSEATS</code> and <code>#_AVAILABLESEATS</code> to display respectively the number of booked and available seats."
961
+ msgstr "Das Format der Email die dem Ansprechpartner zugesandt wird. Orientieren Sie sich an den Formatierungshinweisen für Veranstaltungen. <br/>Benutzen Sie <code>#_RESPNAME</code>, <code>#_RESPEMAIL</code> und <code>#_RESPPHONE</code> um Name, Email-Adresse und Telefonnummer des Interessenten einzubinden.<br/>Mit <code>#_SPACES</code> fügen Sie die Anzahl der vom Interessenten reservierten Plätze ein. Mit <code>#_COMMENT</code> übernehmen Sie den vom Interessenten eingegebenen Kommentar. <br/> Benutzen Sie <code>#_BOOKEDSEATS</code> und <code>#_AVAILABLESEATS</code> um anzuzeigen wie viele Plätze bereits reserviert bzw. noch frei sind."
962
+
963
+ #: admin/options.php:199
964
+ msgid "The format or the email which will be sent to reposdent. Follow the events formatting instructions. <br/>Use <code>#_RESPNAME</code> to display the name of the respondent.<br/>Use <code>#_CONTACTNAME</code> and <code>#_CONTACTEMAIL</code> a to display respectively the name and e-mail of the contact person.<br/>Use <code>#_SPACES</code> to display the number of spaces reserved by the respondent. Use <code>#_COMMENT</code> to display the respondent's comment."
965
+ msgstr "Das Format der Email die dem Interessenten zugesandt wird. Orientieren Sie sich an den Formatierungshinweisen für Veranstaltungen. <br/>Benutzen Sie <code>#_RESPNAME</code> um den Namen des Interessenten anzuzeigen.<br/>Mit <code>#_CONTACTNAME</code> und <code>#_CONTACTEMAIL</code> binden Sie den Namen und die Emailadresse des jeweiligen Ansprechpartners ein.<br/>Mit <code>#_SPACES</code> erhalten Sie die Anzahl der vom Interessenten reservierten Plätze. Mit <code>#_COMMENT</code> zeigen Sie den vom Interessenten eingegebenen Kommentar an."
966
+
967
+ #: admin/options.php:200
968
+ msgid "Default notification receiver address"
969
+ msgstr "Standardempfänger für Benachrichtigungen"
970
+
971
+ #: admin/options.php:200
972
+ msgid "Insert the address of the receiver of your notifications"
973
+ msgstr "Geben Sie hier die Emailadresse für Benachrichtigungen ein."
974
+
975
+ #: admin/options.php:208
976
+ msgid "Email Settings"
977
+ msgstr "Emaileinstellungen"
978
+
979
+ #: admin/options.php:212
980
+ msgid "Notification sender name"
981
+ msgstr "Absendername für Benachrichtigungen"
982
+
983
+ #: admin/options.php:212
984
+ msgid "Insert the display name of the notification sender."
985
+ msgstr "Geben Sie hier den Absendernamen für Benachrichtigungsemails ein."
986
+
987
+ #: admin/options.php:213
988
+ msgid "Notification sender address"
989
+ msgstr "Absenderadresse für Benachrichtigungen"
990
+
991
+ #: admin/options.php:213
992
+ msgid "Insert the address of the notification sender. It must corresponds with your gmail account user"
993
+ msgstr "Geben Sie hier die Absenderadresse für Benachrichtigungen ein. Sie muss für Google Mail mit dem Accountnutzernamen übereinstimmen."
994
+
995
+ #: admin/options.php:214
996
+ msgid "The port through which you e-mail notifications will be sent. Make sure the firewall doesn't block this port"
997
+ msgstr "Der Port über den die Emailbenachrichtigungen verschickt werden. Stellen Sie sicher dass dieser Port nicht von einer Firewall gesperrt wird."
998
+
999
+ #: admin/options.php:215
1000
+ msgid "Mail sending method"
1001
+ msgstr "Methode für Mailversand"
1002
+
1003
+ #: admin/options.php:215
1004
+ msgid "PHP mail function"
1005
+ msgstr "PHP-Mailfunktion"
1006
+
1007
+ #: admin/options.php:215
1008
+ msgid "Select the method to send email notification."
1009
+ msgstr "Wählen Sie die Versandmethode für Emailbenachrichtigungen"
1010
+
1011
+ #: admin/options.php:216
1012
+ msgid "Use SMTP authentication?"
1013
+ msgstr "SMTP-Authentifizierung benutzen?"
1014
+
1015
+ #: admin/options.php:216
1016
+ msgid "SMTP authenticatio is often needed. If you use GMail, make sure to set this parameter to Yes"
1017
+ msgstr "SMTP-Authentifizierung wird oft benötigt. Wenn Sie Google Mail benutzen, stellen Sie diesen Wert unbedingt auf Ja."
1018
+
1019
+ #: admin/options.php:217
1020
+ msgid "The SMTP host. Usually it corresponds to 'localhost'. If you use GMail, set this value to 'ssl://smtp.gmail.com:465'."
1021
+ msgstr "Der Hostname für SMTP. Üblicherweise 'localhost'. Falls Sie Google Mail benutzen, geben Sie 'ssl://smtp.gmail.com:465' ein."
1022
+
1023
+ #: admin/options.php:218
1024
+ msgid "SMTP username"
1025
+ msgstr "SMTP Benutzername"
1026
+
1027
+ #: admin/options.php:218
1028
+ msgid "Insert the username to be used to access your SMTP server."
1029
+ msgstr "Geben Sie einen gültigen Benutzernamen für den SMTP-Server ein."
1030
+
1031
+ #: admin/options.php:219
1032
+ msgid "SMTP password"
1033
+ msgstr "SMTP Kennwort"
1034
+
1035
+ #: admin/options.php:219
1036
+ msgid "Insert the password to be used to access your SMTP server"
1037
+ msgstr "Geben Sie hier das zugehörige Kennwort für den SMTP-Server ein."
1038
+
1039
+ #: admin/options.php:227
1040
+ msgid "Images size"
1041
+ msgstr "Bildgröße"
1042
+
1043
+ #: admin/options.php:231
1044
+ msgid "Maximum width (px)"
1045
+ msgstr "Maximale Breite (Pixel)"
1046
+
1047
+ #: admin/options.php:231
1048
+ msgid "The maximum allowed width for images uploades"
1049
+ msgstr "Die maximal erlaubte Bildbreite für das Hochladen von Bildern"
1050
+
1051
+ #: admin/options.php:232
1052
+ msgid "Maximum height (px)"
1053
+ msgstr "Maximale Höhe (Pixel)"
1054
+
1055
+ #: admin/options.php:232
1056
+ msgid "The maximum allowed width for images uploaded, in pixels"
1057
+ msgstr "Die maximal erlaubte Bildhöhe für das Hochladen von Bildern"
1058
+
1059
+ #: admin/options.php:233
1060
+ msgid "Maximum size (bytes)"
1061
+ msgstr "Maximale Größe (Bytes)"
1062
+
1063
+ #: admin/options.php:233
1064
+ msgid "The maximum allowed size for images uploaded, in pixels"
1065
+ msgstr "Die maximal erlaubte Bildgröße für das Hochladen von Bildern"
1066
+
1067
+ #: admin/people.php:36
1068
+ msgid "Bookings data"
1069
+ msgstr "Buchungsdaten"
1070
+
1071
+ #: admin/people.php:40
1072
+ msgid "E-mail"
1073
+ msgstr "Email"
1074
+
1075
+ #: admin/people.php:41
1076
+ #: bookings.php:80
1077
+ msgid "Phone number"
1078
+ msgstr "Telefonnummer"
1079
+
1080
+ #: admin/people.php:42
1081
+ #: bookings.php:82
1082
+ msgid "Seats"
1083
+ msgstr "Plätze"
1084
+
1085
+ #: admin/people.php:43
1086
+ #: bookings.php:93
1087
+ msgid "Comment"
1088
+ msgstr "Kommentar"
1089
+
1090
+ #: admin/people.php:57
1091
+ msgid "Booked"
1092
+ msgstr "Reserviert"
1093
+
1094
+ #: admin/people.php:62
1095
+ msgid "Available"
1096
+ msgstr "Verfügbar"
1097
+
1098
+ #: admin/people.php:78
1099
+ msgid "No people have responded to your events yet!"
1100
+ msgstr "Es hat noch niemand für Ihre Veranstaltungen reserviert!"
1101
+
1102
+ #: admin/people.php:81
1103
+ msgid "This table collects the data about the people who responded to your events"
1104
+ msgstr "In dieser Tabelle werden die Informationen über die Reservierungen für Ihre Veranstaltungen gesammelt"
1105
+
1106
+ #: admin/people.php:118
1107
+ msgid "Phone"
1108
+ msgstr "Telefon"
1109
+
1110
+ #. #-#-#-#-# plugin.pot (Events Manager 3.0.4) #-#-#-#-#
1111
+ #. Plugin Name of the plugin/theme
1112
+ #: admin/people.php:118
1113
+ msgid "Events Manager"
1114
+ msgstr "Events Manager"
1115
+
1116
+ #: admin/support.php:10
1117
+ #: events-manager.php:229
1118
+ msgid "Getting Help for Events Manager"
1119
+ msgstr "Hilfe erhalten für Events Manager"
1120
+
1121
+ #: bookings.php:40
1122
+ msgid "Booking deleted"
1123
+ msgstr "Reservierung gelöscht"
1124
+
1125
+ #: bookings.php:42
1126
+ msgid "There are no bookings associated to this name and e-mail"
1127
+ msgstr "Es gibt keine Reservierungen für diesen Namen mit dieser Emailadresse"
1128
+
1129
+ #: bookings.php:66
1130
+ msgid "Book now!"
1131
+ msgstr "Jetzt reservieren!"
1132
+
1133
+ #: bookings.php:79
1134
+ #: bookings.php:152
1135
+ msgid "E-Mail"
1136
+ msgstr "Email"
1137
+
1138
+ #: bookings.php:96
1139
+ msgid "Send your booking"
1140
+ msgstr "Reservierung abschicken"
1141
+
1142
+ #: bookings.php:105
1143
+ #: bookings.php:111
1144
+ msgid "Hide cancellation form"
1145
+ msgstr "Stornierungsformular verstecken"
1146
+
1147
+ #: bookings.php:105
1148
+ #: bookings.php:107
1149
+ #: bookings.php:110
1150
+ #: bookings.php:114
1151
+ msgid "Cancel a booking"
1152
+ msgstr "Eine Reservierung stornieren"
1153
+
1154
+ #: bookings.php:136
1155
+ #: bookings.php:157
1156
+ msgid "Cancel your booking"
1157
+ msgstr "Stornieren Sie Ihre Reservierung"
1158
+
1159
+ #: classes/booking.php:74
1160
+ msgid "There was a problem saving the booking."
1161
+ msgstr "Es gab ein Problem beim Speichern der Reservierung."
1162
+
1163
+ #: classes/booking.php:80
1164
+ msgid "Your booking has been recorded"
1165
+ msgstr "Ihre Reservierung wurde entgegengenommen"
1166
+
1167
+ #: classes/bookings.php:78
1168
+ msgid "Booking successful."
1169
+ msgstr "Reservierung erfolgreich."
1170
+
1171
+ #: classes/bookings.php:80
1172
+ msgid "However, we were not able to send you an email."
1173
+ msgstr "Leider konnten wir Ihnen keine Bestätigungsemail schicken."
1174
+
1175
+ #: classes/bookings.php:88
1176
+ msgid "Booking could not be created"
1177
+ msgstr "Reservierung konnte nicht eingetragen werden"
1178
+
1179
+ #: classes/bookings.php:91
1180
+ msgid "Booking cannot be made, not enough seats available!"
1181
+ msgstr "Die Reservierung ist nicht möglich, es sind keine freien Plätze verfügbar!"
1182
+
1183
+ #: classes/bookings.php:183
1184
+ msgid "Reservation confirmed"
1185
+ msgstr "Reservierung bestätigt"
1186
+
1187
+ #: classes/bookings.php:186
1188
+ msgid "New booking"
1189
+ msgstr "Neue Reservierung"
1190
+
1191
+ #: classes/event.php:207
1192
+ msgid "There was a problem saving the location so event was not saved."
1193
+ msgstr "Es gab ein Problem beim Speichern des Veranstaltungsortes so dass die Veranstaltung nicht gespeichert werden konnte."
1194
+
1195
+ #: classes/event.php:227
1196
+ #: classes/event.php:255
1197
+ msgid "Something went wrong with the recurrence update..."
1198
+ msgstr "Etwas lief schief bei der Aktualisierung der Wiederholungen..."
1199
+
1200
+ #: classes/event.php:228
1201
+ #: classes/event.php:256
1202
+ msgid "There was a problem saving the recurring events."
1203
+ msgstr "Es gab ein Problem beim Speichern der wiederkehrenden Veranstaltungen."
1204
+
1205
+ #: classes/event.php:233
1206
+ msgid "New recurrent event inserted!"
1207
+ msgstr "Neue wiederkehrende Veranstaltung eingetragen!"
1208
+
1209
+ #: classes/event.php:237
1210
+ msgid "New event successfully inserted!"
1211
+ msgstr "Neue Veranstaltung erfolgreich eingetragen!"
1212
+
1213
+ #: classes/event.php:240
1214
+ #: classes/event.php:263
1215
+ msgid "Could not save the event details due to a database error."
1216
+ msgstr "Durch einen Datenbankfehler konnten die Veranstaltungsdetails nicht gespeichert werden."
1217
+
1218
+ #: classes/event.php:259
1219
+ msgid "Recurrence updated!"
1220
+ msgstr "Wiederholungen aktualisiert!"
1221
+
1222
+ #: classes/event.php:267
1223
+ msgid "updated"
1224
+ msgstr "aktualisiert"
1225
+
1226
+ #: classes/event.php:329
1227
+ msgid "Missing fields: "
1228
+ msgstr "Fehlende Angaben:"
1229
+
1230
+ #: classes/event.php:332
1231
+ msgid "Since the event is repeated, you must specify an event date."
1232
+ msgstr "Da sich die Veranstaltung wiederholt, müssen sie ein Veranstaltungsdatum angeben."
1233
+
1234
+ #: classes/event.php:410
1235
+ #: events-manager.php:223
1236
+ msgid "Edit"
1237
+ msgstr "Bearbeiten"
1238
+
1239
+ #: classes/event.php:410
1240
+ msgid "Event"
1241
+ msgstr "Veranstaltung"
1242
+
1243
+ #: classes/event.php:536
1244
+ msgid "N/A"
1245
+ msgstr "nicht verfügbar"
1246
+
1247
+ #: classes/event.php:792
1248
+ msgid "Sunday"
1249
+ msgstr "Sonntag"
1250
+
1251
+ #: classes/event.php:792
1252
+ msgid "Monday"
1253
+ msgstr "Montag"
1254
+
1255
+ #: classes/event.php:792
1256
+ msgid "Tuesday"
1257
+ msgstr "Dienstag"
1258
+
1259
+ #: classes/event.php:792
1260
+ msgid "Wednesday"
1261
+ msgstr "Mittwoch"
1262
+
1263
+ #: classes/event.php:792
1264
+ msgid "Thursday"
1265
+ msgstr "Donnerstag"
1266
+
1267
+ #: classes/event.php:792
1268
+ msgid "Friday"
1269
+ msgstr "Freitag"
1270
+
1271
+ #: classes/event.php:792
1272
+ msgid "Saturday"
1273
+ msgstr "Samstag"
1274
+
1275
+ #: classes/event.php:793
1276
+ #, php-format
1277
+ msgid "the first %s of the month"
1278
+ msgstr "Die erste %s des Monats"
1279
+
1280
+ #: classes/event.php:793
1281
+ #, php-format
1282
+ msgid "the second %s of the month"
1283
+ msgstr "Die zweite %s des Monats"
1284
+
1285
+ #: classes/event.php:793
1286
+ #, php-format
1287
+ msgid "the third %s of the month"
1288
+ msgstr "Die dritte %s des Monats"
1289
+
1290
+ #: classes/event.php:793
1291
+ #, php-format
1292
+ msgid "the fourth %s of the month"
1293
+ msgstr "Die vierte %s des Monats"
1294
+
1295
+ #: classes/event.php:793
1296
+ #, php-format
1297
+ msgid "the last %s of the month"
1298
+ msgstr "Die letzte %s des Monats"
1299
+
1300
+ #: classes/event.php:794
1301
+ #, php-format
1302
+ msgid "From %1$s to %2$s"
1303
+ msgstr "Von %1$s bis %2$s"
1304
+
1305
+ #: classes/event.php:797
1306
+ msgid "everyday"
1307
+ msgstr "täglich"
1308
+
1309
+ #: classes/event.php:799
1310
+ #, php-format
1311
+ msgid "every %s days"
1312
+ msgstr "alle %s Tage"
1313
+
1314
+ #: classes/event.php:809
1315
+ #, php-format
1316
+ msgid "every %s weeks"
1317
+ msgstr "alle %s Wochen"
1318
+
1319
+ #: classes/event.php:820
1320
+ #, php-format
1321
+ msgid "every %s months"
1322
+ msgstr "alle %s Monate"
1323
+
1324
+ #: classes/location.php:39
1325
+ msgid "The location name"
1326
+ msgstr "Name des Veranstaltungsortes"
1327
+
1328
+ #: classes/location.php:39
1329
+ msgid "The location address"
1330
+ msgstr "Adresse des Veranstaltungsortes"
1331
+
1332
+ #: classes/location.php:39
1333
+ msgid "The location town"
1334
+ msgstr "Stadt des Veranstaltungsortes"
1335
+
1336
+ #: classes/location.php:130
1337
+ msgid "The image could not be loaded"
1338
+ msgstr "Das Bild konnte nicht geladen werden"
1339
+
1340
+ #: classes/location.php:158
1341
+ msgid " is missing!"
1342
+ msgstr "fehlt!"
1343
+
1344
+ #: classes/location.php:166
1345
+ msgid "The image file is too big! Maximum size:"
1346
+ msgstr "Das Bild ist zu groß! Maximalgröße:"
1347
+
1348
+ #: classes/location.php:172
1349
+ msgid "The image is too big! Maximum size allowed:"
1350
+ msgstr "Das Bild ist zu groß! Erlaubte Maximalgröße:"
1351
+
1352
+ #: classes/location.php:175
1353
+ msgid "The image is in a wrong format!"
1354
+ msgstr "Das Bild liegt in einem falschen Format vor!"
1355
+
1356
+ #: classes/mailer.php:61
1357
+ msgid "Please supply a valid email format."
1358
+ msgstr "Bitte geben Sie eine gültige Emailadresse ein."
1359
+
1360
+ #: classes/map.php:20
1361
+ #: classes/map.php:48
1362
+ msgid "Loading Map...."
1363
+ msgstr "Lade Karte..."
1364
+
1365
+ #: classes/map.php:61
1366
+ msgid "Map Unavailable"
1367
+ msgstr "Karte nicht verfügbar"
1368
+
1369
+ #: classes/person.php:84
1370
+ msgid "Please provide a valid email address."
1371
+ msgstr "Bitte geben sie eine gültige Emailadresse ein."
1372
+
1373
+ #: events-manager.php:101
1374
+ #: events-manager.php:104
1375
+ #: events-manager.php:220
1376
+ #: install.php:186
1377
+ #: install.php:187
1378
+ #: template-tags.php:16
1379
+ #: widgets/events.php:42
1380
+ msgid "Events"
1381
+ msgstr "Veranstaltungen"
1382
+
1383
+ #: events-manager.php:111
1384
+ #: install.php:178
1385
+ #: widgets/events.php:31
1386
+ msgid "No events"
1387
+ msgstr "Keine Veranstaltungen"
1388
+
1389
+ #: events-manager.php:117
1390
+ msgid "<li>No events in this location</li>"
1391
+ msgstr "<li>Keine Veranstaltungen an diesem Veranstaltungsort</li>"
1392
+
1393
+ #: events-manager.php:208
1394
+ #: events-manager.php:228
1395
+ msgid "Settings"
1396
+ msgstr "Einstellungen"
1397
+
1398
+ #: events-manager.php:224
1399
+ msgid "Add new"
1400
+ msgstr "Hinzufügen"
1401
+
1402
+ #: events-manager.php:226
1403
+ msgid "People"
1404
+ msgstr "Personen"
1405
+
1406
+ #: events-manager.php:227
1407
+ msgid "Event Categories"
1408
+ msgstr "Veranstaltungskategorien"
1409
+
1410
+ #: events-manager.php:228
1411
+ msgid "Events Manager Settings"
1412
+ msgstr "Event Manager Einstellungen"
1413
+
1414
+ #: events-manager.php:229
1415
+ msgid "Help"
1416
+ msgstr "Hilfe"
1417
+
1418
+ #: events-manager.php:256
1419
+ msgid "Add an event"
1420
+ msgstr "Eine Veranstaltung hinzufügen"
1421
+
1422
+ #: events-manager.php:272
1423
+ #, php-format
1424
+ msgid "This page corresponds to <strong>Events Manager</strong> events page. Its content will be overriden by <strong>Events Manager</strong>. If you want to display your content, you can can assign another page to <strong>Events Manager</strong> in the the <a href='%s'>Settings</a>. "
1425
+ msgstr "Diese Seite entspricht der <strong>Events Manager</strong> Veranstaltungsseite. Ihr Inhalt wird durch den <strong>Events Manager</strong>überschrieben. Wenn Sie hier eigene Inhalte anzeigen möchten, können Sie im <strong>Events Manager</strong> in den <a href='%s'>Einstellungen</a> eine andere Seite für die Veranstaltungen zuweisen. "
1426
+
1427
+ #: events-manager.php:283
1428
+ #, php-format
1429
+ msgid "Uh Oh! For some reason wordpress could not create an events page for you (or you just deleted it). Not to worry though, all you have to do is create an empty page, name it whatever you want, and select it as your events page in your <a href=\"%s\">options page</a>. Sorry for the extra step! If you know what you are doing, you may have done this on purpose, if so <a href=\"%s\">ignore this message</a>"
1430
+ msgstr "Ohje! Aus irgendeinem Grunde konnte Wordpress keine Veranstaltungsseite für Sie anlegen (oder Sie haben sie gerade gelöscht.) Doch keine Sorge, alles was Sie tun müssen, ist eine leere Seite mit einem beliebigen Namen zu erstellen und diese auf der <a href=\"%s\">Einstellungsseite</a> als Veranstaltungsseite auszuwählen. Der Extraaufwand tut uns leid! Wenn Sie genau wissen, was Sie tun, dann haben Sie dies vielleicht absichtlich getan. In diesem Falle <a href=\"%s\">ignorieren Sie diese Meldung bitte</a>."
1431
+
1432
+ #: functions.php:5
1433
+ #, php-format
1434
+ msgid ""
1435
+ "<p>Hey, <strong>%s</strong>, welcome to <strong>Events Manager</strong>! We hope you like it around here.</p> \r\n"
1436
+ "\t\t<p>Now it's time to insert events lists through <a href='%s' title='Widgets page'>widgets</a>, <a href='%s' title='Template tags documentation'>template tags</a> or <a href='%s' title='Shortcodes documentation'>shortcodes</a>.</p>\r\n"
1437
+ "\t\t<p>By the way, have you taken a look at the <a href='%s' title='Change settings'>Settings page</a>? That's where you customize the way events and locations are displayed.</p>\r\n"
1438
+ "\t\t<p>What? Tired of seeing this advice? I hear you, <a href='%s' title='Don't show this advice again'>click here</a> and you won't see this again!</p>"
1439
+ msgstr ""
1440
+ "<p>Hey, <strong>%s</strong>, willkommen beim <strong>Events Manager</strong>! Wir hoffen, es gefällt Ihnen hier.</p> \r\n"
1441
+ "\t\t<p>Nun ist es an der Zeit, Veranstaltungslisten einzubinden, durch <a href='%s' title='Widgets page'>Widgets</a>, <a href='%s' title='Template tags documentation'>Vorlagen-Platzhalter</a> oder <a href='%s' title='Shortcodes documentation'>Shortcodes</a>.</p>\r\n"
1442
+ "\t\t<p>Übrigens, haben Sie sich schon die <a href='%s' title='Change settings'>Einstellungen</a> angeschaut? Dort können Sie genau einstellen, wie Veranstaltungen und Veranstaltungsorte angezeigt werden.</p>\r\n"
1443
+ "\t\t<p>Wie bitte? Sie haben diese Hinweise satt? Ihnen kann geholfen werden, <a href='%s' title='Don't show this advice again'>klicken Sie hier</a>, und Sie werden uns nicht wiedersehen!</p>"
1444
+
1445
+ #: install.php:161
1446
+ msgid "Uncategorized"
1447
+ msgstr "Unkategorisiert"
1448
+
1449
+ #: install.php:169
1450
+ msgid "#_RESPNAME (#_RESPEMAIL) will attend #_NAME on #m #d, #Y. He wants to reserve #_SPACES spaces.<br/> Now there are #_RESERVEDSPACES spaces reserved, #_AVAILABLESPACES are still available.<br/>Yours faithfully,<br/>Events Manager"
1451
+ msgstr "#_RESPNAME (#_RESPEMAIL) besucht #_NAME am #d.#m.#Y und bittet um Reservierung von #_SPACES Platz/Plätze.<br/> Aktuell sind #_RESERVEDSPACES Plätze reserviert und #_AVAILABLESPACES noch verfügbar.<br/>Mit freundlichem Gruß,<br/>Events Manager"
1452
+
1453
+ #: install.php:170
1454
+ msgid "Dear #_RESPNAME, <br/>you have successfully reserved #_SPACES space/spaces for #_NAME.<br/>Yours faithfully,<br/> #_CONTACTPERSON"
1455
+ msgstr "Guten Tag #_RESPNAME, <br/>Sie haben erfolgreich #_SPACES Platz/Plätze reserviert für #_NAME.<br/>Mit freundlichem Gruß,<br/> #_CONTACTPERSON"
1456
+
1457
+ #: install.php:305
1458
+ msgid "We could not mirgrate old recurrence data over. DONT WORRY! You can just delete the current plugin, and re-install the previous 2.2.2 version and you wont lose any of your data. Either way, please contact the developers to let them know of this bug."
1459
+ msgstr "Wir konnten die alten Wiederholungsdaten nicht auf die neue Version migrieren. KEINE SORGE! Sie können einfach das aktuelle Plugin löschen und die alte Version 2.2.2 wieder installieren. Dabei gehen keine Daten verloren. Auf jeden Fall kontaktieren Sie bitte die Entwickler und berichten Sie Ihnen von diesem Fehler."
1460
+
1461
+ #: install.php:467
1462
+ msgid "Events Manager successfully imported your events, please check your records to verify."
1463
+ msgstr "Events Manager hat Ihre Veranstaltungen erfolgreich importiert, bitte überprüfen Sie die Einträge."
1464
+
1465
+ #: install.php:483
1466
+ #, php-format
1467
+ msgid "Something has gone wrong when importing your old event. See the <a href=\"%s\">support page</a> for more information. <a href=\"%s\">Dismiss this message</a>"
1468
+ msgstr "Etwas ist schiefgelaufen beim Import Ihrer alten Veranstaltung. <a href=\"%s\">Auf der Hilfeseite finden Sie</a> weitere Informationen. <a href=\"%s\">Diese Meldung nicht mehr anzeigen</a>"
1469
+
1470
+ #: locations.php:35
1471
+ msgid "Ach, some problems here:"
1472
+ msgstr "Uff, da gibt es ein Problem:"
1473
+
1474
+ #: widgets/calendar.php:9
1475
+ msgid "Display your events in a calendar widget."
1476
+ msgstr "Zeigen Sie Ihre Veranstaltungen in einem Kalender-Widget an."
1477
+
1478
+ #: widgets/calendar.php:10
1479
+ msgid "Events Calendar"
1480
+ msgstr "Veranstaltungskalender"
1481
+
1482
+ #: widgets/calendar.php:32
1483
+ msgid "Calendar"
1484
+ msgstr "Kalender"
1485
+
1486
+ #: widgets/calendar.php:41
1487
+ #: widgets/events.php:60
1488
+ #: widgets/locations.php:60
1489
+ msgid "Title"
1490
+ msgstr "Titel"
1491
+
1492
+ #: widgets/calendar.php:45
1493
+ msgid "Show Long Events?"
1494
+ msgstr "Lange Veranstaltungen zeigen?"
1495
+
1496
+ #: widgets/events.php:9
1497
+ msgid "Display a list of events on Events Manager."
1498
+ msgstr "Zeigt eine Liste der Veranstaltungen im Events Manager."
1499
+
1500
+ #: widgets/events.php:64
1501
+ msgid "Number of events"
1502
+ msgstr "Anzahl der Veranstaltungen"
1503
+
1504
+ #: widgets/events.php:68
1505
+ msgid "Scope of the events"
1506
+ msgstr "Zeitraum für Veranstaltungen"
1507
+
1508
+ #: widgets/events.php:76
1509
+ msgid "Order of the events"
1510
+ msgstr "Sortierung der Veranstaltungen"
1511
+
1512
+ #: widgets/events.php:78
1513
+ #: widgets/locations.php:78
1514
+ msgid "Ascendant"
1515
+ msgstr "Aufsteigend"
1516
+
1517
+ #: widgets/events.php:79
1518
+ #: widgets/locations.php:79
1519
+ msgid "Descendant"
1520
+ msgstr "Absteigend"
1521
+
1522
+ #: widgets/events.php:83
1523
+ #: widgets/locations.php:83
1524
+ msgid "List item format"
1525
+ msgstr "Format für Listeneinträge"
1526
+
1527
+ #: widgets/locations.php:9
1528
+ msgid "Display a list of event locations on Events Manager."
1529
+ msgstr "Zeigt eine Liste der Veranstaltungsorte im Events Manager"
1530
+
1531
+ #: widgets/locations.php:31
1532
+ msgid "No locations"
1533
+ msgstr "Keine Veranstaltungsorte"
1534
+
1535
+ #: widgets/locations.php:42
1536
+ msgid "Event Locations"
1537
+ msgstr "Veranstaltungsorte"
1538
+
1539
+ #: widgets/locations.php:64
1540
+ msgid "Show number of locations"
1541
+ msgstr "Anzahl der Veranstaltungsorte anzeigen"
1542
+
1543
+ #: widgets/locations.php:68
1544
+ msgid "Scope of the locations"
1545
+ msgstr "Zeitraum für Veranstaltungsorte"
1546
+
1547
+ #: widgets/locations.php:70
1548
+ msgid "Locations with upcoming events"
1549
+ msgstr "Veranstaltungsorte mit kommenden Veranstaltungen"
1550
+
1551
+ #: widgets/locations.php:71
1552
+ msgid "All locations"
1553
+ msgstr "Alle Veranstaltungsorte"
1554
+
1555
+ #: widgets/locations.php:72
1556
+ msgid "Locations with past events "
1557
+ msgstr "Veranstaltungsorte mit vergangenen Veranstaltungen"
1558
+
1559
+ #: widgets/locations.php:76
1560
+ msgid "Order of the locations"
1561
+ msgstr "Reihenfolge der Veranstaltungsorte"
1562
+
1563
+ #. Plugin URI of the plugin/theme
1564
+ msgid "http://davidebenini.it/wordpress-plugins/events-manager/"
1565
+ msgstr "http://davidebenini.it/wordpress-plugins/events-manager/"
1566
+
1567
+ #. Description of the plugin/theme
1568
+ msgid "Manage events specifying precise spatial data (Location, Town, Province, etc)."
1569
+ msgstr "Veranstaltungen verwalten mithilfe präziser räumlicher Daten (Veranstaltungsort, Stadt, Region, etc.)"
1570
+
1571
+ #. Author of the plugin/theme
1572
+ msgid "Davide Benini, Marcus Sykes"
1573
+ msgstr "Davide Benini, Marcus Sykes"
1574
+
1575
+ #. Author URI of the plugin/theme
1576
+ msgid "http://www.davidebenini.it/blog"
1577
+ msgstr "http://www.davidebenini.it/blog"
1578
+
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://davidebenini.it
4
  Tags: events, manager, calendar, gigs, concert, maps, geotagging, rsvp
5
  Requires at least: 2.9
6
  Tested up to: 3.0.1
7
- Stable tag: 3.0.5
8
 
9
  Manage events and display them in your blog. Includes recurring events, location management, calendar, Google map integration, RSVP.
10
 
@@ -109,6 +109,11 @@ At this stage, Events Manager is only available in English and Italian. Yet, the
109
  3. The Events Manager Options page.
110
 
111
  == Change Log ==
 
 
 
 
 
112
 
113
  = 3.0.5 =
114
  * Fixed 12pm bug
4
  Tags: events, manager, calendar, gigs, concert, maps, geotagging, rsvp
5
  Requires at least: 2.9
6
  Tested up to: 3.0.1
7
+ Stable tag: 3.0.6
8
 
9
  Manage events and display them in your blog. Includes recurring events, location management, calendar, Google map integration, RSVP.
10
 
109
  3. The Events Manager Options page.
110
 
111
  == Change Log ==
112
+ = 3.0.6 =
113
+ * Added revised German translation
114
+ * Fixed ordering issue
115
+ * Fixed old template tag attributes not being read
116
+ * Changed map ballon wrapper id to class
117
 
118
  = 3.0.5 =
119
  * Fixed 12pm bug
template-tags-depreciated.php CHANGED
@@ -21,7 +21,7 @@ function dbem_get_events_list($limit = "10", $scope = "future", $order = "ASC",
21
  // allows the use of arguments without breaking the legacy code
22
  $defaults = EM_Events::get_default_search();
23
  $r = wp_parse_args ( $limit, $defaults );
24
- extract ( $r, EXTR_SKIP );
25
  }
26
  $return = EM_Events::output(array('limit'=>$limit, 'scope'=>$scope, 'order'=>$order, 'format'=>$format, 'category'=>$category));
27
  if( $echo ) echo $return;
@@ -40,10 +40,7 @@ function dbem_get_events_page($justurl = 0, $echo = 1, $text = '') {
40
  // allows the use of arguments without breaking the legacy code
41
  $defaults = array ('justurl' => 0, 'text' => '', 'echo' => 1 );
42
  $r = wp_parse_args ( $justurl, $defaults );
43
- extract ( $r, EXTR_SKIP );
44
- $justurl = $r ['justurl'];
45
- $text = $r ['text'];
46
- $echo = $r ['echo'];
47
  }
48
 
49
  $page_link = get_permalink ( get_option ( "dbem_events_page" ) );
@@ -93,7 +90,7 @@ function dbem_rss_link($justurl = 0, $echo = 1, $text = "RSS") {
93
  $defaults = array ('justurl' => 0, 'echo' => 1, 'text' => 'RSS' );
94
 
95
  $r = wp_parse_args ( $justurl, $defaults );
96
- extract ( $r, EXTR_SKIP );
97
  $justurl = $r ['justurl'];
98
  $echo = $r ['echo'];
99
  $text = $r ['text'];
21
  // allows the use of arguments without breaking the legacy code
22
  $defaults = EM_Events::get_default_search();
23
  $r = wp_parse_args ( $limit, $defaults );
24
+ extract ( $r, EXTR_OVERWRITE );
25
  }
26
  $return = EM_Events::output(array('limit'=>$limit, 'scope'=>$scope, 'order'=>$order, 'format'=>$format, 'category'=>$category));
27
  if( $echo ) echo $return;
40
  // allows the use of arguments without breaking the legacy code
41
  $defaults = array ('justurl' => 0, 'text' => '', 'echo' => 1 );
42
  $r = wp_parse_args ( $justurl, $defaults );
43
+ extract ( $r, EXTR_OVERWRITE );
 
 
 
44
  }
45
 
46
  $page_link = get_permalink ( get_option ( "dbem_events_page" ) );
90
  $defaults = array ('justurl' => 0, 'echo' => 1, 'text' => 'RSS' );
91
 
92
  $r = wp_parse_args ( $justurl, $defaults );
93
+ extract ( $r, EXTR_OVERWRITE );
94
  $justurl = $r ['justurl'];
95
  $echo = $r ['echo'];
96
  $text = $r ['text'];