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
=== added directory 'wp-content/plugins/the-events-calendar'
=== added file 'wp-content/plugins/the-events-calendar/events-calendar-widget.class.php'
--- wp-content/plugins/the-events-calendar/events-calendar-widget.class.php 1970-01-01 00:00:00 +0000
+++ wp-content/plugins/the-events-calendar/events-calendar-widget.class.php 2011-02-07 00:09:58 +0000
@@ -0,0 +1,60 @@
1<?php
2if( !class_exists( 'Events_Calendar_Widget') ) {
3
4 /**
5 * Calendar widget class
6 */
7 class Events_Calendar_Widget extends WP_Widget {
8
9 public $pluginDomain = 'the-events-calendar';
10
11 function Events_Calendar_Widget() {
12 $widget_ops = array('classname' => 'events_calendar_widget', 'description' => __( 'A calendar of your events') );
13 $this->WP_Widget('calendar', __('Events Calendar'), $widget_ops);
14 }
15
16 function widget( $args, $instance ) {
17 extract($args);
18 $title = apply_filters('widget_title', empty($instance['title']) ? '&nbsp;' : $instance['title']);
19 echo $before_widget;
20 if ( $title )
21 echo $before_title . $title . $after_title;
22 echo '<div id="calendar_wrap">';
23 //echo get_calendar_custom(); /* 5 is the category id I have for event */
24 echo '</div>';
25 echo $after_widget;
26 }
27
28 function update( $new_instance, $old_instance ) {
29 $instance = $old_instance;
30 $instance['title'] = strip_tags($new_instance['title']);
31
32 return $instance;
33 }
34
35 function form( $instance ) {
36 $instance = wp_parse_args( (array) $instance, array( 'title' => '' ) );
37 $title = strip_tags($instance['title']);
38 ?>
39 <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:'); ?></label>
40 <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>
41 <?php
42 }
43
44 }
45
46 /* Add function to the widgets_ hook. */
47 // hook is commented out until development is finished, allows WP's default calendar widget to work
48 //add_action( 'widgets_init', 'events_calendar_load_widgets' );
49 //add_action( 'widgets_init', 'get_calendar_custom' );
50
51 //function get_calendar_custom(){echo "hi";}
52
53 /* Function that registers widget. */
54 function events_calendar_load_widgets() {
55 global $pluginDomain;
56 register_widget( 'Events_Calendar_Widget' );
57 // load text domain after class registration
58 load_plugin_textdomain( $pluginDomain, false, basename(dirname(__FILE__)) . '/lang/');
59 }
60}
0\ No newline at end of file61\ No newline at end of file
162
=== added file 'wp-content/plugins/the-events-calendar/events-list-widget.class.php'
--- wp-content/plugins/the-events-calendar/events-list-widget.class.php 1970-01-01 00:00:00 +0000
+++ wp-content/plugins/the-events-calendar/events-list-widget.class.php 2011-02-07 00:09:58 +0000
@@ -0,0 +1,129 @@
1<?php
2if( !class_exists( 'Events_List_Widget' ) ) {
3 /**
4 * Event List Widget
5 *
6 * Creates a widget that displays the next upcoming x events
7 */
8
9 class Events_List_Widget extends WP_Widget {
10
11 public $pluginDomain = 'the-events-calendar';
12
13 function Events_List_Widget() {
14 /* Widget settings. */
15 $widget_ops = array( 'classname' => 'eventsListWidget', 'description' => __( 'A widget that displays the next upcoming x events.', $this->pluginDomain) );
16
17 /* Widget control settings. */
18 $control_ops = array( 'id_base' => 'events-list-widget' );
19
20 /* Create the widget. */
21 $this->WP_Widget( 'events-list-widget', 'Events List Widget', $widget_ops, $control_ops );
22 }
23
24 function widget( $args, $instance ) {
25 global $wp_query;
26 extract( $args );
27
28 /* User-selected settings. */
29 $title = apply_filters('widget_title', $instance['title'] );
30 $limit = $instance['limit'];
31 $noUpcomingEvents = $instance['no_upcoming_events'];
32 $start = $instance['start'];
33 $startTime = $instance['start-time'];
34 $end = $instance['end'];
35 $endTime = $instance['end-time'];
36 $venue = $instance['venue'];
37 $address = $instance['address'];
38 $city = $instance['city'];
39 $state = $instance['state'];
40 $province = $instance['province'];
41 $zip = $instance['zip'];
42 $country = $instance['country'];
43 $phone = $instance['phone'];
44 $cost = $instance['cost'];
45
46 if ( eventsGetOptionValue('viewOption') == 'upcoming') {
47 $event_url = events_get_listview_link();
48 } else {
49 $event_url = events_get_gridview_link();
50 }
51
52 if( function_exists( 'get_events' ) ) {
53 $old_display = $wp_query->get('eventDisplay');
54 $wp_query->set('eventDisplay', 'upcoming');
55 $posts = get_events($limit, The_Events_Calendar::CATEGORYNAME);
56 }
57
58 /* Before widget (defined by themes). */
59 /* Title of widget (before and after defined by themes). */
60 if ( $title && !$noUpcomingEvents ) echo $before_widget . $before_title . $title . $after_title;
61
62 if( $posts ) {
63 /* Display list of events. */
64 if( function_exists( 'get_events' ) ) {
65 echo '<ul class="upcoming">';
66 $templateOverride = locate_template( array( 'events/events-list-load-widget-display.php' ) );
67 $templateLoc = $templateOverride ? $templateOverride : dirname( __FILE__ ) . '/views/events-list-load-widget-display.php';
68 foreach( $posts as $post ) {
69 setup_postdata($post);
70 include( $templateLoc );
71 }
72 echo "</ul>";
73
74 $wp_query->set('eventDisplay', $old_display);
75 }
76
77 /* Display link to all events */
78 echo '<div class="dig-in"><a href="' . $event_url . '">' . __('View All Events', $this->pluginDomain ) . '</a></div>';
79 } else if( !$noUpcomingEvents ) _e('There are no upcoming events at this time.', $this->pluginDomain);
80
81 /* After widget (defined by themes). */
82 if ( !$noUpcomingEvents ) echo $after_widget;
83 }
84
85 function update( $new_instance, $old_instance ) {
86 $instance = $old_instance;
87
88 /* Strip tags (if needed) and update the widget settings. */
89 $instance['title'] = strip_tags( $new_instance['title'] );
90 $instance['limit'] = strip_tags( $new_instance['limit'] );
91 $instance['no_upcoming_events'] = strip_tags( $new_instance['no_upcoming_events'] );
92 $instance['start'] = strip_tags( $new_instance['start'] );
93 if( $instance['start'] == 'on' ) $instance['start-time'] = strip_tags( $new_instance['start-time'] );
94 else $instance['start-time'] = '';
95 $instance['end'] = strip_tags( $new_instance['end'] );
96 if( $instance['end'] == 'on' ) $instance['end-time'] = strip_tags( $new_instance['end-time'] );
97 else $instance['end-time'] = '';
98 $instance['venue'] = strip_tags( $new_instance['venue'] );
99 $instance['country'] = strip_tags( $new_instance['country'] );
100 $instance['address'] = strip_tags( $new_instance['address'] );
101 $instance['city'] = strip_tags( $new_instance['city'] );
102 $instance['state'] = strip_tags( $new_instance['state'] );
103 $instance['province'] = strip_tags( $new_instance['province'] );
104 $instance['zip'] = strip_tags( $new_instance['zip'] );
105 $instance['phone'] = strip_tags( $new_instance['phone'] );
106 $instance['cost'] = strip_tags( $new_instance['cost'] );
107
108 return $instance;
109 }
110
111 function form( $instance ) {
112 /* Set up default widget settings. */
113 $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' => '');
114 $instance = wp_parse_args( (array) $instance, $defaults );
115 include( dirname( __FILE__ ) . '/views/events-list-load-widget-admin.php' );
116 }
117 }
118
119 /* Add function to the widgets_ hook. */
120 add_action( 'widgets_init', 'events_list_load_widgets' );
121
122 /* Function that registers widget. */
123 function events_list_load_widgets() {
124 global $pluginDomain;
125 register_widget( 'Events_List_Widget' );
126 // load text domain after class registration
127 load_plugin_textdomain( $pluginDomain, false, basename(dirname(__FILE__)) . '/lang/');
128 }
129}
0\ No newline at end of file130\ No newline at end of file
1131
=== added directory 'wp-content/plugins/the-events-calendar/lang'
=== added file 'wp-content/plugins/the-events-calendar/lang/the-events-calendar-cs_CZ.mo'
2Binary 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 differ132Binary 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
=== added file 'wp-content/plugins/the-events-calendar/lang/the-events-calendar-cs_CZ.po'
--- wp-content/plugins/the-events-calendar/lang/the-events-calendar-cs_CZ.po 1970-01-01 00:00:00 +0000
+++ wp-content/plugins/the-events-calendar/lang/the-events-calendar-cs_CZ.po 2011-02-07 00:09:58 +0000
@@ -0,0 +1,1620 @@
1# Translation of the WordPress plugin The Events Calendar 1.5.4 by Shane & Peter, Inc..
2# Copyright (C) 2010 Shane & Peter, Inc.
3# This file is distributed under the same license as the The Events Calendar package.
4# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5#
6msgid ""
7msgstr ""
8"Project-Id-Version: The Events Calendar 1.5.4\n"
9"Report-Msgid-Bugs-To: http://wordpress.org/tag/the-events-calendar\n"
10"POT-Creation-Date: 2010-02-10 19:57+0000\n"
11"PO-Revision-Date: 2010-02-12 17:43+0100\n"
12"Last-Translator: globus2008 <globus@email.cz>\n"
13"Language-Team: \n"
14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"
17"X-Poedit-Language: Czech\n"
18"X-Poedit-Country: CZECH REPUBLIC\n"
19
20#: the-events-calendar.php:54
21msgid "United States"
22msgstr "USA"
23
24#: the-events-calendar.php:55
25msgid "Afghanistan"
26msgstr "Afgánistán"
27
28#: the-events-calendar.php:56
29msgid "Albania"
30msgstr "Albánie"
31
32#: the-events-calendar.php:57
33msgid "Algeria"
34msgstr ""
35
36#: the-events-calendar.php:58
37msgid "American Samoa"
38msgstr ""
39
40#: the-events-calendar.php:59
41msgid "Andorra"
42msgstr ""
43
44#: the-events-calendar.php:60
45msgid "Angola"
46msgstr ""
47
48#: the-events-calendar.php:61
49msgid "Anguilla"
50msgstr ""
51
52#: the-events-calendar.php:62
53msgid "Antarctica"
54msgstr ""
55
56#: the-events-calendar.php:63
57msgid "Antigua And Barbuda"
58msgstr ""
59
60#: the-events-calendar.php:64
61msgid "Argentina"
62msgstr ""
63
64#: the-events-calendar.php:65
65msgid "Armenia"
66msgstr ""
67
68#: the-events-calendar.php:66
69msgid "Aruba"
70msgstr ""
71
72#: the-events-calendar.php:67
73msgid "Australia"
74msgstr ""
75
76#: the-events-calendar.php:68
77msgid "Austria"
78msgstr ""
79
80#: the-events-calendar.php:69
81msgid "Azerbaijan"
82msgstr ""
83
84#: the-events-calendar.php:70
85msgid "Bahamas"
86msgstr ""
87
88#: the-events-calendar.php:71
89msgid "Bahrain"
90msgstr ""
91
92#: the-events-calendar.php:72
93msgid "Bangladesh"
94msgstr ""
95
96#: the-events-calendar.php:73
97msgid "Barbados"
98msgstr ""
99
100#: the-events-calendar.php:74
101msgid "Belarus"
102msgstr ""
103
104#: the-events-calendar.php:75
105msgid "Belgium"
106msgstr ""
107
108#: the-events-calendar.php:76
109msgid "Belize"
110msgstr ""
111
112#: the-events-calendar.php:77
113msgid "Benin"
114msgstr ""
115
116#: the-events-calendar.php:78
117msgid "Bermuda"
118msgstr ""
119
120#: the-events-calendar.php:79
121msgid "Bhutan"
122msgstr ""
123
124#: the-events-calendar.php:80
125msgid "Bolivia"
126msgstr ""
127
128#: the-events-calendar.php:81
129msgid "Bosnia And Herzegowina"
130msgstr ""
131
132#: the-events-calendar.php:82
133msgid "Botswana"
134msgstr ""
135
136#: the-events-calendar.php:83
137msgid "Bouvet Island"
138msgstr ""
139
140#: the-events-calendar.php:84
141msgid "Brazil"
142msgstr ""
143
144#: the-events-calendar.php:85
145msgid "British Indian Ocean Territory"
146msgstr ""
147
148#: the-events-calendar.php:86
149msgid "Brunei Darussalam"
150msgstr ""
151
152#: the-events-calendar.php:87
153msgid "Bulgaria"
154msgstr ""
155
156#: the-events-calendar.php:88
157msgid "Burkina Faso"
158msgstr ""
159
160#: the-events-calendar.php:89
161msgid "Burundi"
162msgstr ""
163
164#: the-events-calendar.php:90
165msgid "Cambodia"
166msgstr ""
167
168#: the-events-calendar.php:91
169msgid "Cameroon"
170msgstr ""
171
172#: the-events-calendar.php:92
173msgid "Canada"
174msgstr ""
175
176#: the-events-calendar.php:93
177msgid "Cape Verde"
178msgstr ""
179
180#: the-events-calendar.php:94
181msgid "Cayman Islands"
182msgstr ""
183
184#: the-events-calendar.php:95
185msgid "Central African Republic"
186msgstr ""
187
188#: the-events-calendar.php:96
189msgid "Chad"
190msgstr ""
191
192#: the-events-calendar.php:97
193msgid "Chile"
194msgstr ""
195
196#: the-events-calendar.php:98
197msgid "China"
198msgstr ""
199
200#: the-events-calendar.php:99
201msgid "Christmas Island"
202msgstr ""
203
204#: the-events-calendar.php:100
205msgid "Cocos (Keeling) Islands"
206msgstr ""
207
208#: the-events-calendar.php:101
209msgid "Colombia"
210msgstr ""
211
212#: the-events-calendar.php:102
213msgid "Comoros"
214msgstr ""
215
216#: the-events-calendar.php:103
217msgid "Congo"
218msgstr ""
219
220#: the-events-calendar.php:104
221msgid "Congo, The Democratic Republic Of The"
222msgstr ""
223
224#: the-events-calendar.php:105
225msgid "Cook Islands"
226msgstr ""
227
228#: the-events-calendar.php:106
229msgid "Costa Rica"
230msgstr ""
231
232#: the-events-calendar.php:107
233msgid "Cote D'Ivoire"
234msgstr ""
235
236#: the-events-calendar.php:108
237msgid "Croatia (Local Name: Hrvatska)"
238msgstr ""
239
240#: the-events-calendar.php:109
241msgid "Cuba"
242msgstr ""
243
244#: the-events-calendar.php:110
245msgid "Cyprus"
246msgstr ""
247
248#: the-events-calendar.php:111
249msgid "Czech Republic"
250msgstr "Česká republika"
251
252#: the-events-calendar.php:112
253msgid "Denmark"
254msgstr ""
255
256#: the-events-calendar.php:113
257msgid "Djibouti"
258msgstr ""
259
260#: the-events-calendar.php:114
261msgid "Dominica"
262msgstr ""
263
264#: the-events-calendar.php:115
265msgid "Dominican Republic"
266msgstr ""
267
268#: the-events-calendar.php:116
269msgid "East Timor"
270msgstr ""
271
272#: the-events-calendar.php:117
273msgid "Ecuador"
274msgstr ""
275
276#: the-events-calendar.php:118
277msgid "Egypt"
278msgstr ""
279
280#: the-events-calendar.php:119
281msgid "El Salvador"
282msgstr ""
283
284#: the-events-calendar.php:120
285msgid "Equatorial Guinea"
286msgstr ""
287
288#: the-events-calendar.php:121
289msgid "Eritrea"
290msgstr ""
291
292#: the-events-calendar.php:122
293msgid "Estonia"
294msgstr ""
295
296#: the-events-calendar.php:123
297msgid "Ethiopia"
298msgstr ""
299
300#: the-events-calendar.php:124
301msgid "Falkland Islands (Malvinas)"
302msgstr ""
303
304#: the-events-calendar.php:125
305msgid "Faroe Islands"
306msgstr ""
307
308#: the-events-calendar.php:126
309msgid "Fiji"
310msgstr ""
311
312#: the-events-calendar.php:127
313msgid "Finland"
314msgstr ""
315
316#: the-events-calendar.php:128
317msgid "France"
318msgstr ""
319
320#: the-events-calendar.php:129
321msgid "France, Metropolitan"
322msgstr ""
323
324#: the-events-calendar.php:130
325msgid "French Guiana"
326msgstr ""
327
328#: the-events-calendar.php:131
329msgid "French Polynesia"
330msgstr ""
331
332#: the-events-calendar.php:132
333msgid "French Southern Territories"
334msgstr ""
335
336#: the-events-calendar.php:133
337msgid "Gabon"
338msgstr ""
339
340#: the-events-calendar.php:134
341msgid "Gambia"
342msgstr ""
343
344#: the-events-calendar.php:135
345#: views/events-meta-box.php:282
346msgid "Georgia"
347msgstr ""
348
349#: the-events-calendar.php:136
350msgid "Germany"
351msgstr ""
352
353#: the-events-calendar.php:137
354msgid "Ghana"
355msgstr ""
356
357#: the-events-calendar.php:138
358msgid "Gibraltar"
359msgstr ""
360
361#: the-events-calendar.php:139
362msgid "Greece"
363msgstr ""
364
365#: the-events-calendar.php:140
366msgid "Greenland"
367msgstr ""
368
369#: the-events-calendar.php:141
370msgid "Grenada"
371msgstr ""
372
373#: the-events-calendar.php:142
374msgid "Guadeloupe"
375msgstr ""
376
377#: the-events-calendar.php:143
378msgid "Guam"
379msgstr ""
380
381#: the-events-calendar.php:144
382msgid "Guatemala"
383msgstr ""
384
385#: the-events-calendar.php:145
386msgid "Guinea"
387msgstr ""
388
389#: the-events-calendar.php:146
390msgid "Guinea-Bissau"
391msgstr ""
392
393#: the-events-calendar.php:147
394msgid "Guyana"
395msgstr ""
396
397#: the-events-calendar.php:148
398msgid "Haiti"
399msgstr ""
400
401#: the-events-calendar.php:149
402msgid "Heard And Mc Donald Islands"
403msgstr ""
404
405#: the-events-calendar.php:150
406msgid "Holy See (Vatican City State)"
407msgstr ""
408
409#: the-events-calendar.php:151
410msgid "Honduras"
411msgstr ""
412
413#: the-events-calendar.php:152
414msgid "Hong Kong"
415msgstr ""
416
417#: the-events-calendar.php:153
418msgid "Hungary"
419msgstr ""
420
421#: the-events-calendar.php:154
422msgid "Iceland"
423msgstr ""
424
425#: the-events-calendar.php:155
426msgid "India"
427msgstr ""
428
429#: the-events-calendar.php:156
430msgid "Indonesia"
431msgstr ""
432
433#: the-events-calendar.php:157
434msgid "Iran (Islamic Republic Of)"
435msgstr ""
436
437#: the-events-calendar.php:158
438msgid "Iraq"
439msgstr ""
440
441#: the-events-calendar.php:159
442msgid "Ireland"
443msgstr ""
444
445#: the-events-calendar.php:160
446msgid "Israel"
447msgstr ""
448
449#: the-events-calendar.php:161
450msgid "Italy"
451msgstr ""
452
453#: the-events-calendar.php:162
454msgid "Jamaica"
455msgstr ""
456
457#: the-events-calendar.php:163
458msgid "Japan"
459msgstr ""
460
461#: the-events-calendar.php:164
462msgid "Jordan"
463msgstr ""
464
465#: the-events-calendar.php:165
466msgid "Kazakhstan"
467msgstr ""
468
469#: the-events-calendar.php:166
470msgid "Kenya"
471msgstr ""
472
473#: the-events-calendar.php:167
474msgid "Kiribati"
475msgstr ""
476
477#: the-events-calendar.php:168
478msgid "Korea, Democratic People's Republic Of"
479msgstr ""
480
481#: the-events-calendar.php:169
482msgid "Korea, Republic Of"
483msgstr ""
484
485#: the-events-calendar.php:170
486msgid "Kuwait"
487msgstr ""
488
489#: the-events-calendar.php:171
490msgid "Kyrgyzstan"
491msgstr ""
492
493#: the-events-calendar.php:172
494msgid "Lao People's Democratic Republic"
495msgstr ""
496
497#: the-events-calendar.php:173
498msgid "Latvia"
499msgstr ""
500
501#: the-events-calendar.php:174
502msgid "Lebanon"
503msgstr ""
504
505#: the-events-calendar.php:175
506msgid "Lesotho"
507msgstr ""
508
509#: the-events-calendar.php:176
510msgid "Liberia"
511msgstr ""
512
513#: the-events-calendar.php:177
514msgid "Libyan Arab Jamahiriya"
515msgstr ""
516
517#: the-events-calendar.php:178
518msgid "Liechtenstein"
519msgstr ""
520
521#: the-events-calendar.php:179
522msgid "Lithuania"
523msgstr ""
524
525#: the-events-calendar.php:180
526msgid "Luxembourg"
527msgstr ""
528
529#: the-events-calendar.php:181
530msgid "Macau"
531msgstr ""
532
533#: the-events-calendar.php:182
534msgid "Macedonia, Former Yugoslav Republic Of"
535msgstr ""
536
537#: the-events-calendar.php:183
538msgid "Madagascar"
539msgstr ""
540
541#: the-events-calendar.php:184
542msgid "Malawi"
543msgstr ""
544
545#: the-events-calendar.php:185
546msgid "Malaysia"
547msgstr ""
548
549#: the-events-calendar.php:186
550msgid "Maldives"
551msgstr ""
552
553#: the-events-calendar.php:187
554msgid "Mali"
555msgstr ""
556
557#: the-events-calendar.php:188
558msgid "Malta"
559msgstr ""
560
561#: the-events-calendar.php:189
562msgid "Marshall Islands"
563msgstr ""
564
565#: the-events-calendar.php:190
566msgid "Martinique"
567msgstr ""
568
569#: the-events-calendar.php:191
570msgid "Mauritania"
571msgstr ""
572
573#: the-events-calendar.php:192
574msgid "Mauritius"
575msgstr ""
576
577#: the-events-calendar.php:193
578msgid "Mayotte"
579msgstr ""
580
581#: the-events-calendar.php:194
582msgid "Mexico"
583msgstr ""
584
585#: the-events-calendar.php:195
586msgid "Micronesia, Federated States Of"
587msgstr ""
588
589#: the-events-calendar.php:196
590msgid "Moldova, Republic Of"
591msgstr ""
592
593#: the-events-calendar.php:197
594msgid "Monaco"
595msgstr ""
596
597#: the-events-calendar.php:198
598msgid "Mongolia"
599msgstr ""
600
601#: the-events-calendar.php:199
602msgid "Montserrat"
603msgstr ""
604
605#: the-events-calendar.php:200
606msgid "Morocco"
607msgstr ""
608
609#: the-events-calendar.php:201
610msgid "Mozambique"
611msgstr ""
612
613#: the-events-calendar.php:202
614msgid "Myanmar"
615msgstr ""
616
617#: the-events-calendar.php:203
618msgid "Namibia"
619msgstr ""
620
621#: the-events-calendar.php:204
622msgid "Nauru"
623msgstr ""
624
625#: the-events-calendar.php:205
626msgid "Nepal"
627msgstr ""
628
629#: the-events-calendar.php:206
630msgid "Netherlands"
631msgstr ""
632
633#: the-events-calendar.php:207
634msgid "Netherlands Antilles"
635msgstr ""
636
637#: the-events-calendar.php:208
638msgid "New Caledonia"
639msgstr ""
640
641#: the-events-calendar.php:209
642msgid "New Zealand"
643msgstr ""
644
645#: the-events-calendar.php:210
646msgid "Nicaragua"
647msgstr ""
648
649#: the-events-calendar.php:211
650msgid "Niger"
651msgstr ""
652
653#: the-events-calendar.php:212
654msgid "Nigeria"
655msgstr ""
656
657#: the-events-calendar.php:213
658msgid "Niue"
659msgstr ""
660
661#: the-events-calendar.php:214
662msgid "Norfolk Island"
663msgstr ""
664
665#: the-events-calendar.php:215
666msgid "Northern Mariana Islands"
667msgstr ""
668
669#: the-events-calendar.php:216
670msgid "Norway"
671msgstr ""
672
673#: the-events-calendar.php:217
674msgid "Oman"
675msgstr ""
676
677#: the-events-calendar.php:218
678msgid "Pakistan"
679msgstr ""
680
681#: the-events-calendar.php:219
682msgid "Palau"
683msgstr ""
684
685#: the-events-calendar.php:220
686msgid "Panama"
687msgstr ""
688
689#: the-events-calendar.php:221
690msgid "Papua New Guinea"
691msgstr ""
692
693#: the-events-calendar.php:222
694msgid "Paraguay"
695msgstr ""
696
697#: the-events-calendar.php:223
698msgid "Peru"
699msgstr ""
700
701#: the-events-calendar.php:224
702msgid "Philippines"
703msgstr ""
704
705#: the-events-calendar.php:225
706msgid "Pitcairn"
707msgstr ""
708
709#: the-events-calendar.php:226
710msgid "Poland"
711msgstr ""
712
713#: the-events-calendar.php:227
714msgid "Portugal"
715msgstr ""
716
717#: the-events-calendar.php:228
718msgid "Puerto Rico"
719msgstr ""
720
721#: the-events-calendar.php:229
722msgid "Qatar"
723msgstr ""
724
725#: the-events-calendar.php:230
726msgid "Reunion"
727msgstr ""
728
729#: the-events-calendar.php:231
730msgid "Romania"
731msgstr ""
732
733#: the-events-calendar.php:232
734msgid "Russian Federation"
735msgstr ""
736
737#: the-events-calendar.php:233
738msgid "Rwanda"
739msgstr ""
740
741#: the-events-calendar.php:234
742msgid "Saint Kitts And Nevis"
743msgstr ""
744
745#: the-events-calendar.php:235
746msgid "Saint Lucia"
747msgstr ""
748
749#: the-events-calendar.php:236
750msgid "Saint Vincent And The Grenadines"
751msgstr ""
752
753#: the-events-calendar.php:237
754msgid "Samoa"
755msgstr ""
756
757#: the-events-calendar.php:238
758msgid "San Marino"
759msgstr ""
760
761#: the-events-calendar.php:239
762msgid "Sao Tome And Principe"
763msgstr ""
764
765#: the-events-calendar.php:240
766msgid "Saudi Arabia"
767msgstr ""
768
769#: the-events-calendar.php:241
770msgid "Senegal"
771msgstr ""
772
773#: the-events-calendar.php:242
774msgid "Seychelles"
775msgstr ""
776
777#: the-events-calendar.php:243
778msgid "Sierra Leone"
779msgstr ""
780
781#: the-events-calendar.php:244
782msgid "Singapore"
783msgstr ""
784
785#: the-events-calendar.php:245
786msgid "Slovakia (Slovak Republic)"
787msgstr ""
788
789#: the-events-calendar.php:246
790msgid "Slovenia"
791msgstr ""
792
793#: the-events-calendar.php:247
794msgid "Solomon Islands"
795msgstr ""
796
797#: the-events-calendar.php:248
798msgid "Somalia"
799msgstr ""
800
801#: the-events-calendar.php:249
802msgid "South Africa"
803msgstr ""
804
805#: the-events-calendar.php:250
806msgid "South Georgia, South Sandwich Islands"
807msgstr ""
808
809#: the-events-calendar.php:251
810msgid "Spain"
811msgstr ""
812
813#: the-events-calendar.php:252
814msgid "Sri Lanka"
815msgstr ""
816
817#: the-events-calendar.php:253
818msgid "St. Helena"
819msgstr ""
820
821#: the-events-calendar.php:254
822msgid "St. Pierre And Miquelon"
823msgstr ""
824
825#: the-events-calendar.php:255
826msgid "Sudan"
827msgstr ""
828
829#: the-events-calendar.php:256
830msgid "Suriname"
831msgstr ""
832
833#: the-events-calendar.php:257
834msgid "Svalbard And Jan Mayen Islands"
835msgstr ""
836
837#: the-events-calendar.php:258
838msgid "Swaziland"
839msgstr ""
840
841#: the-events-calendar.php:259
842msgid "Sweden"
843msgstr ""
844
845#: the-events-calendar.php:260
846msgid "Switzerland"
847msgstr ""
848
849#: the-events-calendar.php:261
850msgid "Syrian Arab Republic"
851msgstr ""
852
853#: the-events-calendar.php:262
854msgid "Taiwan"
855msgstr "Taiwan"
856
857#: the-events-calendar.php:263
858msgid "Tajikistan"
859msgstr "Tajikistan"
860
861#: the-events-calendar.php:264
862msgid "Tanzania, United Republic Of"
863msgstr "Tanzania, United Republic Of"
864
865#: the-events-calendar.php:265
866msgid "Thailand"
867msgstr "Thailand"
868
869#: the-events-calendar.php:266
870msgid "Togo"
871msgstr "Togo"
872
873#: the-events-calendar.php:267
874msgid "Tokelau"
875msgstr "Tokelau"
876
877#: the-events-calendar.php:268
878msgid "Tonga"
879msgstr "Tonga"
880
881#: the-events-calendar.php:269
882msgid "Trinidad And Tobago"
883msgstr "Trinidad And Tobago"
884
885#: the-events-calendar.php:270
886msgid "Tunisia"
887msgstr "Tunisia"
888
889#: the-events-calendar.php:271
890msgid "Turkey"
891msgstr "Turkey"
892
893#: the-events-calendar.php:272
894msgid "Turkmenistan"
895msgstr "Turkmenistan"
896
897#: the-events-calendar.php:273
898msgid "Turks And Caicos Islands"
899msgstr "Turks And Caicos Islands"
900
901#: the-events-calendar.php:274
902msgid "Tuvalu"
903msgstr "Tuvalu"
904
905#: the-events-calendar.php:275
906msgid "Uganda"
907msgstr "Uganda"
908
909#: the-events-calendar.php:276
910msgid "Ukraine"
911msgstr "Ukraine"
912
913#: the-events-calendar.php:277
914msgid "United Arab Emirates"
915msgstr "United Arab Emirates"
916
917#: the-events-calendar.php:278
918msgid "United Kingdom"
919msgstr "United Kingdom"
920
921#: the-events-calendar.php:279
922msgid "United States Minor Outlying Islands"
923msgstr "United States Minor Outlying Islands"
924
925#: the-events-calendar.php:280
926msgid "Uruguay"
927msgstr "Uruguay"
928
929#: the-events-calendar.php:281
930msgid "Uzbekistan"
931msgstr "Uzbekistan"
932
933#: the-events-calendar.php:282
934msgid "Vanuatu"
935msgstr "Vanuatu"
936
937#: the-events-calendar.php:283
938msgid "Venezuela"
939msgstr "Venezuela"
940
941#: the-events-calendar.php:284
942msgid "Viet Nam"
943msgstr "Viet Nam"
944
945#: the-events-calendar.php:285
946msgid "Virgin Islands (British)"
947msgstr "Virgin Islands (British)"
948
949#: the-events-calendar.php:286
950msgid "Virgin Islands (U.S.)"
951msgstr "Virgin Islands (U.S.)"
952
953#: the-events-calendar.php:287
954msgid "Wallis And Futuna Islands"
955msgstr "Wallis And Futuna Islands"
956
957#: the-events-calendar.php:288
958msgid "Western Sahara"
959msgstr "Western Sahara"
960
961#: the-events-calendar.php:289
962msgid "Yemen"
963msgstr "Yemen"
964
965#: the-events-calendar.php:290
966msgid "Yugoslavia"
967msgstr "Yugoslavia"
968
969#: the-events-calendar.php:291
970msgid "Zambia"
971msgstr "Zambia"
972
973#: the-events-calendar.php:292
974msgid "Zimbabwe"
975msgstr "Zimbabwe"
976
977#: the-events-calendar.php:494
978msgid "January"
979msgstr "Leden"
980
981#: the-events-calendar.php:495
982msgid "February"
983msgstr "Únor"
984
985#: the-events-calendar.php:496
986msgid "March"
987msgstr "Březen"
988
989#: the-events-calendar.php:497
990msgid "April"
991msgstr "Duben"
992
993#: the-events-calendar.php:498
994msgid "May"
995msgstr "Květen"
996
997#: the-events-calendar.php:499
998msgid "June"
999msgstr "Červen"
1000
1001#: the-events-calendar.php:500
1002msgid "July"
1003msgstr "červenec"
1004
1005#: the-events-calendar.php:501
1006msgid "August"
1007msgstr "Srpen"
1008
1009#: the-events-calendar.php:502
1010msgid "September"
1011msgstr "Září"
1012
1013#: the-events-calendar.php:503
1014msgid "October"
1015msgstr "Říjen"
1016
1017#: the-events-calendar.php:504
1018msgid "November"
1019msgstr "Listopad"
1020
1021#: the-events-calendar.php:505
1022msgid "December"
1023msgstr "Prosinec"
1024
1025#. #-#-#-#-# plugin.pot (The Events Calendar 1.5.4) #-#-#-#-#
1026#. Plugin Name of an extension
1027#: the-events-calendar.php:937
1028msgid "The Events Calendar"
1029msgstr "Kalendář událostí"
1030
1031#: the-events-calendar.php:1916
1032msgid "A widget that displays the next upcoming x events."
1033msgstr "Widget, který zobrazuje x nadcházejících událostí"
1034
1035#: the-events-calendar.php:1958
1036msgid "View All Events"
1037msgstr "Zobrazit všechny události"
1038
1039#: the-events-calendar.php:2039
1040msgid "A calendar of your events"
1041msgstr "Kalendář Vašich událostí"
1042
1043#: the-events-calendar.php:2040
1044msgid "Events Calendar"
1045msgstr "Kalendář událostí"
1046
1047#: the-events-calendar.php:2066
1048#: views/events-list-load-widget-admin.php:2
1049msgid "Title:"
1050msgstr "Titulek:"
1051
1052#: views/events-list-load-widget-admin.php:7
1053msgid "Show:"
1054msgstr "Ukázat:"
1055
1056#: views/events-list-load-widget-admin.php:16
1057msgid "Display:"
1058msgstr "Zobrazit:"
1059
1060#: views/events-list-load-widget-admin.php:19
1061msgid "Start Date & Time"
1062msgstr "Začátek Datum & Čas"
1063
1064#: views/events-list-load-widget-admin.php:20
1065msgid "End Date & Time"
1066msgstr "Konec Datum & Čas"
1067
1068#: views/events-list-load-widget-admin.php:21
1069msgid "Venue"
1070msgstr "Místo"
1071
1072#: views/events-list-load-widget-admin.php:22
1073msgid "Address"
1074msgstr "Adresa"
1075
1076#: views/events-list-load-widget-admin.php:23
1077msgid "City"
1078msgstr "Město"
1079
1080#: views/events-list-load-widget-admin.php:24
1081msgid "State (US)"
1082msgstr "Stát (USA)"
1083
1084#: views/events-list-load-widget-admin.php:25
1085msgid "Province (Int)"
1086msgstr "Provincie"
1087
1088#: views/events-list-load-widget-admin.php:26
1089msgid "Postal Code"
1090msgstr "PSČ"
1091
1092#: views/events-list-load-widget-admin.php:27
1093msgid "Country"
1094msgstr "Země"
1095
1096#: views/events-list-load-widget-admin.php:28
1097msgid "Phone"
1098msgstr "Telefon"
1099
1100#: views/events-list-load-widget-admin.php:29
1101msgid "Price"
1102msgstr "Cena"
1103
1104#: views/events-list-load-widget-display.php:48
1105msgid "More Info"
1106msgstr "Více informací"
1107
1108#: views/events-meta-box.php:153
1109msgid "Is this post an event?"
1110msgstr "Je tento příspěvek událostí?"
1111
1112#: views/events-meta-box.php:154
1113#: views/events-options.php:157
1114msgid "Yes"
1115msgstr "Ano"
1116
1117#: views/events-meta-box.php:155
1118#: views/events-options.php:161
1119msgid "No"
1120msgstr "Ne"
1121
1122#: views/events-meta-box.php:162
1123msgid "Event Time &amp; Date"
1124msgstr "Čas události &amp; Date"
1125
1126#: views/events-meta-box.php:165
1127msgid "All day event?"
1128msgstr "Celodenní událost?"
1129
1130#: views/events-meta-box.php:169
1131msgid "Start Date / Time:"
1132msgstr "Začátek Datum / Čas:"
1133
1134#: views/events-meta-box.php:183
1135#: views/events-meta-box.php:213
1136msgid "@"
1137msgstr "@"
1138
1139#: views/events-meta-box.php:199
1140msgid "End Date / Time:"
1141msgstr "Konec Datum / Čas"
1142
1143#: views/events-meta-box.php:229
1144msgid "Event Location Details"
1145msgstr "Detaily o místě události"
1146
1147#: views/events-meta-box.php:232
1148#: views/list.php:45
1149#: views/single.php:26
1150msgid "Venue:"
1151msgstr "Místo:"
1152
1153#: views/events-meta-box.php:238
1154msgid "Country:"
1155msgstr "Země:"
1156
1157#: views/events-meta-box.php:255
1158#: views/list.php:63
1159#: views/single.php:30
1160msgid "Address:"
1161msgstr "Adresa:"
1162
1163#: views/events-meta-box.php:259
1164msgid "City:"
1165msgstr "Město:"
1166
1167#: views/events-meta-box.php:263
1168msgid "Province:"
1169msgstr "Provincie:"
1170
1171#: views/events-meta-box.php:267
1172msgid "State:"
1173msgstr "Stát:"
1174
1175#: views/events-meta-box.php:270
1176msgid "Select a State:"
1177msgstr "Vyberte stát:"
1178
1179#: views/events-meta-box.php:272
1180msgid "Alabama"
1181msgstr "Alabama"
1182
1183#: views/events-meta-box.php:273
1184msgid "Alaska"
1185msgstr "Alaska"
1186
1187#: views/events-meta-box.php:274
1188msgid "Arizona"
1189msgstr "Arizona"
1190
1191#: views/events-meta-box.php:275
1192msgid "Arkansas"
1193msgstr "Arkansas"
1194
1195#: views/events-meta-box.php:276
1196msgid "California"
1197msgstr "California"
1198
1199#: views/events-meta-box.php:277
1200msgid "Colorado"
1201msgstr "Colorado"
1202
1203#: views/events-meta-box.php:278
1204msgid "Connecticut"
1205msgstr "Connecticut"
1206
1207#: views/events-meta-box.php:279
1208msgid "Delaware"
1209msgstr "Delaware"
1210
1211#: views/events-meta-box.php:280
1212msgid "District of Columbia"
1213msgstr "District of Columbia"
1214
1215#: views/events-meta-box.php:281
1216msgid "Florida"
1217msgstr "Florida"
1218
1219#: views/events-meta-box.php:283
1220msgid "Hawaii"
1221msgstr "Hawaii"
1222
1223#: views/events-meta-box.php:284
1224msgid "Idaho"
1225msgstr "Idaho"
1226
1227#: views/events-meta-box.php:285
1228msgid "Illinois"
1229msgstr "Illinois"
1230
1231#: views/events-meta-box.php:286
1232msgid "Indiana"
1233msgstr "Indiana"
1234
1235#: views/events-meta-box.php:287
1236msgid "Iowa"
1237msgstr "Iowa"
1238
1239#: views/events-meta-box.php:288
1240msgid "Kansas"
1241msgstr "Kansas"
1242
1243#: views/events-meta-box.php:289
1244msgid "Kentucky"
1245msgstr ""
1246
1247#: views/events-meta-box.php:290
1248msgid "Louisiana"
1249msgstr ""
1250
1251#: views/events-meta-box.php:291
1252msgid "Maine"
1253msgstr ""
1254
1255#: views/events-meta-box.php:292
1256msgid "Maryland"
1257msgstr ""
1258
1259#: views/events-meta-box.php:293
1260msgid "Massachusetts"
1261msgstr ""
1262
1263#: views/events-meta-box.php:294
1264msgid "Michigan"
1265msgstr ""
1266
1267#: views/events-meta-box.php:295
1268msgid "Minnesota"
1269msgstr ""
1270
1271#: views/events-meta-box.php:296
1272msgid "Mississippi"
1273msgstr ""
1274
1275#: views/events-meta-box.php:297
1276msgid "Missouri"
1277msgstr ""
1278
1279#: views/events-meta-box.php:298
1280msgid "Montana"
1281msgstr ""
1282
1283#: views/events-meta-box.php:299
1284msgid "Nebraska"
1285msgstr ""
1286
1287#: views/events-meta-box.php:300
1288msgid "Nevada"
1289msgstr ""
1290
1291#: views/events-meta-box.php:301
1292msgid "New Hampshire"
1293msgstr ""
1294
1295#: views/events-meta-box.php:302
1296msgid "New Jersey"
1297msgstr ""
1298
1299#: views/events-meta-box.php:303
1300msgid "New Mexico"
1301msgstr ""
1302
1303#: views/events-meta-box.php:304
1304msgid "New York"
1305msgstr ""
1306
1307#: views/events-meta-box.php:305
1308msgid "North Carolina"
1309msgstr ""
1310
1311#: views/events-meta-box.php:306
1312msgid "North Dakota"
1313msgstr ""
1314
1315#: views/events-meta-box.php:307
1316msgid "Ohio"
1317msgstr ""
1318
1319#: views/events-meta-box.php:308
1320msgid "Oklahoma"
1321msgstr ""
1322
1323#: views/events-meta-box.php:309
1324msgid "Oregon"
1325msgstr ""
1326
1327#: views/events-meta-box.php:310
1328msgid "Pennsylvania"
1329msgstr ""
1330
1331#: views/events-meta-box.php:311
1332msgid "Rhode Island"
1333msgstr ""
1334
1335#: views/events-meta-box.php:312
1336msgid "South Carolina"
1337msgstr ""
1338
1339#: views/events-meta-box.php:313
1340msgid "South Dakota"
1341msgstr ""
1342
1343#: views/events-meta-box.php:314
1344msgid "Tennessee"
1345msgstr ""
1346
1347#: views/events-meta-box.php:315
1348msgid "Texas"
1349msgstr ""
1350
1351#: views/events-meta-box.php:316
1352msgid "Utah"
1353msgstr ""
1354
1355#: views/events-meta-box.php:317
1356msgid "Vermont"
1357msgstr ""
1358
1359#: views/events-meta-box.php:318
1360msgid "Virginia"
1361msgstr ""
1362
1363#: views/events-meta-box.php:319
1364msgid "Washington"
1365msgstr ""
1366
1367#: views/events-meta-box.php:320
1368msgid "West Virginia"
1369msgstr ""
1370
1371#: views/events-meta-box.php:321
1372msgid "Wisconsin"
1373msgstr ""
1374
1375#: views/events-meta-box.php:322
1376msgid "Wyoming"
1377msgstr ""
1378
1379#: views/events-meta-box.php:336
1380msgid "Postal Code:"
1381msgstr "PSČ:"
1382
1383#: views/events-meta-box.php:340
1384#: views/list.php:54
1385msgid "Phone:"
1386msgstr "Telefon:"
1387
1388#: views/events-meta-box.php:344
1389msgid "Event Cost"
1390msgstr "Účastnický poplatek:"
1391
1392#: views/events-meta-box.php:347
1393#: views/list.php:72
1394#: views/single.php:20
1395msgid "Cost:"
1396msgstr "Cena:"
1397
1398#: views/events-meta-box.php:352
1399msgid "Leave blank to hide the field. Enter a 0 for events that are free."
1400msgstr "Zanechte toto pole prázdné. Vložte 0, pokud bude událost s volným vstupem."
1401
1402#: views/events-meta-box.php:356
1403msgid "Sell Tickets &amp; Track Registration"
1404msgstr "Prodat vstupenku &amp; Track Registration"
1405
1406#: views/events-meta-box.php:361
1407msgid "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. "
1408msgstr "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í. "
1409
1410#: views/events-meta-box.php:361
1411msgid "Check it out here."
1412msgstr "Zkontrolujte toto."
1413
1414#: views/events-meta-box.php:372
1415msgid "<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>"
1416msgstr "<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>"
1417
1418#: views/events-meta-box.php:374
1419msgid "Thanks"
1420msgstr "Děkujeme."
1421
1422#: views/events-options.php:69
1423msgid "The Events Calendar Settings"
1424msgstr "Nastavení kalendáře událostí"
1425
1426#: views/events-options.php:71
1427msgid "Need a hand?"
1428msgstr "Potřebujete pomoc?"
1429
1430#: views/events-options.php:72
1431msgid "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."
1432msgstr "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."
1433
1434#: views/events-options.php:75
1435msgid "Donate"
1436msgstr "Podpořit"
1437
1438#: views/events-options.php:84
1439msgid "If you find this plugin useful, please consider donating to the producer of it, Shane &#38; Peter, Inc. Thank you!"
1440msgstr "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!"
1441
1442#: views/events-options.php:88
1443msgid "I have already donated, so please hide this button!"
1444msgstr "Již jsem projekt podpořil, tak prosím nezobrazuj toto tlačítko."
1445
1446#: views/events-options.php:98
1447msgid "Donate for this wonderful plugin"
1448msgstr "Podpořit tento skvělý plugin"
1449
1450#: views/events-options.php:112
1451msgid "Settings"
1452msgstr "Nastavení"
1453
1454#: views/events-options.php:115
1455#: views/events-options.php:119
1456msgid "Default View for the Events"
1457msgstr "Výchozí vzhled pro události"
1458
1459#: views/events-options.php:131
1460#: views/gridview.php:15
1461#: views/list.php:12
1462msgid "Calendar"
1463msgstr "Kalendář"
1464
1465#: views/events-options.php:135
1466#: views/gridview.php:14
1467#: views/list.php:11
1468msgid "Event List"
1469msgstr "Seznam"
1470
1471#: views/events-options.php:141
1472#: views/events-options.php:145
1473msgid "Show Comments"
1474msgstr "Zobrazit komentáře"
1475
1476#: views/events-options.php:167
1477msgid "Default Country for Events"
1478msgstr "Výchozí země pro události"
1479
1480#: views/events-options.php:192
1481#: views/events-options.php:196
1482msgid "Embed Google Maps"
1483msgstr "Vložené Google mapy"
1484
1485#: views/events-options.php:210
1486msgid "Off"
1487msgstr "Vypnout"
1488
1489#: views/events-options.php:214
1490msgid "On"
1491msgstr "Zapnout"
1492
1493#: views/events-options.php:217
1494msgid "Height"
1495msgstr "Výška"
1496
1497#: views/events-options.php:218
1498msgid "Width"
1499msgstr "Šířka"
1500
1501#: views/events-options.php:218
1502msgid "(number or %)"
1503msgstr "(počet nebo %)"
1504
1505#: views/events-options.php:229
1506msgid "Save Changes"
1507msgstr "Uložit změny"
1508
1509#: views/gridview.php:9
1510#: views/list.php:9
1511msgid "Calendar of Events"
1512msgstr "Kalendář událostí"
1513
1514#: views/list.php:33
1515#: views/single.php:13
1516msgid "Start:"
1517msgstr "Start:"
1518
1519#: views/list.php:37
1520#: views/single.php:16
1521msgid "End:"
1522msgstr "Konec:"
1523
1524#: views/list.php:63
1525#: views/single.php:30
1526msgid "Google Map"
1527msgstr "Google mapa"
1528
1529#: views/list.php:94
1530msgid "&laquo; Previous Events"
1531msgstr "&laquo;Předchozí události"
1532
1533#: views/list.php:107
1534msgid "Next Events &raquo;"
1535msgstr "Další události &raquo;"
1536
1537#: views/single.php:8
1538msgid "&laquo; Back to Events"
1539msgstr "&laquo; Návrat k událostem"
1540
1541#: views/single.php:10
1542msgid "This event has passed."
1543msgstr "Tato událost již proběhla"
1544
1545#: views/single.php:30
1546msgid "Click to view a Google Map"
1547msgstr "Klikněte pro zobrazení Google mapy"
1548
1549#: views/table.php:12
1550msgid "Sunday"
1551msgstr "Neděle"
1552
1553#: views/table.php:12
1554msgid "Sun"
1555msgstr "Ne"
1556
1557#: views/table.php:13
1558msgid "Monday"
1559msgstr "Pondělí"
1560
1561#: views/table.php:13
1562msgid "Mon"
1563msgstr "Po"
1564
1565#: views/table.php:14
1566msgid "Tuesday"
1567msgstr "Úterý"
1568
1569#: views/table.php:14
1570msgid "Tue"
1571msgstr "Út"
1572
1573#: views/table.php:15
1574msgid "Wednesday"
1575msgstr "Středa"
1576
1577#: views/table.php:15
1578msgid "Wed"
1579msgstr "St"
1580
1581#: views/table.php:16
1582msgid "Thursday"
1583msgstr "Čtvrtek"
1584
1585#: views/table.php:16
1586msgid "Thu"
1587msgstr "Čt"
1588
1589#: views/table.php:17
1590msgid "Friday"
1591msgstr "Pátek"
1592
1593#: views/table.php:17
1594msgid "Fri"
1595msgstr "Pa"
1596
1597#: views/table.php:18
1598msgid "Saturday"
1599msgstr "Sobota"
1600
1601#: views/table.php:18
1602msgid "Sat"
1603msgstr "So"
1604
1605#. Plugin URI of an extension
1606msgid "http://wordpress.org/extend/plugins/the-events-calendar/"
1607msgstr "http://wordpress.org/extend/plugins/the-events-calendar/"
1608
1609#. Description of an extension
1610msgid "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."
1611msgstr "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í."
1612
1613#. Author of an extension
1614msgid "Shane & Peter, Inc."
1615msgstr "Shane & Peter, Inc."
1616
1617#. Author URI of an extension
1618msgid "http://www.shaneandpeter.com/"
1619msgstr "http://www.shaneandpeter.com"
1620
01621
=== added file 'wp-content/plugins/the-events-calendar/lang/the-events-calendar-da_DA.mo'
1Binary 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 differ1622Binary 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
=== added file 'wp-content/plugins/the-events-calendar/lang/the-events-calendar-da_DA.po'
--- wp-content/plugins/the-events-calendar/lang/the-events-calendar-da_DA.po 1970-01-01 00:00:00 +0000
+++ wp-content/plugins/the-events-calendar/lang/the-events-calendar-da_DA.po 2011-02-07 00:09:58 +0000
@@ -0,0 +1,1580 @@
1# Translation of the WordPress plugin The Events Calendar 1.5.4 by Shane & Peter, Inc..
2# Copyright (C) 2010 Shane & Peter, Inc.
3# This file is distributed under the same license as the The Events Calendar package.
4# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5#
6msgid ""
7msgstr ""
8"Project-Id-Version: The Events Calendar 1.5.4\n"
9"Report-Msgid-Bugs-To: http://wordpress.org/tag/the-events-calendar\n"
10"POT-Creation-Date: 2010-01-31 01:16+0000\n"
11"PO-Revision-Date: 2010-02-21 14:19+0100\n"
12"Last-Translator: Carsten Matzon <carsten@matzon.dk>\n"
13"Language-Team: LANGUAGE <LL@li.org>\n"
14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=utf-8\n"
16"Content-Transfer-Encoding: 8bit\n"
17
18#: the-events-calendar.php:54
19msgid "United States"
20msgstr "USA"
21
22#: the-events-calendar.php:55
23msgid "Afghanistan"
24msgstr ""
25
26#: the-events-calendar.php:56
27msgid "Albania"
28msgstr "Albanien"
29
30#: the-events-calendar.php:57
31msgid "Algeria"
32msgstr "Algeriet"
33
34#: the-events-calendar.php:58
35msgid "American Samoa"
36msgstr "Amerikansk Samoa"
37
38#: the-events-calendar.php:59
39msgid "Andorra"
40msgstr ""
41
42#: the-events-calendar.php:60
43msgid "Angola"
44msgstr ""
45
46#: the-events-calendar.php:61
47msgid "Anguilla"
48msgstr ""
49
50#: the-events-calendar.php:62
51msgid "Antarctica"
52msgstr "Antartika"
53
54#: the-events-calendar.php:63
55msgid "Antigua And Barbuda"
56msgstr ""
57
58#: the-events-calendar.php:64
59msgid "Argentina"
60msgstr ""
61
62#: the-events-calendar.php:65
63msgid "Armenia"
64msgstr "Armenien"
65
66#: the-events-calendar.php:66
67msgid "Aruba"
68msgstr ""
69
70#: the-events-calendar.php:67
71msgid "Australia"
72msgstr "Australien"
73
74#: the-events-calendar.php:68
75msgid "Austria"
76msgstr "Østrig"
77
78#: the-events-calendar.php:69
79msgid "Azerbaijan"
80msgstr ""
81
82#: the-events-calendar.php:70
83msgid "Bahamas"
84msgstr ""
85
86#: the-events-calendar.php:71
87msgid "Bahrain"
88msgstr ""
89
90#: the-events-calendar.php:72
91msgid "Bangladesh"
92msgstr ""
93
94#: the-events-calendar.php:73
95msgid "Barbados"
96msgstr ""
97
98#: the-events-calendar.php:74
99msgid "Belarus"
100msgstr "Hviderusland"
101
102#: the-events-calendar.php:75
103msgid "Belgium"
104msgstr "Belgien"
105
106#: the-events-calendar.php:76
107msgid "Belize"
108msgstr ""
109
110#: the-events-calendar.php:77
111msgid "Benin"
112msgstr ""
113
114#: the-events-calendar.php:78
115msgid "Bermuda"
116msgstr ""
117
118#: the-events-calendar.php:79
119msgid "Bhutan"
120msgstr ""
121
122#: the-events-calendar.php:80
123msgid "Bolivia"
124msgstr "Bolivien"
125
126#: the-events-calendar.php:81
127msgid "Bosnia And Herzegowina"
128msgstr "Bosnien og Hercegovina"
129
130#: the-events-calendar.php:82
131msgid "Botswana"
132msgstr ""
133
134#: the-events-calendar.php:83
135msgid "Bouvet Island"
136msgstr ""
137
138#: the-events-calendar.php:84
139msgid "Brazil"
140msgstr "Brasilien"
141
142#: the-events-calendar.php:85
143msgid "British Indian Ocean Territory"
144msgstr ""
145
146#: the-events-calendar.php:86
147msgid "Brunei Darussalam"
148msgstr ""
149
150#: the-events-calendar.php:87
151msgid "Bulgaria"
152msgstr "Bulgarien"
153
154#: the-events-calendar.php:88
155msgid "Burkina Faso"
156msgstr ""
157
158#: the-events-calendar.php:89
159msgid "Burundi"
160msgstr ""
161
162#: the-events-calendar.php:90
163msgid "Cambodia"
164msgstr ""
165
166#: the-events-calendar.php:91
167msgid "Cameroon"
168msgstr ""
169
170#: the-events-calendar.php:92
171msgid "Canada"
172msgstr "Kanada"
173
174#: the-events-calendar.php:93
175msgid "Cape Verde"
176msgstr "Kap Verde"
177
178#: the-events-calendar.php:94
179msgid "Cayman Islands"
180msgstr "Cayman Øerne"
181
182#: the-events-calendar.php:95
183msgid "Central African Republic"
184msgstr "Central Afrikanske republic"
185
186#: the-events-calendar.php:96
187msgid "Chad"
188msgstr ""
189
190#: the-events-calendar.php:97
191msgid "Chile"
192msgstr ""
193
194#: the-events-calendar.php:98
195msgid "China"
196msgstr "Kina"
197
198#: the-events-calendar.php:99
199msgid "Christmas Island"
200msgstr ""
201
202#: the-events-calendar.php:100
203msgid "Cocos (Keeling) Islands"
204msgstr ""
205
206#: the-events-calendar.php:101
207msgid "Colombia"
208msgstr ""
209
210#: the-events-calendar.php:102
211msgid "Comoros"
212msgstr ""
213
214#: the-events-calendar.php:103
215msgid "Congo"
216msgstr ""
217
218#: the-events-calendar.php:104
219msgid "Congo, The Democratic Republic Of The"
220msgstr ""
221
222#: the-events-calendar.php:105
223msgid "Cook Islands"
224msgstr ""
225
226#: the-events-calendar.php:106
227msgid "Costa Rica"
228msgstr ""
229
230#: the-events-calendar.php:107
231msgid "Cote D'Ivoire"
232msgstr ""
233
234#: the-events-calendar.php:108
235msgid "Croatia (Local Name: Hrvatska)"
236msgstr "Kroatien"
237
238#: the-events-calendar.php:109
239msgid "Cuba"
240msgstr ""
241
242#: the-events-calendar.php:110
243msgid "Cyprus"
244msgstr "Grækenland"
245
246#: the-events-calendar.php:111
247msgid "Czech Republic"
248msgstr "Tjekkiet"
249
250#: the-events-calendar.php:112
251msgid "Denmark"
252msgstr "Danmark"
253
254#: the-events-calendar.php:113
255msgid "Djibouti"
256msgstr ""
257
258#: the-events-calendar.php:114
259msgid "Dominica"
260msgstr ""
261
262#: the-events-calendar.php:115
263msgid "Dominican Republic"
264msgstr "Domikanske Republic"
265
266#: the-events-calendar.php:116
267msgid "East Timor"
268msgstr ""
269
270#: the-events-calendar.php:117
271msgid "Ecuador"
272msgstr ""
273
274#: the-events-calendar.php:118
275msgid "Egypt"
276msgstr "Egypten"
277
278#: the-events-calendar.php:119
279msgid "El Salvador"
280msgstr ""
281
282#: the-events-calendar.php:120
283msgid "Equatorial Guinea"
284msgstr ""
285
286#: the-events-calendar.php:121
287msgid "Eritrea"
288msgstr ""
289
290#: the-events-calendar.php:122
291msgid "Estonia"
292msgstr "Estland"
293
294#: the-events-calendar.php:123
295msgid "Ethiopia"
296msgstr "Ethiopien"
297
298#: the-events-calendar.php:124
299msgid "Falkland Islands (Malvinas)"
300msgstr "Falklands Øerne"
301
302#: the-events-calendar.php:125
303msgid "Faroe Islands"
304msgstr "Færøerne"
305
306#: the-events-calendar.php:126
307msgid "Fiji"
308msgstr ""
309
310#: the-events-calendar.php:127
311msgid "Finland"
312msgstr ""
313
314#: the-events-calendar.php:128
315msgid "France"
316msgstr "Frankrig"
317
318#: the-events-calendar.php:129
319msgid "France, Metropolitan"
320msgstr "Frankrig, Metropolitan"
321
322#: the-events-calendar.php:130
323msgid "French Guiana"
324msgstr "Fransk Guiana"
325
326#: the-events-calendar.php:131
327msgid "French Polynesia"
328msgstr "Fransk Polynesia"
329
330#: the-events-calendar.php:132
331msgid "French Southern Territories"
332msgstr ""
333
334#: the-events-calendar.php:133
335msgid "Gabon"
336msgstr ""
337
338#: the-events-calendar.php:134
339msgid "Gambia"
340msgstr ""
341
342#: the-events-calendar.php:135
343#: views/events-meta-box.php:273
344msgid "Georgia"
345msgstr "Georgien"
346
347#: the-events-calendar.php:136
348msgid "Germany"
349msgstr "Tyskland"
350
351#: the-events-calendar.php:137
352msgid "Ghana"
353msgstr ""
354
355#: the-events-calendar.php:138
356msgid "Gibraltar"
357msgstr ""
358
359#: the-events-calendar.php:139
360msgid "Greece"
361msgstr ""
362
363#: the-events-calendar.php:140
364msgid "Greenland"
365msgstr "Grønland"
366
367#: the-events-calendar.php:141
368msgid "Grenada"
369msgstr ""
370
371#: the-events-calendar.php:142
372msgid "Guadeloupe"
373msgstr ""
374
375#: the-events-calendar.php:143
376msgid "Guam"
377msgstr ""
378
379#: the-events-calendar.php:144
380msgid "Guatemala"
381msgstr ""
382
383#: the-events-calendar.php:145
384msgid "Guinea"
385msgstr ""
386
387#: the-events-calendar.php:146
388msgid "Guinea-Bissau"
389msgstr ""
390
391#: the-events-calendar.php:147
392msgid "Guyana"
393msgstr ""
394
395#: the-events-calendar.php:148
396msgid "Haiti"
397msgstr ""
398
399#: the-events-calendar.php:149
400msgid "Heard And Mc Donald Islands"
401msgstr ""
402
403#: the-events-calendar.php:150
404msgid "Holy See (Vatican City State)"
405msgstr ""
406
407#: the-events-calendar.php:151
408msgid "Honduras"
409msgstr ""
410
411#: the-events-calendar.php:152
412msgid "Hong Kong"
413msgstr ""
414
415#: the-events-calendar.php:153
416msgid "Hungary"
417msgstr "Ungarn"
418
419#: the-events-calendar.php:154
420msgid "Iceland"
421msgstr "Island"
422
423#: the-events-calendar.php:155
424msgid "India"
425msgstr "Indien"
426
427#: the-events-calendar.php:156
428msgid "Indonesia"
429msgstr "Indonesien"
430
431#: the-events-calendar.php:157
432msgid "Iran (Islamic Republic Of)"
433msgstr "Iran"
434
435#: the-events-calendar.php:158
436msgid "Iraq"
437msgstr "Irak"
438
439#: the-events-calendar.php:159
440msgid "Ireland"
441msgstr "Irland"
442
443#: the-events-calendar.php:160
444msgid "Israel"
445msgstr ""
446
447#: the-events-calendar.php:161
448msgid "Italy"
449msgstr "Italien"
450
451#: the-events-calendar.php:162
452msgid "Jamaica"
453msgstr ""
454
455#: the-events-calendar.php:163
456msgid "Japan"
457msgstr ""
458
459#: the-events-calendar.php:164
460msgid "Jordan"
461msgstr ""
462
463#: the-events-calendar.php:165
464msgid "Kazakhstan"
465msgstr ""
466
467#: the-events-calendar.php:166
468msgid "Kenya"
469msgstr ""
470
471#: the-events-calendar.php:167
472msgid "Kiribati"
473msgstr ""
474
475#: the-events-calendar.php:168
476msgid "Korea, Democratic People's Republic Of"
477msgstr "Nordkorea"
478
479#: the-events-calendar.php:169
480msgid "Korea, Republic Of"
481msgstr "Sydkorea"
482
483#: the-events-calendar.php:170
484msgid "Kuwait"
485msgstr ""
486
487#: the-events-calendar.php:171
488msgid "Kyrgyzstan"
489msgstr ""
490
491#: the-events-calendar.php:172
492msgid "Lao People's Democratic Republic"
493msgstr ""
494
495#: the-events-calendar.php:173
496msgid "Latvia"
497msgstr "Letland"
498
499#: the-events-calendar.php:174
500msgid "Lebanon"
501msgstr "Libanon"
502
503#: the-events-calendar.php:175
504msgid "Lesotho"
505msgstr ""
506
507#: the-events-calendar.php:176
508msgid "Liberia"
509msgstr ""
510
511#: the-events-calendar.php:177
512msgid "Libyan Arab Jamahiriya"
513msgstr ""
514
515#: the-events-calendar.php:178
516msgid "Liechtenstein"
517msgstr ""
518
519#: the-events-calendar.php:179
520msgid "Lithuania"
521msgstr "Litauen"
522
523#: the-events-calendar.php:180
524msgid "Luxembourg"
525msgstr ""
526
527#: the-events-calendar.php:181
528msgid "Macau"
529msgstr ""
530
531#: the-events-calendar.php:182
532msgid "Macedonia, Former Yugoslav Republic Of"
533msgstr "Macedonien"
534
535#: the-events-calendar.php:183
536msgid "Madagascar"
537msgstr ""
538
539#: the-events-calendar.php:184
540msgid "Malawi"
541msgstr ""
542
543#: the-events-calendar.php:185
544msgid "Malaysia"
545msgstr ""
546
547#: the-events-calendar.php:186
548msgid "Maldives"
549msgstr "Maldiverne"
550
551#: the-events-calendar.php:187
552msgid "Mali"
553msgstr ""
554
555#: the-events-calendar.php:188
556msgid "Malta"
557msgstr ""
558
559#: the-events-calendar.php:189
560msgid "Marshall Islands"
561msgstr ""
562
563#: the-events-calendar.php:190
564msgid "Martinique"
565msgstr ""
566
567#: the-events-calendar.php:191
568msgid "Mauritania"
569msgstr ""
570
571#: the-events-calendar.php:192
572msgid "Mauritius"
573msgstr ""
574
575#: the-events-calendar.php:193
576msgid "Mayotte"
577msgstr ""
578
579#: the-events-calendar.php:194
580msgid "Mexico"
581msgstr ""
582
583#: the-events-calendar.php:195
584msgid "Micronesia, Federated States Of"
585msgstr ""
586
587#: the-events-calendar.php:196
588msgid "Moldova, Republic Of"
589msgstr "Moldova"
590
591#: the-events-calendar.php:197
592msgid "Monaco"
593msgstr ""
594
595#: the-events-calendar.php:198
596msgid "Mongolia"
597msgstr "Mongoliet"
598
599#: the-events-calendar.php:199
600msgid "Montserrat"
601msgstr ""
602
603#: the-events-calendar.php:200
604msgid "Morocco"
605msgstr ""
606
607#: the-events-calendar.php:201
608msgid "Mozambique"
609msgstr ""
610
611#: the-events-calendar.php:202
612msgid "Myanmar"
613msgstr ""
614
615#: the-events-calendar.php:203
616msgid "Namibia"
617msgstr ""
618
619#: the-events-calendar.php:204
620msgid "Nauru"
621msgstr ""
622
623#: the-events-calendar.php:205
624msgid "Nepal"
625msgstr ""
626
627#: the-events-calendar.php:206
628msgid "Netherlands"
629msgstr "Holland"
630
631#: the-events-calendar.php:207
632msgid "Netherlands Antilles"
633msgstr ""
634
635#: the-events-calendar.php:208
636msgid "New Caledonia"
637msgstr ""
638
639#: the-events-calendar.php:209
640msgid "New Zealand"
641msgstr ""
642
643#: the-events-calendar.php:210
644msgid "Nicaragua"
645msgstr ""
646
647#: the-events-calendar.php:211
648msgid "Niger"
649msgstr ""
650
651#: the-events-calendar.php:212
652msgid "Nigeria"
653msgstr ""
654
655#: the-events-calendar.php:213
656msgid "Niue"
657msgstr ""
658
659#: the-events-calendar.php:214
660msgid "Norfolk Island"
661msgstr ""
662
663#: the-events-calendar.php:215
664msgid "Northern Mariana Islands"
665msgstr ""
666
667#: the-events-calendar.php:216
668msgid "Norway"
669msgstr "Norge"
670
671#: the-events-calendar.php:217
672msgid "Oman"
673msgstr ""
674
675#: the-events-calendar.php:218
676msgid "Pakistan"
677msgstr ""
678
679#: the-events-calendar.php:219
680msgid "Palau"
681msgstr ""
682
683#: the-events-calendar.php:220
684msgid "Panama"
685msgstr ""
686
687#: the-events-calendar.php:221
688msgid "Papua New Guinea"
689msgstr ""
690
691#: the-events-calendar.php:222
692msgid "Paraguay"
693msgstr ""
694
695#: the-events-calendar.php:223
696msgid "Peru"
697msgstr ""
698
699#: the-events-calendar.php:224
700msgid "Philippines"
701msgstr "Filippinerne"
702
703#: the-events-calendar.php:225
704msgid "Pitcairn"
705msgstr ""
706
707#: the-events-calendar.php:226
708msgid "Poland"
709msgstr ""
710
711#: the-events-calendar.php:227
712msgid "Portugal"
713msgstr ""
714
715#: the-events-calendar.php:228
716msgid "Puerto Rico"
717msgstr ""
718
719#: the-events-calendar.php:229
720msgid "Qatar"
721msgstr ""
722
723#: the-events-calendar.php:230
724msgid "Reunion"
725msgstr ""
726
727#: the-events-calendar.php:231
728msgid "Romania"
729msgstr "Rumænien"
730
731#: the-events-calendar.php:232
732msgid "Russian Federation"
733msgstr ""
734
735#: the-events-calendar.php:233
736msgid "Rwanda"
737msgstr ""
738
739#: the-events-calendar.php:234
740msgid "Saint Kitts And Nevis"
741msgstr ""
742
743#: the-events-calendar.php:235
744msgid "Saint Lucia"
745msgstr ""
746
747#: the-events-calendar.php:236
748msgid "Saint Vincent And The Grenadines"
749msgstr ""
750
751#: the-events-calendar.php:237
752msgid "Samoa"
753msgstr ""
754
755#: the-events-calendar.php:238
756msgid "San Marino"
757msgstr ""
758
759#: the-events-calendar.php:239
760msgid "Sao Tome And Principe"
761msgstr ""
762
763#: the-events-calendar.php:240
764msgid "Saudi Arabia"
765msgstr "Saudi Arabien"
766
767#: the-events-calendar.php:241
768msgid "Senegal"
769msgstr ""
770
771#: the-events-calendar.php:242
772msgid "Seychelles"
773msgstr ""
774
775#: the-events-calendar.php:243
776msgid "Sierra Leone"
777msgstr ""
778
779#: the-events-calendar.php:244
780msgid "Singapore"
781msgstr ""
782
783#: the-events-calendar.php:245
784msgid "Slovakia (Slovak Republic)"
785msgstr "Slovakiet"
786
787#: the-events-calendar.php:246
788msgid "Slovenia"
789msgstr "Slovenien"
790
791#: the-events-calendar.php:247
792msgid "Solomon Islands"
793msgstr ""
794
795#: the-events-calendar.php:248
796msgid "Somalia"
797msgstr ""
798
799#: the-events-calendar.php:249
800msgid "South Africa"
801msgstr "Sydafrika"
802
803#: the-events-calendar.php:250
804msgid "South Georgia, South Sandwich Islands"
805msgstr ""
806
807#: the-events-calendar.php:251
808msgid "Spain"
809msgstr "Spanien"
810
811#: the-events-calendar.php:252
812msgid "Sri Lanka"
813msgstr ""
814
815#: the-events-calendar.php:253
816msgid "St. Helena"
817msgstr ""
818
819#: the-events-calendar.php:254
820msgid "St. Pierre And Miquelon"
821msgstr ""
822
823#: the-events-calendar.php:255
824msgid "Sudan"
825msgstr ""
826
827#: the-events-calendar.php:256
828msgid "Suriname"
829msgstr ""
830
831#: the-events-calendar.php:257
832msgid "Svalbard And Jan Mayen Islands"
833msgstr ""
834
835#: the-events-calendar.php:258
836msgid "Swaziland"
837msgstr ""
838
839#: the-events-calendar.php:259
840msgid "Sweden"
841msgstr "Sverige"
842
843#: the-events-calendar.php:260
844msgid "Switzerland"
845msgstr "Schweiz"
846
847#: the-events-calendar.php:261
848msgid "Syrian Arab Republic"
849msgstr "Syrien"
850
851#: the-events-calendar.php:262
852msgid "Taiwan"
853msgstr ""
854
855#: the-events-calendar.php:263
856msgid "Tajikistan"
857msgstr ""
858
859#: the-events-calendar.php:264
860msgid "Tanzania, United Republic Of"
861msgstr "Tanzania"
862
863#: the-events-calendar.php:265
864msgid "Thailand"
865msgstr ""
866
867#: the-events-calendar.php:266
868msgid "Togo"
869msgstr ""
870
871#: the-events-calendar.php:267
872msgid "Tokelau"
873msgstr ""
874
875#: the-events-calendar.php:268
876msgid "Tonga"
877msgstr ""
878
879#: the-events-calendar.php:269
880msgid "Trinidad And Tobago"
881msgstr ""
882
883#: the-events-calendar.php:270
884msgid "Tunisia"
885msgstr "Tunesien"
886
887#: the-events-calendar.php:271
888msgid "Turkey"
889msgstr "Tyrkiet"
890
891#: the-events-calendar.php:272
892msgid "Turkmenistan"
893msgstr "Turkmenien"
894
895#: the-events-calendar.php:273
896msgid "Turks And Caicos Islands"
897msgstr ""
898
899#: the-events-calendar.php:274
900msgid "Tuvalu"
901msgstr ""
902
903#: the-events-calendar.php:275
904msgid "Uganda"
905msgstr ""
906
907#: the-events-calendar.php:276
908msgid "Ukraine"
909msgstr "Ukraine"
910
911#: the-events-calendar.php:277
912msgid "United Arab Emirates"
913msgstr "Forenede Arabiske Emirater"
914
915#: the-events-calendar.php:278
916msgid "United Kingdom"
917msgstr "England"
918
919#: the-events-calendar.php:279
920msgid "United States Minor Outlying Islands"
921msgstr ""
922
923#: the-events-calendar.php:280
924msgid "Uruguay"
925msgstr ""
926
927#: the-events-calendar.php:281
928msgid "Uzbekistan"
929msgstr ""
930
931#: the-events-calendar.php:282
932msgid "Vanuatu"
933msgstr ""
934
935#: the-events-calendar.php:283
936msgid "Venezuela"
937msgstr ""
938
939#: the-events-calendar.php:284
940msgid "Viet Nam"
941msgstr "Vietnam"
942
943#: the-events-calendar.php:285
944msgid "Virgin Islands (British)"
945msgstr "Virgin Islands (Britiske)"
946
947#: the-events-calendar.php:286
948msgid "Virgin Islands (U.S.)"
949msgstr "Virgin Islands (U.S.A.)"
950
951#: the-events-calendar.php:287
952msgid "Wallis And Futuna Islands"
953msgstr ""
954
955#: the-events-calendar.php:288
956msgid "Western Sahara"
957msgstr "Vestlige Sahara"
958
959#: the-events-calendar.php:289
960msgid "Yemen"
961msgstr ""
962
963#: the-events-calendar.php:290
964msgid "Yugoslavia"
965msgstr "Jugoslavien"
966
967#: the-events-calendar.php:291
968msgid "Zambia"
969msgstr ""
970
971#: the-events-calendar.php:292
972msgid "Zimbabwe"
973msgstr ""
974
975#: the-events-calendar.php:942
976msgid "Events"
977msgstr "Events"
978
979#: the-events-calendar.php:1438
980msgid "Free"
981msgstr "Gratis"
982
983#: the-events-calendar.php:1903
984msgid "A widget that displays the next upcoming x events."
985msgstr "En widget der viser de næste x forekomne events."
986
987#: the-events-calendar.php:2022
988msgid "A calendar of your events"
989msgstr "En Kalender for dine events"
990
991#: the-events-calendar.php:2023
992msgid "Events Calendar"
993msgstr "Event Kalender"
994
995#: the-events-calendar.php:2049
996#: views/events-list-load-widget-admin.php:2
997msgid "Title:"
998msgstr "Titel:"
999
1000#: views/events-list-load-widget-admin.php:7
1001msgid "Show:"
1002msgstr "Vis:"
1003
1004#: views/events-list-load-widget-admin.php:19
1005msgid "Start Date & Time"
1006msgstr "Start dato & tidspunkt"
1007
1008#: views/events-list-load-widget-admin.php:20
1009msgid "End Date & Time"
1010msgstr "Slut dato & tidspunkt"
1011
1012#: views/events-list-load-widget-admin.php:21
1013msgid "Venue"
1014msgstr ""
1015
1016#: views/events-list-load-widget-admin.php:22
1017msgid "Address"
1018msgstr "Adresse"
1019
1020#: views/events-list-load-widget-admin.php:23
1021msgid "City"
1022msgstr "By"
1023
1024#: views/events-list-load-widget-admin.php:24
1025msgid "State (US)"
1026msgstr "Stat (US)"
1027
1028#: views/events-list-load-widget-admin.php:25
1029msgid "Province (Int)"
1030msgstr "Provins (Int)"
1031
1032#: views/events-list-load-widget-admin.php:26
1033msgid "Postal Code"
1034msgstr "Postnummer"
1035
1036#: views/events-list-load-widget-admin.php:27
1037msgid "Country"
1038msgstr "Land"
1039
1040#: views/events-list-load-widget-admin.php:28
1041msgid "Phone"
1042msgstr "Telefon"
1043
1044#: views/events-list-load-widget-admin.php:29
1045msgid "Price"
1046msgstr "Pris"
1047
1048#: views/events-list-load-widget-display.php:50
1049msgid "More Info"
1050msgstr "Flere informationer"
1051
1052#: views/events-meta-box.php:138
1053msgid "Event Details:"
1054msgstr "Event detaljer:"
1055
1056#: views/events-meta-box.php:140
1057msgid "Is this post an event?"
1058msgstr "Er dette indlæg en event?"
1059
1060#: views/events-meta-box.php:141
1061#: views/events-options.php:135
1062msgid "Yes"
1063msgstr "Ja"
1064
1065#: views/events-meta-box.php:142
1066#: views/events-options.php:139
1067msgid "No"
1068msgstr "Nej"
1069
1070#: views/events-meta-box.php:148
1071msgid "Event Time &amp; Date"
1072msgstr "Event tid &amp; dato"
1073
1074#: views/events-meta-box.php:151
1075msgid "All day event?"
1076msgstr "Hel dags event?"
1077
1078#: views/events-meta-box.php:155
1079msgid "Time Format (site wide option):"
1080msgstr "Tids format (site wide option)"
1081
1082#: views/events-meta-box.php:158
1083msgid "12 Hour"
1084msgstr "12 Timers"
1085
1086#: views/events-meta-box.php:160
1087msgid "24 Hour"
1088msgstr "24 Timers"
1089
1090#: views/events-meta-box.php:164
1091msgid "Start Date / Time:"
1092msgstr "Start dato / tid:"
1093
1094#: views/events-meta-box.php:178
1095#: views/events-meta-box.php:206
1096msgid "@"
1097msgstr ""
1098
1099#: views/events-meta-box.php:192
1100msgid "End Date / Time:"
1101msgstr "Slut dato / tid:"
1102
1103#: views/events-meta-box.php:220
1104msgid "Event Location Details"
1105msgstr "Event lokations detaljer"
1106
1107#: views/events-meta-box.php:223
1108#: views/list.php:43
1109#: views/single.php:24
1110msgid "Venue:"
1111msgstr ""
1112
1113#: views/events-meta-box.php:229
1114msgid "Country:"
1115msgstr "Land:"
1116
1117#: views/events-meta-box.php:246
1118#: views/list.php:61
1119#: views/single.php:28
1120msgid "Address:"
1121msgstr "Adresse:"
1122
1123#: views/events-meta-box.php:250
1124msgid "City:"
1125msgstr "By:"
1126
1127#: views/events-meta-box.php:254
1128msgid "Province:"
1129msgstr "Provins:"
1130
1131#: views/events-meta-box.php:258
1132msgid "State:"
1133msgstr "Stat:"
1134
1135#: views/events-meta-box.php:261
1136msgid "Select a State:"
1137msgstr "Vælg en Stat:"
1138
1139#: views/events-meta-box.php:263
1140msgid "Alabama"
1141msgstr ""
1142
1143#: views/events-meta-box.php:264
1144msgid "Alaska"
1145msgstr ""
1146
1147#: views/events-meta-box.php:265
1148msgid "Arizona"
1149msgstr ""
1150
1151#: views/events-meta-box.php:266
1152msgid "Arkansas"
1153msgstr ""
1154
1155#: views/events-meta-box.php:267
1156msgid "California"
1157msgstr ""
1158
1159#: views/events-meta-box.php:268
1160msgid "Colorado"
1161msgstr ""
1162
1163#: views/events-meta-box.php:269
1164msgid "Connecticut"
1165msgstr ""
1166
1167#: views/events-meta-box.php:270
1168msgid "Delaware"
1169msgstr ""
1170
1171#: views/events-meta-box.php:271
1172msgid "District of Columbia"
1173msgstr ""
1174
1175#: views/events-meta-box.php:272
1176msgid "Florida"
1177msgstr ""
1178
1179#: views/events-meta-box.php:274
1180msgid "Hawaii"
1181msgstr ""
1182
1183#: views/events-meta-box.php:275
1184msgid "Idaho"
1185msgstr ""
1186
1187#: views/events-meta-box.php:276
1188msgid "Illinois"
1189msgstr ""
1190
1191#: views/events-meta-box.php:277
1192msgid "Indiana"
1193msgstr ""
1194
1195#: views/events-meta-box.php:278
1196msgid "Iowa"
1197msgstr ""
1198
1199#: views/events-meta-box.php:279
1200msgid "Kansas"
1201msgstr ""
1202
1203#: views/events-meta-box.php:280
1204msgid "Kentucky"
1205msgstr ""
1206
1207#: views/events-meta-box.php:281
1208msgid "Louisiana"
1209msgstr ""
1210
1211#: views/events-meta-box.php:282
1212msgid "Maine"
1213msgstr ""
1214
1215#: views/events-meta-box.php:283
1216msgid "Maryland"
1217msgstr ""
1218
1219#: views/events-meta-box.php:284
1220msgid "Massachusetts"
1221msgstr ""
1222
1223#: views/events-meta-box.php:285
1224msgid "Michigan"
1225msgstr ""
1226
1227#: views/events-meta-box.php:286
1228msgid "Minnesota"
1229msgstr ""
1230
1231#: views/events-meta-box.php:287
1232msgid "Mississippi"
1233msgstr ""
1234
1235#: views/events-meta-box.php:288
1236msgid "Missouri"
1237msgstr ""
1238
1239#: views/events-meta-box.php:289
1240msgid "Montana"
1241msgstr ""
1242
1243#: views/events-meta-box.php:290
1244msgid "Nebraska"
1245msgstr ""
1246
1247#: views/events-meta-box.php:291
1248msgid "Nevada"
1249msgstr ""
1250
1251#: views/events-meta-box.php:292
1252msgid "New Hampshire"
1253msgstr ""
1254
1255#: views/events-meta-box.php:293
1256msgid "New Jersey"
1257msgstr ""
1258
1259#: views/events-meta-box.php:294
1260msgid "New Mexico"
1261msgstr ""
1262
1263#: views/events-meta-box.php:295
1264msgid "New York"
1265msgstr ""
1266
1267#: views/events-meta-box.php:296
1268msgid "North Carolina"
1269msgstr ""
1270
1271#: views/events-meta-box.php:297
1272msgid "North Dakota"
1273msgstr ""
1274
1275#: views/events-meta-box.php:298
1276msgid "Ohio"
1277msgstr ""
1278
1279#: views/events-meta-box.php:299
1280msgid "Oklahoma"
1281msgstr ""
1282
1283#: views/events-meta-box.php:300
1284msgid "Oregon"
1285msgstr ""
1286
1287#: views/events-meta-box.php:301
1288msgid "Pennsylvania"
1289msgstr ""
1290
1291#: views/events-meta-box.php:302
1292msgid "Rhode Island"
1293msgstr ""
1294
1295#: views/events-meta-box.php:303
1296msgid "South Carolina"
1297msgstr ""
1298
1299#: views/events-meta-box.php:304
1300msgid "South Dakota"
1301msgstr ""
1302
1303#: views/events-meta-box.php:305
1304msgid "Tennessee"
1305msgstr ""
1306
1307#: views/events-meta-box.php:306
1308msgid "Texas"
1309msgstr ""
1310
1311#: views/events-meta-box.php:307
1312msgid "Utah"
1313msgstr ""
1314
1315#: views/events-meta-box.php:308
1316msgid "Vermont"
1317msgstr ""
1318
1319#: views/events-meta-box.php:309
1320msgid "Virginia"
1321msgstr ""
1322
1323#: views/events-meta-box.php:310
1324msgid "Washington"
1325msgstr ""
1326
1327#: views/events-meta-box.php:311
1328msgid "West Virginia"
1329msgstr ""
1330
1331#: views/events-meta-box.php:312
1332msgid "Wisconsin"
1333msgstr ""
1334
1335#: views/events-meta-box.php:313
1336msgid "Wyoming"
1337msgstr ""
1338
1339#: views/events-meta-box.php:327
1340msgid "Postal Code:"
1341msgstr "Postnummer:"
1342
1343#: views/events-meta-box.php:331
1344#: views/list.php:52
1345msgid "Phone:"
1346msgstr "Telefon:"
1347
1348#: views/events-meta-box.php:335
1349msgid "Event Cost"
1350msgstr "Event pris"
1351
1352#: views/events-meta-box.php:338
1353#: views/list.php:70
1354#: views/single.php:18
1355msgid "Cost:"
1356msgstr "Pris:"
1357
1358#: views/events-meta-box.php:343
1359msgid "Leave blank to hide the field. Enter a 0 for events that are free."
1360msgstr "Efterlad blank for at gemme feltet. Indtast et 0 hvis events er gratis."
1361
1362#: views/events-meta-box.php:347
1363msgid "Sell Tickets &amp; Track Registration"
1364msgstr "Sælg billetter &amp; Følg tilmeldinger"
1365
1366#: views/events-meta-box.php:352
1367msgid "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. "
1368msgstr ""
1369
1370#: views/events-meta-box.php:352
1371msgid "Check it out here."
1372msgstr "Check det ud her."
1373
1374#: views/events-meta-box.php:363
1375msgid ""
1376"<h4>If You Like This Plugin - Help Support It</h4>\r\n"
1377"\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>"
1378msgstr ""
1379"<h4>Hvis du kan lide dette Plugin - Så hjælp ved at donere</h4>\r\n"
1380"\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>"
1381
1382#: views/events-meta-box.php:366
1383msgid "Thanks"
1384msgstr "Tak"
1385
1386#: views/events-meta-box.php:367
1387msgid "Shane &amp; Peter"
1388msgstr ""
1389
1390#: views/events-meta-box.php:368
1391msgid "www.shaneandpeter.com"
1392msgstr ""
1393
1394#: views/events-options.php:47
1395msgid "The Events Calendar Settings"
1396msgstr "Event Kalender indstillinger"
1397
1398#: views/events-options.php:49
1399msgid "Need a hand?"
1400msgstr "Brug for hjælp?"
1401
1402#: views/events-options.php:50
1403msgid "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."
1404msgstr ""
1405
1406#: views/events-options.php:53
1407msgid "Donate"
1408msgstr "Doner"
1409
1410#: views/events-options.php:62
1411msgid "If you find this plugin useful, please consider donating to the producer of it, Shane &#38; Peter, Inc. Thank you!"
1412msgstr ""
1413
1414#: views/events-options.php:66
1415msgid "I have already donated, so please hide this button!"
1416msgstr "Jeg har allerede doneret, så fjern venligst denne knap!"
1417
1418#: views/events-options.php:93
1419#: views/events-options.php:97
1420msgid "Default View for the Events"
1421msgstr "Standard visning af Events"
1422
1423#: views/events-options.php:109
1424#: views/gridview.php:13
1425#: views/list.php:10
1426msgid "Calendar"
1427msgstr "Kalender"
1428
1429#: views/events-options.php:113
1430#: views/gridview.php:12
1431#: views/list.php:9
1432msgid "Event List"
1433msgstr "Event liste"
1434
1435#: views/events-options.php:119
1436#: views/events-options.php:123
1437msgid "Show Comments"
1438msgstr "Vis kommentarer"
1439
1440#: views/events-options.php:145
1441msgid "Default Country for Events"
1442msgstr "Standard Land for events"
1443
1444#: views/events-options.php:170
1445#: views/events-options.php:174
1446msgid "Embed Google Maps"
1447msgstr ""
1448
1449#: views/events-options.php:188
1450msgid "Off"
1451msgstr "Fra"
1452
1453#: views/events-options.php:192
1454msgid "On"
1455msgstr "Til"
1456
1457#: views/events-options.php:195
1458msgid "Height"
1459msgstr "Højde"
1460
1461#: views/events-options.php:196
1462msgid "Width"
1463msgstr "Bredde"
1464
1465#: views/events-options.php:196
1466msgid "(number or %)"
1467msgstr "(nummer eller %)"
1468
1469#: views/gridview.php:7
1470#: views/list.php:7
1471msgid "Calendar of Events"
1472msgstr "Event kalender"
1473
1474#: views/list.php:31
1475#: views/single.php:11
1476msgid "Start:"
1477msgstr "Start:"
1478
1479#: views/list.php:35
1480#: views/single.php:14
1481msgid "End:"
1482msgstr "Slut:"
1483
1484#: views/list.php:61
1485#: views/single.php:28
1486msgid "Google Map"
1487msgstr ""
1488
1489#: views/list.php:92
1490msgid "&laquo; Previous Events"
1491msgstr "&laquo; Tideligere Events"
1492
1493#: views/list.php:105
1494msgid "Next Events &raquo;"
1495msgstr "Næste Events &raquo;"
1496
1497#: views/single.php:6
1498msgid "&laquo; Back to Events"
1499msgstr "&laquo; Tilbage til Events"
1500
1501#: views/single.php:8
1502msgid "This event has passed."
1503msgstr "Dette event er overstået."
1504
1505#: views/table.php:12
1506msgid "Sunday"
1507msgstr "Søndag"
1508
1509#: views/table.php:12
1510msgid "Sun"
1511msgstr "Søn"
1512
1513#: views/table.php:13
1514msgid "Monday"
1515msgstr "Mandag"
1516
1517#: views/table.php:13
1518msgid "Mon"
1519msgstr "Man"
1520
1521#: views/table.php:14
1522msgid "Tuesday"
1523msgstr "Tirsdag"
1524
1525#: views/table.php:14
1526msgid "Tue"
1527msgstr "Tir"
1528
1529#: views/table.php:15
1530msgid "Wednesday"
1531msgstr "Onsdag"
1532
1533#: views/table.php:15
1534msgid "Wed"
1535msgstr "Ons"
1536
1537#: views/table.php:16
1538msgid "Thursday"
1539msgstr "Torsdag"
1540
1541#: views/table.php:16
1542msgid "Thu"
1543msgstr "Tor"
1544
1545#: views/table.php:17
1546msgid "Friday"
1547msgstr "Fredag"
1548
1549#: views/table.php:17
1550msgid "Fri"
1551msgstr "Fre"
1552
1553#: views/table.php:18
1554msgid "Saturday"
1555msgstr "Lørdag"
1556
1557#: views/table.php:18
1558msgid "Sat"
1559msgstr "Lør"
1560
1561#. Plugin Name of an extension
1562msgid "The Events Calendar"
1563msgstr "Event kalenderen"
1564
1565#. Plugin URI of an extension
1566msgid "http://wordpress.org/extend/plugins/the-events-calendar/"
1567msgstr ""
1568
1569#. Description of an extension
1570msgid "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."
1571msgstr ""
1572
1573#. Author of an extension
1574msgid "Shane & Peter, Inc."
1575msgstr ""
1576
1577#. Author URI of an extension
1578msgid "http://www.shaneandpeter.com/"
1579msgstr ""
1580
01581
=== added file 'wp-content/plugins/the-events-calendar/lang/the-events-calendar-de_DE.mo'
1Binary 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 differ1582Binary 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
=== added file 'wp-content/plugins/the-events-calendar/lang/the-events-calendar-de_DE.po'
--- wp-content/plugins/the-events-calendar/lang/the-events-calendar-de_DE.po 1970-01-01 00:00:00 +0000
+++ wp-content/plugins/the-events-calendar/lang/the-events-calendar-de_DE.po 2011-02-07 00:09:58 +0000
@@ -0,0 +1,1709 @@
1# Translation of the WordPress plugin The Events Calendar 1.6 by Shane & Peter, Inc..
2# Copyright (C) 2010 Shane & Peter, Inc.
3# This file is distributed under the same license as the The Events Calendar package.
4# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5#
6msgid ""
7msgstr ""
8"Project-Id-Version: The Events Calendar 1.6\n"
9"Report-Msgid-Bugs-To: http://wordpress.org/tag/the-events-calendar\n"
10"POT-Creation-Date: 2010-05-11 18:45+0000\n"
11"PO-Revision-Date: 2010-05-12 00:13+0100\n"
12"Last-Translator: André Schuhmann <Andre.Schuhmann@yahoo.de>\n"
13"Language-Team: André Schuhmann <Andre.Schuhmann@yahoo.de>\n"
14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"
17"X-Poedit-Language: German\n"
18"X-Poedit-Country: GERMANY\n"
19"X-Poedit-SourceCharset: utf-8\n"
20
21#: events-calendar-widget.class.php:12
22msgid "A calendar of your events"
23msgstr "Ein Kalender für Events"
24
25#: events-calendar-widget.class.php:13
26msgid "Events Calendar"
27msgstr "Veranstaltungskalender"
28
29#: events-calendar-widget.class.php:39
30#: views/events-list-load-widget-admin.php:2
31msgid "Title:"
32msgstr "Titel:"
33
34#: events-list-widget.class.php:15
35msgid "A widget that displays the next upcoming x events."
36msgstr "Ein Widget, das die nächsten x Events zeigt."
37
38#: events-list-widget.class.php:57
39msgid "View All Events"
40msgstr "Alle Events zeigen"
41
42#: the-events-calendar.class.php:47
43msgid "Sun"
44msgstr "So"
45
46#: the-events-calendar.class.php:47
47msgid "Mon"
48msgstr "Mo"
49
50#: the-events-calendar.class.php:47
51msgid "Tue"
52msgstr "Di"
53
54#: the-events-calendar.class.php:47
55msgid "Wed"
56msgstr "Mi"
57
58#: the-events-calendar.class.php:47
59msgid "Thu"
60msgstr "Do"
61
62#: the-events-calendar.class.php:47
63msgid "Fri"
64msgstr "Fr"
65
66#: the-events-calendar.class.php:47
67msgid "Sat"
68msgstr "Sa"
69
70#: the-events-calendar.class.php:48
71msgid "Sunday"
72msgstr "Sonntag"
73
74#: the-events-calendar.class.php:48
75msgid "Monday"
76msgstr "Montag"
77
78#: the-events-calendar.class.php:48
79msgid "Tuesday"
80msgstr "Dienstag"
81
82#: the-events-calendar.class.php:48
83msgid "Wednesday"
84msgstr "Mittwoch"
85
86#: the-events-calendar.class.php:48
87msgid "Thursday"
88msgstr "Donnerstag"
89
90#: the-events-calendar.class.php:48
91msgid "Friday"
92msgstr "Freitag"
93
94#: the-events-calendar.class.php:48
95msgid "Saturday"
96msgstr "Samstag"
97
98#: the-events-calendar.class.php:54
99msgid "United States"
100msgstr ""
101
102#: the-events-calendar.class.php:55
103msgid "Afghanistan"
104msgstr ""
105
106#: the-events-calendar.class.php:56
107msgid "Albania"
108msgstr ""
109
110#: the-events-calendar.class.php:57
111msgid "Algeria"
112msgstr ""
113
114#: the-events-calendar.class.php:58
115msgid "American Samoa"
116msgstr ""
117
118#: the-events-calendar.class.php:59
119msgid "Andorra"
120msgstr ""
121
122#: the-events-calendar.class.php:60
123msgid "Angola"
124msgstr ""
125
126#: the-events-calendar.class.php:61
127msgid "Anguilla"
128msgstr ""
129
130#: the-events-calendar.class.php:62
131msgid "Antarctica"
132msgstr ""
133
134#: the-events-calendar.class.php:63
135msgid "Antigua And Barbuda"
136msgstr ""
137
138#: the-events-calendar.class.php:64
139msgid "Argentina"
140msgstr ""
141
142#: the-events-calendar.class.php:65
143msgid "Armenia"
144msgstr ""
145
146#: the-events-calendar.class.php:66
147msgid "Aruba"
148msgstr ""
149
150#: the-events-calendar.class.php:67
151msgid "Australia"
152msgstr ""
153
154#: the-events-calendar.class.php:68
155msgid "Austria"
156msgstr ""
157
158#: the-events-calendar.class.php:69
159msgid "Azerbaijan"
160msgstr ""
161
162#: the-events-calendar.class.php:70
163msgid "Bahamas"
164msgstr ""
165
166#: the-events-calendar.class.php:71
167msgid "Bahrain"
168msgstr ""
169
170#: the-events-calendar.class.php:72
171msgid "Bangladesh"
172msgstr ""
173
174#: the-events-calendar.class.php:73
175msgid "Barbados"
176msgstr ""
177
178#: the-events-calendar.class.php:74
179msgid "Belarus"
180msgstr ""
181
182#: the-events-calendar.class.php:75
183msgid "Belgium"
184msgstr ""
185
186#: the-events-calendar.class.php:76
187msgid "Belize"
188msgstr ""
189
190#: the-events-calendar.class.php:77
191msgid "Benin"
192msgstr ""
193
194#: the-events-calendar.class.php:78
195msgid "Bermuda"
196msgstr ""
197
198#: the-events-calendar.class.php:79
199msgid "Bhutan"
200msgstr ""
201
202#: the-events-calendar.class.php:80
203msgid "Bolivia"
204msgstr ""
205
206#: the-events-calendar.class.php:81
207msgid "Bosnia And Herzegowina"
208msgstr ""
209
210#: the-events-calendar.class.php:82
211msgid "Botswana"
212msgstr ""
213
214#: the-events-calendar.class.php:83
215msgid "Bouvet Island"
216msgstr ""
217
218#: the-events-calendar.class.php:84
219msgid "Brazil"
220msgstr ""
221
222#: the-events-calendar.class.php:85
223msgid "British Indian Ocean Territory"
224msgstr ""
225
226#: the-events-calendar.class.php:86
227msgid "Brunei Darussalam"
228msgstr ""
229
230#: the-events-calendar.class.php:87
231msgid "Bulgaria"
232msgstr ""
233
234#: the-events-calendar.class.php:88
235msgid "Burkina Faso"
236msgstr ""
237
238#: the-events-calendar.class.php:89
239msgid "Burundi"
240msgstr ""
241
242#: the-events-calendar.class.php:90
243msgid "Cambodia"
244msgstr ""
245
246#: the-events-calendar.class.php:91
247msgid "Cameroon"
248msgstr ""
249
250#: the-events-calendar.class.php:92
251msgid "Canada"
252msgstr ""
253
254#: the-events-calendar.class.php:93
255msgid "Cape Verde"
256msgstr ""
257
258#: the-events-calendar.class.php:94
259msgid "Cayman Islands"
260msgstr ""
261
262#: the-events-calendar.class.php:95
263msgid "Central African Republic"
264msgstr ""
265
266#: the-events-calendar.class.php:96
267msgid "Chad"
268msgstr ""
269
270#: the-events-calendar.class.php:97
271msgid "Chile"
272msgstr ""
273
274#: the-events-calendar.class.php:98
275msgid "China"
276msgstr ""
277
278#: the-events-calendar.class.php:99
279msgid "Christmas Island"
280msgstr ""
281
282#: the-events-calendar.class.php:100
283msgid "Cocos (Keeling) Islands"
284msgstr ""
285
286#: the-events-calendar.class.php:101
287msgid "Colombia"
288msgstr ""
289
290#: the-events-calendar.class.php:102
291msgid "Comoros"
292msgstr ""
293
294#: the-events-calendar.class.php:103
295msgid "Congo"
296msgstr ""
297
298#: the-events-calendar.class.php:104
299msgid "Congo, The Democratic Republic Of The"
300msgstr ""
301
302#: the-events-calendar.class.php:105
303msgid "Cook Islands"
304msgstr ""
305
306#: the-events-calendar.class.php:106
307msgid "Costa Rica"
308msgstr ""
309
310#: the-events-calendar.class.php:107
311msgid "Cote D'Ivoire"
312msgstr ""
313
314#: the-events-calendar.class.php:108
315msgid "Croatia (Local Name: Hrvatska)"
316msgstr ""
317
318#: the-events-calendar.class.php:109
319msgid "Cuba"
320msgstr ""
321
322#: the-events-calendar.class.php:110
323msgid "Cyprus"
324msgstr ""
325
326#: the-events-calendar.class.php:111
327msgid "Czech Republic"
328msgstr ""
329
330#: the-events-calendar.class.php:112
331msgid "Denmark"
332msgstr ""
333
334#: the-events-calendar.class.php:113
335msgid "Djibouti"
336msgstr ""
337
338#: the-events-calendar.class.php:114
339msgid "Dominica"
340msgstr ""
341
342#: the-events-calendar.class.php:115
343msgid "Dominican Republic"
344msgstr ""
345
346#: the-events-calendar.class.php:116
347msgid "East Timor"
348msgstr ""
349
350#: the-events-calendar.class.php:117
351msgid "Ecuador"
352msgstr ""
353
354#: the-events-calendar.class.php:118
355msgid "Egypt"
356msgstr ""
357
358#: the-events-calendar.class.php:119
359msgid "El Salvador"
360msgstr ""
361
362#: the-events-calendar.class.php:120
363msgid "Equatorial Guinea"
364msgstr ""
365
366#: the-events-calendar.class.php:121
367msgid "Eritrea"
368msgstr ""
369
370#: the-events-calendar.class.php:122
371msgid "Estonia"
372msgstr ""
373
374#: the-events-calendar.class.php:123
375msgid "Ethiopia"
376msgstr ""
377
378#: the-events-calendar.class.php:124
379msgid "Falkland Islands (Malvinas)"
380msgstr ""
381
382#: the-events-calendar.class.php:125
383msgid "Faroe Islands"
384msgstr ""
385
386#: the-events-calendar.class.php:126
387msgid "Fiji"
388msgstr ""
389
390#: the-events-calendar.class.php:127
391msgid "Finland"
392msgstr ""
393
394#: the-events-calendar.class.php:128
395msgid "France"
396msgstr ""
397
398#: the-events-calendar.class.php:129
399msgid "France, Metropolitan"
400msgstr ""
401
402#: the-events-calendar.class.php:130
403msgid "French Guiana"
404msgstr ""
405
406#: the-events-calendar.class.php:131
407msgid "French Polynesia"
408msgstr ""
409
410#: the-events-calendar.class.php:132
411msgid "French Southern Territories"
412msgstr ""
413
414#: the-events-calendar.class.php:133
415msgid "Gabon"
416msgstr ""
417
418#: the-events-calendar.class.php:134
419msgid "Gambia"
420msgstr ""
421
422#: the-events-calendar.class.php:135
423#: views/events-meta-box.php:324
424msgid "Georgia"
425msgstr ""
426
427#: the-events-calendar.class.php:136
428msgid "Germany"
429msgstr "Deutschland"
430
431#: the-events-calendar.class.php:137
432msgid "Ghana"
433msgstr ""
434
435#: the-events-calendar.class.php:138
436msgid "Gibraltar"
437msgstr ""
438
439#: the-events-calendar.class.php:139
440msgid "Greece"
441msgstr ""
442
443#: the-events-calendar.class.php:140
444msgid "Greenland"
445msgstr ""
446
447#: the-events-calendar.class.php:141
448msgid "Grenada"
449msgstr ""
450
451#: the-events-calendar.class.php:142
452msgid "Guadeloupe"
453msgstr ""
454
455#: the-events-calendar.class.php:143
456msgid "Guam"
457msgstr ""
458
459#: the-events-calendar.class.php:144
460msgid "Guatemala"
461msgstr ""
462
463#: the-events-calendar.class.php:145
464msgid "Guinea"
465msgstr ""
466
467#: the-events-calendar.class.php:146
468msgid "Guinea-Bissau"
469msgstr ""
470
471#: the-events-calendar.class.php:147
472msgid "Guyana"
473msgstr ""
474
475#: the-events-calendar.class.php:148
476msgid "Haiti"
477msgstr ""
478
479#: the-events-calendar.class.php:149
480msgid "Heard And Mc Donald Islands"
481msgstr ""
482
483#: the-events-calendar.class.php:150
484msgid "Holy See (Vatican City State)"
485msgstr ""
486
487#: the-events-calendar.class.php:151
488msgid "Honduras"
489msgstr ""
490
491#: the-events-calendar.class.php:152
492msgid "Hong Kong"
493msgstr ""
494
495#: the-events-calendar.class.php:153
496msgid "Hungary"
497msgstr ""
498
499#: the-events-calendar.class.php:154
500msgid "Iceland"
501msgstr ""
502
503#: the-events-calendar.class.php:155
504msgid "India"
505msgstr ""
506
507#: the-events-calendar.class.php:156
508msgid "Indonesia"
509msgstr ""
510
511#: the-events-calendar.class.php:157
512msgid "Iran (Islamic Republic Of)"
513msgstr ""
514
515#: the-events-calendar.class.php:158
516msgid "Iraq"
517msgstr ""
518
519#: the-events-calendar.class.php:159
520msgid "Ireland"
521msgstr ""
522
523#: the-events-calendar.class.php:160
524msgid "Israel"
525msgstr ""
526
527#: the-events-calendar.class.php:161
528msgid "Italy"
529msgstr ""
530
531#: the-events-calendar.class.php:162
532msgid "Jamaica"
533msgstr ""
534
535#: the-events-calendar.class.php:163
536msgid "Japan"
537msgstr ""
538
539#: the-events-calendar.class.php:164
540msgid "Jordan"
541msgstr ""
542
543#: the-events-calendar.class.php:165
544msgid "Kazakhstan"
545msgstr ""
546
547#: the-events-calendar.class.php:166
548msgid "Kenya"
549msgstr ""
550
551#: the-events-calendar.class.php:167
552msgid "Kiribati"
553msgstr ""
554
555#: the-events-calendar.class.php:168
556msgid "Korea, Democratic People's Republic Of"
557msgstr ""
558
559#: the-events-calendar.class.php:169
560msgid "Korea, Republic Of"
561msgstr ""
562
563#: the-events-calendar.class.php:170
564msgid "Kuwait"
565msgstr ""
566
567#: the-events-calendar.class.php:171
568msgid "Kyrgyzstan"
569msgstr ""
570
571#: the-events-calendar.class.php:172
572msgid "Lao People's Democratic Republic"
573msgstr ""
574
575#: the-events-calendar.class.php:173
576msgid "Latvia"
577msgstr ""
578
579#: the-events-calendar.class.php:174
580msgid "Lebanon"
581msgstr ""
582
583#: the-events-calendar.class.php:175
584msgid "Lesotho"
585msgstr ""
586
587#: the-events-calendar.class.php:176
588msgid "Liberia"
589msgstr ""
590
591#: the-events-calendar.class.php:177
592msgid "Libyan Arab Jamahiriya"
593msgstr ""
594
595#: the-events-calendar.class.php:178
596msgid "Liechtenstein"
597msgstr ""
598
599#: the-events-calendar.class.php:179
600msgid "Lithuania"
601msgstr ""
602
603#: the-events-calendar.class.php:180
604msgid "Luxembourg"
605msgstr ""
606
607#: the-events-calendar.class.php:181
608msgid "Macau"
609msgstr ""
610
611#: the-events-calendar.class.php:182
612msgid "Macedonia, Former Yugoslav Republic Of"
613msgstr ""
614
615#: the-events-calendar.class.php:183
616msgid "Madagascar"
617msgstr ""
618
619#: the-events-calendar.class.php:184
620msgid "Malawi"
621msgstr ""
622
623#: the-events-calendar.class.php:185
624msgid "Malaysia"
625msgstr ""
626
627#: the-events-calendar.class.php:186
628msgid "Maldives"
629msgstr ""
630
631#: the-events-calendar.class.php:187
632msgid "Mali"
633msgstr ""
634
635#: the-events-calendar.class.php:188
636msgid "Malta"
637msgstr ""
638
639#: the-events-calendar.class.php:189
640msgid "Marshall Islands"
641msgstr ""
642
643#: the-events-calendar.class.php:190
644msgid "Martinique"
645msgstr ""
646
647#: the-events-calendar.class.php:191
648msgid "Mauritania"
649msgstr ""
650
651#: the-events-calendar.class.php:192
652msgid "Mauritius"
653msgstr ""
654
655#: the-events-calendar.class.php:193
656msgid "Mayotte"
657msgstr ""
658
659#: the-events-calendar.class.php:194
660msgid "Mexico"
661msgstr ""
662
663#: the-events-calendar.class.php:195
664msgid "Micronesia, Federated States Of"
665msgstr ""
666
667#: the-events-calendar.class.php:196
668msgid "Moldova, Republic Of"
669msgstr ""
670
671#: the-events-calendar.class.php:197
672msgid "Monaco"
673msgstr ""
674
675#: the-events-calendar.class.php:198
676msgid "Mongolia"
677msgstr ""
678
679#: the-events-calendar.class.php:199
680msgid "Montserrat"
681msgstr ""
682
683#: the-events-calendar.class.php:200
684msgid "Morocco"
685msgstr ""
686
687#: the-events-calendar.class.php:201
688msgid "Mozambique"
689msgstr ""
690
691#: the-events-calendar.class.php:202
692msgid "Myanmar"
693msgstr ""
694
695#: the-events-calendar.class.php:203
696msgid "Namibia"
697msgstr ""
698
699#: the-events-calendar.class.php:204
700msgid "Nauru"
701msgstr ""
702
703#: the-events-calendar.class.php:205
704msgid "Nepal"
705msgstr ""
706
707#: the-events-calendar.class.php:206
708msgid "Netherlands"
709msgstr ""
710
711#: the-events-calendar.class.php:207
712msgid "Netherlands Antilles"
713msgstr ""
714
715#: the-events-calendar.class.php:208
716msgid "New Caledonia"
717msgstr ""
718
719#: the-events-calendar.class.php:209
720msgid "New Zealand"
721msgstr ""
722
723#: the-events-calendar.class.php:210
724msgid "Nicaragua"
725msgstr ""
726
727#: the-events-calendar.class.php:211
728msgid "Niger"
729msgstr ""
730
731#: the-events-calendar.class.php:212
732msgid "Nigeria"
733msgstr ""
734
735#: the-events-calendar.class.php:213
736msgid "Niue"
737msgstr ""
738
739#: the-events-calendar.class.php:214
740msgid "Norfolk Island"
741msgstr ""
742
743#: the-events-calendar.class.php:215
744msgid "Northern Mariana Islands"
745msgstr ""
746
747#: the-events-calendar.class.php:216
748msgid "Norway"
749msgstr ""
750
751#: the-events-calendar.class.php:217
752msgid "Oman"
753msgstr ""
754
755#: the-events-calendar.class.php:218
756msgid "Pakistan"
757msgstr ""
758
759#: the-events-calendar.class.php:219
760msgid "Palau"
761msgstr ""
762
763#: the-events-calendar.class.php:220
764msgid "Panama"
765msgstr ""
766
767#: the-events-calendar.class.php:221
768msgid "Papua New Guinea"
769msgstr ""
770
771#: the-events-calendar.class.php:222
772msgid "Paraguay"
773msgstr ""
774
775#: the-events-calendar.class.php:223
776msgid "Peru"
777msgstr ""
778
779#: the-events-calendar.class.php:224
780msgid "Philippines"
781msgstr ""
782
783#: the-events-calendar.class.php:225
784msgid "Pitcairn"
785msgstr ""
786
787#: the-events-calendar.class.php:226
788msgid "Poland"
789msgstr ""
790
791#: the-events-calendar.class.php:227
792msgid "Portugal"
793msgstr ""
794
795#: the-events-calendar.class.php:228
796msgid "Puerto Rico"
797msgstr ""
798
799#: the-events-calendar.class.php:229
800msgid "Qatar"
801msgstr ""
802
803#: the-events-calendar.class.php:230
804msgid "Reunion"
805msgstr ""
806
807#: the-events-calendar.class.php:231
808msgid "Romania"
809msgstr ""
810
811#: the-events-calendar.class.php:232
812msgid "Russian Federation"
813msgstr ""
814
815#: the-events-calendar.class.php:233
816msgid "Rwanda"
817msgstr ""
818
819#: the-events-calendar.class.php:234
820msgid "Saint Kitts And Nevis"
821msgstr ""
822
823#: the-events-calendar.class.php:235
824msgid "Saint Lucia"
825msgstr ""
826
827#: the-events-calendar.class.php:236
828msgid "Saint Vincent And The Grenadines"
829msgstr ""
830
831#: the-events-calendar.class.php:237
832msgid "Samoa"
833msgstr ""
834
835#: the-events-calendar.class.php:238
836msgid "San Marino"
837msgstr ""
838
839#: the-events-calendar.class.php:239
840msgid "Sao Tome And Principe"
841msgstr ""
842
843#: the-events-calendar.class.php:240
844msgid "Saudi Arabia"
845msgstr ""
846
847#: the-events-calendar.class.php:241
848msgid "Senegal"
849msgstr ""
850
851#: the-events-calendar.class.php:242
852msgid "Seychelles"
853msgstr ""
854
855#: the-events-calendar.class.php:243
856msgid "Sierra Leone"
857msgstr ""
858
859#: the-events-calendar.class.php:244
860msgid "Singapore"
861msgstr ""
862
863#: the-events-calendar.class.php:245
864msgid "Slovakia (Slovak Republic)"
865msgstr ""
866
867#: the-events-calendar.class.php:246
868msgid "Slovenia"
869msgstr ""
870
871#: the-events-calendar.class.php:247
872msgid "Solomon Islands"
873msgstr ""
874
875#: the-events-calendar.class.php:248
876msgid "Somalia"
877msgstr ""
878
879#: the-events-calendar.class.php:249
880msgid "South Africa"
881msgstr ""
882
883#: the-events-calendar.class.php:250
884msgid "South Georgia, South Sandwich Islands"
885msgstr ""
886
887#: the-events-calendar.class.php:251
888msgid "Spain"
889msgstr ""
890
891#: the-events-calendar.class.php:252
892msgid "Sri Lanka"
893msgstr ""
894
895#: the-events-calendar.class.php:253
896msgid "St. Helena"
897msgstr ""
898
899#: the-events-calendar.class.php:254
900msgid "St. Pierre And Miquelon"
901msgstr ""
902
903#: the-events-calendar.class.php:255
904msgid "Sudan"
905msgstr ""
906
907#: the-events-calendar.class.php:256
908msgid "Suriname"
909msgstr ""
910
911#: the-events-calendar.class.php:257
912msgid "Svalbard And Jan Mayen Islands"
913msgstr ""
914
915#: the-events-calendar.class.php:258
916msgid "Swaziland"
917msgstr ""
918
919#: the-events-calendar.class.php:259
920msgid "Sweden"
921msgstr ""
922
923#: the-events-calendar.class.php:260
924msgid "Switzerland"
925msgstr ""
926
927#: the-events-calendar.class.php:261
928msgid "Syrian Arab Republic"
929msgstr ""
930
931#: the-events-calendar.class.php:262
932msgid "Taiwan"
933msgstr ""
934
935#: the-events-calendar.class.php:263
936msgid "Tajikistan"
937msgstr ""
938
939#: the-events-calendar.class.php:264
940msgid "Tanzania, United Republic Of"
941msgstr ""
942
943#: the-events-calendar.class.php:265
944msgid "Thailand"
945msgstr ""
946
947#: the-events-calendar.class.php:266
948msgid "Togo"
949msgstr ""
950
951#: the-events-calendar.class.php:267
952msgid "Tokelau"
953msgstr ""
954
955#: the-events-calendar.class.php:268
956msgid "Tonga"
957msgstr ""
958
959#: the-events-calendar.class.php:269
960msgid "Trinidad And Tobago"
961msgstr ""
962
963#: the-events-calendar.class.php:270
964msgid "Tunisia"
965msgstr ""
966
967#: the-events-calendar.class.php:271
968msgid "Turkey"
969msgstr ""
970
971#: the-events-calendar.class.php:272
972msgid "Turkmenistan"
973msgstr ""
974
975#: the-events-calendar.class.php:273
976msgid "Turks And Caicos Islands"
977msgstr ""
978
979#: the-events-calendar.class.php:274
980msgid "Tuvalu"
981msgstr ""
982
983#: the-events-calendar.class.php:275
984msgid "Uganda"
985msgstr ""
986
987#: the-events-calendar.class.php:276
988msgid "Ukraine"
989msgstr ""
990
991#: the-events-calendar.class.php:277
992msgid "United Arab Emirates"
993msgstr ""
994
995#: the-events-calendar.class.php:278
996msgid "United Kingdom"
997msgstr ""
998
999#: the-events-calendar.class.php:279
1000msgid "United States Minor Outlying Islands"
1001msgstr ""
1002
1003#: the-events-calendar.class.php:280
1004msgid "Uruguay"
1005msgstr ""
1006
1007#: the-events-calendar.class.php:281
1008msgid "Uzbekistan"
1009msgstr ""
1010
1011#: the-events-calendar.class.php:282
1012msgid "Vanuatu"
1013msgstr ""
1014
1015#: the-events-calendar.class.php:283
1016msgid "Venezuela"
1017msgstr ""
1018
1019#: the-events-calendar.class.php:284
1020msgid "Viet Nam"
1021msgstr ""
1022
1023#: the-events-calendar.class.php:285
1024msgid "Virgin Islands (British)"
1025msgstr ""
1026
1027#: the-events-calendar.class.php:286
1028msgid "Virgin Islands (U.S.)"
1029msgstr ""
1030
1031#: the-events-calendar.class.php:287
1032msgid "Wallis And Futuna Islands"
1033msgstr ""
1034
1035#: the-events-calendar.class.php:288
1036msgid "Western Sahara"
1037msgstr ""
1038
1039#: the-events-calendar.class.php:289
1040msgid "Yemen"
1041msgstr ""
1042
1043#: the-events-calendar.class.php:290
1044msgid "Yugoslavia"
1045msgstr ""
1046
1047#: the-events-calendar.class.php:291
1048msgid "Zambia"
1049msgstr ""
1050
1051#: the-events-calendar.class.php:292
1052msgid "Zimbabwe"
1053msgstr ""
1054
1055#: the-events-calendar.class.php:491
1056msgid "Jan"
1057msgstr "Jan"
1058
1059#: the-events-calendar.class.php:492
1060msgid "Feb"
1061msgstr "Feb"
1062
1063#: the-events-calendar.class.php:493
1064msgid "Mar"
1065msgstr "Mär"
1066
1067#: the-events-calendar.class.php:494
1068msgid "Apr"
1069msgstr "Apr"
1070
1071#: the-events-calendar.class.php:495
1072#: the-events-calendar.class.php:509
1073msgid "May"
1074msgstr "Mai"
1075
1076#: the-events-calendar.class.php:496
1077msgid "Jun"
1078msgstr "Jun"
1079
1080#: the-events-calendar.class.php:497
1081msgid "Jul"
1082msgstr "Jul"
1083
1084#: the-events-calendar.class.php:498
1085msgid "Aug"
1086msgstr "Aug"
1087
1088#: the-events-calendar.class.php:499
1089msgid "Sep"
1090msgstr "Sep"
1091
1092#: the-events-calendar.class.php:500
1093msgid "Oct"
1094msgstr "Okt"
1095
1096#: the-events-calendar.class.php:501
1097msgid "Nov"
1098msgstr "Nov"
1099
1100#: the-events-calendar.class.php:502
1101msgid "Dec"
1102msgstr "Dez"
1103
1104#: the-events-calendar.class.php:505
1105msgid "January"
1106msgstr "Januar"
1107
1108#: the-events-calendar.class.php:506
1109msgid "February"
1110msgstr "Februar"
1111
1112#: the-events-calendar.class.php:507
1113msgid "March"
1114msgstr "März"
1115
1116#: the-events-calendar.class.php:508
1117msgid "April"
1118msgstr "April"
1119
1120#: the-events-calendar.class.php:510
1121msgid "June"
1122msgstr "Juni"
1123
1124#: the-events-calendar.class.php:511
1125msgid "July"
1126msgstr "July"
1127
1128#: the-events-calendar.class.php:512
1129msgid "August"
1130msgstr "August"
1131
1132#: the-events-calendar.class.php:513
1133msgid "September"
1134msgstr "September"
1135
1136#: the-events-calendar.class.php:514
1137msgid "October"
1138msgstr "Oktober"
1139
1140#: the-events-calendar.class.php:515
1141msgid "November"
1142msgstr "November"
1143
1144#: the-events-calendar.class.php:516
1145msgid "December"
1146msgstr "Dezember"
1147
1148#. #-#-#-#-# plugin.pot (The Events Calendar 1.6) #-#-#-#-#
1149#. Plugin Name of the plugin/theme
1150#: the-events-calendar.class.php:1004
1151msgid "The Events Calendar"
1152msgstr "Der Eventkalender"
1153
1154#: views/events-list-load-widget-admin.php:7
1155msgid "Show:"
1156msgstr "Zeigen:"
1157
1158#: views/events-list-load-widget-admin.php:16
1159msgid "Display:"
1160msgstr "Anzeigen:"
1161
1162#: views/events-list-load-widget-admin.php:19
1163msgid "Start Date & Time"
1164msgstr "Start Datum & Zeit"
1165
1166#: views/events-list-load-widget-admin.php:20
1167msgid "End Date & Time"
1168msgstr "Ende Datum & Zeit"
1169
1170#: views/events-list-load-widget-admin.php:21
1171msgid "Venue"
1172msgstr "Ort"
1173
1174#: views/events-list-load-widget-admin.php:22
1175msgid "Address"
1176msgstr "Straße"
1177
1178#: views/events-list-load-widget-admin.php:23
1179msgid "City"
1180msgstr "Stadt"
1181
1182#: views/events-list-load-widget-admin.php:24
1183msgid "State (US)"
1184msgstr "Staat (US)"
1185
1186#: views/events-list-load-widget-admin.php:25
1187msgid "Province (Int)"
1188msgstr "Bundesland"
1189
1190#: views/events-list-load-widget-admin.php:26
1191msgid "Postal Code"
1192msgstr "PLZ"
1193
1194#: views/events-list-load-widget-admin.php:27
1195msgid "Country"
1196msgstr "Land"
1197
1198#: views/events-list-load-widget-admin.php:28
1199#: views/events-meta-box.php:106
1200msgid "Phone"
1201msgstr "Telefon"
1202
1203#: views/events-list-load-widget-admin.php:29
1204msgid "Price"
1205msgstr "Preis"
1206
1207#: views/events-list-load-widget-display.php:48
1208msgid "More Info"
1209msgstr "Mehr Infos"
1210
1211#: views/events-meta-box.php:106
1212msgid "is not valid."
1213msgstr "ist nich korrekt."
1214
1215#: views/events-meta-box.php:106
1216msgid "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)"
1217msgstr "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)"
1218
1219#: views/events-meta-box.php:184
1220msgid "Is this post an event?"
1221msgstr "Ist der Artikel ein Event?"
1222
1223#: views/events-meta-box.php:185
1224#: views/events-options.php:181
1225msgid "Yes"
1226msgstr "Ja"
1227
1228#: views/events-meta-box.php:186
1229#: views/events-options.php:185
1230msgid "No"
1231msgstr "Nein"
1232
1233#: views/events-meta-box.php:203
1234msgid "Event Time &amp; Date"
1235msgstr "Event Zeit &amp; Datum"
1236
1237#: views/events-meta-box.php:206
1238msgid "All day event?"
1239msgstr "Ganztags?"
1240
1241#: views/events-meta-box.php:210
1242msgid "Start Date / Time:"
1243msgstr "Start Datum / Zeit:"
1244
1245#: views/events-meta-box.php:224
1246#: views/events-meta-box.php:254
1247msgid "@"
1248msgstr "@"
1249
1250#: views/events-meta-box.php:240
1251msgid "End Date / Time:"
1252msgstr "Ende Datum / Zeit:"
1253
1254#: views/events-meta-box.php:270
1255msgid "Event Location Details"
1256msgstr "Eventort Beschreibung"
1257
1258#: views/events-meta-box.php:273
1259#: views/list.php:45
1260#: views/single.php:27
1261msgid "Venue:"
1262msgstr "Eventort:"
1263
1264#: views/events-meta-box.php:279
1265msgid "Country:"
1266msgstr "Land:"
1267
1268#: views/events-meta-box.php:296
1269#: views/list.php:60
1270#: views/single.php:35
1271msgid "Address:"
1272msgstr "Straße:"
1273
1274#: views/events-meta-box.php:300
1275msgid "City:"
1276msgstr "Stadt:"
1277
1278#: views/events-meta-box.php:305
1279msgid "Province:"
1280msgstr "Bundesland:"
1281
1282#: views/events-meta-box.php:309
1283msgid "State:"
1284msgstr "Staat:"
1285
1286#: views/events-meta-box.php:312
1287msgid "Select a State:"
1288msgstr "Staat auswählen:"
1289
1290#: views/events-meta-box.php:314
1291msgid "Alabama"
1292msgstr "Baden-Württemberg"
1293
1294#: views/events-meta-box.php:315
1295msgid "Alaska"
1296msgstr "Bayern"
1297
1298#: views/events-meta-box.php:316
1299msgid "Arizona"
1300msgstr "Berlin"
1301
1302#: views/events-meta-box.php:317
1303msgid "Arkansas"
1304msgstr "Brandenburg"
1305
1306#: views/events-meta-box.php:318
1307msgid "California"
1308msgstr "Bremen"
1309
1310#: views/events-meta-box.php:319
1311msgid "Colorado"
1312msgstr "Hamburg"
1313
1314#: views/events-meta-box.php:320
1315msgid "Connecticut"
1316msgstr "Hessen"
1317
1318#: views/events-meta-box.php:321
1319msgid "Delaware"
1320msgstr "Mecklenburg-Vorpommern"
1321
1322#: views/events-meta-box.php:322
1323msgid "District of Columbia"
1324msgstr "Niedersachsen"
1325
1326#: views/events-meta-box.php:323
1327msgid "Florida"
1328msgstr "Nordrhein-Westfalen"
1329
1330#: views/events-meta-box.php:325
1331msgid "Hawaii"
1332msgstr "Rheinland-Pfalz"
1333
1334#: views/events-meta-box.php:326
1335msgid "Idaho"
1336msgstr "Saarland"
1337
1338#: views/events-meta-box.php:327
1339msgid "Illinois"
1340msgstr "Sachsen"
1341
1342#: views/events-meta-box.php:328
1343msgid "Indiana"
1344msgstr "Sachsen-Anhalt"
1345
1346#: views/events-meta-box.php:329
1347msgid "Iowa"
1348msgstr "Schleswig-Holstein"
1349
1350#: views/events-meta-box.php:330
1351msgid "Kansas"
1352msgstr "Thüringen"
1353
1354#: views/events-meta-box.php:331
1355msgid "Kentucky"
1356msgstr " "
1357
1358#: views/events-meta-box.php:332
1359msgid "Louisiana"
1360msgstr " "
1361
1362#: views/events-meta-box.php:333
1363msgid "Maine"
1364msgstr " "
1365
1366#: views/events-meta-box.php:334
1367msgid "Maryland"
1368msgstr " "
1369
1370#: views/events-meta-box.php:335
1371msgid "Massachusetts"
1372msgstr " "
1373
1374#: views/events-meta-box.php:336
1375msgid "Michigan"
1376msgstr " "
1377
1378#: views/events-meta-box.php:337
1379msgid "Minnesota"
1380msgstr " "
1381
1382#: views/events-meta-box.php:338
1383msgid "Mississippi"
1384msgstr " "
1385
1386#: views/events-meta-box.php:339
1387msgid "Missouri"
1388msgstr " "
1389
1390#: views/events-meta-box.php:340
1391msgid "Montana"
1392msgstr " "
1393
1394#: views/events-meta-box.php:341
1395msgid "Nebraska"
1396msgstr " "
1397
1398#: views/events-meta-box.php:342
1399msgid "Nevada"
1400msgstr " "
1401
1402#: views/events-meta-box.php:343
1403msgid "New Hampshire"
1404msgstr " "
1405
1406#: views/events-meta-box.php:344
1407msgid "New Jersey"
1408msgstr " "
1409
1410#: views/events-meta-box.php:345
1411msgid "New Mexico"
1412msgstr " "
1413
1414#: views/events-meta-box.php:346
1415msgid "New York"
1416msgstr " "
1417
1418#: views/events-meta-box.php:347
1419msgid "North Carolina"
1420msgstr " "
1421
1422#: views/events-meta-box.php:348
1423msgid "North Dakota"
1424msgstr " "
1425
1426#: views/events-meta-box.php:349
1427msgid "Ohio"
1428msgstr " "
1429
1430#: views/events-meta-box.php:350
1431msgid "Oklahoma"
1432msgstr " "
1433
1434#: views/events-meta-box.php:351
1435msgid "Oregon"
1436msgstr " "
1437
1438#: views/events-meta-box.php:352
1439msgid "Pennsylvania"
1440msgstr " "
1441
1442#: views/events-meta-box.php:353
1443msgid "Rhode Island"
1444msgstr " "
1445
1446#: views/events-meta-box.php:354
1447msgid "South Carolina"
1448msgstr " "
1449
1450#: views/events-meta-box.php:355
1451msgid "South Dakota"
1452msgstr " "
1453
1454#: views/events-meta-box.php:356
1455msgid "Tennessee"
1456msgstr " "
1457
1458#: views/events-meta-box.php:357
1459msgid "Texas"
1460msgstr " "
1461
1462#: views/events-meta-box.php:358
1463msgid "Utah"
1464msgstr " "
1465
1466#: views/events-meta-box.php:359
1467msgid "Vermont"
1468msgstr " "
1469
1470#: views/events-meta-box.php:360
1471msgid "Virginia"
1472msgstr " "
1473
1474#: views/events-meta-box.php:361
1475msgid "Washington"
1476msgstr " "
1477
1478#: views/events-meta-box.php:362
1479msgid "West Virginia"
1480msgstr " "
1481
1482#: views/events-meta-box.php:363
1483msgid "Wisconsin"
1484msgstr " "
1485
1486#: views/events-meta-box.php:364
1487msgid "Wyoming"
1488msgstr " "
1489
1490#: views/events-meta-box.php:378
1491msgid "Postal Code:"
1492msgstr "PLZ:"
1493
1494#: views/events-meta-box.php:382
1495#: views/list.php:54
1496#: views/single.php:31
1497msgid "Phone:"
1498msgstr "Telefon:"
1499
1500#: views/events-meta-box.php:386
1501msgid "Event Cost"
1502msgstr "Event Kosten"
1503
1504#: views/events-meta-box.php:389
1505#: views/list.php:69
1506#: views/single.php:21
1507msgid "Cost:"
1508msgstr "Preis:"
1509
1510#: views/events-meta-box.php:394
1511msgid "Leave blank to hide the field. Enter a 0 for events that are free."
1512msgstr "Leeres Feld wird nicht angezeigt. 0 = kostenlose Veranstaltung."
1513
1514#: views/events-meta-box.php:398
1515msgid "Sell Tickets &amp; Track Registration"
1516msgstr "Ticketverkauf &amp; Track Registrierung"
1517
1518#: views/events-meta-box.php:403
1519msgid "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. "
1520msgstr "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."
1521
1522#: views/events-meta-box.php:403
1523msgid "Check it out here."
1524msgstr "Hier ausprobieren."
1525
1526#: views/events-meta-box.php:421
1527msgid "<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>"
1528msgstr "<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>"
1529
1530#: views/events-meta-box.php:423
1531msgid "Thanks"
1532msgstr "Danke"
1533
1534#: views/events-options.php:74
1535msgid "The Events Calendar Settings"
1536msgstr "Die Events Calendar Einstellungen"
1537
1538#: views/events-options.php:94
1539msgid "Need a hand?"
1540msgstr "Brauchst du Hilfe?"
1541
1542#: views/events-options.php:95
1543msgid "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."
1544msgstr "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."
1545
1546#: views/events-options.php:96
1547msgid "Here is the iCal feed URL for your events: "
1548msgstr "Hier ist die iCal Feed URL für deine Events:"
1549
1550#: views/events-options.php:99
1551msgid "Donate"
1552msgstr "Spende"
1553
1554#: views/events-options.php:108
1555msgid "If you find this plugin useful, please consider donating to the producer of it, Shane &#38; Peter, Inc. Thank you!"
1556msgstr "Wenn du dieses Plugin nützlich findest, überlege dir bitte dem Prduzenten, Shane &#38; Peter, Inc. eine Spende zukommen zu lassen. Vielen Dank!"
1557
1558#: views/events-options.php:112
1559msgid "I have already donated, so please hide this button!"
1560msgstr "Ich habe schon gespendet, bitte lösche diesen Knopf!"
1561
1562#: views/events-options.php:122
1563msgid "Donate for this wonderful plugin"
1564msgstr "Spende für dieses wunderbare Plugin"
1565
1566#: views/events-options.php:136
1567msgid "Settings"
1568msgstr "Einstellungen"
1569
1570#: views/events-options.php:139
1571#: views/events-options.php:143
1572msgid "Default View for the Events"
1573msgstr "Vorgabeart der Eventanzeige"
1574
1575#: views/events-options.php:155
1576#: views/gridview.php:15
1577#: views/list.php:12
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches