Merge lp:~yoboy-leguesh/ubuntu-party/eventplugin into lp:ubuntu-party

Proposed by YoBoY
Status: Merged
Approved by: YoBoY
Approved revision: 7
Merge reported by: YoBoY
Merged at revision: not available
Proposed branch: lp:~yoboy-leguesh/ubuntu-party/eventplugin
Merge into: lp:ubuntu-party
Diff against target: 29776 lines (+29355/-25)
47 files modified
wp-content/plugins/the-events-calendar/events-calendar-widget.class.php (+60/-0)
wp-content/plugins/the-events-calendar/events-list-widget.class.php (+129/-0)
wp-content/plugins/the-events-calendar/lang/the-events-calendar-cs_CZ.po (+1620/-0)
wp-content/plugins/the-events-calendar/lang/the-events-calendar-da_DA.po (+1580/-0)
wp-content/plugins/the-events-calendar/lang/the-events-calendar-de_DE.po (+1709/-0)
wp-content/plugins/the-events-calendar/lang/the-events-calendar-en_US.po (+1579/-0)
wp-content/plugins/the-events-calendar/lang/the-events-calendar-es_ES.po (+1580/-0)
wp-content/plugins/the-events-calendar/lang/the-events-calendar-fr_FR.po (+1742/-0)
wp-content/plugins/the-events-calendar/lang/the-events-calendar-it_IT.po (+1515/-0)
wp-content/plugins/the-events-calendar/lang/the-events-calendar-nl_NL.po (+1586/-0)
wp-content/plugins/the-events-calendar/lang/the-events-calendar-pl_PL.po (+1577/-0)
wp-content/plugins/the-events-calendar/lang/the-events-calendar-pt_BR.po (+1615/-0)
wp-content/plugins/the-events-calendar/lang/the-events-calendar-ru_RU.po (+1723/-0)
wp-content/plugins/the-events-calendar/lang/the-events-calendar-sp_SP.po (+1618/-0)
wp-content/plugins/the-events-calendar/lang/the-events-calendar-sv_SE.po (+1617/-0)
wp-content/plugins/the-events-calendar/lang/the-events-calendar.pot (+1748/-0)
wp-content/plugins/the-events-calendar/readme.txt (+433/-0)
wp-content/plugins/the-events-calendar/resources/events.css (+271/-0)
wp-content/plugins/the-events-calendar/resources/events.js (+23/-0)
wp-content/plugins/the-events-calendar/template-tags.php (+789/-0)
wp-content/plugins/the-events-calendar/the-events-calendar-exception.class.php (+34/-0)
wp-content/plugins/the-events-calendar/the-events-calendar.class.php (+1351/-0)
wp-content/plugins/the-events-calendar/the-events-calendar.php (+42/-0)
wp-content/plugins/the-events-calendar/uninstall.php (+4/-0)
wp-content/plugins/the-events-calendar/views/datepicker.php (+23/-0)
wp-content/plugins/the-events-calendar/views/events-list-load-widget-admin.php (+71/-0)
wp-content/plugins/the-events-calendar/views/events-list-load-widget-display.php (+74/-0)
wp-content/plugins/the-events-calendar/views/events-meta-box.php (+566/-0)
wp-content/plugins/the-events-calendar/views/events-options.php (+361/-0)
wp-content/plugins/the-events-calendar/views/gridview.php (+41/-0)
wp-content/plugins/the-events-calendar/views/list.php (+120/-0)
wp-content/plugins/the-events-calendar/views/single.php (+64/-0)
wp-content/plugins/the-events-calendar/views/table.php (+148/-0)
wp-content/themes/ubuntu-party_light/events/datepicker.php (+23/-0)
wp-content/themes/ubuntu-party_light/events/events-list-load-widget-admin.php (+71/-0)
wp-content/themes/ubuntu-party_light/events/events-list-load-widget-display.php (+84/-0)
wp-content/themes/ubuntu-party_light/events/events-meta-box.php (+566/-0)
wp-content/themes/ubuntu-party_light/events/events-options.php (+361/-0)
wp-content/themes/ubuntu-party_light/events/gridview.php (+41/-0)
wp-content/themes/ubuntu-party_light/events/list.php (+166/-0)
wp-content/themes/ubuntu-party_light/events/single.php (+123/-0)
wp-content/themes/ubuntu-party_light/events/table.php (+148/-0)
wp-content/themes/ubuntu-party_light/header.php (+0/-10)
wp-content/themes/ubuntu-party_light/images/icons/up_calendar.svg (+93/-0)
wp-content/themes/ubuntu-party_light/index.php (+11/-4)
wp-content/themes/ubuntu-party_light/sidebar.php (+9/-7)
wp-content/themes/ubuntu-party_light/style.css (+246/-4)
To merge this branch: bzr merge lp:~yoboy-leguesh/ubuntu-party/eventplugin
Reviewer Review Type Date Requested Status
YoBoY Approve
Review via email: mp+48743@code.launchpad.net
To post a comment you must log in.
Revision history for this message
YoBoY (yoboy-leguesh) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added directory 'wp-content/plugins/the-events-calendar'
2=== added file 'wp-content/plugins/the-events-calendar/events-calendar-widget.class.php'
3--- wp-content/plugins/the-events-calendar/events-calendar-widget.class.php 1970-01-01 00:00:00 +0000
4+++ wp-content/plugins/the-events-calendar/events-calendar-widget.class.php 2011-02-07 00:09:58 +0000
5@@ -0,0 +1,60 @@
6+<?php
7+if( !class_exists( 'Events_Calendar_Widget') ) {
8+
9+ /**
10+ * Calendar widget class
11+ */
12+ class Events_Calendar_Widget extends WP_Widget {
13+
14+ public $pluginDomain = 'the-events-calendar';
15+
16+ function Events_Calendar_Widget() {
17+ $widget_ops = array('classname' => 'events_calendar_widget', 'description' => __( 'A calendar of your events') );
18+ $this->WP_Widget('calendar', __('Events Calendar'), $widget_ops);
19+ }
20+
21+ function widget( $args, $instance ) {
22+ extract($args);
23+ $title = apply_filters('widget_title', empty($instance['title']) ? '&nbsp;' : $instance['title']);
24+ echo $before_widget;
25+ if ( $title )
26+ echo $before_title . $title . $after_title;
27+ echo '<div id="calendar_wrap">';
28+ //echo get_calendar_custom(); /* 5 is the category id I have for event */
29+ echo '</div>';
30+ echo $after_widget;
31+ }
32+
33+ function update( $new_instance, $old_instance ) {
34+ $instance = $old_instance;
35+ $instance['title'] = strip_tags($new_instance['title']);
36+
37+ return $instance;
38+ }
39+
40+ function form( $instance ) {
41+ $instance = wp_parse_args( (array) $instance, array( 'title' => '' ) );
42+ $title = strip_tags($instance['title']);
43+ ?>
44+ <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:'); ?></label>
45+ <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></p>
46+ <?php
47+ }
48+
49+ }
50+
51+ /* Add function to the widgets_ hook. */
52+ // hook is commented out until development is finished, allows WP's default calendar widget to work
53+ //add_action( 'widgets_init', 'events_calendar_load_widgets' );
54+ //add_action( 'widgets_init', 'get_calendar_custom' );
55+
56+ //function get_calendar_custom(){echo "hi";}
57+
58+ /* Function that registers widget. */
59+ function events_calendar_load_widgets() {
60+ global $pluginDomain;
61+ register_widget( 'Events_Calendar_Widget' );
62+ // load text domain after class registration
63+ load_plugin_textdomain( $pluginDomain, false, basename(dirname(__FILE__)) . '/lang/');
64+ }
65+}
66\ No newline at end of file
67
68=== added file 'wp-content/plugins/the-events-calendar/events-list-widget.class.php'
69--- wp-content/plugins/the-events-calendar/events-list-widget.class.php 1970-01-01 00:00:00 +0000
70+++ wp-content/plugins/the-events-calendar/events-list-widget.class.php 2011-02-07 00:09:58 +0000
71@@ -0,0 +1,129 @@
72+<?php
73+if( !class_exists( 'Events_List_Widget' ) ) {
74+ /**
75+ * Event List Widget
76+ *
77+ * Creates a widget that displays the next upcoming x events
78+ */
79+
80+ class Events_List_Widget extends WP_Widget {
81+
82+ public $pluginDomain = 'the-events-calendar';
83+
84+ function Events_List_Widget() {
85+ /* Widget settings. */
86+ $widget_ops = array( 'classname' => 'eventsListWidget', 'description' => __( 'A widget that displays the next upcoming x events.', $this->pluginDomain) );
87+
88+ /* Widget control settings. */
89+ $control_ops = array( 'id_base' => 'events-list-widget' );
90+
91+ /* Create the widget. */
92+ $this->WP_Widget( 'events-list-widget', 'Events List Widget', $widget_ops, $control_ops );
93+ }
94+
95+ function widget( $args, $instance ) {
96+ global $wp_query;
97+ extract( $args );
98+
99+ /* User-selected settings. */
100+ $title = apply_filters('widget_title', $instance['title'] );
101+ $limit = $instance['limit'];
102+ $noUpcomingEvents = $instance['no_upcoming_events'];
103+ $start = $instance['start'];
104+ $startTime = $instance['start-time'];
105+ $end = $instance['end'];
106+ $endTime = $instance['end-time'];
107+ $venue = $instance['venue'];
108+ $address = $instance['address'];
109+ $city = $instance['city'];
110+ $state = $instance['state'];
111+ $province = $instance['province'];
112+ $zip = $instance['zip'];
113+ $country = $instance['country'];
114+ $phone = $instance['phone'];
115+ $cost = $instance['cost'];
116+
117+ if ( eventsGetOptionValue('viewOption') == 'upcoming') {
118+ $event_url = events_get_listview_link();
119+ } else {
120+ $event_url = events_get_gridview_link();
121+ }
122+
123+ if( function_exists( 'get_events' ) ) {
124+ $old_display = $wp_query->get('eventDisplay');
125+ $wp_query->set('eventDisplay', 'upcoming');
126+ $posts = get_events($limit, The_Events_Calendar::CATEGORYNAME);
127+ }
128+
129+ /* Before widget (defined by themes). */
130+ /* Title of widget (before and after defined by themes). */
131+ if ( $title && !$noUpcomingEvents ) echo $before_widget . $before_title . $title . $after_title;
132+
133+ if( $posts ) {
134+ /* Display list of events. */
135+ if( function_exists( 'get_events' ) ) {
136+ echo '<ul class="upcoming">';
137+ $templateOverride = locate_template( array( 'events/events-list-load-widget-display.php' ) );
138+ $templateLoc = $templateOverride ? $templateOverride : dirname( __FILE__ ) . '/views/events-list-load-widget-display.php';
139+ foreach( $posts as $post ) {
140+ setup_postdata($post);
141+ include( $templateLoc );
142+ }
143+ echo "</ul>";
144+
145+ $wp_query->set('eventDisplay', $old_display);
146+ }
147+
148+ /* Display link to all events */
149+ echo '<div class="dig-in"><a href="' . $event_url . '">' . __('View All Events', $this->pluginDomain ) . '</a></div>';
150+ } else if( !$noUpcomingEvents ) _e('There are no upcoming events at this time.', $this->pluginDomain);
151+
152+ /* After widget (defined by themes). */
153+ if ( !$noUpcomingEvents ) echo $after_widget;
154+ }
155+
156+ function update( $new_instance, $old_instance ) {
157+ $instance = $old_instance;
158+
159+ /* Strip tags (if needed) and update the widget settings. */
160+ $instance['title'] = strip_tags( $new_instance['title'] );
161+ $instance['limit'] = strip_tags( $new_instance['limit'] );
162+ $instance['no_upcoming_events'] = strip_tags( $new_instance['no_upcoming_events'] );
163+ $instance['start'] = strip_tags( $new_instance['start'] );
164+ if( $instance['start'] == 'on' ) $instance['start-time'] = strip_tags( $new_instance['start-time'] );
165+ else $instance['start-time'] = '';
166+ $instance['end'] = strip_tags( $new_instance['end'] );
167+ if( $instance['end'] == 'on' ) $instance['end-time'] = strip_tags( $new_instance['end-time'] );
168+ else $instance['end-time'] = '';
169+ $instance['venue'] = strip_tags( $new_instance['venue'] );
170+ $instance['country'] = strip_tags( $new_instance['country'] );
171+ $instance['address'] = strip_tags( $new_instance['address'] );
172+ $instance['city'] = strip_tags( $new_instance['city'] );
173+ $instance['state'] = strip_tags( $new_instance['state'] );
174+ $instance['province'] = strip_tags( $new_instance['province'] );
175+ $instance['zip'] = strip_tags( $new_instance['zip'] );
176+ $instance['phone'] = strip_tags( $new_instance['phone'] );
177+ $instance['cost'] = strip_tags( $new_instance['cost'] );
178+
179+ return $instance;
180+ }
181+
182+ function form( $instance ) {
183+ /* Set up default widget settings. */
184+ $defaults = array( 'title' => 'Upcoming Events', 'limit' => '5', 'start' => 'on', 'start-time' => '','end' => '', 'end-time' => '', 'venue' => '', 'country' => 'on', 'address' => '', 'city' => 'on', 'state' => 'on', 'province' => 'on', 'zip' => '', 'phone' => '', 'cost' => '');
185+ $instance = wp_parse_args( (array) $instance, $defaults );
186+ include( dirname( __FILE__ ) . '/views/events-list-load-widget-admin.php' );
187+ }
188+ }
189+
190+ /* Add function to the widgets_ hook. */
191+ add_action( 'widgets_init', 'events_list_load_widgets' );
192+
193+ /* Function that registers widget. */
194+ function events_list_load_widgets() {
195+ global $pluginDomain;
196+ register_widget( 'Events_List_Widget' );
197+ // load text domain after class registration
198+ load_plugin_textdomain( $pluginDomain, false, basename(dirname(__FILE__)) . '/lang/');
199+ }
200+}
201\ No newline at end of file
202
203=== added directory 'wp-content/plugins/the-events-calendar/lang'
204=== added file 'wp-content/plugins/the-events-calendar/lang/the-events-calendar-cs_CZ.mo'
205Binary files wp-content/plugins/the-events-calendar/lang/the-events-calendar-cs_CZ.mo 1970-01-01 00:00:00 +0000 and wp-content/plugins/the-events-calendar/lang/the-events-calendar-cs_CZ.mo 2011-02-07 00:09:58 +0000 differ
206=== added file 'wp-content/plugins/the-events-calendar/lang/the-events-calendar-cs_CZ.po'
207--- wp-content/plugins/the-events-calendar/lang/the-events-calendar-cs_CZ.po 1970-01-01 00:00:00 +0000
208+++ wp-content/plugins/the-events-calendar/lang/the-events-calendar-cs_CZ.po 2011-02-07 00:09:58 +0000
209@@ -0,0 +1,1620 @@
210+# Translation of the WordPress plugin The Events Calendar 1.5.4 by Shane & Peter, Inc..
211+# Copyright (C) 2010 Shane & Peter, Inc.
212+# This file is distributed under the same license as the The Events Calendar package.
213+# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
214+#
215+msgid ""
216+msgstr ""
217+"Project-Id-Version: The Events Calendar 1.5.4\n"
218+"Report-Msgid-Bugs-To: http://wordpress.org/tag/the-events-calendar\n"
219+"POT-Creation-Date: 2010-02-10 19:57+0000\n"
220+"PO-Revision-Date: 2010-02-12 17:43+0100\n"
221+"Last-Translator: globus2008 <globus@email.cz>\n"
222+"Language-Team: \n"
223+"MIME-Version: 1.0\n"
224+"Content-Type: text/plain; charset=UTF-8\n"
225+"Content-Transfer-Encoding: 8bit\n"
226+"X-Poedit-Language: Czech\n"
227+"X-Poedit-Country: CZECH REPUBLIC\n"
228+
229+#: the-events-calendar.php:54
230+msgid "United States"
231+msgstr "USA"
232+
233+#: the-events-calendar.php:55
234+msgid "Afghanistan"
235+msgstr "Afgánistán"
236+
237+#: the-events-calendar.php:56
238+msgid "Albania"
239+msgstr "Albánie"
240+
241+#: the-events-calendar.php:57
242+msgid "Algeria"
243+msgstr ""
244+
245+#: the-events-calendar.php:58
246+msgid "American Samoa"
247+msgstr ""
248+
249+#: the-events-calendar.php:59
250+msgid "Andorra"
251+msgstr ""
252+
253+#: the-events-calendar.php:60
254+msgid "Angola"
255+msgstr ""
256+
257+#: the-events-calendar.php:61
258+msgid "Anguilla"
259+msgstr ""
260+
261+#: the-events-calendar.php:62
262+msgid "Antarctica"
263+msgstr ""
264+
265+#: the-events-calendar.php:63
266+msgid "Antigua And Barbuda"
267+msgstr ""
268+
269+#: the-events-calendar.php:64
270+msgid "Argentina"
271+msgstr ""
272+
273+#: the-events-calendar.php:65
274+msgid "Armenia"
275+msgstr ""
276+
277+#: the-events-calendar.php:66
278+msgid "Aruba"
279+msgstr ""
280+
281+#: the-events-calendar.php:67
282+msgid "Australia"
283+msgstr ""
284+
285+#: the-events-calendar.php:68
286+msgid "Austria"
287+msgstr ""
288+
289+#: the-events-calendar.php:69
290+msgid "Azerbaijan"
291+msgstr ""
292+
293+#: the-events-calendar.php:70
294+msgid "Bahamas"
295+msgstr ""
296+
297+#: the-events-calendar.php:71
298+msgid "Bahrain"
299+msgstr ""
300+
301+#: the-events-calendar.php:72
302+msgid "Bangladesh"
303+msgstr ""
304+
305+#: the-events-calendar.php:73
306+msgid "Barbados"
307+msgstr ""
308+
309+#: the-events-calendar.php:74
310+msgid "Belarus"
311+msgstr ""
312+
313+#: the-events-calendar.php:75
314+msgid "Belgium"
315+msgstr ""
316+
317+#: the-events-calendar.php:76
318+msgid "Belize"
319+msgstr ""
320+
321+#: the-events-calendar.php:77
322+msgid "Benin"
323+msgstr ""
324+
325+#: the-events-calendar.php:78
326+msgid "Bermuda"
327+msgstr ""
328+
329+#: the-events-calendar.php:79
330+msgid "Bhutan"
331+msgstr ""
332+
333+#: the-events-calendar.php:80
334+msgid "Bolivia"
335+msgstr ""
336+
337+#: the-events-calendar.php:81
338+msgid "Bosnia And Herzegowina"
339+msgstr ""
340+
341+#: the-events-calendar.php:82
342+msgid "Botswana"
343+msgstr ""
344+
345+#: the-events-calendar.php:83
346+msgid "Bouvet Island"
347+msgstr ""
348+
349+#: the-events-calendar.php:84
350+msgid "Brazil"
351+msgstr ""
352+
353+#: the-events-calendar.php:85
354+msgid "British Indian Ocean Territory"
355+msgstr ""
356+
357+#: the-events-calendar.php:86
358+msgid "Brunei Darussalam"
359+msgstr ""
360+
361+#: the-events-calendar.php:87
362+msgid "Bulgaria"
363+msgstr ""
364+
365+#: the-events-calendar.php:88
366+msgid "Burkina Faso"
367+msgstr ""
368+
369+#: the-events-calendar.php:89
370+msgid "Burundi"
371+msgstr ""
372+
373+#: the-events-calendar.php:90
374+msgid "Cambodia"
375+msgstr ""
376+
377+#: the-events-calendar.php:91
378+msgid "Cameroon"
379+msgstr ""
380+
381+#: the-events-calendar.php:92
382+msgid "Canada"
383+msgstr ""
384+
385+#: the-events-calendar.php:93
386+msgid "Cape Verde"
387+msgstr ""
388+
389+#: the-events-calendar.php:94
390+msgid "Cayman Islands"
391+msgstr ""
392+
393+#: the-events-calendar.php:95
394+msgid "Central African Republic"
395+msgstr ""
396+
397+#: the-events-calendar.php:96
398+msgid "Chad"
399+msgstr ""
400+
401+#: the-events-calendar.php:97
402+msgid "Chile"
403+msgstr ""
404+
405+#: the-events-calendar.php:98
406+msgid "China"
407+msgstr ""
408+
409+#: the-events-calendar.php:99
410+msgid "Christmas Island"
411+msgstr ""
412+
413+#: the-events-calendar.php:100
414+msgid "Cocos (Keeling) Islands"
415+msgstr ""
416+
417+#: the-events-calendar.php:101
418+msgid "Colombia"
419+msgstr ""
420+
421+#: the-events-calendar.php:102
422+msgid "Comoros"
423+msgstr ""
424+
425+#: the-events-calendar.php:103
426+msgid "Congo"
427+msgstr ""
428+
429+#: the-events-calendar.php:104
430+msgid "Congo, The Democratic Republic Of The"
431+msgstr ""
432+
433+#: the-events-calendar.php:105
434+msgid "Cook Islands"
435+msgstr ""
436+
437+#: the-events-calendar.php:106
438+msgid "Costa Rica"
439+msgstr ""
440+
441+#: the-events-calendar.php:107
442+msgid "Cote D'Ivoire"
443+msgstr ""
444+
445+#: the-events-calendar.php:108
446+msgid "Croatia (Local Name: Hrvatska)"
447+msgstr ""
448+
449+#: the-events-calendar.php:109
450+msgid "Cuba"
451+msgstr ""
452+
453+#: the-events-calendar.php:110
454+msgid "Cyprus"
455+msgstr ""
456+
457+#: the-events-calendar.php:111
458+msgid "Czech Republic"
459+msgstr "Česká republika"
460+
461+#: the-events-calendar.php:112
462+msgid "Denmark"
463+msgstr ""
464+
465+#: the-events-calendar.php:113
466+msgid "Djibouti"
467+msgstr ""
468+
469+#: the-events-calendar.php:114
470+msgid "Dominica"
471+msgstr ""
472+
473+#: the-events-calendar.php:115
474+msgid "Dominican Republic"
475+msgstr ""
476+
477+#: the-events-calendar.php:116
478+msgid "East Timor"
479+msgstr ""
480+
481+#: the-events-calendar.php:117
482+msgid "Ecuador"
483+msgstr ""
484+
485+#: the-events-calendar.php:118
486+msgid "Egypt"
487+msgstr ""
488+
489+#: the-events-calendar.php:119
490+msgid "El Salvador"
491+msgstr ""
492+
493+#: the-events-calendar.php:120
494+msgid "Equatorial Guinea"
495+msgstr ""
496+
497+#: the-events-calendar.php:121
498+msgid "Eritrea"
499+msgstr ""
500+
501+#: the-events-calendar.php:122
502+msgid "Estonia"
503+msgstr ""
504+
505+#: the-events-calendar.php:123
506+msgid "Ethiopia"
507+msgstr ""
508+
509+#: the-events-calendar.php:124
510+msgid "Falkland Islands (Malvinas)"
511+msgstr ""
512+
513+#: the-events-calendar.php:125
514+msgid "Faroe Islands"
515+msgstr ""
516+
517+#: the-events-calendar.php:126
518+msgid "Fiji"
519+msgstr ""
520+
521+#: the-events-calendar.php:127
522+msgid "Finland"
523+msgstr ""
524+
525+#: the-events-calendar.php:128
526+msgid "France"
527+msgstr ""
528+
529+#: the-events-calendar.php:129
530+msgid "France, Metropolitan"
531+msgstr ""
532+
533+#: the-events-calendar.php:130
534+msgid "French Guiana"
535+msgstr ""
536+
537+#: the-events-calendar.php:131
538+msgid "French Polynesia"
539+msgstr ""
540+
541+#: the-events-calendar.php:132
542+msgid "French Southern Territories"
543+msgstr ""
544+
545+#: the-events-calendar.php:133
546+msgid "Gabon"
547+msgstr ""
548+
549+#: the-events-calendar.php:134
550+msgid "Gambia"
551+msgstr ""
552+
553+#: the-events-calendar.php:135
554+#: views/events-meta-box.php:282
555+msgid "Georgia"
556+msgstr ""
557+
558+#: the-events-calendar.php:136
559+msgid "Germany"
560+msgstr ""
561+
562+#: the-events-calendar.php:137
563+msgid "Ghana"
564+msgstr ""
565+
566+#: the-events-calendar.php:138
567+msgid "Gibraltar"
568+msgstr ""
569+
570+#: the-events-calendar.php:139
571+msgid "Greece"
572+msgstr ""
573+
574+#: the-events-calendar.php:140
575+msgid "Greenland"
576+msgstr ""
577+
578+#: the-events-calendar.php:141
579+msgid "Grenada"
580+msgstr ""
581+
582+#: the-events-calendar.php:142
583+msgid "Guadeloupe"
584+msgstr ""
585+
586+#: the-events-calendar.php:143
587+msgid "Guam"
588+msgstr ""
589+
590+#: the-events-calendar.php:144
591+msgid "Guatemala"
592+msgstr ""
593+
594+#: the-events-calendar.php:145
595+msgid "Guinea"
596+msgstr ""
597+
598+#: the-events-calendar.php:146
599+msgid "Guinea-Bissau"
600+msgstr ""
601+
602+#: the-events-calendar.php:147
603+msgid "Guyana"
604+msgstr ""
605+
606+#: the-events-calendar.php:148
607+msgid "Haiti"
608+msgstr ""
609+
610+#: the-events-calendar.php:149
611+msgid "Heard And Mc Donald Islands"
612+msgstr ""
613+
614+#: the-events-calendar.php:150
615+msgid "Holy See (Vatican City State)"
616+msgstr ""
617+
618+#: the-events-calendar.php:151
619+msgid "Honduras"
620+msgstr ""
621+
622+#: the-events-calendar.php:152
623+msgid "Hong Kong"
624+msgstr ""
625+
626+#: the-events-calendar.php:153
627+msgid "Hungary"
628+msgstr ""
629+
630+#: the-events-calendar.php:154
631+msgid "Iceland"
632+msgstr ""
633+
634+#: the-events-calendar.php:155
635+msgid "India"
636+msgstr ""
637+
638+#: the-events-calendar.php:156
639+msgid "Indonesia"
640+msgstr ""
641+
642+#: the-events-calendar.php:157
643+msgid "Iran (Islamic Republic Of)"
644+msgstr ""
645+
646+#: the-events-calendar.php:158
647+msgid "Iraq"
648+msgstr ""
649+
650+#: the-events-calendar.php:159
651+msgid "Ireland"
652+msgstr ""
653+
654+#: the-events-calendar.php:160
655+msgid "Israel"
656+msgstr ""
657+
658+#: the-events-calendar.php:161
659+msgid "Italy"
660+msgstr ""
661+
662+#: the-events-calendar.php:162
663+msgid "Jamaica"
664+msgstr ""
665+
666+#: the-events-calendar.php:163
667+msgid "Japan"
668+msgstr ""
669+
670+#: the-events-calendar.php:164
671+msgid "Jordan"
672+msgstr ""
673+
674+#: the-events-calendar.php:165
675+msgid "Kazakhstan"
676+msgstr ""
677+
678+#: the-events-calendar.php:166
679+msgid "Kenya"
680+msgstr ""
681+
682+#: the-events-calendar.php:167
683+msgid "Kiribati"
684+msgstr ""
685+
686+#: the-events-calendar.php:168
687+msgid "Korea, Democratic People's Republic Of"
688+msgstr ""
689+
690+#: the-events-calendar.php:169
691+msgid "Korea, Republic Of"
692+msgstr ""
693+
694+#: the-events-calendar.php:170
695+msgid "Kuwait"
696+msgstr ""
697+
698+#: the-events-calendar.php:171
699+msgid "Kyrgyzstan"
700+msgstr ""
701+
702+#: the-events-calendar.php:172
703+msgid "Lao People's Democratic Republic"
704+msgstr ""
705+
706+#: the-events-calendar.php:173
707+msgid "Latvia"
708+msgstr ""
709+
710+#: the-events-calendar.php:174
711+msgid "Lebanon"
712+msgstr ""
713+
714+#: the-events-calendar.php:175
715+msgid "Lesotho"
716+msgstr ""
717+
718+#: the-events-calendar.php:176
719+msgid "Liberia"
720+msgstr ""
721+
722+#: the-events-calendar.php:177
723+msgid "Libyan Arab Jamahiriya"
724+msgstr ""
725+
726+#: the-events-calendar.php:178
727+msgid "Liechtenstein"
728+msgstr ""
729+
730+#: the-events-calendar.php:179
731+msgid "Lithuania"
732+msgstr ""
733+
734+#: the-events-calendar.php:180
735+msgid "Luxembourg"
736+msgstr ""
737+
738+#: the-events-calendar.php:181
739+msgid "Macau"
740+msgstr ""
741+
742+#: the-events-calendar.php:182
743+msgid "Macedonia, Former Yugoslav Republic Of"
744+msgstr ""
745+
746+#: the-events-calendar.php:183
747+msgid "Madagascar"
748+msgstr ""
749+
750+#: the-events-calendar.php:184
751+msgid "Malawi"
752+msgstr ""
753+
754+#: the-events-calendar.php:185
755+msgid "Malaysia"
756+msgstr ""
757+
758+#: the-events-calendar.php:186
759+msgid "Maldives"
760+msgstr ""
761+
762+#: the-events-calendar.php:187
763+msgid "Mali"
764+msgstr ""
765+
766+#: the-events-calendar.php:188
767+msgid "Malta"
768+msgstr ""
769+
770+#: the-events-calendar.php:189
771+msgid "Marshall Islands"
772+msgstr ""
773+
774+#: the-events-calendar.php:190
775+msgid "Martinique"
776+msgstr ""
777+
778+#: the-events-calendar.php:191
779+msgid "Mauritania"
780+msgstr ""
781+
782+#: the-events-calendar.php:192
783+msgid "Mauritius"
784+msgstr ""
785+
786+#: the-events-calendar.php:193
787+msgid "Mayotte"
788+msgstr ""
789+
790+#: the-events-calendar.php:194
791+msgid "Mexico"
792+msgstr ""
793+
794+#: the-events-calendar.php:195
795+msgid "Micronesia, Federated States Of"
796+msgstr ""
797+
798+#: the-events-calendar.php:196
799+msgid "Moldova, Republic Of"
800+msgstr ""
801+
802+#: the-events-calendar.php:197
803+msgid "Monaco"
804+msgstr ""
805+
806+#: the-events-calendar.php:198
807+msgid "Mongolia"
808+msgstr ""
809+
810+#: the-events-calendar.php:199
811+msgid "Montserrat"
812+msgstr ""
813+
814+#: the-events-calendar.php:200
815+msgid "Morocco"
816+msgstr ""
817+
818+#: the-events-calendar.php:201
819+msgid "Mozambique"
820+msgstr ""
821+
822+#: the-events-calendar.php:202
823+msgid "Myanmar"
824+msgstr ""
825+
826+#: the-events-calendar.php:203
827+msgid "Namibia"
828+msgstr ""
829+
830+#: the-events-calendar.php:204
831+msgid "Nauru"
832+msgstr ""
833+
834+#: the-events-calendar.php:205
835+msgid "Nepal"
836+msgstr ""
837+
838+#: the-events-calendar.php:206
839+msgid "Netherlands"
840+msgstr ""
841+
842+#: the-events-calendar.php:207
843+msgid "Netherlands Antilles"
844+msgstr ""
845+
846+#: the-events-calendar.php:208
847+msgid "New Caledonia"
848+msgstr ""
849+
850+#: the-events-calendar.php:209
851+msgid "New Zealand"
852+msgstr ""
853+
854+#: the-events-calendar.php:210
855+msgid "Nicaragua"
856+msgstr ""
857+
858+#: the-events-calendar.php:211
859+msgid "Niger"
860+msgstr ""
861+
862+#: the-events-calendar.php:212
863+msgid "Nigeria"
864+msgstr ""
865+
866+#: the-events-calendar.php:213
867+msgid "Niue"
868+msgstr ""
869+
870+#: the-events-calendar.php:214
871+msgid "Norfolk Island"
872+msgstr ""
873+
874+#: the-events-calendar.php:215
875+msgid "Northern Mariana Islands"
876+msgstr ""
877+
878+#: the-events-calendar.php:216
879+msgid "Norway"
880+msgstr ""
881+
882+#: the-events-calendar.php:217
883+msgid "Oman"
884+msgstr ""
885+
886+#: the-events-calendar.php:218
887+msgid "Pakistan"
888+msgstr ""
889+
890+#: the-events-calendar.php:219
891+msgid "Palau"
892+msgstr ""
893+
894+#: the-events-calendar.php:220
895+msgid "Panama"
896+msgstr ""
897+
898+#: the-events-calendar.php:221
899+msgid "Papua New Guinea"
900+msgstr ""
901+
902+#: the-events-calendar.php:222
903+msgid "Paraguay"
904+msgstr ""
905+
906+#: the-events-calendar.php:223
907+msgid "Peru"
908+msgstr ""
909+
910+#: the-events-calendar.php:224
911+msgid "Philippines"
912+msgstr ""
913+
914+#: the-events-calendar.php:225
915+msgid "Pitcairn"
916+msgstr ""
917+
918+#: the-events-calendar.php:226
919+msgid "Poland"
920+msgstr ""
921+
922+#: the-events-calendar.php:227
923+msgid "Portugal"
924+msgstr ""
925+
926+#: the-events-calendar.php:228
927+msgid "Puerto Rico"
928+msgstr ""
929+
930+#: the-events-calendar.php:229
931+msgid "Qatar"
932+msgstr ""
933+
934+#: the-events-calendar.php:230
935+msgid "Reunion"
936+msgstr ""
937+
938+#: the-events-calendar.php:231
939+msgid "Romania"
940+msgstr ""
941+
942+#: the-events-calendar.php:232
943+msgid "Russian Federation"
944+msgstr ""
945+
946+#: the-events-calendar.php:233
947+msgid "Rwanda"
948+msgstr ""
949+
950+#: the-events-calendar.php:234
951+msgid "Saint Kitts And Nevis"
952+msgstr ""
953+
954+#: the-events-calendar.php:235
955+msgid "Saint Lucia"
956+msgstr ""
957+
958+#: the-events-calendar.php:236
959+msgid "Saint Vincent And The Grenadines"
960+msgstr ""
961+
962+#: the-events-calendar.php:237
963+msgid "Samoa"
964+msgstr ""
965+
966+#: the-events-calendar.php:238
967+msgid "San Marino"
968+msgstr ""
969+
970+#: the-events-calendar.php:239
971+msgid "Sao Tome And Principe"
972+msgstr ""
973+
974+#: the-events-calendar.php:240
975+msgid "Saudi Arabia"
976+msgstr ""
977+
978+#: the-events-calendar.php:241
979+msgid "Senegal"
980+msgstr ""
981+
982+#: the-events-calendar.php:242
983+msgid "Seychelles"
984+msgstr ""
985+
986+#: the-events-calendar.php:243
987+msgid "Sierra Leone"
988+msgstr ""
989+
990+#: the-events-calendar.php:244
991+msgid "Singapore"
992+msgstr ""
993+
994+#: the-events-calendar.php:245
995+msgid "Slovakia (Slovak Republic)"
996+msgstr ""
997+
998+#: the-events-calendar.php:246
999+msgid "Slovenia"
1000+msgstr ""
1001+
1002+#: the-events-calendar.php:247
1003+msgid "Solomon Islands"
1004+msgstr ""
1005+
1006+#: the-events-calendar.php:248
1007+msgid "Somalia"
1008+msgstr ""
1009+
1010+#: the-events-calendar.php:249
1011+msgid "South Africa"
1012+msgstr ""
1013+
1014+#: the-events-calendar.php:250
1015+msgid "South Georgia, South Sandwich Islands"
1016+msgstr ""
1017+
1018+#: the-events-calendar.php:251
1019+msgid "Spain"
1020+msgstr ""
1021+
1022+#: the-events-calendar.php:252
1023+msgid "Sri Lanka"
1024+msgstr ""
1025+
1026+#: the-events-calendar.php:253
1027+msgid "St. Helena"
1028+msgstr ""
1029+
1030+#: the-events-calendar.php:254
1031+msgid "St. Pierre And Miquelon"
1032+msgstr ""
1033+
1034+#: the-events-calendar.php:255
1035+msgid "Sudan"
1036+msgstr ""
1037+
1038+#: the-events-calendar.php:256
1039+msgid "Suriname"
1040+msgstr ""
1041+
1042+#: the-events-calendar.php:257
1043+msgid "Svalbard And Jan Mayen Islands"
1044+msgstr ""
1045+
1046+#: the-events-calendar.php:258
1047+msgid "Swaziland"
1048+msgstr ""
1049+
1050+#: the-events-calendar.php:259
1051+msgid "Sweden"
1052+msgstr ""
1053+
1054+#: the-events-calendar.php:260
1055+msgid "Switzerland"
1056+msgstr ""
1057+
1058+#: the-events-calendar.php:261
1059+msgid "Syrian Arab Republic"
1060+msgstr ""
1061+
1062+#: the-events-calendar.php:262
1063+msgid "Taiwan"
1064+msgstr "Taiwan"
1065+
1066+#: the-events-calendar.php:263
1067+msgid "Tajikistan"
1068+msgstr "Tajikistan"
1069+
1070+#: the-events-calendar.php:264
1071+msgid "Tanzania, United Republic Of"
1072+msgstr "Tanzania, United Republic Of"
1073+
1074+#: the-events-calendar.php:265
1075+msgid "Thailand"
1076+msgstr "Thailand"
1077+
1078+#: the-events-calendar.php:266
1079+msgid "Togo"
1080+msgstr "Togo"
1081+
1082+#: the-events-calendar.php:267
1083+msgid "Tokelau"
1084+msgstr "Tokelau"
1085+
1086+#: the-events-calendar.php:268
1087+msgid "Tonga"
1088+msgstr "Tonga"
1089+
1090+#: the-events-calendar.php:269
1091+msgid "Trinidad And Tobago"
1092+msgstr "Trinidad And Tobago"
1093+
1094+#: the-events-calendar.php:270
1095+msgid "Tunisia"
1096+msgstr "Tunisia"
1097+
1098+#: the-events-calendar.php:271
1099+msgid "Turkey"
1100+msgstr "Turkey"
1101+
1102+#: the-events-calendar.php:272
1103+msgid "Turkmenistan"
1104+msgstr "Turkmenistan"
1105+
1106+#: the-events-calendar.php:273
1107+msgid "Turks And Caicos Islands"
1108+msgstr "Turks And Caicos Islands"
1109+
1110+#: the-events-calendar.php:274
1111+msgid "Tuvalu"
1112+msgstr "Tuvalu"
1113+
1114+#: the-events-calendar.php:275
1115+msgid "Uganda"
1116+msgstr "Uganda"
1117+
1118+#: the-events-calendar.php:276
1119+msgid "Ukraine"
1120+msgstr "Ukraine"
1121+
1122+#: the-events-calendar.php:277
1123+msgid "United Arab Emirates"
1124+msgstr "United Arab Emirates"
1125+
1126+#: the-events-calendar.php:278
1127+msgid "United Kingdom"
1128+msgstr "United Kingdom"
1129+
1130+#: the-events-calendar.php:279
1131+msgid "United States Minor Outlying Islands"
1132+msgstr "United States Minor Outlying Islands"
1133+
1134+#: the-events-calendar.php:280
1135+msgid "Uruguay"
1136+msgstr "Uruguay"
1137+
1138+#: the-events-calendar.php:281
1139+msgid "Uzbekistan"
1140+msgstr "Uzbekistan"
1141+
1142+#: the-events-calendar.php:282
1143+msgid "Vanuatu"
1144+msgstr "Vanuatu"
1145+
1146+#: the-events-calendar.php:283
1147+msgid "Venezuela"
1148+msgstr "Venezuela"
1149+
1150+#: the-events-calendar.php:284
1151+msgid "Viet Nam"
1152+msgstr "Viet Nam"
1153+
1154+#: the-events-calendar.php:285
1155+msgid "Virgin Islands (British)"
1156+msgstr "Virgin Islands (British)"
1157+
1158+#: the-events-calendar.php:286
1159+msgid "Virgin Islands (U.S.)"
1160+msgstr "Virgin Islands (U.S.)"
1161+
1162+#: the-events-calendar.php:287
1163+msgid "Wallis And Futuna Islands"
1164+msgstr "Wallis And Futuna Islands"
1165+
1166+#: the-events-calendar.php:288
1167+msgid "Western Sahara"
1168+msgstr "Western Sahara"
1169+
1170+#: the-events-calendar.php:289
1171+msgid "Yemen"
1172+msgstr "Yemen"
1173+
1174+#: the-events-calendar.php:290
1175+msgid "Yugoslavia"
1176+msgstr "Yugoslavia"
1177+
1178+#: the-events-calendar.php:291
1179+msgid "Zambia"
1180+msgstr "Zambia"
1181+
1182+#: the-events-calendar.php:292
1183+msgid "Zimbabwe"
1184+msgstr "Zimbabwe"
1185+
1186+#: the-events-calendar.php:494
1187+msgid "January"
1188+msgstr "Leden"
1189+
1190+#: the-events-calendar.php:495
1191+msgid "February"
1192+msgstr "Únor"
1193+
1194+#: the-events-calendar.php:496
1195+msgid "March"
1196+msgstr "Březen"
1197+
1198+#: the-events-calendar.php:497
1199+msgid "April"
1200+msgstr "Duben"
1201+
1202+#: the-events-calendar.php:498
1203+msgid "May"
1204+msgstr "Květen"
1205+
1206+#: the-events-calendar.php:499
1207+msgid "June"
1208+msgstr "Červen"
1209+
1210+#: the-events-calendar.php:500
1211+msgid "July"
1212+msgstr "červenec"
1213+
1214+#: the-events-calendar.php:501
1215+msgid "August"
1216+msgstr "Srpen"
1217+
1218+#: the-events-calendar.php:502
1219+msgid "September"
1220+msgstr "Září"
1221+
1222+#: the-events-calendar.php:503
1223+msgid "October"
1224+msgstr "Říjen"
1225+
1226+#: the-events-calendar.php:504
1227+msgid "November"
1228+msgstr "Listopad"
1229+
1230+#: the-events-calendar.php:505
1231+msgid "December"
1232+msgstr "Prosinec"
1233+
1234+#. #-#-#-#-# plugin.pot (The Events Calendar 1.5.4) #-#-#-#-#
1235+#. Plugin Name of an extension
1236+#: the-events-calendar.php:937
1237+msgid "The Events Calendar"
1238+msgstr "Kalendář událostí"
1239+
1240+#: the-events-calendar.php:1916
1241+msgid "A widget that displays the next upcoming x events."
1242+msgstr "Widget, který zobrazuje x nadcházejících událostí"
1243+
1244+#: the-events-calendar.php:1958
1245+msgid "View All Events"
1246+msgstr "Zobrazit všechny události"
1247+
1248+#: the-events-calendar.php:2039
1249+msgid "A calendar of your events"
1250+msgstr "Kalendář Vašich událostí"
1251+
1252+#: the-events-calendar.php:2040
1253+msgid "Events Calendar"
1254+msgstr "Kalendář událostí"
1255+
1256+#: the-events-calendar.php:2066
1257+#: views/events-list-load-widget-admin.php:2
1258+msgid "Title:"
1259+msgstr "Titulek:"
1260+
1261+#: views/events-list-load-widget-admin.php:7
1262+msgid "Show:"
1263+msgstr "Ukázat:"
1264+
1265+#: views/events-list-load-widget-admin.php:16
1266+msgid "Display:"
1267+msgstr "Zobrazit:"
1268+
1269+#: views/events-list-load-widget-admin.php:19
1270+msgid "Start Date & Time"
1271+msgstr "Začátek Datum & Čas"
1272+
1273+#: views/events-list-load-widget-admin.php:20
1274+msgid "End Date & Time"
1275+msgstr "Konec Datum & Čas"
1276+
1277+#: views/events-list-load-widget-admin.php:21
1278+msgid "Venue"
1279+msgstr "Místo"
1280+
1281+#: views/events-list-load-widget-admin.php:22
1282+msgid "Address"
1283+msgstr "Adresa"
1284+
1285+#: views/events-list-load-widget-admin.php:23
1286+msgid "City"
1287+msgstr "Město"
1288+
1289+#: views/events-list-load-widget-admin.php:24
1290+msgid "State (US)"
1291+msgstr "Stát (USA)"
1292+
1293+#: views/events-list-load-widget-admin.php:25
1294+msgid "Province (Int)"
1295+msgstr "Provincie"
1296+
1297+#: views/events-list-load-widget-admin.php:26
1298+msgid "Postal Code"
1299+msgstr "PSČ"
1300+
1301+#: views/events-list-load-widget-admin.php:27
1302+msgid "Country"
1303+msgstr "Země"
1304+
1305+#: views/events-list-load-widget-admin.php:28
1306+msgid "Phone"
1307+msgstr "Telefon"
1308+
1309+#: views/events-list-load-widget-admin.php:29
1310+msgid "Price"
1311+msgstr "Cena"
1312+
1313+#: views/events-list-load-widget-display.php:48
1314+msgid "More Info"
1315+msgstr "Více informací"
1316+
1317+#: views/events-meta-box.php:153
1318+msgid "Is this post an event?"
1319+msgstr "Je tento příspěvek událostí?"
1320+
1321+#: views/events-meta-box.php:154
1322+#: views/events-options.php:157
1323+msgid "Yes"
1324+msgstr "Ano"
1325+
1326+#: views/events-meta-box.php:155
1327+#: views/events-options.php:161
1328+msgid "No"
1329+msgstr "Ne"
1330+
1331+#: views/events-meta-box.php:162
1332+msgid "Event Time &amp; Date"
1333+msgstr "Čas události &amp; Date"
1334+
1335+#: views/events-meta-box.php:165
1336+msgid "All day event?"
1337+msgstr "Celodenní událost?"
1338+
1339+#: views/events-meta-box.php:169
1340+msgid "Start Date / Time:"
1341+msgstr "Začátek Datum / Čas:"
1342+
1343+#: views/events-meta-box.php:183
1344+#: views/events-meta-box.php:213
1345+msgid "@"
1346+msgstr "@"
1347+
1348+#: views/events-meta-box.php:199
1349+msgid "End Date / Time:"
1350+msgstr "Konec Datum / Čas"
1351+
1352+#: views/events-meta-box.php:229
1353+msgid "Event Location Details"
1354+msgstr "Detaily o místě události"
1355+
1356+#: views/events-meta-box.php:232
1357+#: views/list.php:45
1358+#: views/single.php:26
1359+msgid "Venue:"
1360+msgstr "Místo:"
1361+
1362+#: views/events-meta-box.php:238
1363+msgid "Country:"
1364+msgstr "Země:"
1365+
1366+#: views/events-meta-box.php:255
1367+#: views/list.php:63
1368+#: views/single.php:30
1369+msgid "Address:"
1370+msgstr "Adresa:"
1371+
1372+#: views/events-meta-box.php:259
1373+msgid "City:"
1374+msgstr "Město:"
1375+
1376+#: views/events-meta-box.php:263
1377+msgid "Province:"
1378+msgstr "Provincie:"
1379+
1380+#: views/events-meta-box.php:267
1381+msgid "State:"
1382+msgstr "Stát:"
1383+
1384+#: views/events-meta-box.php:270
1385+msgid "Select a State:"
1386+msgstr "Vyberte stát:"
1387+
1388+#: views/events-meta-box.php:272
1389+msgid "Alabama"
1390+msgstr "Alabama"
1391+
1392+#: views/events-meta-box.php:273
1393+msgid "Alaska"
1394+msgstr "Alaska"
1395+
1396+#: views/events-meta-box.php:274
1397+msgid "Arizona"
1398+msgstr "Arizona"
1399+
1400+#: views/events-meta-box.php:275
1401+msgid "Arkansas"
1402+msgstr "Arkansas"
1403+
1404+#: views/events-meta-box.php:276
1405+msgid "California"
1406+msgstr "California"
1407+
1408+#: views/events-meta-box.php:277
1409+msgid "Colorado"
1410+msgstr "Colorado"
1411+
1412+#: views/events-meta-box.php:278
1413+msgid "Connecticut"
1414+msgstr "Connecticut"
1415+
1416+#: views/events-meta-box.php:279
1417+msgid "Delaware"
1418+msgstr "Delaware"
1419+
1420+#: views/events-meta-box.php:280
1421+msgid "District of Columbia"
1422+msgstr "District of Columbia"
1423+
1424+#: views/events-meta-box.php:281
1425+msgid "Florida"
1426+msgstr "Florida"
1427+
1428+#: views/events-meta-box.php:283
1429+msgid "Hawaii"
1430+msgstr "Hawaii"
1431+
1432+#: views/events-meta-box.php:284
1433+msgid "Idaho"
1434+msgstr "Idaho"
1435+
1436+#: views/events-meta-box.php:285
1437+msgid "Illinois"
1438+msgstr "Illinois"
1439+
1440+#: views/events-meta-box.php:286
1441+msgid "Indiana"
1442+msgstr "Indiana"
1443+
1444+#: views/events-meta-box.php:287
1445+msgid "Iowa"
1446+msgstr "Iowa"
1447+
1448+#: views/events-meta-box.php:288
1449+msgid "Kansas"
1450+msgstr "Kansas"
1451+
1452+#: views/events-meta-box.php:289
1453+msgid "Kentucky"
1454+msgstr ""
1455+
1456+#: views/events-meta-box.php:290
1457+msgid "Louisiana"
1458+msgstr ""
1459+
1460+#: views/events-meta-box.php:291
1461+msgid "Maine"
1462+msgstr ""
1463+
1464+#: views/events-meta-box.php:292
1465+msgid "Maryland"
1466+msgstr ""
1467+
1468+#: views/events-meta-box.php:293
1469+msgid "Massachusetts"
1470+msgstr ""
1471+
1472+#: views/events-meta-box.php:294
1473+msgid "Michigan"
1474+msgstr ""
1475+
1476+#: views/events-meta-box.php:295
1477+msgid "Minnesota"
1478+msgstr ""
1479+
1480+#: views/events-meta-box.php:296
1481+msgid "Mississippi"
1482+msgstr ""
1483+
1484+#: views/events-meta-box.php:297
1485+msgid "Missouri"
1486+msgstr ""
1487+
1488+#: views/events-meta-box.php:298
1489+msgid "Montana"
1490+msgstr ""
1491+
1492+#: views/events-meta-box.php:299
1493+msgid "Nebraska"
1494+msgstr ""
1495+
1496+#: views/events-meta-box.php:300
1497+msgid "Nevada"
1498+msgstr ""
1499+
1500+#: views/events-meta-box.php:301
1501+msgid "New Hampshire"
1502+msgstr ""
1503+
1504+#: views/events-meta-box.php:302
1505+msgid "New Jersey"
1506+msgstr ""
1507+
1508+#: views/events-meta-box.php:303
1509+msgid "New Mexico"
1510+msgstr ""
1511+
1512+#: views/events-meta-box.php:304
1513+msgid "New York"
1514+msgstr ""
1515+
1516+#: views/events-meta-box.php:305
1517+msgid "North Carolina"
1518+msgstr ""
1519+
1520+#: views/events-meta-box.php:306
1521+msgid "North Dakota"
1522+msgstr ""
1523+
1524+#: views/events-meta-box.php:307
1525+msgid "Ohio"
1526+msgstr ""
1527+
1528+#: views/events-meta-box.php:308
1529+msgid "Oklahoma"
1530+msgstr ""
1531+
1532+#: views/events-meta-box.php:309
1533+msgid "Oregon"
1534+msgstr ""
1535+
1536+#: views/events-meta-box.php:310
1537+msgid "Pennsylvania"
1538+msgstr ""
1539+
1540+#: views/events-meta-box.php:311
1541+msgid "Rhode Island"
1542+msgstr ""
1543+
1544+#: views/events-meta-box.php:312
1545+msgid "South Carolina"
1546+msgstr ""
1547+
1548+#: views/events-meta-box.php:313
1549+msgid "South Dakota"
1550+msgstr ""
1551+
1552+#: views/events-meta-box.php:314
1553+msgid "Tennessee"
1554+msgstr ""
1555+
1556+#: views/events-meta-box.php:315
1557+msgid "Texas"
1558+msgstr ""
1559+
1560+#: views/events-meta-box.php:316
1561+msgid "Utah"
1562+msgstr ""
1563+
1564+#: views/events-meta-box.php:317
1565+msgid "Vermont"
1566+msgstr ""
1567+
1568+#: views/events-meta-box.php:318
1569+msgid "Virginia"
1570+msgstr ""
1571+
1572+#: views/events-meta-box.php:319
1573+msgid "Washington"
1574+msgstr ""
1575+
1576+#: views/events-meta-box.php:320
1577+msgid "West Virginia"
1578+msgstr ""
1579+
1580+#: views/events-meta-box.php:321
1581+msgid "Wisconsin"
1582+msgstr ""
1583+
1584+#: views/events-meta-box.php:322
1585+msgid "Wyoming"
1586+msgstr ""
1587+
1588+#: views/events-meta-box.php:336
1589+msgid "Postal Code:"
1590+msgstr "PSČ:"
1591+
1592+#: views/events-meta-box.php:340
1593+#: views/list.php:54
1594+msgid "Phone:"
1595+msgstr "Telefon:"
1596+
1597+#: views/events-meta-box.php:344
1598+msgid "Event Cost"
1599+msgstr "Účastnický poplatek:"
1600+
1601+#: views/events-meta-box.php:347
1602+#: views/list.php:72
1603+#: views/single.php:20
1604+msgid "Cost:"
1605+msgstr "Cena:"
1606+
1607+#: views/events-meta-box.php:352
1608+msgid "Leave blank to hide the field. Enter a 0 for events that are free."
1609+msgstr "Zanechte toto pole prázdné. Vložte 0, pokud bude událost s volným vstupem."
1610+
1611+#: views/events-meta-box.php:356
1612+msgid "Sell Tickets &amp; Track Registration"
1613+msgstr "Prodat vstupenku &amp; Track Registration"
1614+
1615+#: views/events-meta-box.php:361
1616+msgid "Interested in selling tickets and tracking registrations? Now you can do it for free using our <a href=\"http://wordpress.org/extend/plugins/eventbrite-for-the-events-calendar/\">Eventbrite Integration Plugin</a>. Eventbrite is a feature rich easy-to-use event management tool. \"Wow, you're selling Eventbrite pretty hard. You must get a kickback.\" Well, now that you mention it... we do. We get a little something for everyone that registers an event using our referral link. It's how we're able to keep supporting and building plugins for the open source community. "
1617+msgstr "Zajímáte se o prodej vstupenek a sledování registrací? Nyní to můžete za pomocí našeho <a href=\"http://wordpress.org/extend/plugins/eventbrite-for-the-events-calendar/\">Eventbrite Integration Pluginu</a>. Eventbrite je velmi přívětivý nástroj pro administraci událostí. "
1618+
1619+#: views/events-meta-box.php:361
1620+msgid "Check it out here."
1621+msgstr "Zkontrolujte toto."
1622+
1623+#: views/events-meta-box.php:372
1624+msgid "<h4>If You Like This Plugin - Help Support It</h4><p>We spend a lot of time and effort building robust plugins and we love to share them with the community. If you use this plugin consider making a donation to help support its' continued development. You may remove this message on the <a href=\"/wp-admin/options-general.php?page=the-events-calendar.php\">settings page</a>.</p>"
1625+msgstr "<h4>Pokud se Vám tento plugin líbí - podpořte ho</h4><p>Strávili jsme hodně času tím, abychom vytvořili stabilní plugin a rádi ho sdílíme s ostatními. Pokud tento plugin používáte, zvažte prosím, zda ho finančně nepodpoříte. Můžete odstranit tuto zprávu na <a href=\"/wp-admin/options-general.php?page=the-events-calendar.php\">stránce nastavení</a>.</p>"
1626+
1627+#: views/events-meta-box.php:374
1628+msgid "Thanks"
1629+msgstr "Děkujeme."
1630+
1631+#: views/events-options.php:69
1632+msgid "The Events Calendar Settings"
1633+msgstr "Nastavení kalendáře událostí"
1634+
1635+#: views/events-options.php:71
1636+msgid "Need a hand?"
1637+msgstr "Potřebujete pomoc?"
1638+
1639+#: views/events-options.php:72
1640+msgid "If you're stuck on these options, please <a href=\"http://wordpress.org/extend/plugins/the-events-calendar/\">check out the documentation</a>. If you're still wondering what's going on, be sure to stop by the support <a href=\"http://wordpress.org/tags/the-events-calendar?forum_id=10\">forum</a> and ask for help. The open source community is full of kind folks who are happy to help."
1641+msgstr "Pokud jste se zasekli na tomto nastavení, prosím <a href=\"http://wordpress.org/extend/plugins/the-events-calendar/\">prohlédněte si tuto dokumentaci</a>. Pokud stále nevíte, jak dál,obraťte se na <a href=\"http://wordpress.org/tags/the-events-calendar?forum_id=10\">forum</a> a požádejte o pomoc. Tato otevřená komunita je plná ochotných lidí, kteří Vám jistě pomohou."
1642+
1643+#: views/events-options.php:75
1644+msgid "Donate"
1645+msgstr "Podpořit"
1646+
1647+#: views/events-options.php:84
1648+msgid "If you find this plugin useful, please consider donating to the producer of it, Shane &#38; Peter, Inc. Thank you!"
1649+msgstr "Pokud shledáte, že je tento plugin pro Vás užitečný, prosím přispěte jeho stvořiteli jakýmkoliv finančním obnosem, Shane &#38; Peter, Inc. Děkuji!"
1650+
1651+#: views/events-options.php:88
1652+msgid "I have already donated, so please hide this button!"
1653+msgstr "Již jsem projekt podpořil, tak prosím nezobrazuj toto tlačítko."
1654+
1655+#: views/events-options.php:98
1656+msgid "Donate for this wonderful plugin"
1657+msgstr "Podpořit tento skvělý plugin"
1658+
1659+#: views/events-options.php:112
1660+msgid "Settings"
1661+msgstr "Nastavení"
1662+
1663+#: views/events-options.php:115
1664+#: views/events-options.php:119
1665+msgid "Default View for the Events"
1666+msgstr "Výchozí vzhled pro události"
1667+
1668+#: views/events-options.php:131
1669+#: views/gridview.php:15
1670+#: views/list.php:12
1671+msgid "Calendar"
1672+msgstr "Kalendář"
1673+
1674+#: views/events-options.php:135
1675+#: views/gridview.php:14
1676+#: views/list.php:11
1677+msgid "Event List"
1678+msgstr "Seznam"
1679+
1680+#: views/events-options.php:141
1681+#: views/events-options.php:145
1682+msgid "Show Comments"
1683+msgstr "Zobrazit komentáře"
1684+
1685+#: views/events-options.php:167
1686+msgid "Default Country for Events"
1687+msgstr "Výchozí země pro události"
1688+
1689+#: views/events-options.php:192
1690+#: views/events-options.php:196
1691+msgid "Embed Google Maps"
1692+msgstr "Vložené Google mapy"
1693+
1694+#: views/events-options.php:210
1695+msgid "Off"
1696+msgstr "Vypnout"
1697+
1698+#: views/events-options.php:214
1699+msgid "On"
1700+msgstr "Zapnout"
1701+
1702+#: views/events-options.php:217
1703+msgid "Height"
1704+msgstr "Výška"
1705+
1706+#: views/events-options.php:218
1707+msgid "Width"
1708+msgstr "Šířka"
1709+
1710+#: views/events-options.php:218
1711+msgid "(number or %)"
1712+msgstr "(počet nebo %)"
1713+
1714+#: views/events-options.php:229
1715+msgid "Save Changes"
1716+msgstr "Uložit změny"
1717+
1718+#: views/gridview.php:9
1719+#: views/list.php:9
1720+msgid "Calendar of Events"
1721+msgstr "Kalendář událostí"
1722+
1723+#: views/list.php:33
1724+#: views/single.php:13
1725+msgid "Start:"
1726+msgstr "Start:"
1727+
1728+#: views/list.php:37
1729+#: views/single.php:16
1730+msgid "End:"
1731+msgstr "Konec:"
1732+
1733+#: views/list.php:63
1734+#: views/single.php:30
1735+msgid "Google Map"
1736+msgstr "Google mapa"
1737+
1738+#: views/list.php:94
1739+msgid "&laquo; Previous Events"
1740+msgstr "&laquo;Předchozí události"
1741+
1742+#: views/list.php:107
1743+msgid "Next Events &raquo;"
1744+msgstr "Další události &raquo;"
1745+
1746+#: views/single.php:8
1747+msgid "&laquo; Back to Events"
1748+msgstr "&laquo; Návrat k událostem"
1749+
1750+#: views/single.php:10
1751+msgid "This event has passed."
1752+msgstr "Tato událost již proběhla"
1753+
1754+#: views/single.php:30
1755+msgid "Click to view a Google Map"
1756+msgstr "Klikněte pro zobrazení Google mapy"
1757+
1758+#: views/table.php:12
1759+msgid "Sunday"
1760+msgstr "Neděle"
1761+
1762+#: views/table.php:12
1763+msgid "Sun"
1764+msgstr "Ne"
1765+
1766+#: views/table.php:13
1767+msgid "Monday"
1768+msgstr "Pondělí"
1769+
1770+#: views/table.php:13
1771+msgid "Mon"
1772+msgstr "Po"
1773+
1774+#: views/table.php:14
1775+msgid "Tuesday"
1776+msgstr "Úterý"
1777+
1778+#: views/table.php:14
1779+msgid "Tue"
1780+msgstr "Út"
1781+
1782+#: views/table.php:15
1783+msgid "Wednesday"
1784+msgstr "Středa"
1785+
1786+#: views/table.php:15
1787+msgid "Wed"
1788+msgstr "St"
1789+
1790+#: views/table.php:16
1791+msgid "Thursday"
1792+msgstr "Čtvrtek"
1793+
1794+#: views/table.php:16
1795+msgid "Thu"
1796+msgstr "Čt"
1797+
1798+#: views/table.php:17
1799+msgid "Friday"
1800+msgstr "Pátek"
1801+
1802+#: views/table.php:17
1803+msgid "Fri"
1804+msgstr "Pa"
1805+
1806+#: views/table.php:18
1807+msgid "Saturday"
1808+msgstr "Sobota"
1809+
1810+#: views/table.php:18
1811+msgid "Sat"
1812+msgstr "So"
1813+
1814+#. Plugin URI of an extension
1815+msgid "http://wordpress.org/extend/plugins/the-events-calendar/"
1816+msgstr "http://wordpress.org/extend/plugins/the-events-calendar/"
1817+
1818+#. Description of an extension
1819+msgid "The Events Calendar plugin enables you to rapidly create and manage events using the post editor. Features include optional Eventbrite integration, Google Maps integration as well as default calendar grid and list templates for streamlined one click installation."
1820+msgstr "Plugin The Events Calendar Vám umožní rychle vytvářet a spravovat události za použití editoru příspěvků. Zahrnuje Eventbrite, Google mapy, kalednář rozdělený do mřížky a seznam vzorů pro přímou instalací za pomoci jednoho kliknutí."
1821+
1822+#. Author of an extension
1823+msgid "Shane & Peter, Inc."
1824+msgstr "Shane & Peter, Inc."
1825+
1826+#. Author URI of an extension
1827+msgid "http://www.shaneandpeter.com/"
1828+msgstr "http://www.shaneandpeter.com"
1829+
1830
1831=== added file 'wp-content/plugins/the-events-calendar/lang/the-events-calendar-da_DA.mo'
1832Binary files wp-content/plugins/the-events-calendar/lang/the-events-calendar-da_DA.mo 1970-01-01 00:00:00 +0000 and wp-content/plugins/the-events-calendar/lang/the-events-calendar-da_DA.mo 2011-02-07 00:09:58 +0000 differ
1833=== added file 'wp-content/plugins/the-events-calendar/lang/the-events-calendar-da_DA.po'
1834--- wp-content/plugins/the-events-calendar/lang/the-events-calendar-da_DA.po 1970-01-01 00:00:00 +0000
1835+++ wp-content/plugins/the-events-calendar/lang/the-events-calendar-da_DA.po 2011-02-07 00:09:58 +0000
1836@@ -0,0 +1,1580 @@
1837+# Translation of the WordPress plugin The Events Calendar 1.5.4 by Shane & Peter, Inc..
1838+# Copyright (C) 2010 Shane & Peter, Inc.
1839+# This file is distributed under the same license as the The Events Calendar package.
1840+# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
1841+#
1842+msgid ""
1843+msgstr ""
1844+"Project-Id-Version: The Events Calendar 1.5.4\n"
1845+"Report-Msgid-Bugs-To: http://wordpress.org/tag/the-events-calendar\n"
1846+"POT-Creation-Date: 2010-01-31 01:16+0000\n"
1847+"PO-Revision-Date: 2010-02-21 14:19+0100\n"
1848+"Last-Translator: Carsten Matzon <carsten@matzon.dk>\n"
1849+"Language-Team: LANGUAGE <LL@li.org>\n"
1850+"MIME-Version: 1.0\n"
1851+"Content-Type: text/plain; charset=utf-8\n"
1852+"Content-Transfer-Encoding: 8bit\n"
1853+
1854+#: the-events-calendar.php:54
1855+msgid "United States"
1856+msgstr "USA"
1857+
1858+#: the-events-calendar.php:55
1859+msgid "Afghanistan"
1860+msgstr ""
1861+
1862+#: the-events-calendar.php:56
1863+msgid "Albania"
1864+msgstr "Albanien"
1865+
1866+#: the-events-calendar.php:57
1867+msgid "Algeria"
1868+msgstr "Algeriet"
1869+
1870+#: the-events-calendar.php:58
1871+msgid "American Samoa"
1872+msgstr "Amerikansk Samoa"
1873+
1874+#: the-events-calendar.php:59
1875+msgid "Andorra"
1876+msgstr ""
1877+
1878+#: the-events-calendar.php:60
1879+msgid "Angola"
1880+msgstr ""
1881+
1882+#: the-events-calendar.php:61
1883+msgid "Anguilla"
1884+msgstr ""
1885+
1886+#: the-events-calendar.php:62
1887+msgid "Antarctica"
1888+msgstr "Antartika"
1889+
1890+#: the-events-calendar.php:63
1891+msgid "Antigua And Barbuda"
1892+msgstr ""
1893+
1894+#: the-events-calendar.php:64
1895+msgid "Argentina"
1896+msgstr ""
1897+
1898+#: the-events-calendar.php:65
1899+msgid "Armenia"
1900+msgstr "Armenien"
1901+
1902+#: the-events-calendar.php:66
1903+msgid "Aruba"
1904+msgstr ""
1905+
1906+#: the-events-calendar.php:67
1907+msgid "Australia"
1908+msgstr "Australien"
1909+
1910+#: the-events-calendar.php:68
1911+msgid "Austria"
1912+msgstr "Østrig"
1913+
1914+#: the-events-calendar.php:69
1915+msgid "Azerbaijan"
1916+msgstr ""
1917+
1918+#: the-events-calendar.php:70
1919+msgid "Bahamas"
1920+msgstr ""
1921+
1922+#: the-events-calendar.php:71
1923+msgid "Bahrain"
1924+msgstr ""
1925+
1926+#: the-events-calendar.php:72
1927+msgid "Bangladesh"
1928+msgstr ""
1929+
1930+#: the-events-calendar.php:73
1931+msgid "Barbados"
1932+msgstr ""
1933+
1934+#: the-events-calendar.php:74
1935+msgid "Belarus"
1936+msgstr "Hviderusland"
1937+
1938+#: the-events-calendar.php:75
1939+msgid "Belgium"
1940+msgstr "Belgien"
1941+
1942+#: the-events-calendar.php:76
1943+msgid "Belize"
1944+msgstr ""
1945+
1946+#: the-events-calendar.php:77
1947+msgid "Benin"
1948+msgstr ""
1949+
1950+#: the-events-calendar.php:78
1951+msgid "Bermuda"
1952+msgstr ""
1953+
1954+#: the-events-calendar.php:79
1955+msgid "Bhutan"
1956+msgstr ""
1957+
1958+#: the-events-calendar.php:80
1959+msgid "Bolivia"
1960+msgstr "Bolivien"
1961+
1962+#: the-events-calendar.php:81
1963+msgid "Bosnia And Herzegowina"
1964+msgstr "Bosnien og Hercegovina"
1965+
1966+#: the-events-calendar.php:82
1967+msgid "Botswana"
1968+msgstr ""
1969+
1970+#: the-events-calendar.php:83
1971+msgid "Bouvet Island"
1972+msgstr ""
1973+
1974+#: the-events-calendar.php:84
1975+msgid "Brazil"
1976+msgstr "Brasilien"
1977+
1978+#: the-events-calendar.php:85
1979+msgid "British Indian Ocean Territory"
1980+msgstr ""
1981+
1982+#: the-events-calendar.php:86
1983+msgid "Brunei Darussalam"
1984+msgstr ""
1985+
1986+#: the-events-calendar.php:87
1987+msgid "Bulgaria"
1988+msgstr "Bulgarien"
1989+
1990+#: the-events-calendar.php:88
1991+msgid "Burkina Faso"
1992+msgstr ""
1993+
1994+#: the-events-calendar.php:89
1995+msgid "Burundi"
1996+msgstr ""
1997+
1998+#: the-events-calendar.php:90
1999+msgid "Cambodia"
2000+msgstr ""
2001+
2002+#: the-events-calendar.php:91
2003+msgid "Cameroon"
2004+msgstr ""
2005+
2006+#: the-events-calendar.php:92
2007+msgid "Canada"
2008+msgstr "Kanada"
2009+
2010+#: the-events-calendar.php:93
2011+msgid "Cape Verde"
2012+msgstr "Kap Verde"
2013+
2014+#: the-events-calendar.php:94
2015+msgid "Cayman Islands"
2016+msgstr "Cayman Øerne"
2017+
2018+#: the-events-calendar.php:95
2019+msgid "Central African Republic"
2020+msgstr "Central Afrikanske republic"
2021+
2022+#: the-events-calendar.php:96
2023+msgid "Chad"
2024+msgstr ""
2025+
2026+#: the-events-calendar.php:97
2027+msgid "Chile"
2028+msgstr ""
2029+
2030+#: the-events-calendar.php:98
2031+msgid "China"
2032+msgstr "Kina"
2033+
2034+#: the-events-calendar.php:99
2035+msgid "Christmas Island"
2036+msgstr ""
2037+
2038+#: the-events-calendar.php:100
2039+msgid "Cocos (Keeling) Islands"
2040+msgstr ""
2041+
2042+#: the-events-calendar.php:101
2043+msgid "Colombia"
2044+msgstr ""
2045+
2046+#: the-events-calendar.php:102
2047+msgid "Comoros"
2048+msgstr ""
2049+
2050+#: the-events-calendar.php:103
2051+msgid "Congo"
2052+msgstr ""
2053+
2054+#: the-events-calendar.php:104
2055+msgid "Congo, The Democratic Republic Of The"
2056+msgstr ""
2057+
2058+#: the-events-calendar.php:105
2059+msgid "Cook Islands"
2060+msgstr ""
2061+
2062+#: the-events-calendar.php:106
2063+msgid "Costa Rica"
2064+msgstr ""
2065+
2066+#: the-events-calendar.php:107
2067+msgid "Cote D'Ivoire"
2068+msgstr ""
2069+
2070+#: the-events-calendar.php:108
2071+msgid "Croatia (Local Name: Hrvatska)"
2072+msgstr "Kroatien"
2073+
2074+#: the-events-calendar.php:109
2075+msgid "Cuba"
2076+msgstr ""
2077+
2078+#: the-events-calendar.php:110
2079+msgid "Cyprus"
2080+msgstr "Grækenland"
2081+
2082+#: the-events-calendar.php:111
2083+msgid "Czech Republic"
2084+msgstr "Tjekkiet"
2085+
2086+#: the-events-calendar.php:112
2087+msgid "Denmark"
2088+msgstr "Danmark"
2089+
2090+#: the-events-calendar.php:113
2091+msgid "Djibouti"
2092+msgstr ""
2093+
2094+#: the-events-calendar.php:114
2095+msgid "Dominica"
2096+msgstr ""
2097+
2098+#: the-events-calendar.php:115
2099+msgid "Dominican Republic"
2100+msgstr "Domikanske Republic"
2101+
2102+#: the-events-calendar.php:116
2103+msgid "East Timor"
2104+msgstr ""
2105+
2106+#: the-events-calendar.php:117
2107+msgid "Ecuador"
2108+msgstr ""
2109+
2110+#: the-events-calendar.php:118
2111+msgid "Egypt"
2112+msgstr "Egypten"
2113+
2114+#: the-events-calendar.php:119
2115+msgid "El Salvador"
2116+msgstr ""
2117+
2118+#: the-events-calendar.php:120
2119+msgid "Equatorial Guinea"
2120+msgstr ""
2121+
2122+#: the-events-calendar.php:121
2123+msgid "Eritrea"
2124+msgstr ""
2125+
2126+#: the-events-calendar.php:122
2127+msgid "Estonia"
2128+msgstr "Estland"
2129+
2130+#: the-events-calendar.php:123
2131+msgid "Ethiopia"
2132+msgstr "Ethiopien"
2133+
2134+#: the-events-calendar.php:124
2135+msgid "Falkland Islands (Malvinas)"
2136+msgstr "Falklands Øerne"
2137+
2138+#: the-events-calendar.php:125
2139+msgid "Faroe Islands"
2140+msgstr "Færøerne"
2141+
2142+#: the-events-calendar.php:126
2143+msgid "Fiji"
2144+msgstr ""
2145+
2146+#: the-events-calendar.php:127
2147+msgid "Finland"
2148+msgstr ""
2149+
2150+#: the-events-calendar.php:128
2151+msgid "France"
2152+msgstr "Frankrig"
2153+
2154+#: the-events-calendar.php:129
2155+msgid "France, Metropolitan"
2156+msgstr "Frankrig, Metropolitan"
2157+
2158+#: the-events-calendar.php:130
2159+msgid "French Guiana"
2160+msgstr "Fransk Guiana"
2161+
2162+#: the-events-calendar.php:131
2163+msgid "French Polynesia"
2164+msgstr "Fransk Polynesia"
2165+
2166+#: the-events-calendar.php:132
2167+msgid "French Southern Territories"
2168+msgstr ""
2169+
2170+#: the-events-calendar.php:133
2171+msgid "Gabon"
2172+msgstr ""
2173+
2174+#: the-events-calendar.php:134
2175+msgid "Gambia"
2176+msgstr ""
2177+
2178+#: the-events-calendar.php:135
2179+#: views/events-meta-box.php:273
2180+msgid "Georgia"
2181+msgstr "Georgien"
2182+
2183+#: the-events-calendar.php:136
2184+msgid "Germany"
2185+msgstr "Tyskland"
2186+
2187+#: the-events-calendar.php:137
2188+msgid "Ghana"
2189+msgstr ""
2190+
2191+#: the-events-calendar.php:138
2192+msgid "Gibraltar"
2193+msgstr ""
2194+
2195+#: the-events-calendar.php:139
2196+msgid "Greece"
2197+msgstr ""
2198+
2199+#: the-events-calendar.php:140
2200+msgid "Greenland"
2201+msgstr "Grønland"
2202+
2203+#: the-events-calendar.php:141
2204+msgid "Grenada"
2205+msgstr ""
2206+
2207+#: the-events-calendar.php:142
2208+msgid "Guadeloupe"
2209+msgstr ""
2210+
2211+#: the-events-calendar.php:143
2212+msgid "Guam"
2213+msgstr ""
2214+
2215+#: the-events-calendar.php:144
2216+msgid "Guatemala"
2217+msgstr ""
2218+
2219+#: the-events-calendar.php:145
2220+msgid "Guinea"
2221+msgstr ""
2222+
2223+#: the-events-calendar.php:146
2224+msgid "Guinea-Bissau"
2225+msgstr ""
2226+
2227+#: the-events-calendar.php:147
2228+msgid "Guyana"
2229+msgstr ""
2230+
2231+#: the-events-calendar.php:148
2232+msgid "Haiti"
2233+msgstr ""
2234+
2235+#: the-events-calendar.php:149
2236+msgid "Heard And Mc Donald Islands"
2237+msgstr ""
2238+
2239+#: the-events-calendar.php:150
2240+msgid "Holy See (Vatican City State)"
2241+msgstr ""
2242+
2243+#: the-events-calendar.php:151
2244+msgid "Honduras"
2245+msgstr ""
2246+
2247+#: the-events-calendar.php:152
2248+msgid "Hong Kong"
2249+msgstr ""
2250+
2251+#: the-events-calendar.php:153
2252+msgid "Hungary"
2253+msgstr "Ungarn"
2254+
2255+#: the-events-calendar.php:154
2256+msgid "Iceland"
2257+msgstr "Island"
2258+
2259+#: the-events-calendar.php:155
2260+msgid "India"
2261+msgstr "Indien"
2262+
2263+#: the-events-calendar.php:156
2264+msgid "Indonesia"
2265+msgstr "Indonesien"
2266+
2267+#: the-events-calendar.php:157
2268+msgid "Iran (Islamic Republic Of)"
2269+msgstr "Iran"
2270+
2271+#: the-events-calendar.php:158
2272+msgid "Iraq"
2273+msgstr "Irak"
2274+
2275+#: the-events-calendar.php:159
2276+msgid "Ireland"
2277+msgstr "Irland"
2278+
2279+#: the-events-calendar.php:160
2280+msgid "Israel"
2281+msgstr ""
2282+
2283+#: the-events-calendar.php:161
2284+msgid "Italy"
2285+msgstr "Italien"
2286+
2287+#: the-events-calendar.php:162
2288+msgid "Jamaica"
2289+msgstr ""
2290+
2291+#: the-events-calendar.php:163
2292+msgid "Japan"
2293+msgstr ""
2294+
2295+#: the-events-calendar.php:164
2296+msgid "Jordan"
2297+msgstr ""
2298+
2299+#: the-events-calendar.php:165
2300+msgid "Kazakhstan"
2301+msgstr ""
2302+
2303+#: the-events-calendar.php:166
2304+msgid "Kenya"
2305+msgstr ""
2306+
2307+#: the-events-calendar.php:167
2308+msgid "Kiribati"
2309+msgstr ""
2310+
2311+#: the-events-calendar.php:168
2312+msgid "Korea, Democratic People's Republic Of"
2313+msgstr "Nordkorea"
2314+
2315+#: the-events-calendar.php:169
2316+msgid "Korea, Republic Of"
2317+msgstr "Sydkorea"
2318+
2319+#: the-events-calendar.php:170
2320+msgid "Kuwait"
2321+msgstr ""
2322+
2323+#: the-events-calendar.php:171
2324+msgid "Kyrgyzstan"
2325+msgstr ""
2326+
2327+#: the-events-calendar.php:172
2328+msgid "Lao People's Democratic Republic"
2329+msgstr ""
2330+
2331+#: the-events-calendar.php:173
2332+msgid "Latvia"
2333+msgstr "Letland"
2334+
2335+#: the-events-calendar.php:174
2336+msgid "Lebanon"
2337+msgstr "Libanon"
2338+
2339+#: the-events-calendar.php:175
2340+msgid "Lesotho"
2341+msgstr ""
2342+
2343+#: the-events-calendar.php:176
2344+msgid "Liberia"
2345+msgstr ""
2346+
2347+#: the-events-calendar.php:177
2348+msgid "Libyan Arab Jamahiriya"
2349+msgstr ""
2350+
2351+#: the-events-calendar.php:178
2352+msgid "Liechtenstein"
2353+msgstr ""
2354+
2355+#: the-events-calendar.php:179
2356+msgid "Lithuania"
2357+msgstr "Litauen"
2358+
2359+#: the-events-calendar.php:180
2360+msgid "Luxembourg"
2361+msgstr ""
2362+
2363+#: the-events-calendar.php:181
2364+msgid "Macau"
2365+msgstr ""
2366+
2367+#: the-events-calendar.php:182
2368+msgid "Macedonia, Former Yugoslav Republic Of"
2369+msgstr "Macedonien"
2370+
2371+#: the-events-calendar.php:183
2372+msgid "Madagascar"
2373+msgstr ""
2374+
2375+#: the-events-calendar.php:184
2376+msgid "Malawi"
2377+msgstr ""
2378+
2379+#: the-events-calendar.php:185
2380+msgid "Malaysia"
2381+msgstr ""
2382+
2383+#: the-events-calendar.php:186
2384+msgid "Maldives"
2385+msgstr "Maldiverne"
2386+
2387+#: the-events-calendar.php:187
2388+msgid "Mali"
2389+msgstr ""
2390+
2391+#: the-events-calendar.php:188
2392+msgid "Malta"
2393+msgstr ""
2394+
2395+#: the-events-calendar.php:189
2396+msgid "Marshall Islands"
2397+msgstr ""
2398+
2399+#: the-events-calendar.php:190
2400+msgid "Martinique"
2401+msgstr ""
2402+
2403+#: the-events-calendar.php:191
2404+msgid "Mauritania"
2405+msgstr ""
2406+
2407+#: the-events-calendar.php:192
2408+msgid "Mauritius"
2409+msgstr ""
2410+
2411+#: the-events-calendar.php:193
2412+msgid "Mayotte"
2413+msgstr ""
2414+
2415+#: the-events-calendar.php:194
2416+msgid "Mexico"
2417+msgstr ""
2418+
2419+#: the-events-calendar.php:195
2420+msgid "Micronesia, Federated States Of"
2421+msgstr ""
2422+
2423+#: the-events-calendar.php:196
2424+msgid "Moldova, Republic Of"
2425+msgstr "Moldova"
2426+
2427+#: the-events-calendar.php:197
2428+msgid "Monaco"
2429+msgstr ""
2430+
2431+#: the-events-calendar.php:198
2432+msgid "Mongolia"
2433+msgstr "Mongoliet"
2434+
2435+#: the-events-calendar.php:199
2436+msgid "Montserrat"
2437+msgstr ""
2438+
2439+#: the-events-calendar.php:200
2440+msgid "Morocco"
2441+msgstr ""
2442+
2443+#: the-events-calendar.php:201
2444+msgid "Mozambique"
2445+msgstr ""
2446+
2447+#: the-events-calendar.php:202
2448+msgid "Myanmar"
2449+msgstr ""
2450+
2451+#: the-events-calendar.php:203
2452+msgid "Namibia"
2453+msgstr ""
2454+
2455+#: the-events-calendar.php:204
2456+msgid "Nauru"
2457+msgstr ""
2458+
2459+#: the-events-calendar.php:205
2460+msgid "Nepal"
2461+msgstr ""
2462+
2463+#: the-events-calendar.php:206
2464+msgid "Netherlands"
2465+msgstr "Holland"
2466+
2467+#: the-events-calendar.php:207
2468+msgid "Netherlands Antilles"
2469+msgstr ""
2470+
2471+#: the-events-calendar.php:208
2472+msgid "New Caledonia"
2473+msgstr ""
2474+
2475+#: the-events-calendar.php:209
2476+msgid "New Zealand"
2477+msgstr ""
2478+
2479+#: the-events-calendar.php:210
2480+msgid "Nicaragua"
2481+msgstr ""
2482+
2483+#: the-events-calendar.php:211
2484+msgid "Niger"
2485+msgstr ""
2486+
2487+#: the-events-calendar.php:212
2488+msgid "Nigeria"
2489+msgstr ""
2490+
2491+#: the-events-calendar.php:213
2492+msgid "Niue"
2493+msgstr ""
2494+
2495+#: the-events-calendar.php:214
2496+msgid "Norfolk Island"
2497+msgstr ""
2498+
2499+#: the-events-calendar.php:215
2500+msgid "Northern Mariana Islands"
2501+msgstr ""
2502+
2503+#: the-events-calendar.php:216
2504+msgid "Norway"
2505+msgstr "Norge"
2506+
2507+#: the-events-calendar.php:217
2508+msgid "Oman"
2509+msgstr ""
2510+
2511+#: the-events-calendar.php:218
2512+msgid "Pakistan"
2513+msgstr ""
2514+
2515+#: the-events-calendar.php:219
2516+msgid "Palau"
2517+msgstr ""
2518+
2519+#: the-events-calendar.php:220
2520+msgid "Panama"
2521+msgstr ""
2522+
2523+#: the-events-calendar.php:221
2524+msgid "Papua New Guinea"
2525+msgstr ""
2526+
2527+#: the-events-calendar.php:222
2528+msgid "Paraguay"
2529+msgstr ""
2530+
2531+#: the-events-calendar.php:223
2532+msgid "Peru"
2533+msgstr ""
2534+
2535+#: the-events-calendar.php:224
2536+msgid "Philippines"
2537+msgstr "Filippinerne"
2538+
2539+#: the-events-calendar.php:225
2540+msgid "Pitcairn"
2541+msgstr ""
2542+
2543+#: the-events-calendar.php:226
2544+msgid "Poland"
2545+msgstr ""
2546+
2547+#: the-events-calendar.php:227
2548+msgid "Portugal"
2549+msgstr ""
2550+
2551+#: the-events-calendar.php:228
2552+msgid "Puerto Rico"
2553+msgstr ""
2554+
2555+#: the-events-calendar.php:229
2556+msgid "Qatar"
2557+msgstr ""
2558+
2559+#: the-events-calendar.php:230
2560+msgid "Reunion"
2561+msgstr ""
2562+
2563+#: the-events-calendar.php:231
2564+msgid "Romania"
2565+msgstr "Rumænien"
2566+
2567+#: the-events-calendar.php:232
2568+msgid "Russian Federation"
2569+msgstr ""
2570+
2571+#: the-events-calendar.php:233
2572+msgid "Rwanda"
2573+msgstr ""
2574+
2575+#: the-events-calendar.php:234
2576+msgid "Saint Kitts And Nevis"
2577+msgstr ""
2578+
2579+#: the-events-calendar.php:235
2580+msgid "Saint Lucia"
2581+msgstr ""
2582+
2583+#: the-events-calendar.php:236
2584+msgid "Saint Vincent And The Grenadines"
2585+msgstr ""
2586+
2587+#: the-events-calendar.php:237
2588+msgid "Samoa"
2589+msgstr ""
2590+
2591+#: the-events-calendar.php:238
2592+msgid "San Marino"
2593+msgstr ""
2594+
2595+#: the-events-calendar.php:239
2596+msgid "Sao Tome And Principe"
2597+msgstr ""
2598+
2599+#: the-events-calendar.php:240
2600+msgid "Saudi Arabia"
2601+msgstr "Saudi Arabien"
2602+
2603+#: the-events-calendar.php:241
2604+msgid "Senegal"
2605+msgstr ""
2606+
2607+#: the-events-calendar.php:242
2608+msgid "Seychelles"
2609+msgstr ""
2610+
2611+#: the-events-calendar.php:243
2612+msgid "Sierra Leone"
2613+msgstr ""
2614+
2615+#: the-events-calendar.php:244
2616+msgid "Singapore"
2617+msgstr ""
2618+
2619+#: the-events-calendar.php:245
2620+msgid "Slovakia (Slovak Republic)"
2621+msgstr "Slovakiet"
2622+
2623+#: the-events-calendar.php:246
2624+msgid "Slovenia"
2625+msgstr "Slovenien"
2626+
2627+#: the-events-calendar.php:247
2628+msgid "Solomon Islands"
2629+msgstr ""
2630+
2631+#: the-events-calendar.php:248
2632+msgid "Somalia"
2633+msgstr ""
2634+
2635+#: the-events-calendar.php:249
2636+msgid "South Africa"
2637+msgstr "Sydafrika"
2638+
2639+#: the-events-calendar.php:250
2640+msgid "South Georgia, South Sandwich Islands"
2641+msgstr ""
2642+
2643+#: the-events-calendar.php:251
2644+msgid "Spain"
2645+msgstr "Spanien"
2646+
2647+#: the-events-calendar.php:252
2648+msgid "Sri Lanka"
2649+msgstr ""
2650+
2651+#: the-events-calendar.php:253
2652+msgid "St. Helena"
2653+msgstr ""
2654+
2655+#: the-events-calendar.php:254
2656+msgid "St. Pierre And Miquelon"
2657+msgstr ""
2658+
2659+#: the-events-calendar.php:255
2660+msgid "Sudan"
2661+msgstr ""
2662+
2663+#: the-events-calendar.php:256
2664+msgid "Suriname"
2665+msgstr ""
2666+
2667+#: the-events-calendar.php:257
2668+msgid "Svalbard And Jan Mayen Islands"
2669+msgstr ""
2670+
2671+#: the-events-calendar.php:258
2672+msgid "Swaziland"
2673+msgstr ""
2674+
2675+#: the-events-calendar.php:259
2676+msgid "Sweden"
2677+msgstr "Sverige"
2678+
2679+#: the-events-calendar.php:260
2680+msgid "Switzerland"
2681+msgstr "Schweiz"
2682+
2683+#: the-events-calendar.php:261
2684+msgid "Syrian Arab Republic"
2685+msgstr "Syrien"
2686+
2687+#: the-events-calendar.php:262
2688+msgid "Taiwan"
2689+msgstr ""
2690+
2691+#: the-events-calendar.php:263
2692+msgid "Tajikistan"
2693+msgstr ""
2694+
2695+#: the-events-calendar.php:264
2696+msgid "Tanzania, United Republic Of"
2697+msgstr "Tanzania"
2698+
2699+#: the-events-calendar.php:265
2700+msgid "Thailand"
2701+msgstr ""
2702+
2703+#: the-events-calendar.php:266
2704+msgid "Togo"
2705+msgstr ""
2706+
2707+#: the-events-calendar.php:267
2708+msgid "Tokelau"
2709+msgstr ""
2710+
2711+#: the-events-calendar.php:268
2712+msgid "Tonga"
2713+msgstr ""
2714+
2715+#: the-events-calendar.php:269
2716+msgid "Trinidad And Tobago"
2717+msgstr ""
2718+
2719+#: the-events-calendar.php:270
2720+msgid "Tunisia"
2721+msgstr "Tunesien"
2722+
2723+#: the-events-calendar.php:271
2724+msgid "Turkey"
2725+msgstr "Tyrkiet"
2726+
2727+#: the-events-calendar.php:272
2728+msgid "Turkmenistan"
2729+msgstr "Turkmenien"
2730+
2731+#: the-events-calendar.php:273
2732+msgid "Turks And Caicos Islands"
2733+msgstr ""
2734+
2735+#: the-events-calendar.php:274
2736+msgid "Tuvalu"
2737+msgstr ""
2738+
2739+#: the-events-calendar.php:275
2740+msgid "Uganda"
2741+msgstr ""
2742+
2743+#: the-events-calendar.php:276
2744+msgid "Ukraine"
2745+msgstr "Ukraine"
2746+
2747+#: the-events-calendar.php:277
2748+msgid "United Arab Emirates"
2749+msgstr "Forenede Arabiske Emirater"
2750+
2751+#: the-events-calendar.php:278
2752+msgid "United Kingdom"
2753+msgstr "England"
2754+
2755+#: the-events-calendar.php:279
2756+msgid "United States Minor Outlying Islands"
2757+msgstr ""
2758+
2759+#: the-events-calendar.php:280
2760+msgid "Uruguay"
2761+msgstr ""
2762+
2763+#: the-events-calendar.php:281
2764+msgid "Uzbekistan"
2765+msgstr ""
2766+
2767+#: the-events-calendar.php:282
2768+msgid "Vanuatu"
2769+msgstr ""
2770+
2771+#: the-events-calendar.php:283
2772+msgid "Venezuela"
2773+msgstr ""
2774+
2775+#: the-events-calendar.php:284
2776+msgid "Viet Nam"
2777+msgstr "Vietnam"
2778+
2779+#: the-events-calendar.php:285
2780+msgid "Virgin Islands (British)"
2781+msgstr "Virgin Islands (Britiske)"
2782+
2783+#: the-events-calendar.php:286
2784+msgid "Virgin Islands (U.S.)"
2785+msgstr "Virgin Islands (U.S.A.)"
2786+
2787+#: the-events-calendar.php:287
2788+msgid "Wallis And Futuna Islands"
2789+msgstr ""
2790+
2791+#: the-events-calendar.php:288
2792+msgid "Western Sahara"
2793+msgstr "Vestlige Sahara"
2794+
2795+#: the-events-calendar.php:289
2796+msgid "Yemen"
2797+msgstr ""
2798+
2799+#: the-events-calendar.php:290
2800+msgid "Yugoslavia"
2801+msgstr "Jugoslavien"
2802+
2803+#: the-events-calendar.php:291
2804+msgid "Zambia"
2805+msgstr ""
2806+
2807+#: the-events-calendar.php:292
2808+msgid "Zimbabwe"
2809+msgstr ""
2810+
2811+#: the-events-calendar.php:942
2812+msgid "Events"
2813+msgstr "Events"
2814+
2815+#: the-events-calendar.php:1438
2816+msgid "Free"
2817+msgstr "Gratis"
2818+
2819+#: the-events-calendar.php:1903
2820+msgid "A widget that displays the next upcoming x events."
2821+msgstr "En widget der viser de næste x forekomne events."
2822+
2823+#: the-events-calendar.php:2022
2824+msgid "A calendar of your events"
2825+msgstr "En Kalender for dine events"
2826+
2827+#: the-events-calendar.php:2023
2828+msgid "Events Calendar"
2829+msgstr "Event Kalender"
2830+
2831+#: the-events-calendar.php:2049
2832+#: views/events-list-load-widget-admin.php:2
2833+msgid "Title:"
2834+msgstr "Titel:"
2835+
2836+#: views/events-list-load-widget-admin.php:7
2837+msgid "Show:"
2838+msgstr "Vis:"
2839+
2840+#: views/events-list-load-widget-admin.php:19
2841+msgid "Start Date & Time"
2842+msgstr "Start dato & tidspunkt"
2843+
2844+#: views/events-list-load-widget-admin.php:20
2845+msgid "End Date & Time"
2846+msgstr "Slut dato & tidspunkt"
2847+
2848+#: views/events-list-load-widget-admin.php:21
2849+msgid "Venue"
2850+msgstr ""
2851+
2852+#: views/events-list-load-widget-admin.php:22
2853+msgid "Address"
2854+msgstr "Adresse"
2855+
2856+#: views/events-list-load-widget-admin.php:23
2857+msgid "City"
2858+msgstr "By"
2859+
2860+#: views/events-list-load-widget-admin.php:24
2861+msgid "State (US)"
2862+msgstr "Stat (US)"
2863+
2864+#: views/events-list-load-widget-admin.php:25
2865+msgid "Province (Int)"
2866+msgstr "Provins (Int)"
2867+
2868+#: views/events-list-load-widget-admin.php:26
2869+msgid "Postal Code"
2870+msgstr "Postnummer"
2871+
2872+#: views/events-list-load-widget-admin.php:27
2873+msgid "Country"
2874+msgstr "Land"
2875+
2876+#: views/events-list-load-widget-admin.php:28
2877+msgid "Phone"
2878+msgstr "Telefon"
2879+
2880+#: views/events-list-load-widget-admin.php:29
2881+msgid "Price"
2882+msgstr "Pris"
2883+
2884+#: views/events-list-load-widget-display.php:50
2885+msgid "More Info"
2886+msgstr "Flere informationer"
2887+
2888+#: views/events-meta-box.php:138
2889+msgid "Event Details:"
2890+msgstr "Event detaljer:"
2891+
2892+#: views/events-meta-box.php:140
2893+msgid "Is this post an event?"
2894+msgstr "Er dette indlæg en event?"
2895+
2896+#: views/events-meta-box.php:141
2897+#: views/events-options.php:135
2898+msgid "Yes"
2899+msgstr "Ja"
2900+
2901+#: views/events-meta-box.php:142
2902+#: views/events-options.php:139
2903+msgid "No"
2904+msgstr "Nej"
2905+
2906+#: views/events-meta-box.php:148
2907+msgid "Event Time &amp; Date"
2908+msgstr "Event tid &amp; dato"
2909+
2910+#: views/events-meta-box.php:151
2911+msgid "All day event?"
2912+msgstr "Hel dags event?"
2913+
2914+#: views/events-meta-box.php:155
2915+msgid "Time Format (site wide option):"
2916+msgstr "Tids format (site wide option)"
2917+
2918+#: views/events-meta-box.php:158
2919+msgid "12 Hour"
2920+msgstr "12 Timers"
2921+
2922+#: views/events-meta-box.php:160
2923+msgid "24 Hour"
2924+msgstr "24 Timers"
2925+
2926+#: views/events-meta-box.php:164
2927+msgid "Start Date / Time:"
2928+msgstr "Start dato / tid:"
2929+
2930+#: views/events-meta-box.php:178
2931+#: views/events-meta-box.php:206
2932+msgid "@"
2933+msgstr ""
2934+
2935+#: views/events-meta-box.php:192
2936+msgid "End Date / Time:"
2937+msgstr "Slut dato / tid:"
2938+
2939+#: views/events-meta-box.php:220
2940+msgid "Event Location Details"
2941+msgstr "Event lokations detaljer"
2942+
2943+#: views/events-meta-box.php:223
2944+#: views/list.php:43
2945+#: views/single.php:24
2946+msgid "Venue:"
2947+msgstr ""
2948+
2949+#: views/events-meta-box.php:229
2950+msgid "Country:"
2951+msgstr "Land:"
2952+
2953+#: views/events-meta-box.php:246
2954+#: views/list.php:61
2955+#: views/single.php:28
2956+msgid "Address:"
2957+msgstr "Adresse:"
2958+
2959+#: views/events-meta-box.php:250
2960+msgid "City:"
2961+msgstr "By:"
2962+
2963+#: views/events-meta-box.php:254
2964+msgid "Province:"
2965+msgstr "Provins:"
2966+
2967+#: views/events-meta-box.php:258
2968+msgid "State:"
2969+msgstr "Stat:"
2970+
2971+#: views/events-meta-box.php:261
2972+msgid "Select a State:"
2973+msgstr "Vælg en Stat:"
2974+
2975+#: views/events-meta-box.php:263
2976+msgid "Alabama"
2977+msgstr ""
2978+
2979+#: views/events-meta-box.php:264
2980+msgid "Alaska"
2981+msgstr ""
2982+
2983+#: views/events-meta-box.php:265
2984+msgid "Arizona"
2985+msgstr ""
2986+
2987+#: views/events-meta-box.php:266
2988+msgid "Arkansas"
2989+msgstr ""
2990+
2991+#: views/events-meta-box.php:267
2992+msgid "California"
2993+msgstr ""
2994+
2995+#: views/events-meta-box.php:268
2996+msgid "Colorado"
2997+msgstr ""
2998+
2999+#: views/events-meta-box.php:269
3000+msgid "Connecticut"
3001+msgstr ""
3002+
3003+#: views/events-meta-box.php:270
3004+msgid "Delaware"
3005+msgstr ""
3006+
3007+#: views/events-meta-box.php:271
3008+msgid "District of Columbia"
3009+msgstr ""
3010+
3011+#: views/events-meta-box.php:272
3012+msgid "Florida"
3013+msgstr ""
3014+
3015+#: views/events-meta-box.php:274
3016+msgid "Hawaii"
3017+msgstr ""
3018+
3019+#: views/events-meta-box.php:275
3020+msgid "Idaho"
3021+msgstr ""
3022+
3023+#: views/events-meta-box.php:276
3024+msgid "Illinois"
3025+msgstr ""
3026+
3027+#: views/events-meta-box.php:277
3028+msgid "Indiana"
3029+msgstr ""
3030+
3031+#: views/events-meta-box.php:278
3032+msgid "Iowa"
3033+msgstr ""
3034+
3035+#: views/events-meta-box.php:279
3036+msgid "Kansas"
3037+msgstr ""
3038+
3039+#: views/events-meta-box.php:280
3040+msgid "Kentucky"
3041+msgstr ""
3042+
3043+#: views/events-meta-box.php:281
3044+msgid "Louisiana"
3045+msgstr ""
3046+
3047+#: views/events-meta-box.php:282
3048+msgid "Maine"
3049+msgstr ""
3050+
3051+#: views/events-meta-box.php:283
3052+msgid "Maryland"
3053+msgstr ""
3054+
3055+#: views/events-meta-box.php:284
3056+msgid "Massachusetts"
3057+msgstr ""
3058+
3059+#: views/events-meta-box.php:285
3060+msgid "Michigan"
3061+msgstr ""
3062+
3063+#: views/events-meta-box.php:286
3064+msgid "Minnesota"
3065+msgstr ""
3066+
3067+#: views/events-meta-box.php:287
3068+msgid "Mississippi"
3069+msgstr ""
3070+
3071+#: views/events-meta-box.php:288
3072+msgid "Missouri"
3073+msgstr ""
3074+
3075+#: views/events-meta-box.php:289
3076+msgid "Montana"
3077+msgstr ""
3078+
3079+#: views/events-meta-box.php:290
3080+msgid "Nebraska"
3081+msgstr ""
3082+
3083+#: views/events-meta-box.php:291
3084+msgid "Nevada"
3085+msgstr ""
3086+
3087+#: views/events-meta-box.php:292
3088+msgid "New Hampshire"
3089+msgstr ""
3090+
3091+#: views/events-meta-box.php:293
3092+msgid "New Jersey"
3093+msgstr ""
3094+
3095+#: views/events-meta-box.php:294
3096+msgid "New Mexico"
3097+msgstr ""
3098+
3099+#: views/events-meta-box.php:295
3100+msgid "New York"
3101+msgstr ""
3102+
3103+#: views/events-meta-box.php:296
3104+msgid "North Carolina"
3105+msgstr ""
3106+
3107+#: views/events-meta-box.php:297
3108+msgid "North Dakota"
3109+msgstr ""
3110+
3111+#: views/events-meta-box.php:298
3112+msgid "Ohio"
3113+msgstr ""
3114+
3115+#: views/events-meta-box.php:299
3116+msgid "Oklahoma"
3117+msgstr ""
3118+
3119+#: views/events-meta-box.php:300
3120+msgid "Oregon"
3121+msgstr ""
3122+
3123+#: views/events-meta-box.php:301
3124+msgid "Pennsylvania"
3125+msgstr ""
3126+
3127+#: views/events-meta-box.php:302
3128+msgid "Rhode Island"
3129+msgstr ""
3130+
3131+#: views/events-meta-box.php:303
3132+msgid "South Carolina"
3133+msgstr ""
3134+
3135+#: views/events-meta-box.php:304
3136+msgid "South Dakota"
3137+msgstr ""
3138+
3139+#: views/events-meta-box.php:305
3140+msgid "Tennessee"
3141+msgstr ""
3142+
3143+#: views/events-meta-box.php:306
3144+msgid "Texas"
3145+msgstr ""
3146+
3147+#: views/events-meta-box.php:307
3148+msgid "Utah"
3149+msgstr ""
3150+
3151+#: views/events-meta-box.php:308
3152+msgid "Vermont"
3153+msgstr ""
3154+
3155+#: views/events-meta-box.php:309
3156+msgid "Virginia"
3157+msgstr ""
3158+
3159+#: views/events-meta-box.php:310
3160+msgid "Washington"
3161+msgstr ""
3162+
3163+#: views/events-meta-box.php:311
3164+msgid "West Virginia"
3165+msgstr ""
3166+
3167+#: views/events-meta-box.php:312
3168+msgid "Wisconsin"
3169+msgstr ""
3170+
3171+#: views/events-meta-box.php:313
3172+msgid "Wyoming"
3173+msgstr ""
3174+
3175+#: views/events-meta-box.php:327
3176+msgid "Postal Code:"
3177+msgstr "Postnummer:"
3178+
3179+#: views/events-meta-box.php:331
3180+#: views/list.php:52
3181+msgid "Phone:"
3182+msgstr "Telefon:"
3183+
3184+#: views/events-meta-box.php:335
3185+msgid "Event Cost"
3186+msgstr "Event pris"
3187+
3188+#: views/events-meta-box.php:338
3189+#: views/list.php:70
3190+#: views/single.php:18
3191+msgid "Cost:"
3192+msgstr "Pris:"
3193+
3194+#: views/events-meta-box.php:343
3195+msgid "Leave blank to hide the field. Enter a 0 for events that are free."
3196+msgstr "Efterlad blank for at gemme feltet. Indtast et 0 hvis events er gratis."
3197+
3198+#: views/events-meta-box.php:347
3199+msgid "Sell Tickets &amp; Track Registration"
3200+msgstr "Sælg billetter &amp; Følg tilmeldinger"
3201+
3202+#: views/events-meta-box.php:352
3203+msgid "Interested in selling tickets and tracking registrations? Now you can do it for free using our <a href=\"http://wordpress.org/extend/plugins/eventbrite-for-the-events-calendar/\">Eventbrite Integration Plugin</a>. Eventbrite is a feature rich easy-to-use event management tool. \"Wow, you're selling Eventbrite pretty hard. You must get a kickback.\" Well, now that you mention it... we do. We get a little something for everyone that registers an event using our referral link. It's how we're able to keep supporting and building plugins for the open source community. "
3204+msgstr ""
3205+
3206+#: views/events-meta-box.php:352
3207+msgid "Check it out here."
3208+msgstr "Check det ud her."
3209+
3210+#: views/events-meta-box.php:363
3211+msgid ""
3212+"<h4>If You Like This Plugin - Help Support It</h4>\r\n"
3213+"\t\t\t\t<p>We spend a lot of time and effort building robust plugins and we love to share them with the community. If you use this plugin consider making a donation to help support its' continued development. You may remove this message on the <a href=\"/wp-admin/options-general.php?page=the-events-calendar.php\">settings page</a>.</p>"
3214+msgstr ""
3215+"<h4>Hvis du kan lide dette Plugin - Så hjælp ved at donere</h4>\r\n"
3216+"\t\t\t\t<p>Vi bruger en masse tid og energi på at lave stabile plugins, og vi vil gerne dele dem med andre. Hvis du bruger dette plugin så overvej at donere penge til at hjælpe den fremtidige udvikling. Du kan fjerne denne besked på <a href=\"/wp-admin/options-general.php?page=the-events-calendar.php\">indstillings siden</a>.</p>"
3217+
3218+#: views/events-meta-box.php:366
3219+msgid "Thanks"
3220+msgstr "Tak"
3221+
3222+#: views/events-meta-box.php:367
3223+msgid "Shane &amp; Peter"
3224+msgstr ""
3225+
3226+#: views/events-meta-box.php:368
3227+msgid "www.shaneandpeter.com"
3228+msgstr ""
3229+
3230+#: views/events-options.php:47
3231+msgid "The Events Calendar Settings"
3232+msgstr "Event Kalender indstillinger"
3233+
3234+#: views/events-options.php:49
3235+msgid "Need a hand?"
3236+msgstr "Brug for hjælp?"
3237+
3238+#: views/events-options.php:50
3239+msgid "If you're stuck on these options, please <a href=\"http://wordpress.org/extend/plugins/the-events-calendar/\">check out the documentation</a>. If you're still wondering what's going on, be sure to stop by the support <a href=\"http://wordpress.org/tags/the-events-calendar?forum_id=10\">forum</a> and ask for help. The open source community is full of kind folks who are happy to help."
3240+msgstr ""
3241+
3242+#: views/events-options.php:53
3243+msgid "Donate"
3244+msgstr "Doner"
3245+
3246+#: views/events-options.php:62
3247+msgid "If you find this plugin useful, please consider donating to the producer of it, Shane &#38; Peter, Inc. Thank you!"
3248+msgstr ""
3249+
3250+#: views/events-options.php:66
3251+msgid "I have already donated, so please hide this button!"
3252+msgstr "Jeg har allerede doneret, så fjern venligst denne knap!"
3253+
3254+#: views/events-options.php:93
3255+#: views/events-options.php:97
3256+msgid "Default View for the Events"
3257+msgstr "Standard visning af Events"
3258+
3259+#: views/events-options.php:109
3260+#: views/gridview.php:13
3261+#: views/list.php:10
3262+msgid "Calendar"
3263+msgstr "Kalender"
3264+
3265+#: views/events-options.php:113
3266+#: views/gridview.php:12
3267+#: views/list.php:9
3268+msgid "Event List"
3269+msgstr "Event liste"
3270+
3271+#: views/events-options.php:119
3272+#: views/events-options.php:123
3273+msgid "Show Comments"
3274+msgstr "Vis kommentarer"
3275+
3276+#: views/events-options.php:145
3277+msgid "Default Country for Events"
3278+msgstr "Standard Land for events"
3279+
3280+#: views/events-options.php:170
3281+#: views/events-options.php:174
3282+msgid "Embed Google Maps"
3283+msgstr ""
3284+
3285+#: views/events-options.php:188
3286+msgid "Off"
3287+msgstr "Fra"
3288+
3289+#: views/events-options.php:192
3290+msgid "On"
3291+msgstr "Til"
3292+
3293+#: views/events-options.php:195
3294+msgid "Height"
3295+msgstr "Højde"
3296+
3297+#: views/events-options.php:196
3298+msgid "Width"
3299+msgstr "Bredde"
3300+
3301+#: views/events-options.php:196
3302+msgid "(number or %)"
3303+msgstr "(nummer eller %)"
3304+
3305+#: views/gridview.php:7
3306+#: views/list.php:7
3307+msgid "Calendar of Events"
3308+msgstr "Event kalender"
3309+
3310+#: views/list.php:31
3311+#: views/single.php:11
3312+msgid "Start:"
3313+msgstr "Start:"
3314+
3315+#: views/list.php:35
3316+#: views/single.php:14
3317+msgid "End:"
3318+msgstr "Slut:"
3319+
3320+#: views/list.php:61
3321+#: views/single.php:28
3322+msgid "Google Map"
3323+msgstr ""
3324+
3325+#: views/list.php:92
3326+msgid "&laquo; Previous Events"
3327+msgstr "&laquo; Tideligere Events"
3328+
3329+#: views/list.php:105
3330+msgid "Next Events &raquo;"
3331+msgstr "Næste Events &raquo;"
3332+
3333+#: views/single.php:6
3334+msgid "&laquo; Back to Events"
3335+msgstr "&laquo; Tilbage til Events"
3336+
3337+#: views/single.php:8
3338+msgid "This event has passed."
3339+msgstr "Dette event er overstået."
3340+
3341+#: views/table.php:12
3342+msgid "Sunday"
3343+msgstr "Søndag"
3344+
3345+#: views/table.php:12
3346+msgid "Sun"
3347+msgstr "Søn"
3348+
3349+#: views/table.php:13
3350+msgid "Monday"
3351+msgstr "Mandag"
3352+
3353+#: views/table.php:13
3354+msgid "Mon"
3355+msgstr "Man"
3356+
3357+#: views/table.php:14
3358+msgid "Tuesday"
3359+msgstr "Tirsdag"
3360+
3361+#: views/table.php:14
3362+msgid "Tue"
3363+msgstr "Tir"
3364+
3365+#: views/table.php:15
3366+msgid "Wednesday"
3367+msgstr "Onsdag"
3368+
3369+#: views/table.php:15
3370+msgid "Wed"
3371+msgstr "Ons"
3372+
3373+#: views/table.php:16
3374+msgid "Thursday"
3375+msgstr "Torsdag"
3376+
3377+#: views/table.php:16
3378+msgid "Thu"
3379+msgstr "Tor"
3380+
3381+#: views/table.php:17
3382+msgid "Friday"
3383+msgstr "Fredag"
3384+
3385+#: views/table.php:17
3386+msgid "Fri"
3387+msgstr "Fre"
3388+
3389+#: views/table.php:18
3390+msgid "Saturday"
3391+msgstr "Lørdag"
3392+
3393+#: views/table.php:18
3394+msgid "Sat"
3395+msgstr "Lør"
3396+
3397+#. Plugin Name of an extension
3398+msgid "The Events Calendar"
3399+msgstr "Event kalenderen"
3400+
3401+#. Plugin URI of an extension
3402+msgid "http://wordpress.org/extend/plugins/the-events-calendar/"
3403+msgstr ""
3404+
3405+#. Description of an extension
3406+msgid "The Events Calendar plugin enables you to rapidly create and manage events using the post editor. Features include optional Eventbrite integration, Google Maps integration as well as default calendar grid and list templates for streamlined one click installation."
3407+msgstr ""
3408+
3409+#. Author of an extension
3410+msgid "Shane & Peter, Inc."
3411+msgstr ""
3412+
3413+#. Author URI of an extension
3414+msgid "http://www.shaneandpeter.com/"
3415+msgstr ""
3416+
3417
3418=== added file 'wp-content/plugins/the-events-calendar/lang/the-events-calendar-de_DE.mo'
3419Binary files wp-content/plugins/the-events-calendar/lang/the-events-calendar-de_DE.mo 1970-01-01 00:00:00 +0000 and wp-content/plugins/the-events-calendar/lang/the-events-calendar-de_DE.mo 2011-02-07 00:09:58 +0000 differ
3420=== added file 'wp-content/plugins/the-events-calendar/lang/the-events-calendar-de_DE.po'
3421--- wp-content/plugins/the-events-calendar/lang/the-events-calendar-de_DE.po 1970-01-01 00:00:00 +0000
3422+++ wp-content/plugins/the-events-calendar/lang/the-events-calendar-de_DE.po 2011-02-07 00:09:58 +0000
3423@@ -0,0 +1,1709 @@
3424+# Translation of the WordPress plugin The Events Calendar 1.6 by Shane & Peter, Inc..
3425+# Copyright (C) 2010 Shane & Peter, Inc.
3426+# This file is distributed under the same license as the The Events Calendar package.
3427+# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
3428+#
3429+msgid ""
3430+msgstr ""
3431+"Project-Id-Version: The Events Calendar 1.6\n"
3432+"Report-Msgid-Bugs-To: http://wordpress.org/tag/the-events-calendar\n"
3433+"POT-Creation-Date: 2010-05-11 18:45+0000\n"
3434+"PO-Revision-Date: 2010-05-12 00:13+0100\n"
3435+"Last-Translator: André Schuhmann <Andre.Schuhmann@yahoo.de>\n"
3436+"Language-Team: André Schuhmann <Andre.Schuhmann@yahoo.de>\n"
3437+"MIME-Version: 1.0\n"
3438+"Content-Type: text/plain; charset=UTF-8\n"
3439+"Content-Transfer-Encoding: 8bit\n"
3440+"X-Poedit-Language: German\n"
3441+"X-Poedit-Country: GERMANY\n"
3442+"X-Poedit-SourceCharset: utf-8\n"
3443+
3444+#: events-calendar-widget.class.php:12
3445+msgid "A calendar of your events"
3446+msgstr "Ein Kalender für Events"
3447+
3448+#: events-calendar-widget.class.php:13
3449+msgid "Events Calendar"
3450+msgstr "Veranstaltungskalender"
3451+
3452+#: events-calendar-widget.class.php:39
3453+#: views/events-list-load-widget-admin.php:2
3454+msgid "Title:"
3455+msgstr "Titel:"
3456+
3457+#: events-list-widget.class.php:15
3458+msgid "A widget that displays the next upcoming x events."
3459+msgstr "Ein Widget, das die nächsten x Events zeigt."
3460+
3461+#: events-list-widget.class.php:57
3462+msgid "View All Events"
3463+msgstr "Alle Events zeigen"
3464+
3465+#: the-events-calendar.class.php:47
3466+msgid "Sun"
3467+msgstr "So"
3468+
3469+#: the-events-calendar.class.php:47
3470+msgid "Mon"
3471+msgstr "Mo"
3472+
3473+#: the-events-calendar.class.php:47
3474+msgid "Tue"
3475+msgstr "Di"
3476+
3477+#: the-events-calendar.class.php:47
3478+msgid "Wed"
3479+msgstr "Mi"
3480+
3481+#: the-events-calendar.class.php:47
3482+msgid "Thu"
3483+msgstr "Do"
3484+
3485+#: the-events-calendar.class.php:47
3486+msgid "Fri"
3487+msgstr "Fr"
3488+
3489+#: the-events-calendar.class.php:47
3490+msgid "Sat"
3491+msgstr "Sa"
3492+
3493+#: the-events-calendar.class.php:48
3494+msgid "Sunday"
3495+msgstr "Sonntag"
3496+
3497+#: the-events-calendar.class.php:48
3498+msgid "Monday"
3499+msgstr "Montag"
3500+
3501+#: the-events-calendar.class.php:48
3502+msgid "Tuesday"
3503+msgstr "Dienstag"
3504+
3505+#: the-events-calendar.class.php:48
3506+msgid "Wednesday"
3507+msgstr "Mittwoch"
3508+
3509+#: the-events-calendar.class.php:48
3510+msgid "Thursday"
3511+msgstr "Donnerstag"
3512+
3513+#: the-events-calendar.class.php:48
3514+msgid "Friday"
3515+msgstr "Freitag"
3516+
3517+#: the-events-calendar.class.php:48
3518+msgid "Saturday"
3519+msgstr "Samstag"
3520+
3521+#: the-events-calendar.class.php:54
3522+msgid "United States"
3523+msgstr ""
3524+
3525+#: the-events-calendar.class.php:55
3526+msgid "Afghanistan"
3527+msgstr ""
3528+
3529+#: the-events-calendar.class.php:56
3530+msgid "Albania"
3531+msgstr ""
3532+
3533+#: the-events-calendar.class.php:57
3534+msgid "Algeria"
3535+msgstr ""
3536+
3537+#: the-events-calendar.class.php:58
3538+msgid "American Samoa"
3539+msgstr ""
3540+
3541+#: the-events-calendar.class.php:59
3542+msgid "Andorra"
3543+msgstr ""
3544+
3545+#: the-events-calendar.class.php:60
3546+msgid "Angola"
3547+msgstr ""
3548+
3549+#: the-events-calendar.class.php:61
3550+msgid "Anguilla"
3551+msgstr ""
3552+
3553+#: the-events-calendar.class.php:62
3554+msgid "Antarctica"
3555+msgstr ""
3556+
3557+#: the-events-calendar.class.php:63
3558+msgid "Antigua And Barbuda"
3559+msgstr ""
3560+
3561+#: the-events-calendar.class.php:64
3562+msgid "Argentina"
3563+msgstr ""
3564+
3565+#: the-events-calendar.class.php:65
3566+msgid "Armenia"
3567+msgstr ""
3568+
3569+#: the-events-calendar.class.php:66
3570+msgid "Aruba"
3571+msgstr ""
3572+
3573+#: the-events-calendar.class.php:67
3574+msgid "Australia"
3575+msgstr ""
3576+
3577+#: the-events-calendar.class.php:68
3578+msgid "Austria"
3579+msgstr ""
3580+
3581+#: the-events-calendar.class.php:69
3582+msgid "Azerbaijan"
3583+msgstr ""
3584+
3585+#: the-events-calendar.class.php:70
3586+msgid "Bahamas"
3587+msgstr ""
3588+
3589+#: the-events-calendar.class.php:71
3590+msgid "Bahrain"
3591+msgstr ""
3592+
3593+#: the-events-calendar.class.php:72
3594+msgid "Bangladesh"
3595+msgstr ""
3596+
3597+#: the-events-calendar.class.php:73
3598+msgid "Barbados"
3599+msgstr ""
3600+
3601+#: the-events-calendar.class.php:74
3602+msgid "Belarus"
3603+msgstr ""
3604+
3605+#: the-events-calendar.class.php:75
3606+msgid "Belgium"
3607+msgstr ""
3608+
3609+#: the-events-calendar.class.php:76
3610+msgid "Belize"
3611+msgstr ""
3612+
3613+#: the-events-calendar.class.php:77
3614+msgid "Benin"
3615+msgstr ""
3616+
3617+#: the-events-calendar.class.php:78
3618+msgid "Bermuda"
3619+msgstr ""
3620+
3621+#: the-events-calendar.class.php:79
3622+msgid "Bhutan"
3623+msgstr ""
3624+
3625+#: the-events-calendar.class.php:80
3626+msgid "Bolivia"
3627+msgstr ""
3628+
3629+#: the-events-calendar.class.php:81
3630+msgid "Bosnia And Herzegowina"
3631+msgstr ""
3632+
3633+#: the-events-calendar.class.php:82
3634+msgid "Botswana"
3635+msgstr ""
3636+
3637+#: the-events-calendar.class.php:83
3638+msgid "Bouvet Island"
3639+msgstr ""
3640+
3641+#: the-events-calendar.class.php:84
3642+msgid "Brazil"
3643+msgstr ""
3644+
3645+#: the-events-calendar.class.php:85
3646+msgid "British Indian Ocean Territory"
3647+msgstr ""
3648+
3649+#: the-events-calendar.class.php:86
3650+msgid "Brunei Darussalam"
3651+msgstr ""
3652+
3653+#: the-events-calendar.class.php:87
3654+msgid "Bulgaria"
3655+msgstr ""
3656+
3657+#: the-events-calendar.class.php:88
3658+msgid "Burkina Faso"
3659+msgstr ""
3660+
3661+#: the-events-calendar.class.php:89
3662+msgid "Burundi"
3663+msgstr ""
3664+
3665+#: the-events-calendar.class.php:90
3666+msgid "Cambodia"
3667+msgstr ""
3668+
3669+#: the-events-calendar.class.php:91
3670+msgid "Cameroon"
3671+msgstr ""
3672+
3673+#: the-events-calendar.class.php:92
3674+msgid "Canada"
3675+msgstr ""
3676+
3677+#: the-events-calendar.class.php:93
3678+msgid "Cape Verde"
3679+msgstr ""
3680+
3681+#: the-events-calendar.class.php:94
3682+msgid "Cayman Islands"
3683+msgstr ""
3684+
3685+#: the-events-calendar.class.php:95
3686+msgid "Central African Republic"
3687+msgstr ""
3688+
3689+#: the-events-calendar.class.php:96
3690+msgid "Chad"
3691+msgstr ""
3692+
3693+#: the-events-calendar.class.php:97
3694+msgid "Chile"
3695+msgstr ""
3696+
3697+#: the-events-calendar.class.php:98
3698+msgid "China"
3699+msgstr ""
3700+
3701+#: the-events-calendar.class.php:99
3702+msgid "Christmas Island"
3703+msgstr ""
3704+
3705+#: the-events-calendar.class.php:100
3706+msgid "Cocos (Keeling) Islands"
3707+msgstr ""
3708+
3709+#: the-events-calendar.class.php:101
3710+msgid "Colombia"
3711+msgstr ""
3712+
3713+#: the-events-calendar.class.php:102
3714+msgid "Comoros"
3715+msgstr ""
3716+
3717+#: the-events-calendar.class.php:103
3718+msgid "Congo"
3719+msgstr ""
3720+
3721+#: the-events-calendar.class.php:104
3722+msgid "Congo, The Democratic Republic Of The"
3723+msgstr ""
3724+
3725+#: the-events-calendar.class.php:105
3726+msgid "Cook Islands"
3727+msgstr ""
3728+
3729+#: the-events-calendar.class.php:106
3730+msgid "Costa Rica"
3731+msgstr ""
3732+
3733+#: the-events-calendar.class.php:107
3734+msgid "Cote D'Ivoire"
3735+msgstr ""
3736+
3737+#: the-events-calendar.class.php:108
3738+msgid "Croatia (Local Name: Hrvatska)"
3739+msgstr ""
3740+
3741+#: the-events-calendar.class.php:109
3742+msgid "Cuba"
3743+msgstr ""
3744+
3745+#: the-events-calendar.class.php:110
3746+msgid "Cyprus"
3747+msgstr ""
3748+
3749+#: the-events-calendar.class.php:111
3750+msgid "Czech Republic"
3751+msgstr ""
3752+
3753+#: the-events-calendar.class.php:112
3754+msgid "Denmark"
3755+msgstr ""
3756+
3757+#: the-events-calendar.class.php:113
3758+msgid "Djibouti"
3759+msgstr ""
3760+
3761+#: the-events-calendar.class.php:114
3762+msgid "Dominica"
3763+msgstr ""
3764+
3765+#: the-events-calendar.class.php:115
3766+msgid "Dominican Republic"
3767+msgstr ""
3768+
3769+#: the-events-calendar.class.php:116
3770+msgid "East Timor"
3771+msgstr ""
3772+
3773+#: the-events-calendar.class.php:117
3774+msgid "Ecuador"
3775+msgstr ""
3776+
3777+#: the-events-calendar.class.php:118
3778+msgid "Egypt"
3779+msgstr ""
3780+
3781+#: the-events-calendar.class.php:119
3782+msgid "El Salvador"
3783+msgstr ""
3784+
3785+#: the-events-calendar.class.php:120
3786+msgid "Equatorial Guinea"
3787+msgstr ""
3788+
3789+#: the-events-calendar.class.php:121
3790+msgid "Eritrea"
3791+msgstr ""
3792+
3793+#: the-events-calendar.class.php:122
3794+msgid "Estonia"
3795+msgstr ""
3796+
3797+#: the-events-calendar.class.php:123
3798+msgid "Ethiopia"
3799+msgstr ""
3800+
3801+#: the-events-calendar.class.php:124
3802+msgid "Falkland Islands (Malvinas)"
3803+msgstr ""
3804+
3805+#: the-events-calendar.class.php:125
3806+msgid "Faroe Islands"
3807+msgstr ""
3808+
3809+#: the-events-calendar.class.php:126
3810+msgid "Fiji"
3811+msgstr ""
3812+
3813+#: the-events-calendar.class.php:127
3814+msgid "Finland"
3815+msgstr ""
3816+
3817+#: the-events-calendar.class.php:128
3818+msgid "France"
3819+msgstr ""
3820+
3821+#: the-events-calendar.class.php:129
3822+msgid "France, Metropolitan"
3823+msgstr ""
3824+
3825+#: the-events-calendar.class.php:130
3826+msgid "French Guiana"
3827+msgstr ""
3828+
3829+#: the-events-calendar.class.php:131
3830+msgid "French Polynesia"
3831+msgstr ""
3832+
3833+#: the-events-calendar.class.php:132
3834+msgid "French Southern Territories"
3835+msgstr ""
3836+
3837+#: the-events-calendar.class.php:133
3838+msgid "Gabon"
3839+msgstr ""
3840+
3841+#: the-events-calendar.class.php:134
3842+msgid "Gambia"
3843+msgstr ""
3844+
3845+#: the-events-calendar.class.php:135
3846+#: views/events-meta-box.php:324
3847+msgid "Georgia"
3848+msgstr ""
3849+
3850+#: the-events-calendar.class.php:136
3851+msgid "Germany"
3852+msgstr "Deutschland"
3853+
3854+#: the-events-calendar.class.php:137
3855+msgid "Ghana"
3856+msgstr ""
3857+
3858+#: the-events-calendar.class.php:138
3859+msgid "Gibraltar"
3860+msgstr ""
3861+
3862+#: the-events-calendar.class.php:139
3863+msgid "Greece"
3864+msgstr ""
3865+
3866+#: the-events-calendar.class.php:140
3867+msgid "Greenland"
3868+msgstr ""
3869+
3870+#: the-events-calendar.class.php:141
3871+msgid "Grenada"
3872+msgstr ""
3873+
3874+#: the-events-calendar.class.php:142
3875+msgid "Guadeloupe"
3876+msgstr ""
3877+
3878+#: the-events-calendar.class.php:143
3879+msgid "Guam"
3880+msgstr ""
3881+
3882+#: the-events-calendar.class.php:144
3883+msgid "Guatemala"
3884+msgstr ""
3885+
3886+#: the-events-calendar.class.php:145
3887+msgid "Guinea"
3888+msgstr ""
3889+
3890+#: the-events-calendar.class.php:146
3891+msgid "Guinea-Bissau"
3892+msgstr ""
3893+
3894+#: the-events-calendar.class.php:147
3895+msgid "Guyana"
3896+msgstr ""
3897+
3898+#: the-events-calendar.class.php:148
3899+msgid "Haiti"
3900+msgstr ""
3901+
3902+#: the-events-calendar.class.php:149
3903+msgid "Heard And Mc Donald Islands"
3904+msgstr ""
3905+
3906+#: the-events-calendar.class.php:150
3907+msgid "Holy See (Vatican City State)"
3908+msgstr ""
3909+
3910+#: the-events-calendar.class.php:151
3911+msgid "Honduras"
3912+msgstr ""
3913+
3914+#: the-events-calendar.class.php:152
3915+msgid "Hong Kong"
3916+msgstr ""
3917+
3918+#: the-events-calendar.class.php:153
3919+msgid "Hungary"
3920+msgstr ""
3921+
3922+#: the-events-calendar.class.php:154
3923+msgid "Iceland"
3924+msgstr ""
3925+
3926+#: the-events-calendar.class.php:155
3927+msgid "India"
3928+msgstr ""
3929+
3930+#: the-events-calendar.class.php:156
3931+msgid "Indonesia"
3932+msgstr ""
3933+
3934+#: the-events-calendar.class.php:157
3935+msgid "Iran (Islamic Republic Of)"
3936+msgstr ""
3937+
3938+#: the-events-calendar.class.php:158
3939+msgid "Iraq"
3940+msgstr ""
3941+
3942+#: the-events-calendar.class.php:159
3943+msgid "Ireland"
3944+msgstr ""
3945+
3946+#: the-events-calendar.class.php:160
3947+msgid "Israel"
3948+msgstr ""
3949+
3950+#: the-events-calendar.class.php:161
3951+msgid "Italy"
3952+msgstr ""
3953+
3954+#: the-events-calendar.class.php:162
3955+msgid "Jamaica"
3956+msgstr ""
3957+
3958+#: the-events-calendar.class.php:163
3959+msgid "Japan"
3960+msgstr ""
3961+
3962+#: the-events-calendar.class.php:164
3963+msgid "Jordan"
3964+msgstr ""
3965+
3966+#: the-events-calendar.class.php:165
3967+msgid "Kazakhstan"
3968+msgstr ""
3969+
3970+#: the-events-calendar.class.php:166
3971+msgid "Kenya"
3972+msgstr ""
3973+
3974+#: the-events-calendar.class.php:167
3975+msgid "Kiribati"
3976+msgstr ""
3977+
3978+#: the-events-calendar.class.php:168
3979+msgid "Korea, Democratic People's Republic Of"
3980+msgstr ""
3981+
3982+#: the-events-calendar.class.php:169
3983+msgid "Korea, Republic Of"
3984+msgstr ""
3985+
3986+#: the-events-calendar.class.php:170
3987+msgid "Kuwait"
3988+msgstr ""
3989+
3990+#: the-events-calendar.class.php:171
3991+msgid "Kyrgyzstan"
3992+msgstr ""
3993+
3994+#: the-events-calendar.class.php:172
3995+msgid "Lao People's Democratic Republic"
3996+msgstr ""
3997+
3998+#: the-events-calendar.class.php:173
3999+msgid "Latvia"
4000+msgstr ""
4001+
4002+#: the-events-calendar.class.php:174
4003+msgid "Lebanon"
4004+msgstr ""
4005+
4006+#: the-events-calendar.class.php:175
4007+msgid "Lesotho"
4008+msgstr ""
4009+
4010+#: the-events-calendar.class.php:176
4011+msgid "Liberia"
4012+msgstr ""
4013+
4014+#: the-events-calendar.class.php:177
4015+msgid "Libyan Arab Jamahiriya"
4016+msgstr ""
4017+
4018+#: the-events-calendar.class.php:178
4019+msgid "Liechtenstein"
4020+msgstr ""
4021+
4022+#: the-events-calendar.class.php:179
4023+msgid "Lithuania"
4024+msgstr ""
4025+
4026+#: the-events-calendar.class.php:180
4027+msgid "Luxembourg"
4028+msgstr ""
4029+
4030+#: the-events-calendar.class.php:181
4031+msgid "Macau"
4032+msgstr ""
4033+
4034+#: the-events-calendar.class.php:182
4035+msgid "Macedonia, Former Yugoslav Republic Of"
4036+msgstr ""
4037+
4038+#: the-events-calendar.class.php:183
4039+msgid "Madagascar"
4040+msgstr ""
4041+
4042+#: the-events-calendar.class.php:184
4043+msgid "Malawi"
4044+msgstr ""
4045+
4046+#: the-events-calendar.class.php:185
4047+msgid "Malaysia"
4048+msgstr ""
4049+
4050+#: the-events-calendar.class.php:186
4051+msgid "Maldives"
4052+msgstr ""
4053+
4054+#: the-events-calendar.class.php:187
4055+msgid "Mali"
4056+msgstr ""
4057+
4058+#: the-events-calendar.class.php:188
4059+msgid "Malta"
4060+msgstr ""
4061+
4062+#: the-events-calendar.class.php:189
4063+msgid "Marshall Islands"
4064+msgstr ""
4065+
4066+#: the-events-calendar.class.php:190
4067+msgid "Martinique"
4068+msgstr ""
4069+
4070+#: the-events-calendar.class.php:191
4071+msgid "Mauritania"
4072+msgstr ""
4073+
4074+#: the-events-calendar.class.php:192
4075+msgid "Mauritius"
4076+msgstr ""
4077+
4078+#: the-events-calendar.class.php:193
4079+msgid "Mayotte"
4080+msgstr ""
4081+
4082+#: the-events-calendar.class.php:194
4083+msgid "Mexico"
4084+msgstr ""
4085+
4086+#: the-events-calendar.class.php:195
4087+msgid "Micronesia, Federated States Of"
4088+msgstr ""
4089+
4090+#: the-events-calendar.class.php:196
4091+msgid "Moldova, Republic Of"
4092+msgstr ""
4093+
4094+#: the-events-calendar.class.php:197
4095+msgid "Monaco"
4096+msgstr ""
4097+
4098+#: the-events-calendar.class.php:198
4099+msgid "Mongolia"
4100+msgstr ""
4101+
4102+#: the-events-calendar.class.php:199
4103+msgid "Montserrat"
4104+msgstr ""
4105+
4106+#: the-events-calendar.class.php:200
4107+msgid "Morocco"
4108+msgstr ""
4109+
4110+#: the-events-calendar.class.php:201
4111+msgid "Mozambique"
4112+msgstr ""
4113+
4114+#: the-events-calendar.class.php:202
4115+msgid "Myanmar"
4116+msgstr ""
4117+
4118+#: the-events-calendar.class.php:203
4119+msgid "Namibia"
4120+msgstr ""
4121+
4122+#: the-events-calendar.class.php:204
4123+msgid "Nauru"
4124+msgstr ""
4125+
4126+#: the-events-calendar.class.php:205
4127+msgid "Nepal"
4128+msgstr ""
4129+
4130+#: the-events-calendar.class.php:206
4131+msgid "Netherlands"
4132+msgstr ""
4133+
4134+#: the-events-calendar.class.php:207
4135+msgid "Netherlands Antilles"
4136+msgstr ""
4137+
4138+#: the-events-calendar.class.php:208
4139+msgid "New Caledonia"
4140+msgstr ""
4141+
4142+#: the-events-calendar.class.php:209
4143+msgid "New Zealand"
4144+msgstr ""
4145+
4146+#: the-events-calendar.class.php:210
4147+msgid "Nicaragua"
4148+msgstr ""
4149+
4150+#: the-events-calendar.class.php:211
4151+msgid "Niger"
4152+msgstr ""
4153+
4154+#: the-events-calendar.class.php:212
4155+msgid "Nigeria"
4156+msgstr ""
4157+
4158+#: the-events-calendar.class.php:213
4159+msgid "Niue"
4160+msgstr ""
4161+
4162+#: the-events-calendar.class.php:214
4163+msgid "Norfolk Island"
4164+msgstr ""
4165+
4166+#: the-events-calendar.class.php:215
4167+msgid "Northern Mariana Islands"
4168+msgstr ""
4169+
4170+#: the-events-calendar.class.php:216
4171+msgid "Norway"
4172+msgstr ""
4173+
4174+#: the-events-calendar.class.php:217
4175+msgid "Oman"
4176+msgstr ""
4177+
4178+#: the-events-calendar.class.php:218
4179+msgid "Pakistan"
4180+msgstr ""
4181+
4182+#: the-events-calendar.class.php:219
4183+msgid "Palau"
4184+msgstr ""
4185+
4186+#: the-events-calendar.class.php:220
4187+msgid "Panama"
4188+msgstr ""
4189+
4190+#: the-events-calendar.class.php:221
4191+msgid "Papua New Guinea"
4192+msgstr ""
4193+
4194+#: the-events-calendar.class.php:222
4195+msgid "Paraguay"
4196+msgstr ""
4197+
4198+#: the-events-calendar.class.php:223
4199+msgid "Peru"
4200+msgstr ""
4201+
4202+#: the-events-calendar.class.php:224
4203+msgid "Philippines"
4204+msgstr ""
4205+
4206+#: the-events-calendar.class.php:225
4207+msgid "Pitcairn"
4208+msgstr ""
4209+
4210+#: the-events-calendar.class.php:226
4211+msgid "Poland"
4212+msgstr ""
4213+
4214+#: the-events-calendar.class.php:227
4215+msgid "Portugal"
4216+msgstr ""
4217+
4218+#: the-events-calendar.class.php:228
4219+msgid "Puerto Rico"
4220+msgstr ""
4221+
4222+#: the-events-calendar.class.php:229
4223+msgid "Qatar"
4224+msgstr ""
4225+
4226+#: the-events-calendar.class.php:230
4227+msgid "Reunion"
4228+msgstr ""
4229+
4230+#: the-events-calendar.class.php:231
4231+msgid "Romania"
4232+msgstr ""
4233+
4234+#: the-events-calendar.class.php:232
4235+msgid "Russian Federation"
4236+msgstr ""
4237+
4238+#: the-events-calendar.class.php:233
4239+msgid "Rwanda"
4240+msgstr ""
4241+
4242+#: the-events-calendar.class.php:234
4243+msgid "Saint Kitts And Nevis"
4244+msgstr ""
4245+
4246+#: the-events-calendar.class.php:235
4247+msgid "Saint Lucia"
4248+msgstr ""
4249+
4250+#: the-events-calendar.class.php:236
4251+msgid "Saint Vincent And The Grenadines"
4252+msgstr ""
4253+
4254+#: the-events-calendar.class.php:237
4255+msgid "Samoa"
4256+msgstr ""
4257+
4258+#: the-events-calendar.class.php:238
4259+msgid "San Marino"
4260+msgstr ""
4261+
4262+#: the-events-calendar.class.php:239
4263+msgid "Sao Tome And Principe"
4264+msgstr ""
4265+
4266+#: the-events-calendar.class.php:240
4267+msgid "Saudi Arabia"
4268+msgstr ""
4269+
4270+#: the-events-calendar.class.php:241
4271+msgid "Senegal"
4272+msgstr ""
4273+
4274+#: the-events-calendar.class.php:242
4275+msgid "Seychelles"
4276+msgstr ""
4277+
4278+#: the-events-calendar.class.php:243
4279+msgid "Sierra Leone"
4280+msgstr ""
4281+
4282+#: the-events-calendar.class.php:244
4283+msgid "Singapore"
4284+msgstr ""
4285+
4286+#: the-events-calendar.class.php:245
4287+msgid "Slovakia (Slovak Republic)"
4288+msgstr ""
4289+
4290+#: the-events-calendar.class.php:246
4291+msgid "Slovenia"
4292+msgstr ""
4293+
4294+#: the-events-calendar.class.php:247
4295+msgid "Solomon Islands"
4296+msgstr ""
4297+
4298+#: the-events-calendar.class.php:248
4299+msgid "Somalia"
4300+msgstr ""
4301+
4302+#: the-events-calendar.class.php:249
4303+msgid "South Africa"
4304+msgstr ""
4305+
4306+#: the-events-calendar.class.php:250
4307+msgid "South Georgia, South Sandwich Islands"
4308+msgstr ""
4309+
4310+#: the-events-calendar.class.php:251
4311+msgid "Spain"
4312+msgstr ""
4313+
4314+#: the-events-calendar.class.php:252
4315+msgid "Sri Lanka"
4316+msgstr ""
4317+
4318+#: the-events-calendar.class.php:253
4319+msgid "St. Helena"
4320+msgstr ""
4321+
4322+#: the-events-calendar.class.php:254
4323+msgid "St. Pierre And Miquelon"
4324+msgstr ""
4325+
4326+#: the-events-calendar.class.php:255
4327+msgid "Sudan"
4328+msgstr ""
4329+
4330+#: the-events-calendar.class.php:256
4331+msgid "Suriname"
4332+msgstr ""
4333+
4334+#: the-events-calendar.class.php:257
4335+msgid "Svalbard And Jan Mayen Islands"
4336+msgstr ""
4337+
4338+#: the-events-calendar.class.php:258
4339+msgid "Swaziland"
4340+msgstr ""
4341+
4342+#: the-events-calendar.class.php:259
4343+msgid "Sweden"
4344+msgstr ""
4345+
4346+#: the-events-calendar.class.php:260
4347+msgid "Switzerland"
4348+msgstr ""
4349+
4350+#: the-events-calendar.class.php:261
4351+msgid "Syrian Arab Republic"
4352+msgstr ""
4353+
4354+#: the-events-calendar.class.php:262
4355+msgid "Taiwan"
4356+msgstr ""
4357+
4358+#: the-events-calendar.class.php:263
4359+msgid "Tajikistan"
4360+msgstr ""
4361+
4362+#: the-events-calendar.class.php:264
4363+msgid "Tanzania, United Republic Of"
4364+msgstr ""
4365+
4366+#: the-events-calendar.class.php:265
4367+msgid "Thailand"
4368+msgstr ""
4369+
4370+#: the-events-calendar.class.php:266
4371+msgid "Togo"
4372+msgstr ""
4373+
4374+#: the-events-calendar.class.php:267
4375+msgid "Tokelau"
4376+msgstr ""
4377+
4378+#: the-events-calendar.class.php:268
4379+msgid "Tonga"
4380+msgstr ""
4381+
4382+#: the-events-calendar.class.php:269
4383+msgid "Trinidad And Tobago"
4384+msgstr ""
4385+
4386+#: the-events-calendar.class.php:270
4387+msgid "Tunisia"
4388+msgstr ""
4389+
4390+#: the-events-calendar.class.php:271
4391+msgid "Turkey"
4392+msgstr ""
4393+
4394+#: the-events-calendar.class.php:272
4395+msgid "Turkmenistan"
4396+msgstr ""
4397+
4398+#: the-events-calendar.class.php:273
4399+msgid "Turks And Caicos Islands"
4400+msgstr ""
4401+
4402+#: the-events-calendar.class.php:274
4403+msgid "Tuvalu"
4404+msgstr ""
4405+
4406+#: the-events-calendar.class.php:275
4407+msgid "Uganda"
4408+msgstr ""
4409+
4410+#: the-events-calendar.class.php:276
4411+msgid "Ukraine"
4412+msgstr ""
4413+
4414+#: the-events-calendar.class.php:277
4415+msgid "United Arab Emirates"
4416+msgstr ""
4417+
4418+#: the-events-calendar.class.php:278
4419+msgid "United Kingdom"
4420+msgstr ""
4421+
4422+#: the-events-calendar.class.php:279
4423+msgid "United States Minor Outlying Islands"
4424+msgstr ""
4425+
4426+#: the-events-calendar.class.php:280
4427+msgid "Uruguay"
4428+msgstr ""
4429+
4430+#: the-events-calendar.class.php:281
4431+msgid "Uzbekistan"
4432+msgstr ""
4433+
4434+#: the-events-calendar.class.php:282
4435+msgid "Vanuatu"
4436+msgstr ""
4437+
4438+#: the-events-calendar.class.php:283
4439+msgid "Venezuela"
4440+msgstr ""
4441+
4442+#: the-events-calendar.class.php:284
4443+msgid "Viet Nam"
4444+msgstr ""
4445+
4446+#: the-events-calendar.class.php:285
4447+msgid "Virgin Islands (British)"
4448+msgstr ""
4449+
4450+#: the-events-calendar.class.php:286
4451+msgid "Virgin Islands (U.S.)"
4452+msgstr ""
4453+
4454+#: the-events-calendar.class.php:287
4455+msgid "Wallis And Futuna Islands"
4456+msgstr ""
4457+
4458+#: the-events-calendar.class.php:288
4459+msgid "Western Sahara"
4460+msgstr ""
4461+
4462+#: the-events-calendar.class.php:289
4463+msgid "Yemen"
4464+msgstr ""
4465+
4466+#: the-events-calendar.class.php:290
4467+msgid "Yugoslavia"
4468+msgstr ""
4469+
4470+#: the-events-calendar.class.php:291
4471+msgid "Zambia"
4472+msgstr ""
4473+
4474+#: the-events-calendar.class.php:292
4475+msgid "Zimbabwe"
4476+msgstr ""
4477+
4478+#: the-events-calendar.class.php:491
4479+msgid "Jan"
4480+msgstr "Jan"
4481+
4482+#: the-events-calendar.class.php:492
4483+msgid "Feb"
4484+msgstr "Feb"
4485+
4486+#: the-events-calendar.class.php:493
4487+msgid "Mar"
4488+msgstr "Mär"
4489+
4490+#: the-events-calendar.class.php:494
4491+msgid "Apr"
4492+msgstr "Apr"
4493+
4494+#: the-events-calendar.class.php:495
4495+#: the-events-calendar.class.php:509
4496+msgid "May"
4497+msgstr "Mai"
4498+
4499+#: the-events-calendar.class.php:496
4500+msgid "Jun"
4501+msgstr "Jun"
4502+
4503+#: the-events-calendar.class.php:497
4504+msgid "Jul"
4505+msgstr "Jul"
4506+
4507+#: the-events-calendar.class.php:498
4508+msgid "Aug"
4509+msgstr "Aug"
4510+
4511+#: the-events-calendar.class.php:499
4512+msgid "Sep"
4513+msgstr "Sep"
4514+
4515+#: the-events-calendar.class.php:500
4516+msgid "Oct"
4517+msgstr "Okt"
4518+
4519+#: the-events-calendar.class.php:501
4520+msgid "Nov"
4521+msgstr "Nov"
4522+
4523+#: the-events-calendar.class.php:502
4524+msgid "Dec"
4525+msgstr "Dez"
4526+
4527+#: the-events-calendar.class.php:505
4528+msgid "January"
4529+msgstr "Januar"
4530+
4531+#: the-events-calendar.class.php:506
4532+msgid "February"
4533+msgstr "Februar"
4534+
4535+#: the-events-calendar.class.php:507
4536+msgid "March"
4537+msgstr "März"
4538+
4539+#: the-events-calendar.class.php:508
4540+msgid "April"
4541+msgstr "April"
4542+
4543+#: the-events-calendar.class.php:510
4544+msgid "June"
4545+msgstr "Juni"
4546+
4547+#: the-events-calendar.class.php:511
4548+msgid "July"
4549+msgstr "July"
4550+
4551+#: the-events-calendar.class.php:512
4552+msgid "August"
4553+msgstr "August"
4554+
4555+#: the-events-calendar.class.php:513
4556+msgid "September"
4557+msgstr "September"
4558+
4559+#: the-events-calendar.class.php:514
4560+msgid "October"
4561+msgstr "Oktober"
4562+
4563+#: the-events-calendar.class.php:515
4564+msgid "November"
4565+msgstr "November"
4566+
4567+#: the-events-calendar.class.php:516
4568+msgid "December"
4569+msgstr "Dezember"
4570+
4571+#. #-#-#-#-# plugin.pot (The Events Calendar 1.6) #-#-#-#-#
4572+#. Plugin Name of the plugin/theme
4573+#: the-events-calendar.class.php:1004
4574+msgid "The Events Calendar"
4575+msgstr "Der Eventkalender"
4576+
4577+#: views/events-list-load-widget-admin.php:7
4578+msgid "Show:"
4579+msgstr "Zeigen:"
4580+
4581+#: views/events-list-load-widget-admin.php:16
4582+msgid "Display:"
4583+msgstr "Anzeigen:"
4584+
4585+#: views/events-list-load-widget-admin.php:19
4586+msgid "Start Date & Time"
4587+msgstr "Start Datum & Zeit"
4588+
4589+#: views/events-list-load-widget-admin.php:20
4590+msgid "End Date & Time"
4591+msgstr "Ende Datum & Zeit"
4592+
4593+#: views/events-list-load-widget-admin.php:21
4594+msgid "Venue"
4595+msgstr "Ort"
4596+
4597+#: views/events-list-load-widget-admin.php:22
4598+msgid "Address"
4599+msgstr "Straße"
4600+
4601+#: views/events-list-load-widget-admin.php:23
4602+msgid "City"
4603+msgstr "Stadt"
4604+
4605+#: views/events-list-load-widget-admin.php:24
4606+msgid "State (US)"
4607+msgstr "Staat (US)"
4608+
4609+#: views/events-list-load-widget-admin.php:25
4610+msgid "Province (Int)"
4611+msgstr "Bundesland"
4612+
4613+#: views/events-list-load-widget-admin.php:26
4614+msgid "Postal Code"
4615+msgstr "PLZ"
4616+
4617+#: views/events-list-load-widget-admin.php:27
4618+msgid "Country"
4619+msgstr "Land"
4620+
4621+#: views/events-list-load-widget-admin.php:28
4622+#: views/events-meta-box.php:106
4623+msgid "Phone"
4624+msgstr "Telefon"
4625+
4626+#: views/events-list-load-widget-admin.php:29
4627+msgid "Price"
4628+msgstr "Preis"
4629+
4630+#: views/events-list-load-widget-display.php:48
4631+msgid "More Info"
4632+msgstr "Mehr Infos"
4633+
4634+#: views/events-meta-box.php:106
4635+msgid "is not valid."
4636+msgstr "ist nich korrekt."
4637+
4638+#: views/events-meta-box.php:106
4639+msgid "Valid values are local format (eg. 02 1234 5678 or 123 123 4567) or international format (eg. +61 (0) 2 1234 5678 or +1 123 123 4567). You may also use an optional extension of up to five digits prefixed by x or ext (eg. 123 123 4567 x89)"
4640+msgstr "Zulässige Eingabeformate sind (wie 02 1234 5678 or 123 123 4567) oder internationales Format (wie +61 (0) 2 1234 5678 oder +1 123 123 4567). Du kannst auch optional bis zu fünf Stellen Erweiterungen wie x oder ext verwenden (wie 123 123 4567 x89)"
4641+
4642+#: views/events-meta-box.php:184
4643+msgid "Is this post an event?"
4644+msgstr "Ist der Artikel ein Event?"
4645+
4646+#: views/events-meta-box.php:185
4647+#: views/events-options.php:181
4648+msgid "Yes"
4649+msgstr "Ja"
4650+
4651+#: views/events-meta-box.php:186
4652+#: views/events-options.php:185
4653+msgid "No"
4654+msgstr "Nein"
4655+
4656+#: views/events-meta-box.php:203
4657+msgid "Event Time &amp; Date"
4658+msgstr "Event Zeit &amp; Datum"
4659+
4660+#: views/events-meta-box.php:206
4661+msgid "All day event?"
4662+msgstr "Ganztags?"
4663+
4664+#: views/events-meta-box.php:210
4665+msgid "Start Date / Time:"
4666+msgstr "Start Datum / Zeit:"
4667+
4668+#: views/events-meta-box.php:224
4669+#: views/events-meta-box.php:254
4670+msgid "@"
4671+msgstr "@"
4672+
4673+#: views/events-meta-box.php:240
4674+msgid "End Date / Time:"
4675+msgstr "Ende Datum / Zeit:"
4676+
4677+#: views/events-meta-box.php:270
4678+msgid "Event Location Details"
4679+msgstr "Eventort Beschreibung"
4680+
4681+#: views/events-meta-box.php:273
4682+#: views/list.php:45
4683+#: views/single.php:27
4684+msgid "Venue:"
4685+msgstr "Eventort:"
4686+
4687+#: views/events-meta-box.php:279
4688+msgid "Country:"
4689+msgstr "Land:"
4690+
4691+#: views/events-meta-box.php:296
4692+#: views/list.php:60
4693+#: views/single.php:35
4694+msgid "Address:"
4695+msgstr "Straße:"
4696+
4697+#: views/events-meta-box.php:300
4698+msgid "City:"
4699+msgstr "Stadt:"
4700+
4701+#: views/events-meta-box.php:305
4702+msgid "Province:"
4703+msgstr "Bundesland:"
4704+
4705+#: views/events-meta-box.php:309
4706+msgid "State:"
4707+msgstr "Staat:"
4708+
4709+#: views/events-meta-box.php:312
4710+msgid "Select a State:"
4711+msgstr "Staat auswählen:"
4712+
4713+#: views/events-meta-box.php:314
4714+msgid "Alabama"
4715+msgstr "Baden-Württemberg"
4716+
4717+#: views/events-meta-box.php:315
4718+msgid "Alaska"
4719+msgstr "Bayern"
4720+
4721+#: views/events-meta-box.php:316
4722+msgid "Arizona"
4723+msgstr "Berlin"
4724+
4725+#: views/events-meta-box.php:317
4726+msgid "Arkansas"
4727+msgstr "Brandenburg"
4728+
4729+#: views/events-meta-box.php:318
4730+msgid "California"
4731+msgstr "Bremen"
4732+
4733+#: views/events-meta-box.php:319
4734+msgid "Colorado"
4735+msgstr "Hamburg"
4736+
4737+#: views/events-meta-box.php:320
4738+msgid "Connecticut"
4739+msgstr "Hessen"
4740+
4741+#: views/events-meta-box.php:321
4742+msgid "Delaware"
4743+msgstr "Mecklenburg-Vorpommern"
4744+
4745+#: views/events-meta-box.php:322
4746+msgid "District of Columbia"
4747+msgstr "Niedersachsen"
4748+
4749+#: views/events-meta-box.php:323
4750+msgid "Florida"
4751+msgstr "Nordrhein-Westfalen"
4752+
4753+#: views/events-meta-box.php:325
4754+msgid "Hawaii"
4755+msgstr "Rheinland-Pfalz"
4756+
4757+#: views/events-meta-box.php:326
4758+msgid "Idaho"
4759+msgstr "Saarland"
4760+
4761+#: views/events-meta-box.php:327
4762+msgid "Illinois"
4763+msgstr "Sachsen"
4764+
4765+#: views/events-meta-box.php:328
4766+msgid "Indiana"
4767+msgstr "Sachsen-Anhalt"
4768+
4769+#: views/events-meta-box.php:329
4770+msgid "Iowa"
4771+msgstr "Schleswig-Holstein"
4772+
4773+#: views/events-meta-box.php:330
4774+msgid "Kansas"
4775+msgstr "Thüringen"
4776+
4777+#: views/events-meta-box.php:331
4778+msgid "Kentucky"
4779+msgstr " "
4780+
4781+#: views/events-meta-box.php:332
4782+msgid "Louisiana"
4783+msgstr " "
4784+
4785+#: views/events-meta-box.php:333
4786+msgid "Maine"
4787+msgstr " "
4788+
4789+#: views/events-meta-box.php:334
4790+msgid "Maryland"
4791+msgstr " "
4792+
4793+#: views/events-meta-box.php:335
4794+msgid "Massachusetts"
4795+msgstr " "
4796+
4797+#: views/events-meta-box.php:336
4798+msgid "Michigan"
4799+msgstr " "
4800+
4801+#: views/events-meta-box.php:337
4802+msgid "Minnesota"
4803+msgstr " "
4804+
4805+#: views/events-meta-box.php:338
4806+msgid "Mississippi"
4807+msgstr " "
4808+
4809+#: views/events-meta-box.php:339
4810+msgid "Missouri"
4811+msgstr " "
4812+
4813+#: views/events-meta-box.php:340
4814+msgid "Montana"
4815+msgstr " "
4816+
4817+#: views/events-meta-box.php:341
4818+msgid "Nebraska"
4819+msgstr " "
4820+
4821+#: views/events-meta-box.php:342
4822+msgid "Nevada"
4823+msgstr " "
4824+
4825+#: views/events-meta-box.php:343
4826+msgid "New Hampshire"
4827+msgstr " "
4828+
4829+#: views/events-meta-box.php:344
4830+msgid "New Jersey"
4831+msgstr " "
4832+
4833+#: views/events-meta-box.php:345
4834+msgid "New Mexico"
4835+msgstr " "
4836+
4837+#: views/events-meta-box.php:346
4838+msgid "New York"
4839+msgstr " "
4840+
4841+#: views/events-meta-box.php:347
4842+msgid "North Carolina"
4843+msgstr " "
4844+
4845+#: views/events-meta-box.php:348
4846+msgid "North Dakota"
4847+msgstr " "
4848+
4849+#: views/events-meta-box.php:349
4850+msgid "Ohio"
4851+msgstr " "
4852+
4853+#: views/events-meta-box.php:350
4854+msgid "Oklahoma"
4855+msgstr " "
4856+
4857+#: views/events-meta-box.php:351
4858+msgid "Oregon"
4859+msgstr " "
4860+
4861+#: views/events-meta-box.php:352
4862+msgid "Pennsylvania"
4863+msgstr " "
4864+
4865+#: views/events-meta-box.php:353
4866+msgid "Rhode Island"
4867+msgstr " "
4868+
4869+#: views/events-meta-box.php:354
4870+msgid "South Carolina"
4871+msgstr " "
4872+
4873+#: views/events-meta-box.php:355
4874+msgid "South Dakota"
4875+msgstr " "
4876+
4877+#: views/events-meta-box.php:356
4878+msgid "Tennessee"
4879+msgstr " "
4880+
4881+#: views/events-meta-box.php:357
4882+msgid "Texas"
4883+msgstr " "
4884+
4885+#: views/events-meta-box.php:358
4886+msgid "Utah"
4887+msgstr " "
4888+
4889+#: views/events-meta-box.php:359
4890+msgid "Vermont"
4891+msgstr " "
4892+
4893+#: views/events-meta-box.php:360
4894+msgid "Virginia"
4895+msgstr " "
4896+
4897+#: views/events-meta-box.php:361
4898+msgid "Washington"
4899+msgstr " "
4900+
4901+#: views/events-meta-box.php:362
4902+msgid "West Virginia"
4903+msgstr " "
4904+
4905+#: views/events-meta-box.php:363
4906+msgid "Wisconsin"
4907+msgstr " "
4908+
4909+#: views/events-meta-box.php:364
4910+msgid "Wyoming"
4911+msgstr " "
4912+
4913+#: views/events-meta-box.php:378
4914+msgid "Postal Code:"
4915+msgstr "PLZ:"
4916+
4917+#: views/events-meta-box.php:382
4918+#: views/list.php:54
4919+#: views/single.php:31
4920+msgid "Phone:"
4921+msgstr "Telefon:"
4922+
4923+#: views/events-meta-box.php:386
4924+msgid "Event Cost"
4925+msgstr "Event Kosten"
4926+
4927+#: views/events-meta-box.php:389
4928+#: views/list.php:69
4929+#: views/single.php:21
4930+msgid "Cost:"
4931+msgstr "Preis:"
4932+
4933+#: views/events-meta-box.php:394
4934+msgid "Leave blank to hide the field. Enter a 0 for events that are free."
4935+msgstr "Leeres Feld wird nicht angezeigt. 0 = kostenlose Veranstaltung."
4936+
4937+#: views/events-meta-box.php:398
4938+msgid "Sell Tickets &amp; Track Registration"
4939+msgstr "Ticketverkauf &amp; Track Registrierung"
4940+
4941+#: views/events-meta-box.php:403
4942+msgid "Interested in selling tickets and tracking registrations? Now you can do it for free using our <a href=\"http://wordpress.org/extend/plugins/eventbrite-for-the-events-calendar/\">Eventbrite Integration Plugin</a>. Eventbrite is a feature rich easy-to-use event management tool. \"Wow, you're selling Eventbrite pretty hard. You must get a kickback.\" Well, now that you mention it... we do. We get a little something for everyone that registers an event using our referral link. It's how we're able to keep supporting and building plugins for the open source community. "
4943+msgstr "Interessiert an Ticketverkauf und Nachverfolgung? Jetzt kannst du es tun mit unserem <a href=\"http://wordpress.org/extend/plugins/eventbrite-for-the-events-calendar/\">Eventbrite Integration Plugin</a>. Eventbrite ist ein leicht zu bedienendes Event Management Tool mit vielen Eigenschaften. \"Hey, ihr verkauft Eventbrite echt hart. Ihr müsst was zurück bekommen.\" Ok, wenn du es schon ansprichst... so ist es. Wir bekommen eine Kleinigkeit für jeden, der sich mit unserem Referenzlink anmeldet. Das macht es uns möglich den Support und die Entwicklung von Plugins für die Open Source Gemeinde zu machen."
4944+
4945+#: views/events-meta-box.php:403
4946+msgid "Check it out here."
4947+msgstr "Hier ausprobieren."
4948+
4949+#: views/events-meta-box.php:421
4950+msgid "<h4>If You Like This Plugin - Help Support It</h4><p>We spend a lot of time and effort building robust plugins and we love to share them with the community. If you use this plugin consider making a donation to help support its' continued development. You may remove this message on the <a href=\"/wp-admin/options-general.php?page=the-events-calendar.php\">settings page</a>.</p>"
4951+msgstr "<h4>Wenn Du dieses Plugin magst - Unterstütze es</h4><p>Wir verbringen viel Zeit und Anstrengung damit stabile Plugins zu entwickeln und teilen sie sehr gerne mit der Gemeinschaft. Wenn du dieses Plugin nutzt, überlege dir ob du mit einer Spende den Support und die weiterentwicklung unterstützen willst. Du kannst diese Nachricht auf der Seite <a href=\"/wp-admin/options-general.php?page=the-events-calendar.php\">Einstellungen</a> löschen.</p>"
4952+
4953+#: views/events-meta-box.php:423
4954+msgid "Thanks"
4955+msgstr "Danke"
4956+
4957+#: views/events-options.php:74
4958+msgid "The Events Calendar Settings"
4959+msgstr "Die Events Calendar Einstellungen"
4960+
4961+#: views/events-options.php:94
4962+msgid "Need a hand?"
4963+msgstr "Brauchst du Hilfe?"
4964+
4965+#: views/events-options.php:95
4966+msgid "If you're stuck on these options, please <a href=\"http://wordpress.org/extend/plugins/the-events-calendar/\">check out the documentation</a>. If you're still wondering what's going on, be sure to stop by the support <a href=\"http://wordpress.org/tags/the-events-calendar?forum_id=10\">forum</a> and ask for help. The open source community is full of kind folks who are happy to help."
4967+msgstr "Wenn du bei diese Option nicht weiterkommst, bitte <a href=\"http://wordpress.org/extend/plugins/the-events-calendar/\">probier die Dokumentation</a>. wenn du dich immer noch wunderst was da vor sich geht, versuch den Support im <a href=\"http://wordpress.org/tags/the-events-calendar?forum_id=10\">Forum</a> und frage nach Hilfe. Die Open Source Gemeinde ist sehr nett und wird dir weiterhelfen."
4968+
4969+#: views/events-options.php:96
4970+msgid "Here is the iCal feed URL for your events: "
4971+msgstr "Hier ist die iCal Feed URL für deine Events:"
4972+
4973+#: views/events-options.php:99
4974+msgid "Donate"
4975+msgstr "Spende"
4976+
4977+#: views/events-options.php:108
4978+msgid "If you find this plugin useful, please consider donating to the producer of it, Shane &#38; Peter, Inc. Thank you!"
4979+msgstr "Wenn du dieses Plugin nützlich findest, überlege dir bitte dem Prduzenten, Shane &#38; Peter, Inc. eine Spende zukommen zu lassen. Vielen Dank!"
4980+
4981+#: views/events-options.php:112
4982+msgid "I have already donated, so please hide this button!"
4983+msgstr "Ich habe schon gespendet, bitte lösche diesen Knopf!"
4984+
4985+#: views/events-options.php:122
4986+msgid "Donate for this wonderful plugin"
4987+msgstr "Spende für dieses wunderbare Plugin"
4988+
4989+#: views/events-options.php:136
4990+msgid "Settings"
4991+msgstr "Einstellungen"
4992+
4993+#: views/events-options.php:139
4994+#: views/events-options.php:143
4995+msgid "Default View for the Events"
4996+msgstr "Vorgabeart der Eventanzeige"
4997+
4998+#: views/events-options.php:155
4999+#: views/gridview.php:15
5000+#: views/list.php:12
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches