The Events Calendar - Version 2.0.2

Version Description

Small features, UX and Content Tweaks:

  • Added link to new user primer (http://tri.be/support/documentation/events-calendar-pro-new-user-primer?ref=tec-readme) to the activation message.
  • Added tribe_is_event_in_category conditional to plugin code base.
  • Plugin now adds a default role when registering custom post types.
  • Russian language files incorporated (free & PRO) from Mikhail Michouris
  • Dutch translation files incorporated (free only) from Rick van Dalen
  • Danish translation files incorporated (PRO only) from Christian Andersen
  • Italian translation files incorporated (free & PRO) from Stefano Castelli

Bugs:

  • Months will now show appropriate day count, instead of 31 days as they were previously.
  • Custom recurring events previously not showing start AND end time (just start time); now are showing both.
  • Hack to include events in your main loop no longer causes event link to vanish.
  • Fixed issue of recurrence settings changing upon publication.
  • Fixed other bug related to recurrence details showing incorrect date/time.
  • General bugs with weekly recurrence have been squashed.
  • Admin page should no longer hang when updating a recurring event.
  • Breadcrumbs will now show the correct slug info on Thesis.
  • Not entering a name for an organizer or venue doesnt stop it from publishing, as it did previously.
  • Admin events list now appears with soonest event at the top, not the bottom.
  • Deleting instances of recurrence now works within individual entries.
  • Unnamed venue/organizer now created when no venue or organizer name added.
  • Featured image no longer overlaps the map on individual entries in the default 2011 theme.
  • Custom recurrence events weren't previously showing end time on the frontend; they will now.
  • Comments box now appears on the default page template (was previously only on default events template).
  • Minor change to line 1835 of the-events-calendar.class.php.
  • Incorporated patch to include file name in permalink for users running the plugin on shared IIS servers.
  • Changes to incorrect tag on lines 58, 60 & 62 in views/single.php.
  • Next/Previous link in recurring & standalone events both work fine.
  • General display tweaks to Calendar widget (wasn't showing future events previously, and CSS was screwy)
  • Renamed the dashboard Tribe newsfeed widget to conform with rebranding efforts.
  • Worked to better display comments in Thesis & Genesis themes.
  • General display bugs related to the WP 3.3 beta.
  • Fixed general PHP notices that appeared with debug turned on in your wp-config file.
Download this release

Release Info

Developer peterchester
Plugin Icon The Events Calendar
Version 2.0.2
Comparing to
See all releases

Code changes from version 2.0.1 to 2.0.2

admin-views/venue-meta-box.php CHANGED
@@ -11,17 +11,17 @@ if ( !defined('ABSPATH') ) { die('-1'); }
11
  <tr class="venue">
12
  <td><?php _e('Venue Name:','tribe-events-calendar'); ?></td>
13
  <td>
14
- <input tabindex="<?php $this->tabIndex(); ?>" type='text' name='venue[Venue]' size='25' value='<?php echo esc_attr($_VenueVenue); ?>' />
15
  </td>
16
  </tr>
17
  <?php endif; ?>
18
  <tr class="venue">
19
  <td><?php _e('Address:','tribe-events-calendar'); ?></td>
20
- <td><input tabindex="<?php $this->tabIndex(); ?>" type='text' name='venue[Address]' size='25' value='<?php echo esc_attr($_VenueAddress); ?>' /></td>
21
  </tr>
22
  <tr class="venue">
23
  <td><?php _e('City:','tribe-events-calendar'); ?></td>
24
- <td><input tabindex="<?php $this->tabIndex(); ?>" type='text' name='venue[City]' size='25' value='<?php echo esc_attr($_VenueCity); ?>' /></td>
25
  </tr>
26
  <tr class="venue">
27
  <td><?php _e('Country:','tribe-events-calendar'); ?></td>
@@ -56,14 +56,16 @@ if ( !defined('ABSPATH') ) { die('-1'); }
56
  <tr class="venue">
57
  <?php if(!isset($_VenueStateProvince) || $_VenueStateProvince == "") $_VenueStateProvince = -1; ?>
58
  <td><?php _e('State or Province:','tribe-events-calendar'); ?></td>
59
- <td><input tabindex="<?php $this->tabIndex(); ?>" id="StateProvinceText" name="venue[Province]" type='text' name='' size='25' value='<?php echo ( $_VenueStateProvince != '' && $_VenueStateProvince != -1 ) ? esc_attr($_VenueStateProvince) : esc_attr($_VenueProvince); ?>' />
60
  <select tabindex="<?php $this->tabIndex(); ?>" id="StateProvinceSelect" name="venue[State]" name=''>
61
  <option value=""><?php _e('Select a State:','tribe-events-calendar'); ?></option>
62
  <?php
63
  foreach (TribeEventsViewHelpers::loadStates() as $abbr => $fullname) {
64
  print ("<option value=\"$abbr\" ");
65
- if (($_VenueStateProvince != -1 ? $_VenueStateProvince : $_VenueState) == $abbr) {
66
- print ('selected="selected" ');
 
 
67
  }
68
  print (">" . esc_html($fullname) . "</option>\n");
69
  }
@@ -73,11 +75,11 @@ if ( !defined('ABSPATH') ) { die('-1'); }
73
  </tr>
74
  <tr class="venue">
75
  <td><?php _e('Postal Code:','tribe-events-calendar'); ?></td>
76
- <td><input tabindex="<?php $this->tabIndex(); ?>" type='text' id='EventZip' name='venue[Zip]' size='6' value='<?php echo esc_attr($_VenueZip); ?>' /></td>
77
  </tr>
78
  <tr class="venue">
79
  <td><?php _e('Phone:','tribe-events-calendar'); ?></td>
80
- <td><input tabindex="<?php $this->tabIndex(); ?>" type='text' id='EventPhone' name='venue[Phone]' size='14' value='<?php echo esc_attr($_VenuePhone); ?>' /></td>
81
  </tr>
82
 
83
  <script type="text/javascript">
11
  <tr class="venue">
12
  <td><?php _e('Venue Name:','tribe-events-calendar'); ?></td>
13
  <td>
14
+ <input tabindex="<?php $this->tabIndex(); ?>" type='text' name='venue[Venue]' size='25' value='<?php if( isset($_VenueVenue) ) echo esc_attr($_VenueVenue); ?>' />
15
  </td>
16
  </tr>
17
  <?php endif; ?>
18
  <tr class="venue">
19
  <td><?php _e('Address:','tribe-events-calendar'); ?></td>
20
+ <td><input tabindex="<?php $this->tabIndex(); ?>" type='text' name='venue[Address]' size='25' value='<?php if( isset($_VenueAddress) ) echo esc_attr($_VenueAddress); ?>' /></td>
21
  </tr>
22
  <tr class="venue">
23
  <td><?php _e('City:','tribe-events-calendar'); ?></td>
24
+ <td><input tabindex="<?php $this->tabIndex(); ?>" type='text' name='venue[City]' size='25' value='<?php if( isset($_VenueCity) ) echo esc_attr($_VenueCity); ?>' /></td>
25
  </tr>
26
  <tr class="venue">
27
  <td><?php _e('Country:','tribe-events-calendar'); ?></td>
56
  <tr class="venue">
57
  <?php if(!isset($_VenueStateProvince) || $_VenueStateProvince == "") $_VenueStateProvince = -1; ?>
58
  <td><?php _e('State or Province:','tribe-events-calendar'); ?></td>
59
+ <td><input tabindex="<?php $this->tabIndex(); ?>" id="StateProvinceText" name="venue[Province]" type='text' name='' size='25' value='<?php echo ( isset($_VenueStateProvince) && $_VenueStateProvince != '' && $_VenueStateProvince != -1 ) ? esc_attr($_VenueStateProvince) : esc_attr(''); ?>' />
60
  <select tabindex="<?php $this->tabIndex(); ?>" id="StateProvinceSelect" name="venue[State]" name=''>
61
  <option value=""><?php _e('Select a State:','tribe-events-calendar'); ?></option>
62
  <?php
63
  foreach (TribeEventsViewHelpers::loadStates() as $abbr => $fullname) {
64
  print ("<option value=\"$abbr\" ");
65
+ if( $_VenueStateProvince != -1 ){
66
+ if (( $_VenueStateProvince != -1 ? $_VenueStateProvince : $_VenueState) == $abbr) {
67
+ print ('selected="selected" ');
68
+ }
69
  }
70
  print (">" . esc_html($fullname) . "</option>\n");
71
  }
75
  </tr>
76
  <tr class="venue">
77
  <td><?php _e('Postal Code:','tribe-events-calendar'); ?></td>
78
+ <td><input tabindex="<?php $this->tabIndex(); ?>" type='text' id='EventZip' name='venue[Zip]' size='6' value='<?php if( isset($_VenueZip) ) echo esc_attr($_VenueZip); ?>' /></td>
79
  </tr>
80
  <tr class="venue">
81
  <td><?php _e('Phone:','tribe-events-calendar'); ?></td>
82
+ <td><input tabindex="<?php $this->tabIndex(); ?>" type='text' id='EventPhone' name='venue[Phone]' size='14' value='<?php if( isset($_VenuePhone) ) echo esc_attr($_VenuePhone); ?>' /></td>
83
  </tr>
84
 
85
  <script type="text/javascript">
lang/tribe-events-calendar-de_DE.mo CHANGED
Binary file
lang/tribe-events-calendar-de_DE.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: The Events Calendar 2.0+\n"
4
- "Report-Msgid-Bugs-To: http://tri.be/\n"
5
- "POT-Creation-Date: 2010-12-22 23:44-0500\n"
6
- "PO-Revision-Date: 2011-09-16 17:52+0100\n"
7
- "Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
8
  "Language-Team: DECKERWEB <deckerweb.mobil@googlemail.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -17,2580 +17,2549 @@ msgstr ""
17
  "X-Textdomain-Support: yes\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #@ tribe-events-calendar
21
- #: admin-views/widget-admin-list.php:11
22
- msgid "Title:"
23
- msgstr "Titel:"
24
-
25
- #@ tribe-events-calendar
26
- #: lib/widget-list.class.php:16
27
- msgid "A widget that displays the next upcoming x events."
28
- msgstr "Ein Widget, das die n&auml;chsten X Veranstaltungen anzeigt."
29
-
30
- #@ tribe-events-calendar
31
- #: lib/widget-list.class.php:70
32
- msgid "View All Events"
33
- msgstr "Alle Veranstaltungen ansehen"
34
-
35
- #@ tribe-events-calendar
36
- #: lib/widget-list.class.php:73
37
- msgid "There are no upcoming events at this time."
38
- msgstr "Es gibt derzeit keine bevorstehenden Veranstaltungen."
39
-
40
- #@ tribe-events-calendar
41
- #: lib/template-tags.php:830
42
- #: lib/template-tags.php:964
43
- #: lib/tribe-view-helpers.class.php:34
44
- msgid "United States"
45
- msgstr "Vereinigte Staaten"
46
-
47
- #@ tribe-events-calendar
48
- #: lib/template-tags.php:863
49
- msgid "Calendar of Events"
50
- msgstr "Veranstaltungskalender"
51
-
52
- #@ tribe-events-calendar
53
- #: lib/tribe-view-helpers.class.php:16
54
- #: lib/tribe-view-helpers.class.php:33
55
- msgid "Select a Country:"
56
- msgstr "Ein Land ausw&auml;hlen:"
57
-
58
- #@ tribe-events-calendar
59
- #: lib/tribe-view-helpers.class.php:35
60
- msgid "Afghanistan"
61
- msgstr "Afghanistan"
62
 
63
- #@ tribe-events-calendar
64
- #: lib/tribe-view-helpers.class.php:36
65
- msgid "Albania"
66
- msgstr "Albanien"
 
67
 
68
- #@ tribe-events-calendar
69
- #: lib/tribe-view-helpers.class.php:37
70
- msgid "Algeria"
71
- msgstr "Algerien"
 
72
 
73
- #@ tribe-events-calendar
74
- #: lib/tribe-view-helpers.class.php:38
75
- msgid "American Samoa"
76
- msgstr "Amerikanisch Samoa"
77
 
78
- #@ tribe-events-calendar
79
- #: lib/tribe-view-helpers.class.php:39
80
- msgid "Andorra"
81
- msgstr "Andorra"
82
 
83
- #@ tribe-events-calendar
84
- #: lib/tribe-view-helpers.class.php:40
85
- msgid "Angola"
86
- msgstr "Angola"
 
87
 
88
- #@ tribe-events-calendar
89
- #: lib/tribe-view-helpers.class.php:41
90
- msgid "Anguilla"
91
- msgstr "Anguilla"
 
92
 
93
- #@ tribe-events-calendar
94
- #: lib/tribe-view-helpers.class.php:42
95
- msgid "Antarctica"
96
- msgstr "Antarktika"
 
 
 
97
 
98
- #@ tribe-events-calendar
99
- #: lib/tribe-view-helpers.class.php:43
100
- msgid "Antigua And Barbuda"
101
- msgstr "Antigua und Barbuda"
 
 
102
 
103
- #@ tribe-events-calendar
104
- #: lib/tribe-view-helpers.class.php:44
105
- msgid "Argentina"
106
- msgstr "Argentinien"
 
107
 
108
- #@ tribe-events-calendar
109
- #: lib/tribe-view-helpers.class.php:45
110
- msgid "Armenia"
111
- msgstr "Armenien"
 
 
112
 
113
- #@ tribe-events-calendar
114
- #: lib/tribe-view-helpers.class.php:46
115
- msgid "Aruba"
116
- msgstr "Aruba"
 
117
 
118
- #@ tribe-events-calendar
119
- #: lib/tribe-view-helpers.class.php:47
120
- msgid "Australia"
121
- msgstr "Australien"
 
122
 
123
- #@ tribe-events-calendar
124
- #: lib/tribe-view-helpers.class.php:48
125
- msgid "Austria"
126
- msgstr "&Ouml;sterreich"
127
 
128
- #@ tribe-events-calendar
129
- #: lib/tribe-view-helpers.class.php:49
130
- msgid "Azerbaijan"
131
- msgstr "Aserbaidschan"
132
 
133
- #@ tribe-events-calendar
134
- #: lib/tribe-view-helpers.class.php:50
135
- msgid "Bahamas"
136
- msgstr "Bahamas"
 
 
137
 
138
- #@ tribe-events-calendar
139
- #: lib/tribe-view-helpers.class.php:51
140
- msgid "Bahrain"
141
- msgstr "Bahrain"
 
 
142
 
143
- #@ tribe-events-calendar
144
- #: lib/tribe-view-helpers.class.php:52
145
- msgid "Bangladesh"
146
- msgstr "Bangladesh"
 
 
147
 
148
- #@ tribe-events-calendar
149
- #: lib/tribe-view-helpers.class.php:53
150
- msgid "Barbados"
151
- msgstr "Barbados"
152
 
153
- #@ tribe-events-calendar
154
- #: lib/tribe-view-helpers.class.php:54
155
- msgid "Belarus"
156
- msgstr "Wei&szlig;russland"
157
 
158
- #@ tribe-events-calendar
159
- #: lib/tribe-view-helpers.class.php:55
160
- msgid "Belgium"
161
- msgstr "Belgien"
162
 
163
- #@ tribe-events-calendar
164
- #: lib/tribe-view-helpers.class.php:56
165
- msgid "Belize"
166
- msgstr "Belize"
167
 
168
- #@ tribe-events-calendar
169
- #: lib/tribe-view-helpers.class.php:57
170
- msgid "Benin"
171
- msgstr "Benin"
172
 
173
- #@ tribe-events-calendar
174
- #: lib/tribe-view-helpers.class.php:58
175
- msgid "Bermuda"
176
- msgstr "Bermuda"
177
 
178
- #@ tribe-events-calendar
179
- #: lib/tribe-view-helpers.class.php:59
180
- msgid "Bhutan"
181
- msgstr "Bhutan"
182
 
183
- #@ tribe-events-calendar
184
- #: lib/tribe-view-helpers.class.php:60
185
- msgid "Bolivia"
186
- msgstr "Bolivien"
187
 
188
- #@ tribe-events-calendar
189
- #: lib/tribe-view-helpers.class.php:61
190
- msgid "Bosnia And Herzegowina"
191
- msgstr "Bosnien und Herzegowina"
192
 
193
- #@ tribe-events-calendar
194
- #: lib/tribe-view-helpers.class.php:62
195
- msgid "Botswana"
196
- msgstr "Botswana"
197
 
198
- #@ tribe-events-calendar
199
- #: lib/tribe-view-helpers.class.php:63
200
- msgid "Bouvet Island"
201
- msgstr "Bouvetinsel"
202
 
203
- #@ tribe-events-calendar
204
- #: lib/tribe-view-helpers.class.php:64
205
- msgid "Brazil"
206
- msgstr "Brasilien"
207
 
208
- #@ tribe-events-calendar
209
- #: lib/tribe-view-helpers.class.php:65
210
- msgid "British Indian Ocean Territory"
211
- msgstr "Britisches Territorium im Indischen Ozean"
212
 
213
- #@ tribe-events-calendar
214
- #: lib/tribe-view-helpers.class.php:66
215
- msgid "Brunei Darussalam"
216
- msgstr "Brunei"
217
 
218
- #@ tribe-events-calendar
219
- #: lib/tribe-view-helpers.class.php:67
220
- msgid "Bulgaria"
221
- msgstr "Bulgarien"
222
 
223
- #@ tribe-events-calendar
224
- #: lib/tribe-view-helpers.class.php:68
225
- msgid "Burkina Faso"
226
- msgstr "Burkina Faso"
227
 
228
- #@ tribe-events-calendar
229
- #: lib/tribe-view-helpers.class.php:69
230
- msgid "Burundi"
231
- msgstr "Burundi"
 
232
 
233
- #@ tribe-events-calendar
234
- #: lib/tribe-view-helpers.class.php:70
235
- msgid "Cambodia"
236
- msgstr "Kambodscha"
 
237
 
238
- #@ tribe-events-calendar
239
- #: lib/tribe-view-helpers.class.php:71
240
- msgid "Cameroon"
241
- msgstr "Kamerun"
242
 
243
- #@ tribe-events-calendar
244
- #: lib/tribe-view-helpers.class.php:72
245
- msgid "Canada"
246
- msgstr "Kanada"
247
 
248
- #@ tribe-events-calendar
249
- #: lib/tribe-view-helpers.class.php:73
250
- msgid "Cape Verde"
251
- msgstr "Kapverdische Inseln"
252
 
253
- #@ tribe-events-calendar
254
- #: lib/tribe-view-helpers.class.php:74
255
- msgid "Cayman Islands"
256
- msgstr "Cayman Inseln"
257
 
258
- #@ tribe-events-calendar
259
- #: lib/tribe-view-helpers.class.php:75
260
- msgid "Central African Republic"
261
- msgstr "Zentralafrikanische Republik"
262
 
263
- #@ tribe-events-calendar
264
- #: lib/tribe-view-helpers.class.php:76
265
- msgid "Chad"
266
- msgstr "Tschad"
267
 
268
- #@ tribe-events-calendar
269
- #: lib/tribe-view-helpers.class.php:77
270
- msgid "Chile"
271
- msgstr "Chile"
272
 
273
- #@ tribe-events-calendar
274
- #: lib/tribe-view-helpers.class.php:78
275
- msgid "China"
276
- msgstr "China"
277
 
278
- #@ tribe-events-calendar
279
- #: lib/tribe-view-helpers.class.php:79
280
- msgid "Christmas Island"
281
- msgstr "Weihnachtsinseln"
282
 
283
- #@ tribe-events-calendar
284
- #: lib/tribe-view-helpers.class.php:80
285
- msgid "Cocos (Keeling) Islands"
286
- msgstr "Kokosinseln"
 
287
 
288
- #@ tribe-events-calendar
289
- #: lib/tribe-view-helpers.class.php:81
290
- msgid "Colombia"
291
- msgstr "Kolumbien"
292
 
293
- #@ tribe-events-calendar
294
- #: lib/tribe-view-helpers.class.php:82
295
- msgid "Comoros"
296
- msgstr "Komoren"
297
 
298
- #@ tribe-events-calendar
299
- #: lib/tribe-view-helpers.class.php:83
300
- msgid "Congo"
301
- msgstr "Kongo"
302
 
303
- #@ tribe-events-calendar
304
- #: lib/tribe-view-helpers.class.php:84
305
- msgid "Congo, The Democratic Republic Of The"
306
- msgstr "Demokratische Republik Kongo"
307
 
308
- #@ tribe-events-calendar
309
- #: lib/tribe-view-helpers.class.php:85
310
- msgid "Cook Islands"
311
- msgstr "Cook-Inseln"
312
 
313
- #@ tribe-events-calendar
314
- #: lib/tribe-view-helpers.class.php:86
315
- msgid "Costa Rica"
316
- msgstr "Costa Rica"
317
 
318
- #@ tribe-events-calendar
319
- #: lib/tribe-view-helpers.class.php:87
320
- msgid "Cote D'Ivoire"
321
- msgstr "Elfenbeink&uuml;ste"
322
 
323
- #@ tribe-events-calendar
324
- #: lib/tribe-view-helpers.class.php:88
325
- msgid "Croatia (Local Name: Hrvatska)"
326
- msgstr "Kroatien"
327
 
328
- #@ tribe-events-calendar
329
- #: lib/tribe-view-helpers.class.php:89
330
- msgid "Cuba"
331
- msgstr "Kuba"
332
 
333
- #@ tribe-events-calendar
334
- #: lib/tribe-view-helpers.class.php:90
335
- msgid "Cyprus"
336
- msgstr "Zypern"
 
337
 
338
- #@ tribe-events-calendar
339
- #: lib/tribe-view-helpers.class.php:91
340
- msgid "Czech Republic"
341
- msgstr "Tschechische Republik"
342
 
343
- #@ tribe-events-calendar
344
- #: lib/tribe-view-helpers.class.php:92
345
- msgid "Denmark"
346
- msgstr "D&auml;nemark"
 
347
 
348
- #@ tribe-events-calendar
349
- #: lib/tribe-view-helpers.class.php:93
350
- msgid "Djibouti"
351
- msgstr "Djibouti"
352
 
353
- #@ tribe-events-calendar
354
- #: lib/tribe-view-helpers.class.php:94
355
- msgid "Dominica"
356
- msgstr "Dominica"
357
 
358
- #@ tribe-events-calendar
359
- #: lib/tribe-view-helpers.class.php:95
360
- msgid "Dominican Republic"
361
- msgstr "Dominikanische Republik"
 
362
 
363
- #@ tribe-events-calendar
364
- #: lib/tribe-view-helpers.class.php:96
365
- msgid "East Timor"
366
- msgstr "Osttimor"
 
 
367
 
368
- #@ tribe-events-calendar
369
- #: lib/tribe-view-helpers.class.php:97
370
- msgid "Ecuador"
371
- msgstr "Ecuador"
 
372
 
373
- #@ tribe-events-calendar
374
- #: lib/tribe-view-helpers.class.php:98
375
- msgid "Egypt"
376
- msgstr "&Auml;gypten"
377
 
378
- #@ tribe-events-calendar
379
- #: lib/tribe-view-helpers.class.php:99
380
- msgid "El Salvador"
381
- msgstr "El Salvador"
 
382
 
383
- #@ tribe-events-calendar
384
- #: lib/tribe-view-helpers.class.php:100
385
- msgid "Equatorial Guinea"
386
- msgstr "&Auml;quatorialguinea"
387
 
388
- #@ tribe-events-calendar
389
- #: lib/tribe-view-helpers.class.php:101
390
- msgid "Eritrea"
391
- msgstr "Eritrea"
392
 
393
- #@ tribe-events-calendar
394
- #: lib/tribe-view-helpers.class.php:102
395
- msgid "Estonia"
396
- msgstr "Estland"
397
 
398
- #@ tribe-events-calendar
399
- #: lib/tribe-view-helpers.class.php:103
400
- msgid "Ethiopia"
401
- msgstr "&Auml;thophien"
402
 
403
- #@ tribe-events-calendar
404
- #: lib/tribe-view-helpers.class.php:104
405
- msgid "Falkland Islands (Malvinas)"
406
- msgstr "Falkland-Inseln (Malvinas)"
 
407
 
408
- #@ tribe-events-calendar
409
- #: lib/tribe-view-helpers.class.php:105
410
- msgid "Faroe Islands"
411
- msgstr "F&auml;r&ouml;er"
412
 
413
- #@ tribe-events-calendar
414
- #: lib/tribe-view-helpers.class.php:106
415
- msgid "Fiji"
416
- msgstr "Fiji"
 
417
 
418
- #@ tribe-events-calendar
419
- #: lib/tribe-view-helpers.class.php:107
420
- msgid "Finland"
421
- msgstr "Finnland"
 
422
 
423
- #@ tribe-events-calendar
424
- #: lib/tribe-view-helpers.class.php:108
425
- msgid "France"
426
- msgstr "Frankreich"
427
 
428
- #@ tribe-events-calendar
429
- #: lib/tribe-view-helpers.class.php:109
430
- msgid "France, Metropolitan"
431
- msgstr "Frankreich (mit Korsika)"
 
432
 
433
- #@ tribe-events-calendar
434
- #: lib/tribe-view-helpers.class.php:110
435
- msgid "French Guiana"
436
- msgstr "Franz&ouml;sisch-Guayana"
 
437
 
438
- #@ tribe-events-calendar
439
- #: lib/tribe-view-helpers.class.php:111
440
- msgid "French Polynesia"
441
- msgstr "Franz&ouml;sisch-Polynesien"
442
 
443
- #@ tribe-events-calendar
444
- #: lib/tribe-view-helpers.class.php:112
445
- msgid "French Southern Territories"
446
- msgstr "Franz&ouml;sische S&uuml;d- und Antarktisgebiete"
 
447
 
448
- #@ tribe-events-calendar
449
- #: lib/tribe-view-helpers.class.php:113
450
- msgid "Gabon"
451
- msgstr "Gabon"
452
 
453
- #@ tribe-events-calendar
454
- #: lib/tribe-view-helpers.class.php:114
455
- msgid "Gambia"
456
- msgstr "Gambia"
 
457
 
458
- #@ tribe-events-calendar
459
- #: lib/tribe-view-helpers.class.php:115
460
- #: lib/tribe-view-helpers.class.php:304
461
- msgid "Georgia"
462
- msgstr "Georgien"
463
 
464
- #@ tribe-events-calendar
465
- #: lib/tribe-view-helpers.class.php:116
466
- msgid "Germany"
467
- msgstr "Deutschland"
468
 
469
- #@ tribe-events-calendar
470
- #: lib/tribe-view-helpers.class.php:117
471
- msgid "Ghana"
472
- msgstr "Ghana"
473
 
474
- #@ tribe-events-calendar
475
- #: lib/tribe-view-helpers.class.php:118
476
- msgid "Gibraltar"
477
- msgstr "Gibraltar"
 
 
478
 
479
- #@ tribe-events-calendar
480
- #: lib/tribe-view-helpers.class.php:119
481
- msgid "Greece"
482
- msgstr "Griechenland"
483
 
484
- #@ tribe-events-calendar
485
- #: lib/tribe-view-helpers.class.php:120
486
- msgid "Greenland"
487
- msgstr "Gr&ouml;nland"
488
 
489
- #@ tribe-events-calendar
490
- #: lib/tribe-view-helpers.class.php:121
491
- msgid "Grenada"
492
- msgstr "Grenada"
 
493
 
494
- #@ tribe-events-calendar
495
- #: lib/tribe-view-helpers.class.php:122
496
- msgid "Guadeloupe"
497
- msgstr "Guadeloupe"
498
 
499
- #@ tribe-events-calendar
500
- #: lib/tribe-view-helpers.class.php:123
501
- msgid "Guam"
502
- msgstr "Guam"
503
 
504
- #@ tribe-events-calendar
505
- #: lib/tribe-view-helpers.class.php:124
506
- msgid "Guatemala"
507
- msgstr "Guatemala"
508
 
509
- #@ tribe-events-calendar
510
- #: lib/tribe-view-helpers.class.php:125
511
- msgid "Guinea"
512
- msgstr "Guinea"
513
 
514
- #@ tribe-events-calendar
515
- #: lib/tribe-view-helpers.class.php:126
516
- msgid "Guinea-Bissau"
517
- msgstr "Guinea-Bissau"
518
 
519
- #@ tribe-events-calendar
520
- #: lib/tribe-view-helpers.class.php:127
521
- msgid "Guyana"
522
- msgstr "Guyana"
523
 
524
- #@ tribe-events-calendar
525
- #: lib/tribe-view-helpers.class.php:128
526
- msgid "Haiti"
527
- msgstr "Haiti"
528
 
529
- #@ tribe-events-calendar
530
- #: lib/tribe-view-helpers.class.php:129
531
- msgid "Heard And Mc Donald Islands"
532
- msgstr "Heard und McDonaldinseln"
533
 
534
- #@ tribe-events-calendar
535
- #: lib/tribe-view-helpers.class.php:130
536
- msgid "Holy See (Vatican City State)"
537
- msgstr "Vatikanstadt (Heiliger Stuhl)"
538
 
539
- #@ tribe-events-calendar
540
- #: lib/tribe-view-helpers.class.php:131
541
- msgid "Honduras"
542
- msgstr "Honduras"
543
 
544
- #@ tribe-events-calendar
545
- #: lib/tribe-view-helpers.class.php:132
546
- msgid "Hong Kong"
547
- msgstr "Hongkong"
 
548
 
549
- #@ tribe-events-calendar
550
- #: lib/tribe-view-helpers.class.php:133
551
- msgid "Hungary"
552
- msgstr "Ungarn"
553
 
554
- #@ tribe-events-calendar
555
- #: lib/tribe-view-helpers.class.php:134
556
- msgid "Iceland"
557
- msgstr "Island"
558
 
559
- #@ tribe-events-calendar
560
- #: lib/tribe-view-helpers.class.php:135
561
- msgid "India"
562
- msgstr "Indien"
563
 
564
- #@ tribe-events-calendar
565
- #: lib/tribe-view-helpers.class.php:136
566
- msgid "Indonesia"
567
- msgstr "Indonesien"
568
 
569
- #@ tribe-events-calendar
570
- #: lib/tribe-view-helpers.class.php:137
571
- msgid "Iran (Islamic Republic Of)"
572
- msgstr "Iran (Islamische Republik)"
573
 
574
- #@ tribe-events-calendar
575
- #: lib/tribe-view-helpers.class.php:138
576
- msgid "Iraq"
577
- msgstr "Irak"
 
578
 
579
- #@ tribe-events-calendar
580
- #: lib/tribe-view-helpers.class.php:139
581
- msgid "Ireland"
582
- msgstr "Irland"
 
583
 
584
- #@ tribe-events-calendar
585
- #: lib/tribe-view-helpers.class.php:140
586
- msgid "Israel"
587
- msgstr "Israel"
 
588
 
589
- #@ tribe-events-calendar
590
- #: lib/tribe-view-helpers.class.php:141
591
- msgid "Italy"
592
- msgstr "Italien"
593
 
594
- #@ tribe-events-calendar
595
- #: lib/tribe-view-helpers.class.php:142
596
- msgid "Jamaica"
597
- msgstr "Jamaika"
598
 
599
- #@ tribe-events-calendar
600
- #: lib/tribe-view-helpers.class.php:143
601
- msgid "Japan"
602
- msgstr "Japan"
603
 
604
- #@ tribe-events-calendar
605
- #: lib/tribe-view-helpers.class.php:144
606
- msgid "Jordan"
607
- msgstr "Jordanien"
608
 
609
- #@ tribe-events-calendar
610
- #: lib/tribe-view-helpers.class.php:145
611
- msgid "Kazakhstan"
612
- msgstr "Kasachstan"
613
 
614
- #@ tribe-events-calendar
615
- #: lib/tribe-view-helpers.class.php:146
616
- msgid "Kenya"
617
- msgstr "Kenia"
618
 
619
- #@ tribe-events-calendar
620
- #: lib/tribe-view-helpers.class.php:147
621
- msgid "Kiribati"
622
- msgstr "Kiribati"
623
 
624
- #@ tribe-events-calendar
625
- #: lib/tribe-view-helpers.class.php:148
626
- msgid "Korea, Democratic People's Republic Of"
627
- msgstr "Nordkorea (Volksrepublik)"
628
 
629
- #@ tribe-events-calendar
630
- #: lib/tribe-view-helpers.class.php:149
631
- msgid "Korea, Republic Of"
632
- msgstr "S&uuml;dkorea"
633
 
634
- #@ tribe-events-calendar
635
- #: lib/tribe-view-helpers.class.php:150
636
- msgid "Kuwait"
637
- msgstr "Kuwait"
638
 
639
- #@ tribe-events-calendar
640
- #: lib/tribe-view-helpers.class.php:151
641
- msgid "Kyrgyzstan"
642
- msgstr "Kirgistan"
643
 
644
- #@ tribe-events-calendar
645
- #: lib/tribe-view-helpers.class.php:152
646
- msgid "Lao People's Democratic Republic"
647
- msgstr "Laos"
648
 
649
- #@ tribe-events-calendar
650
- #: lib/tribe-view-helpers.class.php:153
651
- msgid "Latvia"
652
- msgstr "Lettland"
653
 
654
- #@ tribe-events-calendar
655
- #: lib/tribe-view-helpers.class.php:154
656
- msgid "Lebanon"
657
- msgstr "Libanon"
658
 
659
- #@ tribe-events-calendar
660
- #: lib/tribe-view-helpers.class.php:155
661
- msgid "Lesotho"
662
- msgstr "Lesotho"
663
 
664
- #@ tribe-events-calendar
665
- #: lib/tribe-view-helpers.class.php:156
666
- msgid "Liberia"
667
- msgstr "Liberia"
668
 
669
- #@ tribe-events-calendar
670
- #: lib/tribe-view-helpers.class.php:157
671
- msgid "Libyan Arab Jamahiriya"
672
- msgstr "Libyen"
673
 
674
- #@ tribe-events-calendar
675
- #: lib/tribe-view-helpers.class.php:158
676
- msgid "Liechtenstein"
677
- msgstr "Liechtenstein"
678
 
679
- #@ tribe-events-calendar
680
- #: lib/tribe-view-helpers.class.php:159
681
- msgid "Lithuania"
682
- msgstr "Lithauen"
683
 
684
- #@ tribe-events-calendar
685
- #: lib/tribe-view-helpers.class.php:160
686
- msgid "Luxembourg"
687
- msgstr "Luxemburg"
688
 
689
- #@ tribe-events-calendar
690
- #: lib/tribe-view-helpers.class.php:161
691
- msgid "Macau"
692
- msgstr "Macau"
693
 
694
- #@ tribe-events-calendar
695
- #: lib/tribe-view-helpers.class.php:162
696
- msgid "Macedonia, Former Yugoslav Republic Of"
697
- msgstr "Mazedonien"
698
 
699
- #@ tribe-events-calendar
700
- #: lib/tribe-view-helpers.class.php:163
701
- msgid "Madagascar"
702
- msgstr "Madagascar"
703
 
704
- #@ tribe-events-calendar
705
- #: lib/tribe-view-helpers.class.php:164
706
- msgid "Malawi"
707
- msgstr "Malawi"
708
 
709
- #@ tribe-events-calendar
710
- #: lib/tribe-view-helpers.class.php:165
711
- msgid "Malaysia"
712
- msgstr "Malaysia"
713
 
714
- #@ tribe-events-calendar
715
- #: lib/tribe-view-helpers.class.php:166
716
- msgid "Maldives"
717
- msgstr "Maldiven"
718
 
719
- #@ tribe-events-calendar
720
- #: lib/tribe-view-helpers.class.php:167
721
- msgid "Mali"
722
- msgstr "Mali"
723
 
724
- #@ tribe-events-calendar
725
- #: lib/tribe-view-helpers.class.php:168
726
- msgid "Malta"
727
- msgstr "Malta"
728
 
729
- #@ tribe-events-calendar
730
- #: lib/tribe-view-helpers.class.php:169
731
- msgid "Marshall Islands"
732
- msgstr "Marshallinseln"
733
 
734
- #@ tribe-events-calendar
735
- #: lib/tribe-view-helpers.class.php:170
736
- msgid "Martinique"
737
- msgstr "Martinique"
738
 
739
- #@ tribe-events-calendar
740
- #: lib/tribe-view-helpers.class.php:171
741
- msgid "Mauritania"
742
- msgstr "Mauretanien"
743
 
744
- #@ tribe-events-calendar
745
- #: lib/tribe-view-helpers.class.php:172
746
- msgid "Mauritius"
747
- msgstr "Mauritius"
748
 
749
- #@ tribe-events-calendar
750
- #: lib/tribe-view-helpers.class.php:173
751
- msgid "Mayotte"
752
- msgstr "Mayotte"
753
 
754
- #@ tribe-events-calendar
755
- #: lib/tribe-view-helpers.class.php:174
756
- msgid "Mexico"
757
- msgstr "Mexiko"
758
 
759
- #@ tribe-events-calendar
760
- #: lib/tribe-view-helpers.class.php:175
761
- msgid "Micronesia, Federated States Of"
762
- msgstr "Mikronesien"
763
 
764
- #@ tribe-events-calendar
765
- #: lib/tribe-view-helpers.class.php:176
766
- msgid "Moldova, Republic Of"
767
- msgstr "Moldawien"
768
 
769
- #@ tribe-events-calendar
770
- #: lib/tribe-view-helpers.class.php:177
771
- msgid "Monaco"
772
- msgstr "Monaco"
773
 
774
- #@ tribe-events-calendar
775
- #: lib/tribe-view-helpers.class.php:178
776
- msgid "Mongolia"
777
- msgstr "Mongolei"
778
 
779
- #@ tribe-events-calendar
780
- #: lib/tribe-view-helpers.class.php:179
781
- msgid "Montenegro"
782
- msgstr "Montenegro"
783
 
784
- #@ tribe-events-calendar
785
- #: lib/tribe-view-helpers.class.php:180
786
- msgid "Montserrat"
787
- msgstr "Montserrat"
788
 
789
- #@ tribe-events-calendar
790
- #: lib/tribe-view-helpers.class.php:181
791
- msgid "Morocco"
792
- msgstr "Marokko"
793
 
794
- #@ tribe-events-calendar
795
- #: lib/tribe-view-helpers.class.php:182
796
- msgid "Mozambique"
797
- msgstr "Mosambik"
798
 
799
- #@ tribe-events-calendar
800
- #: lib/tribe-view-helpers.class.php:183
801
- msgid "Myanmar"
802
- msgstr "Myanmar"
803
 
804
- #@ tribe-events-calendar
805
- #: lib/tribe-view-helpers.class.php:184
806
- msgid "Namibia"
807
- msgstr "Namibia"
808
 
809
- #@ tribe-events-calendar
810
- #: lib/tribe-view-helpers.class.php:185
811
- msgid "Nauru"
812
- msgstr "Nauru"
813
 
814
- #@ tribe-events-calendar
815
- #: lib/tribe-view-helpers.class.php:186
816
- msgid "Nepal"
817
- msgstr "Nepal"
818
 
819
- #@ tribe-events-calendar
820
- #: lib/tribe-view-helpers.class.php:187
821
- msgid "Netherlands"
822
- msgstr "Niederlande"
823
 
824
- #@ tribe-events-calendar
825
- #: lib/tribe-view-helpers.class.php:188
826
- msgid "Netherlands Antilles"
827
- msgstr "Niederl&auml;ndische Antillen"
828
 
829
- #@ tribe-events-calendar
830
- #: lib/tribe-view-helpers.class.php:189
831
- msgid "New Caledonia"
832
- msgstr "Neukaledonien"
833
 
834
- #@ tribe-events-calendar
835
- #: lib/tribe-view-helpers.class.php:190
836
- msgid "New Zealand"
837
- msgstr "Neuseeland"
838
 
839
- #@ tribe-events-calendar
840
- #: lib/tribe-view-helpers.class.php:191
841
- msgid "Nicaragua"
842
- msgstr "Nicaragua"
843
 
844
- #@ tribe-events-calendar
845
- #: lib/tribe-view-helpers.class.php:192
846
- msgid "Niger"
847
- msgstr "Niger"
848
 
849
- #@ tribe-events-calendar
850
- #: lib/tribe-view-helpers.class.php:193
851
- msgid "Nigeria"
852
- msgstr "Nigeria"
853
 
854
- #@ tribe-events-calendar
855
- #: lib/tribe-view-helpers.class.php:194
856
- msgid "Niue"
857
- msgstr "Niue"
858
 
859
- #@ tribe-events-calendar
860
- #: lib/tribe-view-helpers.class.php:195
861
- msgid "Norfolk Island"
862
- msgstr "Norfolkinsel"
863
 
864
- #@ tribe-events-calendar
865
- #: lib/tribe-view-helpers.class.php:196
866
- msgid "Northern Mariana Islands"
867
- msgstr "N&ouml;rdliche Marianen"
868
 
869
- #@ tribe-events-calendar
870
- #: lib/tribe-view-helpers.class.php:197
871
- msgid "Norway"
872
- msgstr "Norwegen"
873
 
874
- #@ tribe-events-calendar
875
- #: lib/tribe-view-helpers.class.php:198
876
- msgid "Oman"
877
- msgstr "Oman"
878
 
879
- #@ tribe-events-calendar
880
- #: lib/tribe-view-helpers.class.php:199
881
- msgid "Pakistan"
882
- msgstr "Pakistan"
883
 
884
- #@ tribe-events-calendar
885
- #: lib/tribe-view-helpers.class.php:200
886
- msgid "Palau"
887
- msgstr "Palau"
888
 
889
- #@ tribe-events-calendar
890
- #: lib/tribe-view-helpers.class.php:201
891
- msgid "Panama"
892
- msgstr "Panama"
893
 
894
- #@ tribe-events-calendar
895
- #: lib/tribe-view-helpers.class.php:202
896
- msgid "Papua New Guinea"
897
- msgstr "Papua-Neuguinea"
898
 
899
- #@ tribe-events-calendar
900
- #: lib/tribe-view-helpers.class.php:203
901
- msgid "Paraguay"
902
- msgstr "Paraguay"
903
 
904
- #@ tribe-events-calendar
905
- #: lib/tribe-view-helpers.class.php:204
906
- msgid "Peru"
907
- msgstr "Peru"
908
 
909
- #@ tribe-events-calendar
910
- #: lib/tribe-view-helpers.class.php:205
911
- msgid "Philippines"
912
- msgstr "Philippinen"
913
 
914
- #@ tribe-events-calendar
915
- #: lib/tribe-view-helpers.class.php:206
916
- msgid "Pitcairn"
917
- msgstr "Pitcairn"
918
 
919
- #@ tribe-events-calendar
920
- #: lib/tribe-view-helpers.class.php:207
921
- msgid "Poland"
922
- msgstr "Polen"
923
 
924
- #@ tribe-events-calendar
925
- #: lib/tribe-view-helpers.class.php:208
926
- msgid "Portugal"
927
- msgstr "Portugal"
928
 
929
- #@ tribe-events-calendar
930
- #: lib/tribe-view-helpers.class.php:209
931
- msgid "Puerto Rico"
932
- msgstr "Puerto Rico"
933
 
934
- #@ tribe-events-calendar
935
- #: lib/tribe-view-helpers.class.php:210
936
- msgid "Qatar"
937
- msgstr "Katar"
938
 
939
- #@ tribe-events-calendar
940
- #: lib/tribe-view-helpers.class.php:211
941
- msgid "Reunion"
942
- msgstr "Reunion"
943
 
944
- #@ tribe-events-calendar
945
- #: lib/tribe-view-helpers.class.php:212
946
- msgid "Romania"
947
- msgstr "Rum&auml;nien"
948
 
949
- #@ tribe-events-calendar
950
- #: lib/tribe-view-helpers.class.php:213
951
- msgid "Russian Federation"
952
- msgstr "Russland / Russische F&ouml;rderation"
953
 
954
- #@ tribe-events-calendar
955
- #: lib/tribe-view-helpers.class.php:214
956
- msgid "Rwanda"
957
- msgstr "Ruanda"
958
 
959
- #@ tribe-events-calendar
960
- #: lib/tribe-view-helpers.class.php:215
961
- msgid "Saint Kitts And Nevis"
962
- msgstr "St. Kitts und Nevis"
963
 
964
- #@ tribe-events-calendar
965
- #: lib/tribe-view-helpers.class.php:216
966
- msgid "Saint Lucia"
967
- msgstr "Saint Lucia"
968
 
969
- #@ tribe-events-calendar
970
- #: lib/tribe-view-helpers.class.php:217
971
- msgid "Saint Vincent And The Grenadines"
972
- msgstr "St. Vincent und die Grenadinen"
973
 
974
- #@ tribe-events-calendar
975
- #: lib/tribe-view-helpers.class.php:218
976
- msgid "Samoa"
977
- msgstr "Samoa"
978
 
979
- #@ tribe-events-calendar
980
- #: lib/tribe-view-helpers.class.php:219
981
- msgid "San Marino"
982
- msgstr "San Marino"
983
 
984
- #@ tribe-events-calendar
985
- #: lib/tribe-view-helpers.class.php:220
986
- msgid "Sao Tome And Principe"
987
- msgstr "S&atilde;o Tom&eacute; und Pr&iacute;ncipe"
988
 
989
- #@ tribe-events-calendar
990
- #: lib/tribe-view-helpers.class.php:221
991
- msgid "Saudi Arabia"
992
- msgstr "Saudi-Arabien"
 
993
 
994
- #@ tribe-events-calendar
995
- #: lib/tribe-view-helpers.class.php:222
996
- msgid "Senegal"
997
- msgstr "Senegal"
998
 
999
- #@ tribe-events-calendar
1000
- #: lib/tribe-view-helpers.class.php:223
1001
- msgid "Serbia"
1002
- msgstr "Serbien"
1003
 
1004
- #@ tribe-events-calendar
1005
- #: lib/tribe-view-helpers.class.php:224
1006
- msgid "Seychelles"
1007
- msgstr "Seychellen"
1008
 
1009
- #@ tribe-events-calendar
1010
- #: lib/tribe-view-helpers.class.php:225
1011
- msgid "Sierra Leone"
1012
- msgstr "Sierra Leone"
1013
 
1014
- #@ tribe-events-calendar
1015
- #: lib/tribe-view-helpers.class.php:226
1016
- msgid "Singapore"
1017
- msgstr "Singapur"
1018
 
1019
- #@ tribe-events-calendar
1020
- #: lib/tribe-view-helpers.class.php:227
1021
- msgid "Slovakia (Slovak Republic)"
1022
- msgstr "Slowakei"
1023
 
1024
- #@ tribe-events-calendar
1025
- #: lib/tribe-view-helpers.class.php:228
1026
- msgid "Slovenia"
1027
- msgstr "Slovenien"
1028
 
1029
- #@ tribe-events-calendar
1030
- #: lib/tribe-view-helpers.class.php:229
1031
- msgid "Solomon Islands"
1032
- msgstr "Salomonen"
1033
 
1034
- #@ tribe-events-calendar
1035
- #: lib/tribe-view-helpers.class.php:230
1036
- msgid "Somalia"
1037
- msgstr "Somalia"
1038
 
1039
- #@ tribe-events-calendar
1040
- #: lib/tribe-view-helpers.class.php:231
1041
- msgid "South Africa"
1042
- msgstr "S&uuml;dafrika"
1043
 
1044
- #@ tribe-events-calendar
1045
- #: lib/tribe-view-helpers.class.php:232
1046
- msgid "South Georgia, South Sandwich Islands"
1047
- msgstr "S&uuml;dgeorgien und die S&uuml;dlichen Sandwichinseln"
1048
 
1049
- #@ tribe-events-calendar
1050
- #: lib/tribe-view-helpers.class.php:233
1051
- msgid "Spain"
1052
- msgstr "Spanien"
1053
 
1054
- #@ tribe-events-calendar
1055
- #: lib/tribe-view-helpers.class.php:234
1056
- msgid "Sri Lanka"
1057
- msgstr "Sri Lanka"
1058
 
1059
- #@ tribe-events-calendar
1060
- #: lib/tribe-view-helpers.class.php:235
1061
- msgid "St. Helena"
1062
- msgstr "St. Helena"
1063
 
1064
- #@ tribe-events-calendar
1065
- #: lib/tribe-view-helpers.class.php:236
1066
- msgid "St. Pierre And Miquelon"
1067
- msgstr "Saint-Pierre und Miquelon"
1068
 
1069
- #@ tribe-events-calendar
1070
- #: lib/tribe-view-helpers.class.php:237
1071
- msgid "Sudan"
1072
- msgstr "Sudan"
1073
 
1074
- #@ tribe-events-calendar
1075
- #: lib/tribe-view-helpers.class.php:238
1076
- msgid "Suriname"
1077
- msgstr "Surinam"
1078
 
1079
- #@ tribe-events-calendar
1080
- #: lib/tribe-view-helpers.class.php:239
1081
- msgid "Svalbard And Jan Mayen Islands"
1082
- msgstr "Svalbard und Jan Mayen Islands"
1083
 
1084
- #@ tribe-events-calendar
1085
- #: lib/tribe-view-helpers.class.php:240
1086
- msgid "Swaziland"
1087
- msgstr "Swasiland"
1088
 
1089
- #@ tribe-events-calendar
1090
- #: lib/tribe-view-helpers.class.php:241
1091
- msgid "Sweden"
1092
- msgstr "Schweden"
1093
 
1094
- #@ tribe-events-calendar
1095
- #: lib/tribe-view-helpers.class.php:242
1096
- msgid "Switzerland"
1097
- msgstr "Schweiz"
1098
 
1099
- #@ tribe-events-calendar
1100
- #: lib/tribe-view-helpers.class.php:243
1101
- msgid "Syrian Arab Republic"
1102
- msgstr "Syrien"
1103
 
1104
- #@ tribe-events-calendar
1105
- #: lib/tribe-view-helpers.class.php:244
1106
- msgid "Taiwan"
1107
- msgstr "Taiwan"
1108
 
1109
- #@ tribe-events-calendar
1110
- #: lib/tribe-view-helpers.class.php:245
1111
- msgid "Tajikistan"
1112
- msgstr "Tadschikistan"
1113
 
1114
- #@ tribe-events-calendar
1115
- #: lib/tribe-view-helpers.class.php:246
1116
- msgid "Tanzania, United Republic Of"
1117
- msgstr "Tanzania"
1118
 
1119
- #@ tribe-events-calendar
1120
- #: lib/tribe-view-helpers.class.php:247
1121
- msgid "Thailand"
1122
- msgstr "Thailand"
1123
 
1124
- #@ tribe-events-calendar
1125
- #: lib/tribe-view-helpers.class.php:248
1126
- msgid "Togo"
1127
- msgstr "Togo"
1128
 
1129
- #@ tribe-events-calendar
1130
- #: lib/tribe-view-helpers.class.php:249
1131
- msgid "Tokelau"
1132
- msgstr "Tokelau"
1133
 
1134
- #@ tribe-events-calendar
1135
- #: lib/tribe-view-helpers.class.php:250
1136
- msgid "Tonga"
1137
- msgstr "Tonga"
1138
 
1139
- #@ tribe-events-calendar
1140
- #: lib/tribe-view-helpers.class.php:251
1141
- msgid "Trinidad And Tobago"
1142
- msgstr "Trinidad und Tobago"
1143
 
1144
- #@ tribe-events-calendar
1145
- #: lib/tribe-view-helpers.class.php:252
1146
- msgid "Tunisia"
1147
- msgstr "Tunesien"
1148
 
1149
- #@ tribe-events-calendar
1150
- #: lib/tribe-view-helpers.class.php:253
1151
- msgid "Turkey"
1152
- msgstr "T&uuml;rkei"
1153
 
1154
- #@ tribe-events-calendar
1155
- #: lib/tribe-view-helpers.class.php:254
1156
- msgid "Turkmenistan"
1157
- msgstr "Turkmenistan"
1158
 
1159
- #@ tribe-events-calendar
1160
- #: lib/tribe-view-helpers.class.php:255
1161
- msgid "Turks And Caicos Islands"
1162
- msgstr "Turks- und Caicosinseln"
1163
 
1164
- #@ tribe-events-calendar
1165
- #: lib/tribe-view-helpers.class.php:256
1166
- msgid "Tuvalu"
1167
- msgstr "Tuvalu"
1168
 
1169
- #@ tribe-events-calendar
1170
- #: lib/tribe-view-helpers.class.php:257
1171
- msgid "Uganda"
1172
- msgstr "Uganda"
1173
 
1174
- #@ tribe-events-calendar
1175
- #: lib/tribe-view-helpers.class.php:258
1176
- msgid "Ukraine"
1177
- msgstr "Ukraine"
1178
 
1179
- #@ tribe-events-calendar
1180
- #: lib/tribe-view-helpers.class.php:259
1181
- msgid "United Arab Emirates"
1182
- msgstr "Vereinigte Arabische Emirate"
1183
 
1184
- #@ tribe-events-calendar
1185
- #: lib/tribe-view-helpers.class.php:260
1186
- msgid "United Kingdom"
1187
- msgstr "Gro&szlig;britannien (Vereinigtes K&ouml;nigreich)"
1188
 
1189
- #@ tribe-events-calendar
1190
- #: lib/tribe-view-helpers.class.php:261
1191
- msgid "United States Minor Outlying Islands"
1192
- msgstr "United States Minor Outlying Islands"
1193
 
1194
- #@ tribe-events-calendar
1195
- #: lib/tribe-view-helpers.class.php:262
1196
- msgid "Uruguay"
1197
- msgstr "Uruguay"
1198
 
1199
- #@ tribe-events-calendar
1200
- #: lib/tribe-view-helpers.class.php:263
1201
- msgid "Uzbekistan"
1202
- msgstr "Usbekistan"
1203
 
1204
- #@ tribe-events-calendar
1205
- #: lib/tribe-view-helpers.class.php:264
1206
- msgid "Vanuatu"
1207
- msgstr "Vanuatu"
1208
 
1209
- #@ tribe-events-calendar
1210
- #: lib/tribe-view-helpers.class.php:265
1211
- msgid "Venezuela"
1212
- msgstr "Venezuela"
1213
 
1214
- #@ tribe-events-calendar
1215
- #: lib/tribe-view-helpers.class.php:266
1216
- msgid "Viet Nam"
1217
- msgstr "Vietnam"
1218
 
1219
- #@ tribe-events-calendar
1220
- #: lib/tribe-view-helpers.class.php:267
1221
- msgid "Virgin Islands (British)"
1222
- msgstr "Britische Jungferninseln"
1223
 
1224
- #@ tribe-events-calendar
1225
- #: lib/tribe-view-helpers.class.php:268
1226
- msgid "Virgin Islands (U.S.)"
1227
- msgstr "Amerikanische Jungferninseln"
1228
 
1229
- #@ tribe-events-calendar
1230
- #: lib/tribe-view-helpers.class.php:269
1231
- msgid "Wallis And Futuna Islands"
1232
- msgstr "Wallis und Futuna"
1233
 
1234
- #@ tribe-events-calendar
1235
- #: lib/tribe-view-helpers.class.php:270
1236
- msgid "Western Sahara"
1237
- msgstr "Westsahara"
1238
 
1239
- #@ tribe-events-calendar
1240
- #: lib/tribe-view-helpers.class.php:271
1241
- msgid "Yemen"
1242
- msgstr "Jemen"
1243
 
1244
- #@ tribe-events-calendar
1245
- #: lib/tribe-view-helpers.class.php:272
1246
- msgid "Yugoslavia"
1247
- msgstr "Jugoslawien"
1248
 
1249
- #@ tribe-events-calendar
1250
- #: lib/tribe-view-helpers.class.php:273
1251
- msgid "Zambia"
1252
- msgstr "Sambia"
1253
 
1254
- #@ tribe-events-calendar
1255
- #: lib/tribe-view-helpers.class.php:274
1256
- msgid "Zimbabwe"
1257
- msgstr "Simbabwe"
1258
 
1259
- #@ tribe-events-calendar
1260
- #: lib/the-events-calendar.class.php:214
1261
- msgid "category"
1262
- msgstr "kategorie"
1263
 
1264
- #@ tribe-events-calendar
1265
- #: lib/the-events-calendar.class.php:215
1266
- msgid "month"
1267
- msgstr "monat"
1268
 
1269
- #@ tribe-events-calendar
1270
- #: lib/the-events-calendar.class.php:216
1271
- msgid "upcoming"
1272
- msgstr "bevorstehend"
1273
 
1274
- #@ tribe-events-calendar
1275
- #: lib/the-events-calendar.class.php:217
1276
- msgid "past"
1277
- msgstr "vergangen"
1278
 
1279
- #@ tribe-events-calendar
1280
- #: lib/tribe-view-helpers.class.php:294
1281
- msgid "Alabama"
1282
- msgstr "Alabama"
1283
 
1284
- #@ tribe-events-calendar
1285
- #: lib/tribe-view-helpers.class.php:295
1286
- msgid "Alaska"
1287
- msgstr "Alaska"
1288
 
1289
- #@ tribe-events-calendar
1290
- #: lib/tribe-view-helpers.class.php:296
1291
- msgid "Arizona"
1292
- msgstr "Arizona"
1293
 
1294
- #@ tribe-events-calendar
1295
- #: lib/tribe-view-helpers.class.php:297
1296
- msgid "Arkansas"
1297
- msgstr "Arkansas"
1298
 
1299
- #@ tribe-events-calendar
1300
- #: lib/tribe-view-helpers.class.php:298
1301
- msgid "California"
1302
- msgstr "Kalifornien"
1303
 
1304
- #@ tribe-events-calendar
1305
- #: lib/tribe-view-helpers.class.php:299
1306
- msgid "Colorado"
1307
- msgstr "Colorado"
1308
 
1309
- #@ tribe-events-calendar
1310
- #: lib/tribe-view-helpers.class.php:300
1311
- msgid "Connecticut"
1312
- msgstr "Connecticut"
1313
 
1314
- #@ tribe-events-calendar
1315
- #: lib/tribe-view-helpers.class.php:301
1316
- msgid "Delaware"
1317
- msgstr "Delaware"
1318
 
1319
- #@ tribe-events-calendar
1320
- #: lib/tribe-view-helpers.class.php:302
1321
- msgid "District of Columbia"
1322
- msgstr "District of Columbia"
1323
 
1324
- #@ tribe-events-calendar
1325
- #: lib/tribe-view-helpers.class.php:303
1326
- msgid "Florida"
1327
- msgstr "Florida"
1328
 
1329
- #@ tribe-events-calendar
1330
- #: lib/tribe-view-helpers.class.php:305
1331
- msgid "Hawaii"
1332
- msgstr "Hawaii"
1333
 
1334
- #@ tribe-events-calendar
1335
- #: lib/tribe-view-helpers.class.php:306
1336
- msgid "Idaho"
1337
- msgstr "Idaho"
1338
 
1339
- #@ tribe-events-calendar
1340
- #: lib/tribe-view-helpers.class.php:307
1341
- msgid "Illinois"
1342
- msgstr "Illinois"
1343
 
1344
- #@ tribe-events-calendar
1345
- #: lib/tribe-view-helpers.class.php:308
1346
- msgid "Indiana"
1347
- msgstr "Indiana"
1348
 
1349
- #@ tribe-events-calendar
1350
- #: lib/tribe-view-helpers.class.php:309
1351
- msgid "Iowa"
1352
- msgstr "Iowa"
1353
 
1354
- #@ tribe-events-calendar
1355
- #: lib/tribe-view-helpers.class.php:310
1356
- msgid "Kansas"
1357
- msgstr "Kansas"
1358
 
1359
- #@ tribe-events-calendar
1360
- #: lib/tribe-view-helpers.class.php:311
1361
- msgid "Kentucky"
1362
- msgstr "Kentucky"
1363
 
1364
- #@ tribe-events-calendar
1365
- #: lib/tribe-view-helpers.class.php:312
1366
- msgid "Louisiana"
1367
- msgstr "Louisiana"
1368
 
1369
- #@ tribe-events-calendar
1370
- #: lib/tribe-view-helpers.class.php:313
1371
- msgid "Maine"
1372
- msgstr "Maine"
1373
 
1374
- #@ tribe-events-calendar
1375
- #: lib/tribe-view-helpers.class.php:314
1376
- msgid "Maryland"
1377
- msgstr "Maryland"
1378
 
1379
- #@ tribe-events-calendar
1380
- #: lib/tribe-view-helpers.class.php:315
1381
- msgid "Massachusetts"
1382
- msgstr "Massachusetts"
1383
 
1384
- #@ tribe-events-calendar
1385
- #: lib/tribe-view-helpers.class.php:316
1386
- msgid "Michigan"
1387
- msgstr "Michigan"
1388
 
1389
- #@ tribe-events-calendar
1390
- #: lib/tribe-view-helpers.class.php:317
1391
- msgid "Minnesota"
1392
- msgstr "Minnesota"
1393
 
1394
- #@ tribe-events-calendar
1395
- #: lib/tribe-view-helpers.class.php:318
1396
- msgid "Mississippi"
1397
- msgstr "Mississippi"
1398
 
1399
- #@ tribe-events-calendar
1400
- #: lib/tribe-view-helpers.class.php:319
1401
- msgid "Missouri"
1402
- msgstr "Missouri"
1403
 
1404
- #@ tribe-events-calendar
1405
- #: lib/tribe-view-helpers.class.php:320
1406
- msgid "Montana"
1407
- msgstr "Montana"
1408
 
1409
- #@ tribe-events-calendar
1410
- #: lib/tribe-view-helpers.class.php:321
1411
- msgid "Nebraska"
1412
- msgstr "Nebraska"
1413
 
1414
- #@ tribe-events-calendar
1415
- #: lib/tribe-view-helpers.class.php:322
1416
- msgid "Nevada"
1417
- msgstr "Nevada"
1418
 
1419
- #@ tribe-events-calendar
1420
- #: lib/tribe-view-helpers.class.php:323
1421
- msgid "New Hampshire"
1422
- msgstr "New Hampshire"
1423
 
1424
- #@ tribe-events-calendar
1425
- #: lib/tribe-view-helpers.class.php:324
1426
- msgid "New Jersey"
1427
- msgstr "New Jersey"
1428
 
1429
- #@ tribe-events-calendar
1430
- #: lib/tribe-view-helpers.class.php:325
1431
- msgid "New Mexico"
1432
- msgstr "New Mexico"
1433
 
1434
- #@ tribe-events-calendar
1435
- #: lib/tribe-view-helpers.class.php:326
1436
- msgid "New York"
1437
- msgstr "New York"
1438
 
1439
- #@ tribe-events-calendar
1440
- #: lib/tribe-view-helpers.class.php:327
1441
- msgid "North Carolina"
1442
- msgstr "North Carolina"
1443
 
1444
- #@ tribe-events-calendar
1445
- #: lib/tribe-view-helpers.class.php:328
1446
- msgid "North Dakota"
1447
- msgstr "North Dakota"
1448
 
1449
- #@ tribe-events-calendar
1450
- #: lib/tribe-view-helpers.class.php:329
1451
- msgid "Ohio"
1452
- msgstr "Ohio"
1453
 
1454
- #@ tribe-events-calendar
1455
- #: lib/tribe-view-helpers.class.php:330
1456
- msgid "Oklahoma"
1457
- msgstr "Oklahoma"
1458
 
1459
- #@ tribe-events-calendar
1460
- #: lib/tribe-view-helpers.class.php:331
1461
- msgid "Oregon"
1462
- msgstr "Oregon"
1463
 
1464
- #@ tribe-events-calendar
1465
- #: lib/tribe-view-helpers.class.php:332
1466
- msgid "Pennsylvania"
1467
- msgstr "Pennsylvania"
1468
 
1469
- #@ tribe-events-calendar
1470
- #: lib/tribe-view-helpers.class.php:333
1471
- msgid "Rhode Island"
1472
- msgstr "Rhode Island"
1473
 
1474
- #@ tribe-events-calendar
1475
- #: lib/tribe-view-helpers.class.php:334
1476
- msgid "South Carolina"
1477
- msgstr "South Carolina"
1478
 
1479
- #@ tribe-events-calendar
1480
- #: lib/tribe-view-helpers.class.php:335
1481
- msgid "South Dakota"
1482
- msgstr "South Dakota"
1483
 
1484
- #@ tribe-events-calendar
1485
- #: lib/tribe-view-helpers.class.php:336
1486
- msgid "Tennessee"
1487
- msgstr "Tennessee"
1488
 
1489
- #@ tribe-events-calendar
1490
- #: lib/tribe-view-helpers.class.php:337
1491
- msgid "Texas"
1492
- msgstr "Texas"
1493
 
1494
- #@ tribe-events-calendar
1495
- #: lib/tribe-view-helpers.class.php:338
1496
- msgid "Utah"
1497
- msgstr "Utah"
1498
 
1499
- #@ tribe-events-calendar
1500
- #: lib/tribe-view-helpers.class.php:339
1501
- msgid "Vermont"
1502
- msgstr "Vermont"
1503
 
1504
- #@ tribe-events-calendar
1505
- #: lib/tribe-view-helpers.class.php:340
1506
- msgid "Virginia"
1507
- msgstr "Virginia"
1508
 
1509
- #@ tribe-events-calendar
1510
- #: lib/tribe-view-helpers.class.php:341
1511
- msgid "Washington"
1512
- msgstr "Washington"
1513
 
1514
- #@ tribe-events-calendar
1515
- #: lib/tribe-view-helpers.class.php:342
1516
- msgid "West Virginia"
1517
- msgstr "West Virginia"
1518
 
1519
- #@ tribe-events-calendar
1520
- #: lib/tribe-view-helpers.class.php:343
1521
- msgid "Wisconsin"
1522
- msgstr "Wisconsin"
1523
 
1524
- #@ tribe-events-calendar
1525
- #: lib/tribe-view-helpers.class.php:344
1526
- msgid "Wyoming"
1527
- msgstr "Wyoming"
1528
 
1529
- #@ tribe-events-calendar
1530
- #: lib/the-events-calendar.class.php:397
1531
- msgid "Upcoming Events"
1532
- msgstr "Bevorstehende Veranstaltungen"
1533
 
1534
- #@ tribe-events-calendar
1535
- #: lib/the-events-calendar.class.php:399
1536
- msgid "Past Events"
1537
- msgstr "Vergangene Veranstaltungen"
1538
 
1539
- #@ tribe-events-calendar
1540
- #: lib/the-events-calendar.class.php:403
1541
- #, php-format, php-format, php-format, php-format, php-format, php-format, php-format, php-format, php-format, php-format, php-format
1542
- msgid "Events for %s"
1543
- msgstr "Veranstaltungen f&uuml;r %s"
1544
 
1545
- #@ tribe-events-calendar
1546
- #: lib/the-events-calendar.class.php:405
1547
- msgid "Events this month"
1548
- msgstr "Veranstaltungen diesen Monat"
1549
 
1550
- #@ tribe-events-calendar
1551
- #: lib/the-events-calendar.class.php:419
1552
- msgid "No description has been entered for this event."
1553
- msgstr "F&uuml;r diese Veranstaltung wurde keine Beschreibung eingetragen."
1554
 
1555
- #@ tribe-events-calendar
1556
- #: lib/the-events-calendar.class.php:523
1557
- #: lib/tribe-admin-events-list.class.php:160
1558
- msgid "Event Categories"
1559
- msgstr "Veranstalt.-Kategorien"
1560
 
1561
- #@ tribe-events-calendar
1562
- #: lib/tribe-admin-events-list.class.php:165
1563
- msgid "Start Date"
1564
- msgstr "Start Datum & Zeit"
1565
 
1566
- #@ tribe-events-calendar
1567
- #: lib/tribe-admin-events-list.class.php:166
1568
- msgid "End Date"
1569
- msgstr "Ende Datum & Zeit"
1570
 
1571
- #@ tribe-events-calendar
1572
- #: admin-views/events-options.php:175
1573
- #: admin-views/events-options.php:177
1574
- msgid "Debug"
1575
- msgstr "Debugging"
1576
 
1577
- #@ tribe-events-calendar
1578
- #: lib/the-events-calendar.class.php:484
1579
- msgid "Events"
1580
- msgstr "Veranstaltungen"
1581
 
1582
- #@ tribe-events-calendar
1583
- #: lib/the-events-calendar.class.php:485
1584
- msgid "Event"
1585
- msgstr "Veranstaltung"
1586
 
1587
- #@ tribe-events-calendar
1588
- #: lib/the-events-calendar.class.php:486
1589
- #: lib/the-events-calendar.class.php:499
1590
- #: lib/the-events-calendar.class.php:512
1591
- msgid "Add New"
1592
- msgstr "Hinzuf&uuml;gen"
1593
 
1594
- #@ tribe-events-calendar
1595
- #: lib/the-events-calendar.class.php:487
1596
- msgid "Add New Event"
1597
- msgstr "Neue Veranstaltung hinzuf&uuml;gen"
1598
 
1599
- #@ tribe-events-calendar
1600
- #: lib/the-events-calendar.class.php:488
1601
- msgid "Edit Event"
1602
- msgstr "Veranstaltung bearbeiten"
1603
 
1604
- #@ tribe-events-calendar
1605
- #: lib/the-events-calendar.class.php:489
1606
- msgid "New Event"
1607
- msgstr "Neue Veranstaltung"
1608
 
1609
- #@ tribe-events-calendar
1610
- #: lib/the-events-calendar.class.php:490
1611
- msgid "View Event"
1612
- msgstr "Veranstaltung ansehen"
1613
 
1614
- #@ tribe-events-calendar
1615
- #: lib/the-events-calendar.class.php:491
1616
- msgid "Search Events"
1617
- msgstr "Veranstaltungen suchen"
1618
 
1619
- #@ tribe-events-calendar
1620
- #: lib/the-events-calendar.class.php:492
1621
- msgid "No events found"
1622
- msgstr "Es wurden keine Veranstaltungen gefunden"
1623
 
1624
- #@ tribe-events-calendar
1625
- #: lib/the-events-calendar.class.php:493
1626
- msgid "No events found in Trash"
1627
- msgstr "Es befinden sich keine Veranstaltungen im Papierkorb"
1628
 
1629
- #@ tribe-events-calendar
1630
- #: lib/the-events-calendar.class.php:497
1631
- #: lib/the-events-calendar.class.php:681
1632
- msgid "Venues"
1633
- msgstr "Veranstaltungsorte"
1634
 
1635
- #@ tribe-events-calendar
1636
- #: lib/the-events-calendar.class.php:498
1637
- msgid "Venue"
1638
- msgstr "Veranstaltungsort"
1639
 
1640
- #@ tribe-events-calendar
1641
- #: lib/the-events-calendar.class.php:500
1642
- msgid "Add New Venue"
1643
- msgstr "Neuen Veranstaltungsort hinzuf&uuml;gen"
1644
 
1645
- #@ tribe-events-calendar
1646
- #: lib/the-events-calendar.class.php:501
1647
- msgid "Edit Venue"
1648
- msgstr "Veranstaltungsort bearbeiten"
1649
 
1650
- #@ tribe-events-calendar
1651
- #: lib/the-events-calendar.class.php:502
1652
- msgid "New Venue"
1653
- msgstr "Neuer Veranstaltungsort"
1654
 
1655
- #@ tribe-events-calendar
1656
- #: lib/the-events-calendar.class.php:503
1657
- #: lib/the-events-calendar.class.php:516
1658
- msgid "View Venue"
1659
- msgstr "Veranstaltungsort anzeigen"
1660
 
1661
- #@ tribe-events-calendar
1662
- #: lib/the-events-calendar.class.php:504
1663
- msgid "Search Venues"
1664
- msgstr "Veranstaltungsorte suchen"
1665
 
1666
- #@ tribe-events-calendar
1667
- #: lib/the-events-calendar.class.php:505
1668
- msgid "No venue found"
1669
- msgstr "Es wurde kein Veranstaltungsort gefunden"
1670
 
1671
- #@ tribe-events-calendar
1672
- #: lib/the-events-calendar.class.php:506
1673
- msgid "No venues found in Trash"
1674
- msgstr "Es befinden sich keine Veranstaltungsorte im Papierkorb"
1675
 
1676
- #@ tribe-events-calendar
1677
- #: lib/the-events-calendar.class.php:510
1678
- #: lib/the-events-calendar.class.php:682
1679
- msgid "Organizers"
1680
- msgstr "Veranstalter"
1681
 
1682
- #@ tribe-events-calendar
1683
- #: lib/the-events-calendar.class.php:511
1684
- msgid "Organizer"
1685
- msgstr "Veranstalter"
1686
 
1687
- #@ tribe-events-calendar
1688
- #: lib/the-events-calendar.class.php:513
1689
- msgid "Add New Organizer"
1690
- msgstr "Neuen Veranstalter hinzuf&uuml;gen"
1691
 
1692
- #@ tribe-events-calendar
1693
- #: lib/the-events-calendar.class.php:514
1694
- msgid "Edit Organizer"
1695
- msgstr "Veranstalter bearbeiten"
1696
 
1697
- #@ tribe-events-calendar
1698
- #: lib/the-events-calendar.class.php:515
1699
- msgid "New Organizer"
1700
- msgstr "Neuer Veranstalter"
1701
 
1702
- #@ tribe-events-calendar
1703
- #: lib/the-events-calendar.class.php:517
1704
- msgid "Search Organizers"
1705
- msgstr "Veranstalter suchen"
1706
 
1707
- #@ tribe-events-calendar
1708
- #: lib/the-events-calendar.class.php:518
1709
- msgid "No organizer found"
1710
- msgstr "Es wurde kein Veranstalter gefunden"
1711
 
1712
- #@ tribe-events-calendar
1713
- #: lib/the-events-calendar.class.php:519
1714
- msgid "No organizers found in Trash"
1715
- msgstr "Es befinden sich keine Veranstalter im Papierkorb"
1716
 
1717
- #@ tribe-events-calendar
1718
- #: lib/the-events-calendar.class.php:524
1719
- msgid "Event Category"
1720
- msgstr "Veranstaltungskategorie"
1721
 
1722
- #@ tribe-events-calendar
1723
- #: lib/the-events-calendar.class.php:525
1724
- msgid "Search Event Categories"
1725
- msgstr "Veranstaltungskategorien suchen"
1726
 
1727
- #@ tribe-events-calendar
1728
- #: lib/the-events-calendar.class.php:526
1729
- msgid "All Event Categories"
1730
- msgstr "Alle Veranstaltungskategorien"
1731
 
1732
- #@ tribe-events-calendar
1733
- #: lib/the-events-calendar.class.php:527
1734
- msgid "Parent Event Category"
1735
- msgstr "&Uuml;bergeordnete Veranstaltungskategorie"
1736
 
1737
- #@ tribe-events-calendar
1738
- #: lib/the-events-calendar.class.php:528
1739
- msgid "Parent Event Category:"
1740
- msgstr "&Uuml;bergeordnete Veranstaltungskategorie:"
1741
 
1742
- #@ tribe-events-calendar
1743
- #: lib/the-events-calendar.class.php:529
1744
- msgid "Edit Event Category"
1745
- msgstr "Veranstaltungskategorie bearbeiten"
1746
 
1747
- #@ tribe-events-calendar
1748
- #: lib/the-events-calendar.class.php:530
1749
- msgid "Update Event Category"
1750
- msgstr "Veranstaltungskategorie aktualisieren"
1751
 
1752
- #@ tribe-events-calendar
1753
- #: lib/the-events-calendar.class.php:531
1754
- msgid "Add New Event Category"
1755
- msgstr "Neue Veranstaltungskategorie hinzuf&uuml;gen"
1756
 
1757
- #@ tribe-events-calendar
1758
- #: lib/the-events-calendar.class.php:532
1759
- msgid "New Event Category Name"
1760
- msgstr "Neuer Veranstaltungskategorie-Name"
1761
 
1762
- #@ tribe-events-calendar
1763
- #: lib/the-events-calendar.class.php:643
1764
- msgid "Next"
1765
- msgstr "N&auml;chste"
1766
 
1767
- #@ tribe-events-calendar
1768
- #: lib/the-events-calendar.class.php:644
1769
- msgid "Prev"
1770
- msgstr "Vorherige"
1771
 
1772
- #@ tribe-events-calendar
1773
- #: lib/the-events-calendar.class.php:645
1774
- msgid "Today"
1775
- msgstr "Heute"
1776
 
1777
- #@ tribe-events-calendar
1778
- #: lib/the-events-calendar.class.php:646
1779
- msgid "Done"
1780
- msgstr "Erledigt"
1781
 
1782
- #@ tribe-events-calendar
1783
- #: lib/the-events-calendar.class.php:1416
1784
- msgid "No saved venues yet."
1785
- msgstr "Es sind noch keine gespeicherten Veranstaltungen vorhanden."
1786
 
1787
- #@ tribe-events-calendar
1788
- #: lib/the-events-calendar.class.php:1501
1789
- msgid "No saved organizers yet."
1790
- msgstr "Es sind noch keine gespeicherten Veranstalter vorhanden."
1791
 
1792
- #@ tribe-events-calendar
1793
- #: admin-views/events-meta-box.php:26
1794
- msgid "Event Time &amp; Date"
1795
- msgstr "Veranstaltungszeit und -Datum"
1796
 
1797
- #@ tribe-events-calendar
1798
- #: admin-views/events-meta-box.php:32
1799
- msgid "All day event?"
1800
- msgstr "Ganzt&auml;gige Veranstaltung?"
1801
 
1802
- #@ tribe-events-calendar
1803
- #: admin-views/events-meta-box.php:36
1804
- msgid "Start Date / Time:"
1805
- msgstr "Anfangsdatum/ -Zeit:"
1806
 
1807
- #@ tribe-events-calendar
1808
- #: admin-views/events-meta-box.php:39
1809
- #: admin-views/events-meta-box.php:60
1810
- msgid "YYYY-MM-DD"
1811
- msgstr "TT.MM.JJJJ"
1812
 
1813
- #@ tribe-events-calendar
1814
- #: admin-views/events-meta-box.php:41
1815
- #: admin-views/events-meta-box.php:62
1816
- msgid "@"
1817
- msgstr "@"
1818
 
1819
- #@ tribe-events-calendar
1820
- #: admin-views/events-meta-box.php:57
1821
- msgid "End Date / Time:"
1822
- msgstr "Enddatum/ -Zeit:"
1823
 
1824
- #@ tribe-events-calendar
1825
- #: admin-views/events-meta-box.php:79
1826
- msgid "Event Location Details"
1827
- msgstr "Informationen zum Veranstaltungsort"
1828
 
1829
- #@ tribe-events-calendar
1830
- #: admin-views/events-meta-box.php:83
1831
- msgid "Use Saved Venue:"
1832
- msgstr "Gespeicherten Veranstaltungsort verwenden:"
1833
 
1834
- #@ tribe-events-calendar
1835
- #: admin-views/events-meta-box.php:91
1836
- msgid "Show Google Maps Link:"
1837
- msgstr "'Google Maps'-Link anzeigen:"
1838
 
1839
- #@ tribe-events-calendar
1840
- #: admin-views/events-meta-box.php:98
1841
- msgid "Show Google Map:"
1842
- msgstr "'Google Maps'-Karte anzeigen:"
1843
 
1844
- #@ tribe-events-calendar
1845
- #: admin-views/events-meta-box.php:107
1846
- msgid "Event Organizer Details"
1847
- msgstr "Informationen zum Veranstalter"
1848
 
1849
- #@ tribe-events-calendar
1850
- #: admin-views/events-meta-box.php:110
1851
- msgid "Use Saved Organizer:"
1852
- msgstr "Gespeicherten Veranstalter verwenden:"
1853
 
1854
- #@ tribe-events-calendar
1855
- #: admin-views/events-meta-box.php:125
1856
- msgid "Event Cost"
1857
- msgstr "Kosten f&uuml;r die Veranstaltung"
1858
 
1859
- #@ tribe-events-calendar
1860
- #: admin-views/events-meta-box.php:128
1861
- #: views/list.php:81
1862
- #: views/single.php:24
1863
- msgid "Cost:"
1864
- msgstr "Kosten:"
1865
 
1866
- #@ tribe-events-calendar
1867
- #: admin-views/events-meta-box.php:133
1868
- msgid "Leave blank to hide the field. Enter a 0 for events that are free."
1869
- msgstr "Feld leer lassen, um es ganz auszublenden. Geben Sie '0' ein, f&uuml;r eine kostenlose Veranstaltung (= ohne Eintritt!)."
1870
 
1871
- #@ tribe-events-calendar
1872
- #: admin-views/events-options.php:77
1873
- #: views/gridview.php:37
1874
- #: views/list.php:16
1875
- msgid "Event List"
1876
- msgstr "Veranstaltungsliste"
1877
 
1878
- #@ tribe-events-calendar
1879
- #: admin-views/events-options.php:73
1880
- #: views/gridview.php:38
1881
- #: views/list.php:17
1882
- msgid "Calendar"
1883
- msgstr "Kalender"
1884
 
1885
- #@ tribe-events-calendar
1886
- #: views/list.php:42
1887
- #: views/single.php:17
1888
- msgid "Start:"
1889
- msgstr "Beginn:"
1890
 
1891
- #@ tribe-events-calendar
1892
- #: views/list.php:46
1893
- #: views/single.php:20
1894
- msgid "End:"
1895
- msgstr "Ende:"
1896
 
1897
- #@ tribe-events-calendar
1898
- #: views/list.php:54
1899
- #: views/single.php:47
1900
- msgid "Venue:"
1901
- msgstr "Ort:"
1902
 
1903
- #@ tribe-events-calendar
1904
- #: admin-views/organizer-meta-box.php:17
1905
- #: admin-views/venue-meta-box.php:73
1906
- #: views/list.php:63
1907
- #: views/single.php:33
1908
- #: views/single.php:51
1909
- msgid "Phone:"
1910
- msgstr "Telefon:"
1911
 
1912
- #@ tribe-events-calendar
1913
- #: admin-views/venue-meta-box.php:19
1914
- #: views/list.php:69
1915
- #: views/single.php:56
1916
- msgid "Address:"
1917
- msgstr "Anschrift:"
1918
 
1919
- #@ tribe-events-calendar
1920
- #: views/list.php:71
1921
- #: views/single.php:58
1922
- msgid "Google Map"
1923
- msgstr "Google Maps"
1924
 
1925
- #@ tribe-events-calendar
1926
- #: views/list.php:120
1927
- #: views/list.php:122
1928
- #: views/list.php:124
1929
- msgid "&laquo; Previous Events"
1930
- msgstr "&laquo; Vorherige Veranstaltungen"
1931
 
1932
- #@ tribe-events-calendar
1933
- #: views/list.php:131
1934
- #: views/list.php:133
1935
- #: views/list.php:135
1936
- msgid "Next Events &raquo;"
1937
- msgstr "N&auml;chste Veranstaltungen &raquo;"
1938
 
1939
- #@ tribe-events-calendar
1940
- #: views/gridview.php:42
1941
- #: views/list.php:140
1942
- #: views/single.php:83
1943
- msgid "iCal Import"
1944
- msgstr "iCal-Import"
1945
 
1946
- #@ tribe-events-calendar
1947
- #: views/events-list-load-widget-display.php:48
1948
- msgid "All Day"
1949
- msgstr "Ganzt&auml;gig"
1950
 
1951
- #@ tribe-events-calendar
1952
- #: views/table-mini.php:24
1953
- msgid "View all &raquo;"
1954
- msgstr "Alle ansehen &raquo;"
1955
 
1956
- #@ tribe-events-calendar
1957
- #: admin-views/organizer-meta-box.php:11
1958
- msgid "Organizer Name:"
1959
- msgstr "Veranstalter-Name:"
1960
 
1961
- #@ tribe-events-calendar
1962
- #: admin-views/organizer-meta-box.php:21
1963
- msgid "Website:"
1964
- msgstr "Webseite:"
1965
 
1966
- #@ tribe-events-calendar
1967
- #: admin-views/organizer-meta-box.php:25
1968
- #: views/single.php:37
1969
- msgid "Email:"
1970
- msgstr "E-Mail:"
1971
 
1972
- #@ tribe-events-calendar
1973
- #: admin-views/events-options.php:53
1974
- msgid "Need a hand?"
1975
- msgstr "Brauchen Sie Hilfe?"
1976
 
1977
- #@ tribe-events-calendar
1978
- #: admin-views/events-options.php:56
1979
- msgid "Here is the iCal feed URL for your events: "
1980
- msgstr "Hier ist die iCal Feed-Adresse f&uuml;r Ihre Veranstaltungen: "
1981
 
1982
- #@ tribe-events-calendar
1983
- #: admin-views/events-options.php:62
1984
- msgid "Settings"
1985
- msgstr "Einstellungen"
1986
 
1987
- #@ tribe-events-calendar
1988
- #: admin-views/events-options.php:65
1989
- #: admin-views/events-options.php:69
1990
- msgid "Default View for the Events"
1991
- msgstr "Vorgegebene Ansicht f&uuml;r Veranstaltungen"
1992
 
1993
- #@ tribe-events-calendar
1994
- #: admin-views/events-options.php:83
1995
- #: admin-views/events-options.php:87
1996
- #: admin-views/events-options.php:89
1997
- msgid "Show Comments"
1998
- msgstr "Kommentare anzeigen"
1999
 
2000
- #@ tribe-events-calendar
2001
- #: admin-views/events-options.php:130
2002
- msgid "Height"
2003
- msgstr "H&ouml;he"
2004
 
2005
- #@ tribe-events-calendar
2006
- #: admin-views/events-options.php:131
2007
- msgid "Width"
2008
- msgstr "Breite"
2009
 
2010
- #@ tribe-events-calendar
2011
- #: admin-views/events-options.php:131
2012
- msgid "(number or %)"
2013
- msgstr "(Nummer oder %)"
2014
 
2015
- #@ tribe-events-calendar
2016
- #: admin-views/events-options.php:143
2017
- #: admin-views/events-options.php:147
2018
- msgid "Use Pretty URLs"
2019
- msgstr "Klartext-URLs benutzen"
2020
 
2021
- #@ tribe-events-calendar
2022
- #: admin-views/events-options.php:153
2023
- msgid "Although unlikely, pretty URLs (ie, http://site/events/upcoming) may interfere with custom themes or plugins."
2024
- msgstr "Obwohl es unwahrscheinlich ist, <em>k&ouml;nnten</em> sich Klartext-URLs (sogen. sprechende URLs), also zum Beispiel <code>http://webseite.de/kategorie/veranstaltungen/bevorstehende</code> mit manchen Themes oder Plugins nicht vertragen."
2025
 
2026
- #@ tribe-events-calendar
2027
- #: admin-views/events-options.php:159
2028
- #: admin-views/events-options.php:161
2029
- msgid "Events URL slug"
2030
- msgstr "URL-Slug f&uuml;r Veranstaltungen (Permalink/ Titelform)"
2031
 
2032
- #@ tribe-events-calendar
2033
- #: admin-views/events-options.php:162
2034
- msgid "The slug used for building the Events URL."
2035
- msgstr "Der Permalink (die Titelform), welche f&uuml;r die Veranstaltungs-URLs verwendet wird."
2036
 
2037
- #@ tribe-events-calendar
2038
- #: admin-views/events-options.php:162
2039
- #, php-format
2040
- msgid "Your current Events URL is <strong>%s</strong>"
2041
- msgstr "Ihre derzeitige Veranstaltungs-URL ist <strong>%s</strong>"
2042
 
2043
- #@ tribe-events-calendar
2044
- #: admin-views/events-options.php:166
2045
- #: admin-views/events-options.php:168
2046
- msgid "Single Event URL slug"
2047
- msgstr "Einzel-Eventseite URL-Slug"
2048
 
2049
- #@ tribe-events-calendar
2050
- #: admin-views/events-options.php:169
2051
- msgid "The slug used for building a single Event URL."
2052
- msgstr "Der Slug (Permalink), der f&uuml;r eine Event-URL in der Einzelansicht verwendet wird."
2053
 
2054
- #@ tribe-events-calendar
2055
- #: admin-views/events-options.php:170
2056
- #, php-format
2057
- msgid "<strong>NOTE:</strong> You <em>cannot</em> use the same slug as above. The above should ideally be plural, and this singular.<br />Your single Event URL is like: <strong>%s</strong>"
2058
- msgstr "<strong>HINWEIS:</strong> Sie <em>k&ouml;nnen hier nicht</em> denselben Slug (Permalink/ Titelform) wie oben verwenden. Der obige Wert sollte idealerweise in der Pluralform (Mehrzahl) sein, und dieser hier in der Singularform (Einzahl).<br />Ihre Veranstaltungs-URL in der Einzelansicht wird so aussehen: <strong>%s</strong>"
2059
 
2060
- #@ tribe-events-calendar
2061
- #: admin-views/events-options.php:178
2062
- msgid "Debug Events display issues."
2063
- msgstr "Debugging-Informationen f&uuml;r Anzeigeprobleme bei Veranstaltungen."
2064
 
2065
- #@ tribe-events-calendar
2066
- #: admin-views/events-options.php:184
2067
- msgid "Theme Settings"
2068
- msgstr "Theme-Einstellungen"
2069
 
2070
- #@ tribe-events-calendar
2071
- #: admin-views/events-options.php:199
2072
- #: admin-views/events-options.php:201
2073
- #: admin-views/events-options.php:209
2074
- msgid "Add HTML before calendar"
2075
- msgstr "HTML-Code vor dem Kalender einf&uuml;gen"
2076
 
2077
- #@ tribe-events-calendar
2078
- #: admin-views/events-options.php:203
2079
- msgid "Some themes may require that you add extra divs before the calendar list to help with styling."
2080
- msgstr "Einige WordPress-Themes k&ouml;nnen es erforderlich machen, dass Sie zus&auml;tzliche DIV-Container vor der Kalender-Liste einf&uuml;gen m&uuml;ssen, damit ein Styling via CSS m&ouml;glich wird."
 
2081
 
2082
- #@ tribe-events-calendar
2083
- #: admin-views/events-options.php:203
2084
- msgid "This is displayed directly after the header."
2085
- msgstr "Dies wird direkt nach der Kopfzeile (Header) angezeigt."
2086
 
2087
- #@ tribe-events-calendar
2088
- #: admin-views/events-options.php:203
2089
- #: admin-views/events-options.php:211
2090
- msgid "You may use (x)HTML."
2091
- msgstr "Sie k&ouml;nnen (x)HTML verwenden."
2092
 
2093
- #@ tribe-events-calendar
2094
- #: admin-views/events-options.php:207
2095
- msgid "Add HTML after calendar"
2096
- msgstr "HTML-Code nach dem Kalender hinzuf&uuml;gen"
2097
 
2098
- #@ tribe-events-calendar
2099
- #: admin-views/events-options.php:211
2100
- msgid "Some themes may require that you add extra divs after the calendar list to help with styling."
2101
- msgstr "Einige WordPress-Themes k&ouml;nnen es erforderlich machen, dass Sie zus&auml;tzliche DIV-Container nach der Kalender-Liste einf&uuml;gen m&uuml;ssen, damit ein Styling via CSS m&ouml;glich wird."
2102
 
2103
- #@ tribe-events-calendar
2104
- #: admin-views/events-options.php:211
2105
- msgid "This is displayed directly above the footer."
2106
- msgstr "Dies wird direkt &uuml;ber der Fu&szlig;zeile (Footer) angezeigt."
2107
 
2108
- #@ tribe-events-calendar
2109
- #: admin-views/events-options.php:220
2110
- msgid "Save Changes"
2111
- msgstr "&Auml;nderungen speichern"
2112
 
2113
- #@ tribe-events-calendar
2114
- #: lib/tribe-the-events-calendar-import.class.php:45
2115
- msgid "Upgrade from The Events Calendar"
2116
- msgstr "Upgrade vom Plugin 'The Events Calendar' (freie Version)"
 
2117
 
2118
- #@ tribe-events-calendar
2119
- #: admin-views/widget-admin-list.php:16
2120
- msgid "Show:"
2121
- msgstr "Zeigen:"
 
2122
 
2123
- #@ tribe-events-calendar
2124
- #: admin-views/widget-admin-list.php:24
2125
- msgid "Show widget only if there are upcoming events:"
2126
- msgstr "Das Widget nur anzeigen, wenn es bevorstehende Veranstaltungen gibt:"
 
2127
 
2128
- #@ tribe-events-calendar
2129
- #: admin-views/widget-admin-list.php:30
2130
- msgid "If you wish to customize the widget display yourself, see the file views/events-list-load-widget-display.php inside the Events Premium plugin."
2131
- msgstr "Wenn Sie die Anzeige des Widgets selbst anpassen m&ouml;chten, m&uuml;ssen Sie in den Plugindateien unter der Datei 'views/events-list-load-widget-display.php' Ihre Bearbeitungen vornehmen (gilt f&uuml;r das 'Events Calendar Pro' Premium Plugin)."
2132
 
2133
- #@ tribe-events-calendar
2134
- #: views/single.php:13
2135
- msgid "&laquo; Back to Events"
2136
- msgstr "&laquo; Zur&uuml;ck zu den Veranstaltungen"
2137
 
2138
- #@ tribe-events-calendar
2139
- #: views/single.php:14
2140
- msgid "This event has passed."
2141
- msgstr "Diese Veranstaltung ist bereits vorbei."
 
2142
 
2143
- #@ tribe-events-calendar
2144
- #: views/single.php:29
2145
- msgid "Organizer:"
2146
- msgstr "Veranstalter:"
2147
 
2148
- #@ tribe-events-calendar
2149
- #: views/single.php:58
2150
- msgid "Click to view a Google Map"
2151
- msgstr "Klicken, um eine 'Google Maps'-Karte anzuzeigen"
2152
 
2153
- #@ tribe-events-calendar
2154
- #: views/single.php:86
2155
- msgid "Add to Google Calendar"
2156
- msgstr "Zu einem Google Kalender hinzuf&uuml;gen"
2157
 
2158
- #@ tribe-events-calendar
2159
- #: views/single.php:86
2160
- msgid "+ Google Calendar"
2161
- msgstr "+ Google Kalender"
2162
 
2163
- #@ tribe-events-calendar
2164
- #: admin-views/venue-meta-box.php:12
2165
- msgid "Venue Name:"
2166
- msgstr "Veranstaltungsort:"
 
 
2167
 
2168
- #@ tribe-events-calendar
2169
- #: admin-views/venue-meta-box.php:23
2170
- msgid "City:"
2171
- msgstr "Ort:"
2172
 
2173
- #@ tribe-events-calendar
2174
- #: admin-views/venue-meta-box.php:52
2175
- msgid "State or Province:"
2176
- msgstr "Bundesland/Kanton/Provinz:"
2177
 
2178
- #@ tribe-events-calendar
2179
- #: admin-views/venue-meta-box.php:55
2180
- msgid "Select a State:"
2181
- msgstr "Staat ausw&auml;hlen:"
2182
 
2183
- #@ tribe-events-calendar
2184
- #: admin-views/venue-meta-box.php:27
2185
- msgid "Country:"
2186
- msgstr "Land:"
2187
 
2188
- #@ tribe-events-calendar
2189
- #: admin-views/venue-meta-box.php:69
2190
- msgid "Postal Code:"
2191
- msgstr "PLZ:"
2192
 
2193
- #@ tribe-events-calendar
2194
- #: lib/the-events-calendar.class.php:1409
2195
- msgid "Use New Venue"
2196
- msgstr "Neuen Veranstaltungsort verwenden"
2197
 
2198
- #@ tribe-events-calendar
2199
- #: lib/the-events-calendar.class.php:1494
2200
- msgid "Use New Organizer"
2201
- msgstr "Neuen Veranstalter verwenden"
2202
 
2203
- #@ tribe-events-calendar
2204
- #: lib/the-events-calendar.class.php:1741
2205
- msgid "Venue Information"
2206
- msgstr "Information zum Veranstaltungsort"
2207
 
2208
- #@ tribe-events-calendar
2209
- #: lib/the-events-calendar.class.php:1742
2210
- msgid "Organizer Information"
2211
- msgstr "Information zum Veranstalter"
2212
 
2213
- #@ tribe-events-calendar
2214
- #: admin-views/events-options.php:97
2215
- #: admin-views/events-options.php:101
2216
- msgid "Multiday Event Cutoff"
2217
- msgstr "Ausblendung bei mehrt&auml;gigen Veranstaltungen"
2218
 
2219
- #@ tribe-events-calendar
2220
- #: admin-views/events-options.php:115
2221
- msgid "For multi-day events, hide the last day from grid view if it ends on or before this time."
2222
- msgstr "Bei mehrt&auml;gigen Veranstaltungen wird der letzte Tag aus der Grid-Ansicht ausgeblendet, wenn er zu oder vor dieser Zeit endet."
2223
 
2224
- #@ tribe-events-calendar
2225
- #: lib/tribe-the-events-calendar-import.class.php:47
2226
- msgid "Migrate Data!"
2227
- msgstr "Daten migrieren (&uuml;bertragen)!"
2228
 
2229
- #@ default
2230
- #: admin-views/events-meta-box.php:29
2231
- msgid "You have changed the recurrence rules of this event. Saving the event will update all future events. If you did not mean to change all events, then please refresh the page."
2232
- msgstr "Sie haben die Wiederholungs-Regeln f&uuml;r diese Veranstaltung ver&auml;ndert. Wenn Sie die Veranstaltung nun damit speichern, werden auch alle damit verbundenen und in der Zukunft liegenden Veranstaltungen so aktualisiert. Wenn Sie dies nicht vorhatten, dann laden Sie bitte diese Seite neu (aber nicht 'Speichern' / 'Aktualisieren')."
 
2233
 
2234
- #@ tribe-events-calendar
2235
- #: admin-views/events-meta-box.php:139
2236
- msgid "Additional Functionality"
2237
- msgstr "Erweiterte Funktionalit&auml;t"
2238
 
2239
- #@ tribe-events-calendar
2240
- #: admin-views/events-meta-box.php:144
2241
- #: admin-views/events-options.php:51
2242
- msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
2243
- msgstr "W&uuml;nschen Sie erweiterte Funktionalit&auml;t, einschlie&szlig;lich wiederkehrender Veranstaltungen, benutzerdefinierten Meta-Informationen, Community-Veranstaltungen, Ticketverk&auml;ufen und mehr?"
2244
 
2245
- #@ tribe-events-calendar
2246
- #: admin-views/events-meta-box.php:144
2247
- #: admin-views/events-options.php:52
2248
- #, php-format
2249
- msgid "Check out the <a href=\"%s\">available Add-Ons</a>."
2250
- msgstr "Entdecken Sie die <a href=\"%s\">verf&uuml;gbaren Erweiterungen (Add-Ons)</a>."
2251
 
2252
- #@ tribe-events-calendar
2253
- #: admin-views/events-options.php:47
2254
- #, php-format
2255
- msgid "%s Settings"
2256
- msgstr "%s Einstellungen"
2257
 
2258
- #@ tribe-events-calendar
2259
- #: admin-views/events-options.php:54
2260
- #, php-format
2261
- msgid "If you're stuck on these options, please <a href=\"%s\">check out the documentation</a>. Or, go to the <a href=\"%s\">support forum</a>."
2262
- msgstr "Wenn Sie sich in diesen ganzen Einstellungen und Optionen 'verfangen' haben sollten, schauen Sie bitte in unserer <a href=\"%s\">Dokumention</a> nach. Oder besuchen Sie einfach unser <a href=\"%s\">Support-Forum</a>."
2263
 
2264
- #@ tribe-events-calendar
2265
- #: admin-views/events-options.php:120
2266
- #: admin-views/events-options.php:124
2267
- msgid "Enable Google Maps"
2268
- msgstr "'Google Maps'-Karten aktivieren"
2269
 
2270
- #@ tribe-events-calendar
2271
- #: admin-views/events-options.php:135
2272
- msgid "If you don't have this turned on, your event listings won't have the backend map preview or frontend embedded map."
2273
- msgstr "Wenn Sie dies hier nicht aktivieren, dann verf&uuml;gen Ihre Veranstaltungslisten weder &uuml;ber eine Kartenvorschau im Adminbereich, noch eine eingebundene Karte in der Besucheransicht."
2274
 
2275
- #@ tribe-events-calendar
2276
- #: admin-views/events-options.php:179
2277
- #, php-format
2278
- msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the <a href=\"%s\" target=\"_blank\">Debug Bar Plugin</a> and look for the \"Tribe\" tab in the debug output."
2279
- msgstr "Aktivieren Sie diese Option, um Debugging-Informationen zu protokollieren. Standardm&auml;&szlig;ig w&uuml;rde das dann in der PHP-Fehlerprotokolldatei des Servers mitprotokolliert. Wenn Sie diese Protokollinformationen jedoch in Ihrem Browser ansehen wollen, denn empfehlen wir Ihnen die Installation des <a href=\"%s\" target=\"_blank\">Debug Bar Plugin</a> - schauen Sie dann nach dem \"Tribe\"-Reiter auf der Ausgabeseite."
2280
 
2281
- #@ tribe-events-calendar
2282
- #: admin-views/events-options.php:187
2283
- #: admin-views/events-options.php:189
2284
- msgid "Events Template"
2285
- msgstr "Veranstaltungen-Vorlage"
2286
 
2287
- #@ default
2288
- #: admin-views/events-options.php:191
2289
- msgid "Default ECP Template"
2290
- msgstr "Standard ECP-Seitenvorlage"
2291
 
2292
- #@ default
2293
- #: admin-views/events-options.php:192
2294
- msgid "Default Page Template"
2295
- msgstr "Standard-Seitenvorlage (WordPress)"
2296
 
2297
- #@ tribe-events-calendar
2298
- #: admin-views/events-options.php:195
2299
- msgid "Choose a page template to control the look and feel of your calendar."
2300
- msgstr "W&auml;hlen Sie eine Seitenvorlage aus, um die Ausgabe und das Layout Ihres Kalenders festzulegen."
2301
 
2302
- #@ tribe-events-calendar
2303
- #: admin-views/recurrence-dialog.php:11
2304
- msgid "Which events do you wish to update?"
2305
- msgstr "Welche Veranstaltungen sollen aktualisiert werden?"
2306
 
2307
- #@ tribe-events-calendar
2308
- #: admin-views/recurrence-dialog.php:14
2309
- msgid "Select your desired action"
2310
- msgstr "W&auml;hlen Sie Ihre gew&uuml;nschte Aktion"
2311
 
2312
- #@ tribe-events-calendar
2313
- #: lib/template-tags.php:331
2314
- msgid "Free"
2315
- msgstr "Eintritt frei"
2316
 
2317
- #@ tribe-events-calendar
2318
- #: lib/the-events-calendar.class.php:211
2319
- msgid "The Events Calendar"
2320
- msgstr "Veranstaltungskalender"
2321
 
2322
- #@ tribe-events-calendar
2323
- #: lib/the-events-calendar.class.php:219
2324
- msgid "venue"
2325
- msgstr "Ort"
2326
 
2327
- #@ tribe-events-calendar
2328
- #: lib/the-events-calendar.class.php:229
2329
- #, php-format
2330
- msgid "Initializing Tribe Events on %s"
2331
- msgstr "Tribe Events werden eingerichtet f&uuml;r %s"
2332
 
2333
- #@ tribe-events-calendar
2334
- #: lib/the-events-calendar.class.php:277
2335
- #, php-format
2336
- msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
2337
- msgstr "Entschuldigung, das The Events Calendar Plugin erfordert WordPress Version %s oder h&ouml;her. Bitte aktualisieren Sie Ihre WordPress-Installation entsprechend, bevor Sie fortfahren."
2338
 
2339
- #@ tribe-events-calendar
2340
- #: lib/the-events-calendar.class.php:280
2341
- #, php-format
2342
- msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
2343
- msgstr "Entschuldigung, das 'The Events Calendar'-Plugin erfordert PHP Version %s oder h&ouml;her. Kontaktieren Sie Ihren Webhosting-Anbieter, um auf eine h&ouml;here PHP-Version aktualisieren zu k&ouml;nnen."
2344
 
2345
- #@ default
2346
- #: lib/the-events-calendar.class.php:542
2347
  #, php-format
2348
  msgid "Event updated. <a href=\"%s\">View event</a>"
2349
  msgstr "Veranstaltung aktualisiert. <a href=\"%s\">Diese Veranstaltung ansehen</a>"
2350
 
2351
- #@ default
2352
- #: lib/the-events-calendar.class.php:543
2353
- #: lib/the-events-calendar.class.php:560
2354
- #: lib/the-events-calendar.class.php:577
2355
  msgid "Custom field updated."
2356
  msgstr "Benutzerdefiniertes Feld aktualisiert."
2357
 
2358
- #@ default
2359
- #: lib/the-events-calendar.class.php:544
2360
- #: lib/the-events-calendar.class.php:561
2361
- #: lib/the-events-calendar.class.php:578
2362
  msgid "Custom field deleted."
2363
  msgstr "Benutzerdefiniertes Feld gel&ouml;scht."
2364
 
2365
- #@ default
2366
- #: lib/the-events-calendar.class.php:545
2367
  msgid "Event updated."
2368
  msgstr "Veranstaltung aktualisiert."
2369
 
2370
- #@ default
2371
- #. translators: %s: date and time of the revision
2372
- #: lib/the-events-calendar.class.php:547
2373
  #, php-format
2374
  msgid "Event restored to revision from %s"
2375
  msgstr "Veranstaltung wiederhergestellt mit der Revision von %s"
2376
 
2377
- #@ default
2378
- #: lib/the-events-calendar.class.php:548
2379
  #, php-format
2380
  msgid "Event published. <a href=\"%s\">View event</a>"
2381
  msgstr "Veranstaltung ver&ouml;ffentlicht. <a href=\"%s\">Diese Veranstaltung ansehen</a>"
2382
 
2383
- #@ default
2384
- #: lib/the-events-calendar.class.php:549
2385
  msgid "Event saved."
2386
  msgstr "Veranstaltung gespeichert."
2387
 
2388
- #@ default
2389
- #: lib/the-events-calendar.class.php:550
2390
  #, php-format
2391
  msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
2392
  msgstr "Veranstaltung hinzugef&uuml;gt. <a target=\"_blank\" href=\"%s\">Vorschau</a>"
2393
 
2394
- #@ default
2395
- #: lib/the-events-calendar.class.php:551
2396
  #, php-format
2397
  msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
2398
  msgstr "Veranstaltung geplant f&uuml;r: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Vorschau</a>"
2399
 
2400
- #@ default
2401
- #: lib/the-events-calendar.class.php:553
2402
- #: lib/the-events-calendar.class.php:570
2403
- #: lib/the-events-calendar.class.php:587
2404
  msgid "M j, Y @ G:i"
2405
  msgstr "M j, Y @ G:i"
2406
 
2407
- #@ default
2408
- #: lib/the-events-calendar.class.php:554
2409
  #, php-format
2410
  msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
2411
  msgstr "Veranstaltungsentwurf aktualisiert. <a target=\"_blank\" href=\"%s\">Vorschau</a>"
2412
 
2413
- #@ default
2414
- #: lib/the-events-calendar.class.php:559
2415
  #, php-format
2416
  msgid "Venue updated. <a href=\"%s\">View venue</a>"
2417
  msgstr "Veranstaltungsort aktualisiert. <a href=\"%s\">Diesen Ort ansehen</a>"
2418
 
2419
- #@ default
2420
- #: lib/the-events-calendar.class.php:562
2421
  msgid "Venue updated."
2422
  msgstr "Veranstaltungsort aktualisiert."
2423
 
2424
- #@ default
2425
- #. translators: %s: date and time of the revision
2426
- #: lib/the-events-calendar.class.php:564
2427
  #, php-format
2428
  msgid "Venue restored to revision from %s"
2429
  msgstr "Veranstaltungsort wiederhergestellt mit der Revision von %s"
2430
 
2431
- #@ default
2432
- #: lib/the-events-calendar.class.php:565
2433
  #, php-format
2434
  msgid "Venue published. <a href=\"%s\">View venue</a>"
2435
  msgstr "Veranstaltungsort ver&ouml;ffentlicht. <a href=\"%s\">Diesen Ort ansehen</a>"
2436
 
2437
- #@ default
2438
- #: lib/the-events-calendar.class.php:566
2439
  msgid "Venue saved."
2440
  msgstr "Veranstaltungsort gespeichert."
2441
 
2442
- #@ default
2443
- #: lib/the-events-calendar.class.php:567
2444
  #, php-format
2445
  msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
2446
  msgstr "Veranstaltungsort hinzugef&uuml;gt. <a target=\"_blank\" href=\"%s\">Vorschau</a>"
2447
 
2448
- #@ default
2449
- #: lib/the-events-calendar.class.php:568
2450
  #, php-format
2451
  msgid "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview venue</a>"
2452
  msgstr "Veranstaltungsort geplant f&uuml;r: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Vorschau</a>"
2453
 
2454
- #@ default
2455
- #: lib/the-events-calendar.class.php:571
2456
  #, php-format
2457
  msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
2458
  msgstr "Entwurf des Veranstaltungsortes aktualisiert. <a target=\"_blank\" href=\"%s\">Vorschau</a>"
2459
 
2460
- #@ default
2461
- #: lib/the-events-calendar.class.php:576
2462
  #, php-format
2463
  msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
2464
  msgstr "Veranstalter aktualisiert. <a href=\"%s\">Diesen Veranstalter ansehen</a>"
2465
 
2466
- #@ default
2467
- #: lib/the-events-calendar.class.php:579
2468
  msgid "Organizer updated."
2469
  msgstr "Veranstalter aktualisiert."
2470
 
2471
- #@ default
2472
- #. translators: %s: date and time of the revision
2473
- #: lib/the-events-calendar.class.php:581
2474
  #, php-format
2475
  msgid "Organizer restored to revision from %s"
2476
  msgstr "Veranstalter wiederhergestellt mit der Revision von %s"
2477
 
2478
- #@ default
2479
- #: lib/the-events-calendar.class.php:582
2480
  #, php-format
2481
  msgid "Organizer published. <a href=\"%s\">View organizer</a>"
2482
  msgstr "Veranstalter publiziert. <a href=\"%s\">Diesen Veranstalter ansehen</a>"
2483
 
2484
- #@ default
2485
- #: lib/the-events-calendar.class.php:583
2486
  msgid "Organizer saved."
2487
  msgstr "Veranstalter gespeichert."
2488
 
2489
- #@ default
2490
- #: lib/the-events-calendar.class.php:584
2491
  #, php-format
2492
  msgid "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
2493
  msgstr "Veranstalter hinzugef&uuml;gt. <a target=\"_blank\" href=\"%s\">Vorschau</a>"
2494
 
2495
- #@ default
2496
- #: lib/the-events-calendar.class.php:585
2497
  #, php-format
2498
  msgid "Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview organizer</a>"
2499
  msgstr "Veranstalter geplant f&uuml;r: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Vorschau</a>"
2500
 
2501
- #@ default
2502
- #: lib/the-events-calendar.class.php:588
2503
  #, php-format
2504
  msgid "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
2505
  msgstr "Entwurf des Veranstalters aktualisiert. <a target=\"_blank\" href=\"%s\">Vorschau</a>"
2506
 
2507
- #@ tribe-events-calendar
2508
- #: lib/the-events-calendar.class.php:1739
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2509
  msgid "Event Options"
2510
  msgstr "Veranstaltungsoptionen"
2511
 
2512
- #@ tribe-events-calendar
2513
- #: lib/the-events-calendar.class.php:1844
 
 
 
 
 
 
 
 
 
 
2514
  msgid "View All Add-Ons"
2515
  msgstr "Alle Erweiterungen (Add-Ons) ansehen"
2516
 
2517
- #@ default
2518
- #: lib/the-events-calendar.class.php:1851
2519
  msgid "News from Tribe Pro"
2520
  msgstr "Neuigkeiten von Tribe Pro"
2521
 
2522
- #@ tribe-events-calendar
2523
- #: lib/tribe-admin-events-list.class.php:167
2524
- msgid "Recurring?"
2525
- msgstr "Wiederkehrend?"
2526
-
2527
- #@ tribe-events-calendar
2528
- #: lib/tribe-admin-events-list.class.php:245
2529
- #, php-format
2530
- msgid "All %s"
2531
- msgstr "Alle %s"
2532
-
2533
- #@ tribe-events-calendar
2534
- #: lib/tribe-debug-bar.class.php:18
2535
  msgid "Tribe"
2536
  msgstr "Tribe"
2537
 
2538
- #@ tribe-events-calendar
2539
- #: lib/tribe-event-exception.class.php:17
2540
- #: lib/tribe-event-exception.class.php:34
2541
- msgid "Error"
2542
- msgstr "Fehler"
2543
 
2544
- #@ tribe-events-calendar
2545
- #: lib/tribe-the-events-calendar-import.class.php:46
2546
  msgid "It appears that you have some old events calendar data that needs to be upgraded. Please be sure to back up your database before initiating the upgrade. This process can not be undone."
2547
  msgstr "Es scheint, als h&auml;tten Sie noch alte Veranstaltungsdaten in der Datenbank, die aktualisiert werden m&uuml;ssen. Bitte stellen Sie sich, dass Sie vor dem Initialisieren des Upgrades eine Sicherung der (bisherigen) Datenbank anlegen. - Hinweis: Der gesamte Prozess kann <em>nicht</em> r&uuml;ckg&auml;ngig gemacht werden!"
2548
 
2549
- #@ tribe-events-calendar
2550
- #: lib/tribe-the-events-calendar-import.class.php:189
2551
- msgid "Install has 1 or more legacy event!"
2552
- msgstr "In der Installation wurde(n) 1 oder mehrere alte/ abgelaufene Veranstaltung(en) gefunden!"
2553
 
2554
- #@ tribe-events-calendar
2555
- #: views/ecp-single-template.php:24
2556
- msgid "Edit"
2557
- msgstr "Bearbeiten"
 
2558
 
2559
- #@ tribe-events-calendar
2560
- #: views/events-list-load-widget-display.php:51
2561
- msgid "Ends"
2562
- msgstr "Endet"
2563
 
2564
- #@ tribe-events-calendar
2565
- #: views/list.php:95
2566
- #, php-format
2567
- msgid " listed under %s. Check out upcoming events for this category or view the full calendar."
2568
- msgstr " gelistet unter %s; Schauen Sie die bevorstehenden Veranstaltungen dieser Kategorie an oder den kompletten Veranstaltungskalender"
2569
 
2570
- #@ tribe-events-calendar
2571
- #: views/list.php:97
2572
- #, php-format
2573
- msgid " listed under %s. Check out past events for this category or view the full calendar."
2574
- msgstr " gelistet unter %s; Schauen Sie die vergangenen Veranstaltungen dieser Kategorie an oder den kompletten Veranstaltungskalender"
2575
 
2576
- #@ tribe-events-calendar
2577
- #: views/list.php:103
2578
- msgid "No upcoming events"
2579
- msgstr "Keine bevorstehenden Veranstaltungen"
2580
 
2581
- #@ tribe-events-calendar
2582
- #: views/list.php:107
2583
- msgid "No previous events"
2584
- msgstr "Keine vergangenen Veranstaltungen"
2585
 
2586
- #@ tribe-events-calendar
2587
- #: views/single.php:41
2588
- msgid "Schedule:"
2589
- msgstr "Planung:"
2590
 
2591
- #@ default
2592
- #: lib/tribe-the-events-calendar-import.class.php:119
2593
- #, php-format
2594
- msgid "You successfully migrated (%d) entries."
2595
- msgstr "Sie haben erfolgreich (%d) Eintr&auml;ge migriert (&uuml;bertragen)."
2596
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: The Events Calendar 2.0+\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-09-19 16:36-0500\n"
6
+ "PO-Revision-Date: 2011-11-07 09:19-0600\n"
7
+ "Last-Translator: Sam <sam@eickedweasel.com>\n"
8
  "Language-Team: DECKERWEB <deckerweb.mobil@googlemail.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "X-Textdomain-Support: yes\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ # @ tribe-events-calendar
21
+ #: ../views/list.php:16
22
+ #: ../views/gridview.php:37
23
+ msgid "Event List"
24
+ msgstr "Veranstaltungsliste"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
 
26
+ # @ tribe-events-calendar
27
+ #: ../views/list.php:17
28
+ #: ../views/gridview.php:38
29
+ msgid "Calendar"
30
+ msgstr "Kalender"
31
 
32
+ # @ tribe-events-calendar
33
+ #: ../views/list.php:42
34
+ #: ../views/single.php:19
35
+ msgid "Start:"
36
+ msgstr "Beginn:"
37
 
38
+ # @ tribe-events-calendar
39
+ #: ../views/single.php:17
40
+ msgid "Event:"
41
+ msgstr "Anlass:"
42
 
43
+ #: ../views/single.php:42
44
+ msgid "Updated:"
45
+ msgstr "Aktualisiert:"
 
46
 
47
+ # @ tribe-events-calendar
48
+ #: ../views/list.php:46
49
+ #: ../views/single.php:20
50
+ msgid "End:"
51
+ msgstr "Ende:"
52
 
53
+ # @ tribe-events-calendar
54
+ #: ../views/list.php:54
55
+ #: ../views/single.php:47
56
+ msgid "Venue:"
57
+ msgstr "Ort:"
58
 
59
+ # @ tribe-events-calendar
60
+ #: ../views/list.php:63
61
+ #: ../views/single.php:33
62
+ #: ../views/single.php:51
63
+ #: ../admin-views/venue-meta-box.php:73
64
+ msgid "Phone:"
65
+ msgstr "Telefon:"
66
 
67
+ # @ tribe-events-calendar
68
+ #: ../views/list.php:69
69
+ #: ../views/single.php:56
70
+ #: ../admin-views/venue-meta-box.php:19
71
+ msgid "Address:"
72
+ msgstr "Anschrift:"
73
 
74
+ # @ tribe-events-calendar
75
+ #: ../views/list.php:71
76
+ #: ../views/single.php:58
77
+ msgid "Google Map"
78
+ msgstr "Google Maps"
79
 
80
+ # @ tribe-events-calendar
81
+ #: ../views/list.php:81
82
+ #: ../views/single.php:24
83
+ #: ../admin-views/events-meta-box.php:113
84
+ msgid "Cost:"
85
+ msgstr "Kosten:"
86
 
87
+ # @ tribe-events-calendar
88
+ #: ../views/list.php:95
89
+ #, php-format
90
+ msgid " listed under %s. Check out past events for this category or view the full calendar."
91
+ msgstr " gelistet unter %s; Schauen Sie die vergangenen Veranstaltungen dieser Kategorie an oder den kompletten Veranstaltungskalender"
92
 
93
+ # @ tribe-events-calendar
94
+ #: ../views/list.php:97
95
+ #, php-format
96
+ msgid " listed under %s. Check out upcoming events for this category or view the full calendar."
97
+ msgstr " gelistet unter %s; Schauen Sie die bevorstehenden Veranstaltungen dieser Kategorie an oder den kompletten Veranstaltungskalender"
98
 
99
+ # @ tribe-events-calendar
100
+ #: ../views/list.php:103
101
+ msgid "No upcoming events"
102
+ msgstr "Keine bevorstehenden Veranstaltungen"
103
 
104
+ # @ tribe-events-calendar
105
+ #: ../views/list.php:107
106
+ msgid "No previous events"
107
+ msgstr "Keine vergangenen Veranstaltungen"
108
 
109
+ # @ tribe-events-calendar
110
+ #: ../views/list.php:120
111
+ #: ../views/list.php:122
112
+ #: ../views/list.php:124
113
+ msgid "&laquo; Previous Events"
114
+ msgstr "&laquo; Vorherige Veranstaltungen"
115
 
116
+ # @ tribe-events-calendar
117
+ #: ../views/list.php:131
118
+ #: ../views/list.php:133
119
+ #: ../views/list.php:135
120
+ msgid "Next Events &raquo;"
121
+ msgstr "N&auml;chste Veranstaltungen &raquo;"
122
 
123
+ # @ tribe-events-calendar
124
+ #: ../views/list.php:140
125
+ #: ../views/gridview.php:43
126
+ #: ../views/single.php:83
127
+ msgid "iCal Import"
128
+ msgstr "iCal-Import"
129
 
130
+ # @ tribe-events-calendar
131
+ #: ../views/table-mini.php:24
132
+ msgid "View all &raquo;"
133
+ msgstr "Alle ansehen &raquo;"
134
 
135
+ # @ tribe-events-calendar
136
+ #: ../views/single.php:13
137
+ msgid "&laquo; Back to Events"
138
+ msgstr "&laquo; Zur&uuml;ck zu den Veranstaltungen"
139
 
140
+ # @ tribe-events-calendar
141
+ #: ../views/single.php:14
142
+ msgid "This event has passed."
143
+ msgstr "Diese Veranstaltung ist bereits vorbei."
144
 
145
+ # @ tribe-events-calendar
146
+ #: ../views/single.php:29
147
+ msgid "Organizer:"
148
+ msgstr "Veranstalter:"
149
 
150
+ # @ tribe-events-calendar
151
+ #: ../views/single.php:37
152
+ msgid "Email:"
153
+ msgstr "E-Mail:"
154
 
155
+ # @ tribe-events-calendar
156
+ #: ../views/single.php:41
157
+ msgid "Schedule:"
158
+ msgstr "Planung:"
159
 
160
+ # @ tribe-events-calendar
161
+ #: ../views/single.php:58
162
+ msgid "Click to view a Google Map"
163
+ msgstr "Klicken, um eine 'Google Maps'-Karte anzuzeigen"
164
 
165
+ # @ tribe-events-calendar
166
+ #: ../views/single.php:86
167
+ msgid "Add to Google Calendar"
168
+ msgstr "Zu einem Google Kalender hinzuf&uuml;gen"
169
 
170
+ # @ tribe-events-calendar
171
+ #: ../views/single.php:86
172
+ msgid "+ Google Calendar"
173
+ msgstr "+ Google Kalender"
174
 
175
+ # @ tribe-events-calendar
176
+ #: ../views/events-list-load-widget-display.php:48
177
+ msgid "All Day"
178
+ msgstr "Ganzt&auml;gig"
179
 
180
+ # @ tribe-events-calendar
181
+ #: ../views/events-list-load-widget-display.php:51
182
+ msgid "Ends"
183
+ msgstr "Endet"
184
 
185
+ # @ tribe-events-calendar
186
+ #: ../views/ecp-single-template.php:24
187
+ msgid "Edit"
188
+ msgstr "Bearbeiten"
189
 
190
+ # @ tribe-events-calendar
191
+ #: ../admin-views/events-meta-box.php:26
192
+ msgid "Event Time &amp; Date"
193
+ msgstr "Veranstaltungszeit und -Datum"
194
 
195
+ # @ default
196
+ #: ../admin-views/events-meta-box.php:29
197
+ msgid "You have changed the recurrence rules of this event. Saving the event will update all future events. If you did not mean to change all events, then please refresh the page."
198
+ msgstr "Sie haben die Wiederholungs-Regeln f&uuml;r diese Veranstaltung ver&auml;ndert. Wenn Sie die Veranstaltung nun damit speichern, werden auch alle damit verbundenen und in der Zukunft liegenden Veranstaltungen so aktualisiert. Wenn Sie dies nicht vorhatten, dann laden Sie bitte diese Seite neu (aber nicht 'Speichern' / 'Aktualisieren')."
199
 
200
+ # @ tribe-events-calendar
201
+ #: ../admin-views/events-meta-box.php:32
202
+ msgid "All day event?"
203
+ msgstr "Ganzt&auml;gige Veranstaltung?"
204
 
205
+ # @ tribe-events-calendar
206
+ #: ../admin-views/events-meta-box.php:36
207
+ msgid "Start Date / Time:"
208
+ msgstr "Anfangsdatum/ -Zeit:"
209
 
210
+ # @ tribe-events-calendar
211
+ #: ../admin-views/events-meta-box.php:39
212
+ #: ../admin-views/events-meta-box.php:60
213
+ msgid "YYYY-MM-DD"
214
+ msgstr "TT.MM.JJJJ"
215
 
216
+ # @ tribe-events-calendar
217
+ #: ../admin-views/events-meta-box.php:41
218
+ #: ../admin-views/events-meta-box.php:62
219
+ msgid "@"
220
+ msgstr "@"
221
 
222
+ # @ tribe-events-calendar
223
+ #: ../admin-views/events-meta-box.php:57
224
+ msgid "End Date / Time:"
225
+ msgstr "Enddatum/ -Zeit:"
226
 
227
+ # @ tribe-events-calendar
228
+ #: ../admin-views/events-meta-box.php:79
229
+ msgid "Event Location Details"
230
+ msgstr "Informationen zum Veranstaltungsort"
231
 
232
+ # @ tribe-events-calendar
233
+ #: ../admin-views/events-meta-box.php:85
234
+ msgid "Show Google Maps Link:"
235
+ msgstr "'Google Maps'-Link anzeigen:"
236
 
237
+ # @ tribe-events-calendar
238
+ #: ../admin-views/events-meta-box.php:92
239
+ msgid "Show Google Map:"
240
+ msgstr "'Google Maps'-Karte anzeigen:"
241
 
242
+ # @ tribe-events-calendar
243
+ #: ../admin-views/events-meta-box.php:101
244
+ msgid "Event Organizer Details"
245
+ msgstr "Informationen zum Veranstalter"
246
 
247
+ # @ tribe-events-calendar
248
+ #: ../admin-views/events-meta-box.php:110
249
+ msgid "Event Cost"
250
+ msgstr "Kosten f&uuml;r die Veranstaltung"
251
 
252
+ # @ tribe-events-calendar
253
+ #: ../admin-views/events-meta-box.php:118
254
+ msgid "Leave blank to hide the field. Enter a 0 for events that are free."
255
+ msgstr "Feld leer lassen, um es ganz auszublenden. Geben Sie '0' ein, f&uuml;r eine kostenlose Veranstaltung (= ohne Eintritt!)."
256
 
257
+ # @ tribe-events-calendar
258
+ #: ../admin-views/events-meta-box.php:124
259
+ msgid "Additional Functionality"
260
+ msgstr "Erweiterte Funktionalit&auml;t"
261
 
262
+ # @ tribe-events-calendar
263
+ #: ../admin-views/events-meta-box.php:129
264
+ msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
265
+ msgstr "W&uuml;nschen Sie erweiterte Funktionalit&auml;t, einschlie&szlig;lich wiederkehrender Veranstaltungen, benutzerdefinierten Meta-Informationen, Community-Veranstaltungen, Ticketverk&auml;ufen und mehr?"
266
 
267
+ # @ tribe-events-calendar
268
+ #: ../admin-views/events-meta-box.php:129
269
+ #, php-format
270
+ msgid "Check out the <a href=\"%s\">available Add-Ons</a>."
271
+ msgstr "Entdecken Sie die <a href=\"%s\">verf&uuml;gbaren Erweiterungen (Add-Ons)</a>."
272
 
273
+ # @ tribe-events-calendar
274
+ #: ../admin-views/venue-meta-box.php:12
275
+ msgid "Venue Name:"
276
+ msgstr "Veranstaltungsort:"
277
 
278
+ # @ tribe-events-calendar
279
+ #: ../admin-views/venue-meta-box.php:23
280
+ msgid "City:"
281
+ msgstr "Ort:"
282
 
283
+ # @ tribe-events-calendar
284
+ #: ../admin-views/venue-meta-box.php:27
285
+ msgid "Country:"
286
+ msgstr "Land:"
287
 
288
+ # @ tribe-events-calendar
289
+ #: ../admin-views/venue-meta-box.php:52
290
+ msgid "State or Province:"
291
+ msgstr "Bundesland/Kanton/Provinz:"
292
 
293
+ # @ tribe-events-calendar
294
+ #: ../admin-views/venue-meta-box.php:55
295
+ msgid "Select a State:"
296
+ msgstr "Staat ausw&auml;hlen:"
297
 
298
+ # @ tribe-events-calendar
299
+ #: ../admin-views/venue-meta-box.php:69
300
+ msgid "Postal Code:"
301
+ msgstr "PLZ:"
302
 
303
+ # @ tribe-events-calendar
304
+ #: ../admin-views/recurrence-dialog.php:11
305
+ msgid "Which events do you wish to update?"
306
+ msgstr "Welche Veranstaltungen sollen aktualisiert werden?"
307
 
308
+ # @ tribe-events-calendar
309
+ #: ../admin-views/recurrence-dialog.php:14
310
+ msgid "Select your desired action"
311
+ msgstr "W&auml;hlen Sie Ihre gew&uuml;nschte Aktion"
312
 
313
+ # @ tribe-events-calendar
314
+ #: ../admin-views/event-sidebar-options.php:11
315
+ msgid "Hide From Upcoming Events List"
316
+ msgstr "Veranstaltung in der Liste ausblenden"
317
 
318
+ # @ tribe-events-calendar
319
+ #: ../admin-views/events-options.php:47
320
+ #, php-format
321
+ msgid "%s Settings"
322
+ msgstr "%s Einstellungen"
323
 
324
+ # @ tribe-events-calendar
325
+ #: ../admin-views/events-options.php:53
326
+ msgid "Need a hand?"
327
+ msgstr "Brauchen Sie Hilfe?"
328
 
329
+ # @ tribe-events-calendar
330
+ #: ../admin-views/events-options.php:54
331
+ #, php-format
332
+ msgid "If you're stuck on these options, please <a href=\"%s\">check out the documentation</a>. Or, go to the <a href=\"%s\">support forum</a>."
333
+ msgstr "Wenn Sie sich in diesen ganzen Einstellungen und Optionen 'verfangen' haben sollten, schauen Sie bitte in unserer <a href=\"%s\">Dokumention</a> nach. Oder besuchen Sie einfach unser <a href=\"%s\">Support-Forum</a>."
334
 
335
+ # @ tribe-events-calendar
336
+ #: ../admin-views/events-options.php:56
337
+ msgid "Here is the iCal feed URL for your events: "
338
+ msgstr "Hier ist die iCal Feed-Adresse f&uuml;r Ihre Veranstaltungen: "
339
 
340
+ # @ tribe-events-calendar
341
+ #: ../admin-views/events-options.php:62
342
+ msgid "Settings"
343
+ msgstr "Einstellungen"
344
 
345
+ # @ tribe-events-calendar
346
+ #: ../admin-views/events-options.php:65
347
+ #: ../admin-views/events-options.php:69
348
+ msgid "Default View for the Events"
349
+ msgstr "Vorgegebene Ansicht f&uuml;r Veranstaltungen"
350
 
351
+ # @ tribe-events-calendar
352
+ #: ../admin-views/events-options.php:83
353
+ #: ../admin-views/events-options.php:87
354
+ #: ../admin-views/events-options.php:89
355
+ msgid "Show Comments"
356
+ msgstr "Kommentare anzeigen"
357
 
358
+ # @ tribe-events-calendar
359
+ #: ../admin-views/events-options.php:97
360
+ #: ../admin-views/events-options.php:101
361
+ msgid "Multiday Event Cutoff"
362
+ msgstr "Ausblendung bei mehrt&auml;gigen Veranstaltungen"
363
 
364
+ # @ tribe-events-calendar
365
+ #: ../admin-views/events-options.php:115
366
+ msgid "For multi-day events, hide the last day from grid view if it ends on or before this time."
367
+ msgstr "Bei mehrt&auml;gigen Veranstaltungen wird der letzte Tag aus der Grid-Ansicht ausgeblendet, wenn er zu oder vor dieser Zeit endet."
368
 
369
+ # @ tribe-events-calendar
370
+ #: ../admin-views/events-options.php:120
371
+ #: ../admin-views/events-options.php:124
372
+ msgid "Enable Google Maps"
373
+ msgstr "'Google Maps'-Karten aktivieren"
374
 
375
+ # @ tribe-events-calendar
376
+ #: ../admin-views/events-options.php:130
377
+ msgid "Height"
378
+ msgstr "H&ouml;he"
379
 
380
+ # @ tribe-events-calendar
381
+ #: ../admin-views/events-options.php:131
382
+ msgid "Width"
383
+ msgstr "Breite"
384
 
385
+ # @ tribe-events-calendar
386
+ #: ../admin-views/events-options.php:131
387
+ msgid "(number or %)"
388
+ msgstr "(Nummer oder %)"
389
 
390
+ # @ tribe-events-calendar
391
+ #: ../admin-views/events-options.php:135
392
+ msgid "If you don't have this turned on, your event listings won't have the backend map preview or frontend embedded map."
393
+ msgstr "Wenn Sie dies hier nicht aktivieren, dann verf&uuml;gen Ihre Veranstaltungslisten weder &uuml;ber eine Kartenvorschau im Adminbereich, noch eine eingebundene Karte in der Besucheransicht."
394
 
395
+ # @ tribe-events-calendar
396
+ #: ../admin-views/events-options.php:143
397
+ #: ../admin-views/events-options.php:145
398
+ msgid "Events URL slug"
399
+ msgstr "URL-Slug f&uuml;r Veranstaltungen (Permalink/ Titelform)"
400
 
401
+ # @ tribe-events-calendar
402
+ #: ../admin-views/events-options.php:146
403
+ msgid "The slug used for building the Events URL."
404
+ msgstr "Der Permalink (die Titelform), welche f&uuml;r die Veranstaltungs-URLs verwendet wird."
405
 
406
+ # @ tribe-events-calendar
407
+ #: ../admin-views/events-options.php:146
408
+ #, php-format
409
+ msgid "Your current Events URL is <strong>%s</strong>"
410
+ msgstr "Ihre derzeitige Veranstaltungs-URL ist <strong>%s</strong>"
411
 
412
+ # @ tribe-events-calendar
413
+ #: ../admin-views/events-options.php:150
414
+ #: ../admin-views/events-options.php:152
415
+ msgid "Single Event URL slug"
416
+ msgstr "Einzel-Eventseite URL-Slug"
417
 
418
+ # @ tribe-events-calendar
419
+ #: ../admin-views/events-options.php:153
420
+ msgid "The slug used for building a single Event URL."
421
+ msgstr "Der Slug (Permalink), der f&uuml;r eine Event-URL in der Einzelansicht verwendet wird."
422
 
423
+ # @ tribe-events-calendar
424
+ #: ../admin-views/events-options.php:154
425
+ #, php-format
426
+ msgid "<strong>NOTE:</strong> You <em>cannot</em> use the same slug as above. The above should ideally be plural, and this singular.<br />Your single Event URL is like: <strong>%s</strong>"
427
+ msgstr "<strong>HINWEIS:</strong> Sie <em>k&ouml;nnen hier nicht</em> denselben Slug (Permalink/ Titelform) wie oben verwenden. Der obige Wert sollte idealerweise in der Pluralform (Mehrzahl) sein, und dieser hier in der Singularform (Einzahl).<br />Ihre Veranstaltungs-URL in der Einzelansicht wird so aussehen: <strong>%s</strong>"
428
 
429
+ # @ tribe-events-calendar
430
+ #: ../admin-views/events-options.php:159
431
+ #: ../admin-views/events-options.php:161
432
+ msgid "Debug"
433
+ msgstr "Debugging"
434
 
435
+ # @ tribe-events-calendar
436
+ #: ../admin-views/events-options.php:162
437
+ msgid "Debug Events display issues."
438
+ msgstr "Debugging-Informationen f&uuml;r Anzeigeprobleme bei Veranstaltungen."
439
 
440
+ # @ tribe-events-calendar
441
+ #: ../admin-views/events-options.php:163
442
+ #, php-format
443
+ msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the <a href=\"%s\" target=\"_blank\">Debug Bar Plugin</a> and look for the \"Tribe\" tab in the debug output."
444
+ msgstr "Aktivieren Sie diese Option, um Debugging-Informationen zu protokollieren. Standardm&auml;&szlig;ig w&uuml;rde das dann in der PHP-Fehlerprotokolldatei des Servers mitprotokolliert. Wenn Sie diese Protokollinformationen jedoch in Ihrem Browser ansehen wollen, denn empfehlen wir Ihnen die Installation des <a href=\"%s\" target=\"_blank\">Debug Bar Plugin</a> - schauen Sie dann nach dem \"Tribe\"-Reiter auf der Ausgabeseite."
445
 
446
+ # @ tribe-events-calendar
447
+ #: ../admin-views/events-options.php:168
448
+ msgid "Theme Settings"
449
+ msgstr "Theme-Einstellungen"
450
 
451
+ # @ tribe-events-calendar
452
+ #: ../admin-views/events-options.php:171
453
+ #: ../admin-views/events-options.php:173
454
+ msgid "Events Template"
455
+ msgstr "Veranstaltungen-Vorlage"
456
 
457
+ # @ default
458
+ #: ../admin-views/events-options.php:175
459
+ msgid "Default Events Template"
460
+ msgstr "Standard Veranstaltungsvorlage"
 
461
 
462
+ # @ default
463
+ #: ../admin-views/events-options.php:176
464
+ msgid "Default Page Template"
465
+ msgstr "Standard-Seitenvorlage (WordPress)"
466
 
467
+ # @ tribe-events-calendar
468
+ #: ../admin-views/events-options.php:179
469
+ msgid "Choose a page template to control the look and feel of your calendar."
470
+ msgstr "W&auml;hlen Sie eine Seitenvorlage aus, um die Ausgabe und das Layout Ihres Kalenders festzulegen."
471
 
472
+ # @ tribe-events-calendar
473
+ #: ../admin-views/events-options.php:183
474
+ #: ../admin-views/events-options.php:185
475
+ #: ../admin-views/events-options.php:193
476
+ msgid "Add HTML before calendar"
477
+ msgstr "HTML-Code vor dem Kalender einf&uuml;gen"
478
 
479
+ # @ tribe-events-calendar
480
+ #: ../admin-views/events-options.php:187
481
+ msgid "Some themes may require that you add extra divs before the calendar list to help with styling."
482
+ msgstr "Einige WordPress-Themes k&ouml;nnen es erforderlich machen, dass Sie zus&auml;tzliche DIV-Container vor der Kalender-Liste einf&uuml;gen m&uuml;ssen, damit ein Styling via CSS m&ouml;glich wird."
483
 
484
+ # @ tribe-events-calendar
485
+ #: ../admin-views/events-options.php:187
486
+ msgid "This is displayed directly after the header."
487
+ msgstr "Dies wird direkt nach der Kopfzeile (Header) angezeigt."
488
 
489
+ # @ tribe-events-calendar
490
+ #: ../admin-views/events-options.php:187
491
+ #: ../admin-views/events-options.php:195
492
+ msgid "You may use (x)HTML."
493
+ msgstr "Sie k&ouml;nnen (x)HTML verwenden."
494
 
495
+ # @ tribe-events-calendar
496
+ #: ../admin-views/events-options.php:191
497
+ msgid "Add HTML after calendar"
498
+ msgstr "HTML-Code nach dem Kalender hinzuf&uuml;gen"
499
 
500
+ # @ tribe-events-calendar
501
+ #: ../admin-views/events-options.php:195
502
+ msgid "Some themes may require that you add extra divs after the calendar list to help with styling."
503
+ msgstr "Einige WordPress-Themes k&ouml;nnen es erforderlich machen, dass Sie zus&auml;tzliche DIV-Container nach der Kalender-Liste einf&uuml;gen m&uuml;ssen, damit ein Styling via CSS m&ouml;glich wird."
504
 
505
+ # @ tribe-events-calendar
506
+ #: ../admin-views/events-options.php:195
507
+ msgid "This is displayed directly above the footer."
508
+ msgstr "Dies wird direkt &uuml;ber der Fu&szlig;zeile (Footer) angezeigt."
509
 
510
+ # @ tribe-events-calendar
511
+ #: ../admin-views/events-options.php:204
512
+ msgid "Save Changes"
513
+ msgstr "&Auml;nderungen speichern"
514
 
515
+ # @ tribe-events-calendar
516
+ #: ../admin-views/widget-admin-list.php:11
517
+ msgid "Title:"
518
+ msgstr "Titel:"
519
 
520
+ # @ tribe-events-calendar
521
+ #: ../admin-views/widget-admin-list.php:16
522
+ msgid "Show:"
523
+ msgstr "Zeigen:"
524
 
525
+ # @ tribe-events-calendar
526
+ #: ../admin-views/widget-admin-list.php:24
527
+ msgid "Show widget only if there are upcoming events:"
528
+ msgstr "Das Widget nur anzeigen, wenn es bevorstehende Veranstaltungen gibt:"
529
 
530
+ # @ tribe-events-calendar
531
+ #: ../admin-views/widget-admin-list.php:30
532
+ msgid "If you wish to customize the widget display yourself, see the file views/events-list-load-widget-display.php inside the Events Premium plugin."
533
+ msgstr "Wenn Sie die Anzeige des Widgets selbst anpassen m&ouml;chten, m&uuml;ssen Sie in den Plugindateien unter der Datei 'views/events-list-load-widget-display.php' Ihre Bearbeitungen vornehmen (gilt f&uuml;r das 'Events Calendar Pro' Premium Plugin)."
534
 
535
+ # @ tribe-events-calendar
536
+ #: ../admin-views/organizer-meta-box.php:11
537
+ msgid "Organizer Name:"
538
+ msgstr "Veranstalter-Name:"
539
 
540
+ # @ tribe-events-calendar
541
+ #: ../admin-views/organizer-meta-box.php:21
542
+ msgid "Website:"
543
+ msgstr "Webseite:"
544
 
545
+ # @ tribe-events-calendar
546
+ #: ../lib/tribe-admin-events-list.class.php:159
547
+ #: ../lib/the-events-calendar.class.php:526
548
+ msgid "Event Categories"
549
+ msgstr "Veranstalt.-Kategorien"
550
 
551
+ # @ tribe-events-calendar
552
+ #: ../lib/tribe-admin-events-list.class.php:164
553
+ msgid "Start Date"
554
+ msgstr "Start Datum & Zeit"
555
 
556
+ # @ tribe-events-calendar
557
+ #: ../lib/tribe-admin-events-list.class.php:165
558
+ msgid "End Date"
559
+ msgstr "Ende Datum & Zeit"
560
 
561
+ # @ tribe-events-calendar
562
+ #: ../lib/tribe-admin-events-list.class.php:166
563
+ msgid "Recurring?"
564
+ msgstr "Wiederkehrend?"
565
 
566
+ #: ../lib/tribe-admin-events-list.class.php:194
567
+ msgid "Yes"
568
+ msgstr "Ja"
 
569
 
570
+ #: ../lib/tribe-admin-events-list.class.php:194
571
+ msgid "No"
572
+ msgstr "Nein"
 
573
 
574
+ # @ tribe-events-calendar
575
+ #: ../lib/tribe-admin-events-list.class.php:244
576
+ #, php-format
577
+ msgid "All %s"
578
+ msgstr "Alle %s"
579
 
580
+ # @ tribe-events-calendar
581
+ #: ../lib/tribe-view-helpers.class.php:16
582
+ #: ../lib/tribe-view-helpers.class.php:33
583
+ msgid "Select a Country:"
584
+ msgstr "Ein Land ausw&auml;hlen:"
585
 
586
+ # @ tribe-events-calendar
587
+ #: ../lib/tribe-view-helpers.class.php:34
588
+ #: ../lib/template-tags.php:502
589
+ msgid "United States"
590
+ msgstr "Vereinigte Staaten"
591
 
592
+ # @ tribe-events-calendar
593
+ #: ../lib/tribe-view-helpers.class.php:35
594
+ msgid "Afghanistan"
595
+ msgstr "Afghanistan"
596
 
597
+ # @ tribe-events-calendar
598
+ #: ../lib/tribe-view-helpers.class.php:36
599
+ msgid "Albania"
600
+ msgstr "Albanien"
601
 
602
+ # @ tribe-events-calendar
603
+ #: ../lib/tribe-view-helpers.class.php:37
604
+ msgid "Algeria"
605
+ msgstr "Algerien"
606
 
607
+ # @ tribe-events-calendar
608
+ #: ../lib/tribe-view-helpers.class.php:38
609
+ msgid "American Samoa"
610
+ msgstr "Amerikanisch Samoa"
611
 
612
+ # @ tribe-events-calendar
613
+ #: ../lib/tribe-view-helpers.class.php:39
614
+ msgid "Andorra"
615
+ msgstr "Andorra"
616
 
617
+ # @ tribe-events-calendar
618
+ #: ../lib/tribe-view-helpers.class.php:40
619
+ msgid "Angola"
620
+ msgstr "Angola"
621
 
622
+ # @ tribe-events-calendar
623
+ #: ../lib/tribe-view-helpers.class.php:41
624
+ msgid "Anguilla"
625
+ msgstr "Anguilla"
626
 
627
+ # @ tribe-events-calendar
628
+ #: ../lib/tribe-view-helpers.class.php:42
629
+ msgid "Antarctica"
630
+ msgstr "Antarktika"
631
 
632
+ # @ tribe-events-calendar
633
+ #: ../lib/tribe-view-helpers.class.php:43
634
+ msgid "Antigua And Barbuda"
635
+ msgstr "Antigua und Barbuda"
636
 
637
+ # @ tribe-events-calendar
638
+ #: ../lib/tribe-view-helpers.class.php:44
639
+ msgid "Argentina"
640
+ msgstr "Argentinien"
641
 
642
+ # @ tribe-events-calendar
643
+ #: ../lib/tribe-view-helpers.class.php:45
644
+ msgid "Armenia"
645
+ msgstr "Armenien"
646
 
647
+ # @ tribe-events-calendar
648
+ #: ../lib/tribe-view-helpers.class.php:46
649
+ msgid "Aruba"
650
+ msgstr "Aruba"
651
 
652
+ # @ tribe-events-calendar
653
+ #: ../lib/tribe-view-helpers.class.php:47
654
+ msgid "Australia"
655
+ msgstr "Australien"
656
 
657
+ # @ tribe-events-calendar
658
+ #: ../lib/tribe-view-helpers.class.php:48
659
+ msgid "Austria"
660
+ msgstr "&Ouml;sterreich"
661
 
662
+ # @ tribe-events-calendar
663
+ #: ../lib/tribe-view-helpers.class.php:49
664
+ msgid "Azerbaijan"
665
+ msgstr "Aserbaidschan"
666
 
667
+ # @ tribe-events-calendar
668
+ #: ../lib/tribe-view-helpers.class.php:50
669
+ msgid "Bahamas"
670
+ msgstr "Bahamas"
671
 
672
+ # @ tribe-events-calendar
673
+ #: ../lib/tribe-view-helpers.class.php:51
674
+ msgid "Bahrain"
675
+ msgstr "Bahrain"
676
 
677
+ # @ tribe-events-calendar
678
+ #: ../lib/tribe-view-helpers.class.php:52
679
+ msgid "Bangladesh"
680
+ msgstr "Bangladesh"
681
 
682
+ # @ tribe-events-calendar
683
+ #: ../lib/tribe-view-helpers.class.php:53
684
+ msgid "Barbados"
685
+ msgstr "Barbados"
686
 
687
+ # @ tribe-events-calendar
688
+ #: ../lib/tribe-view-helpers.class.php:54
689
+ msgid "Belarus"
690
+ msgstr "Wei&szlig;russland"
691
 
692
+ # @ tribe-events-calendar
693
+ #: ../lib/tribe-view-helpers.class.php:55
694
+ msgid "Belgium"
695
+ msgstr "Belgien"
696
 
697
+ # @ tribe-events-calendar
698
+ #: ../lib/tribe-view-helpers.class.php:56
699
+ msgid "Belize"
700
+ msgstr "Belize"
701
 
702
+ # @ tribe-events-calendar
703
+ #: ../lib/tribe-view-helpers.class.php:57
704
+ msgid "Benin"
705
+ msgstr "Benin"
706
 
707
+ # @ tribe-events-calendar
708
+ #: ../lib/tribe-view-helpers.class.php:58
709
+ msgid "Bermuda"
710
+ msgstr "Bermuda"
711
 
712
+ # @ tribe-events-calendar
713
+ #: ../lib/tribe-view-helpers.class.php:59
714
+ msgid "Bhutan"
715
+ msgstr "Bhutan"
716
 
717
+ # @ tribe-events-calendar
718
+ #: ../lib/tribe-view-helpers.class.php:60
719
+ msgid "Bolivia"
720
+ msgstr "Bolivien"
721
 
722
+ # @ tribe-events-calendar
723
+ #: ../lib/tribe-view-helpers.class.php:61
724
+ msgid "Bosnia And Herzegowina"
725
+ msgstr "Bosnien und Herzegowina"
726
 
727
+ # @ tribe-events-calendar
728
+ #: ../lib/tribe-view-helpers.class.php:62
729
+ msgid "Botswana"
730
+ msgstr "Botswana"
731
 
732
+ # @ tribe-events-calendar
733
+ #: ../lib/tribe-view-helpers.class.php:63
734
+ msgid "Bouvet Island"
735
+ msgstr "Bouvetinsel"
736
 
737
+ # @ tribe-events-calendar
738
+ #: ../lib/tribe-view-helpers.class.php:64
739
+ msgid "Brazil"
740
+ msgstr "Brasilien"
741
 
742
+ # @ tribe-events-calendar
743
+ #: ../lib/tribe-view-helpers.class.php:65
744
+ msgid "British Indian Ocean Territory"
745
+ msgstr "Britisches Territorium im Indischen Ozean"
746
 
747
+ # @ tribe-events-calendar
748
+ #: ../lib/tribe-view-helpers.class.php:66
749
+ msgid "Brunei Darussalam"
750
+ msgstr "Brunei"
751
 
752
+ # @ tribe-events-calendar
753
+ #: ../lib/tribe-view-helpers.class.php:67
754
+ msgid "Bulgaria"
755
+ msgstr "Bulgarien"
756
 
757
+ # @ tribe-events-calendar
758
+ #: ../lib/tribe-view-helpers.class.php:68
759
+ msgid "Burkina Faso"
760
+ msgstr "Burkina Faso"
761
 
762
+ # @ tribe-events-calendar
763
+ #: ../lib/tribe-view-helpers.class.php:69
764
+ msgid "Burundi"
765
+ msgstr "Burundi"
766
 
767
+ # @ tribe-events-calendar
768
+ #: ../lib/tribe-view-helpers.class.php:70
769
+ msgid "Cambodia"
770
+ msgstr "Kambodscha"
771
 
772
+ # @ tribe-events-calendar
773
+ #: ../lib/tribe-view-helpers.class.php:71
774
+ msgid "Cameroon"
775
+ msgstr "Kamerun"
776
 
777
+ # @ tribe-events-calendar
778
+ #: ../lib/tribe-view-helpers.class.php:72
779
+ msgid "Canada"
780
+ msgstr "Kanada"
781
 
782
+ # @ tribe-events-calendar
783
+ #: ../lib/tribe-view-helpers.class.php:73
784
+ msgid "Cape Verde"
785
+ msgstr "Kapverdische Inseln"
786
 
787
+ # @ tribe-events-calendar
788
+ #: ../lib/tribe-view-helpers.class.php:74
789
+ msgid "Cayman Islands"
790
+ msgstr "Cayman Inseln"
791
 
792
+ # @ tribe-events-calendar
793
+ #: ../lib/tribe-view-helpers.class.php:75
794
+ msgid "Central African Republic"
795
+ msgstr "Zentralafrikanische Republik"
796
 
797
+ # @ tribe-events-calendar
798
+ #: ../lib/tribe-view-helpers.class.php:76
799
+ msgid "Chad"
800
+ msgstr "Tschad"
801
 
802
+ # @ tribe-events-calendar
803
+ #: ../lib/tribe-view-helpers.class.php:77
804
+ msgid "Chile"
805
+ msgstr "Chile"
806
 
807
+ # @ tribe-events-calendar
808
+ #: ../lib/tribe-view-helpers.class.php:78
809
+ msgid "China"
810
+ msgstr "China"
811
 
812
+ # @ tribe-events-calendar
813
+ #: ../lib/tribe-view-helpers.class.php:79
814
+ msgid "Christmas Island"
815
+ msgstr "Weihnachtsinseln"
816
 
817
+ # @ tribe-events-calendar
818
+ #: ../lib/tribe-view-helpers.class.php:80
819
+ msgid "Cocos (Keeling) Islands"
820
+ msgstr "Kokosinseln"
821
 
822
+ # @ tribe-events-calendar
823
+ #: ../lib/tribe-view-helpers.class.php:81
824
+ msgid "Colombia"
825
+ msgstr "Kolumbien"
826
 
827
+ # @ tribe-events-calendar
828
+ #: ../lib/tribe-view-helpers.class.php:82
829
+ msgid "Comoros"
830
+ msgstr "Komoren"
831
 
832
+ # @ tribe-events-calendar
833
+ #: ../lib/tribe-view-helpers.class.php:83
834
+ msgid "Congo"
835
+ msgstr "Kongo"
836
 
837
+ # @ tribe-events-calendar
838
+ #: ../lib/tribe-view-helpers.class.php:84
839
+ msgid "Congo, The Democratic Republic Of The"
840
+ msgstr "Demokratische Republik Kongo"
841
 
842
+ # @ tribe-events-calendar
843
+ #: ../lib/tribe-view-helpers.class.php:85
844
+ msgid "Cook Islands"
845
+ msgstr "Cook-Inseln"
846
 
847
+ # @ tribe-events-calendar
848
+ #: ../lib/tribe-view-helpers.class.php:86
849
+ msgid "Costa Rica"
850
+ msgstr "Costa Rica"
851
 
852
+ # @ tribe-events-calendar
853
+ #: ../lib/tribe-view-helpers.class.php:87
854
+ msgid "Cote D'Ivoire"
855
+ msgstr "Elfenbeink&uuml;ste"
856
 
857
+ # @ tribe-events-calendar
858
+ #: ../lib/tribe-view-helpers.class.php:88
859
+ msgid "Croatia (Local Name: Hrvatska)"
860
+ msgstr "Kroatien"
861
 
862
+ # @ tribe-events-calendar
863
+ #: ../lib/tribe-view-helpers.class.php:89
864
+ msgid "Cuba"
865
+ msgstr "Kuba"
866
 
867
+ # @ tribe-events-calendar
868
+ #: ../lib/tribe-view-helpers.class.php:90
869
+ msgid "Cyprus"
870
+ msgstr "Zypern"
871
 
872
+ # @ tribe-events-calendar
873
+ #: ../lib/tribe-view-helpers.class.php:91
874
+ msgid "Czech Republic"
875
+ msgstr "Tschechische Republik"
876
 
877
+ # @ tribe-events-calendar
878
+ #: ../lib/tribe-view-helpers.class.php:92
879
+ msgid "Denmark"
880
+ msgstr "D&auml;nemark"
881
 
882
+ # @ tribe-events-calendar
883
+ #: ../lib/tribe-view-helpers.class.php:93
884
+ msgid "Djibouti"
885
+ msgstr "Djibouti"
886
 
887
+ # @ tribe-events-calendar
888
+ #: ../lib/tribe-view-helpers.class.php:94
889
+ msgid "Dominica"
890
+ msgstr "Dominica"
891
 
892
+ # @ tribe-events-calendar
893
+ #: ../lib/tribe-view-helpers.class.php:95
894
+ msgid "Dominican Republic"
895
+ msgstr "Dominikanische Republik"
896
 
897
+ # @ tribe-events-calendar
898
+ #: ../lib/tribe-view-helpers.class.php:96
899
+ msgid "East Timor"
900
+ msgstr "Osttimor"
901
 
902
+ # @ tribe-events-calendar
903
+ #: ../lib/tribe-view-helpers.class.php:97
904
+ msgid "Ecuador"
905
+ msgstr "Ecuador"
906
 
907
+ # @ tribe-events-calendar
908
+ #: ../lib/tribe-view-helpers.class.php:98
909
+ msgid "Egypt"
910
+ msgstr "&Auml;gypten"
911
 
912
+ # @ tribe-events-calendar
913
+ #: ../lib/tribe-view-helpers.class.php:99
914
+ msgid "El Salvador"
915
+ msgstr "El Salvador"
916
 
917
+ # @ tribe-events-calendar
918
+ #: ../lib/tribe-view-helpers.class.php:100
919
+ msgid "Equatorial Guinea"
920
+ msgstr "&Auml;quatorialguinea"
921
 
922
+ # @ tribe-events-calendar
923
+ #: ../lib/tribe-view-helpers.class.php:101
924
+ msgid "Eritrea"
925
+ msgstr "Eritrea"
926
 
927
+ # @ tribe-events-calendar
928
+ #: ../lib/tribe-view-helpers.class.php:102
929
+ msgid "Estonia"
930
+ msgstr "Estland"
931
 
932
+ # @ tribe-events-calendar
933
+ #: ../lib/tribe-view-helpers.class.php:103
934
+ msgid "Ethiopia"
935
+ msgstr "&Auml;thophien"
936
 
937
+ # @ tribe-events-calendar
938
+ #: ../lib/tribe-view-helpers.class.php:104
939
+ msgid "Falkland Islands (Malvinas)"
940
+ msgstr "Falkland-Inseln (Malvinas)"
941
 
942
+ # @ tribe-events-calendar
943
+ #: ../lib/tribe-view-helpers.class.php:105
944
+ msgid "Faroe Islands"
945
+ msgstr "F&auml;r&ouml;er"
946
 
947
+ # @ tribe-events-calendar
948
+ #: ../lib/tribe-view-helpers.class.php:106
949
+ msgid "Fiji"
950
+ msgstr "Fiji"
951
 
952
+ # @ tribe-events-calendar
953
+ #: ../lib/tribe-view-helpers.class.php:107
954
+ msgid "Finland"
955
+ msgstr "Finnland"
956
 
957
+ # @ tribe-events-calendar
958
+ #: ../lib/tribe-view-helpers.class.php:108
959
+ msgid "France"
960
+ msgstr "Frankreich"
961
 
962
+ # @ tribe-events-calendar
963
+ #: ../lib/tribe-view-helpers.class.php:109
964
+ msgid "France, Metropolitan"
965
+ msgstr "Frankreich (mit Korsika)"
966
 
967
+ # @ tribe-events-calendar
968
+ #: ../lib/tribe-view-helpers.class.php:110
969
+ msgid "French Guiana"
970
+ msgstr "Franz&ouml;sisch-Guayana"
971
 
972
+ # @ tribe-events-calendar
973
+ #: ../lib/tribe-view-helpers.class.php:111
974
+ msgid "French Polynesia"
975
+ msgstr "Franz&ouml;sisch-Polynesien"
976
 
977
+ # @ tribe-events-calendar
978
+ #: ../lib/tribe-view-helpers.class.php:112
979
+ msgid "French Southern Territories"
980
+ msgstr "Franz&ouml;sische S&uuml;d- und Antarktisgebiete"
981
 
982
+ # @ tribe-events-calendar
983
+ #: ../lib/tribe-view-helpers.class.php:113
984
+ msgid "Gabon"
985
+ msgstr "Gabon"
986
 
987
+ # @ tribe-events-calendar
988
+ #: ../lib/tribe-view-helpers.class.php:114
989
+ msgid "Gambia"
990
+ msgstr "Gambia"
991
 
992
+ # @ tribe-events-calendar
993
+ #: ../lib/tribe-view-helpers.class.php:115
994
+ #: ../lib/tribe-view-helpers.class.php:303
995
+ msgid "Georgia"
996
+ msgstr "Georgien"
997
 
998
+ # @ tribe-events-calendar
999
+ #: ../lib/tribe-view-helpers.class.php:116
1000
+ msgid "Germany"
1001
+ msgstr "Deutschland"
1002
 
1003
+ # @ tribe-events-calendar
1004
+ #: ../lib/tribe-view-helpers.class.php:117
1005
+ msgid "Ghana"
1006
+ msgstr "Ghana"
1007
 
1008
+ # @ tribe-events-calendar
1009
+ #: ../lib/tribe-view-helpers.class.php:118
1010
+ msgid "Gibraltar"
1011
+ msgstr "Gibraltar"
1012
 
1013
+ # @ tribe-events-calendar
1014
+ #: ../lib/tribe-view-helpers.class.php:119
1015
+ msgid "Greece"
1016
+ msgstr "Griechenland"
1017
 
1018
+ # @ tribe-events-calendar
1019
+ #: ../lib/tribe-view-helpers.class.php:120
1020
+ msgid "Greenland"
1021
+ msgstr "Gr&ouml;nland"
1022
 
1023
+ # @ tribe-events-calendar
1024
+ #: ../lib/tribe-view-helpers.class.php:121
1025
+ msgid "Grenada"
1026
+ msgstr "Grenada"
1027
 
1028
+ # @ tribe-events-calendar
1029
+ #: ../lib/tribe-view-helpers.class.php:122
1030
+ msgid "Guadeloupe"
1031
+ msgstr "Guadeloupe"
1032
 
1033
+ # @ tribe-events-calendar
1034
+ #: ../lib/tribe-view-helpers.class.php:123
1035
+ msgid "Guam"
1036
+ msgstr "Guam"
1037
 
1038
+ # @ tribe-events-calendar
1039
+ #: ../lib/tribe-view-helpers.class.php:124
1040
+ msgid "Guatemala"
1041
+ msgstr "Guatemala"
1042
 
1043
+ # @ tribe-events-calendar
1044
+ #: ../lib/tribe-view-helpers.class.php:125
1045
+ msgid "Guinea"
1046
+ msgstr "Guinea"
1047
 
1048
+ # @ tribe-events-calendar
1049
+ #: ../lib/tribe-view-helpers.class.php:126
1050
+ msgid "Guinea-Bissau"
1051
+ msgstr "Guinea-Bissau"
1052
 
1053
+ # @ tribe-events-calendar
1054
+ #: ../lib/tribe-view-helpers.class.php:127
1055
+ msgid "Guyana"
1056
+ msgstr "Guyana"
1057
 
1058
+ # @ tribe-events-calendar
1059
+ #: ../lib/tribe-view-helpers.class.php:128
1060
+ msgid "Haiti"
1061
+ msgstr "Haiti"
1062
 
1063
+ # @ tribe-events-calendar
1064
+ #: ../lib/tribe-view-helpers.class.php:129
1065
+ msgid "Heard And Mc Donald Islands"
1066
+ msgstr "Heard und McDonaldinseln"
1067
 
1068
+ # @ tribe-events-calendar
1069
+ #: ../lib/tribe-view-helpers.class.php:130
1070
+ msgid "Holy See (Vatican City State)"
1071
+ msgstr "Vatikanstadt (Heiliger Stuhl)"
1072
 
1073
+ # @ tribe-events-calendar
1074
+ #: ../lib/tribe-view-helpers.class.php:131
1075
+ msgid "Honduras"
1076
+ msgstr "Honduras"
1077
 
1078
+ # @ tribe-events-calendar
1079
+ #: ../lib/tribe-view-helpers.class.php:132
1080
+ msgid "Hong Kong"
1081
+ msgstr "Hongkong"
1082
 
1083
+ # @ tribe-events-calendar
1084
+ #: ../lib/tribe-view-helpers.class.php:133
1085
+ msgid "Hungary"
1086
+ msgstr "Ungarn"
1087
 
1088
+ # @ tribe-events-calendar
1089
+ #: ../lib/tribe-view-helpers.class.php:134
1090
+ msgid "Iceland"
1091
+ msgstr "Island"
1092
 
1093
+ # @ tribe-events-calendar
1094
+ #: ../lib/tribe-view-helpers.class.php:135
1095
+ msgid "India"
1096
+ msgstr "Indien"
1097
 
1098
+ # @ tribe-events-calendar
1099
+ #: ../lib/tribe-view-helpers.class.php:136
1100
+ msgid "Indonesia"
1101
+ msgstr "Indonesien"
1102
 
1103
+ # @ tribe-events-calendar
1104
+ #: ../lib/tribe-view-helpers.class.php:137
1105
+ msgid "Iran (Islamic Republic Of)"
1106
+ msgstr "Iran (Islamische Republik)"
1107
 
1108
+ # @ tribe-events-calendar
1109
+ #: ../lib/tribe-view-helpers.class.php:138
1110
+ msgid "Iraq"
1111
+ msgstr "Irak"
1112
 
1113
+ # @ tribe-events-calendar
1114
+ #: ../lib/tribe-view-helpers.class.php:139
1115
+ msgid "Ireland"
1116
+ msgstr "Irland"
1117
 
1118
+ # @ tribe-events-calendar
1119
+ #: ../lib/tribe-view-helpers.class.php:140
1120
+ msgid "Israel"
1121
+ msgstr "Israel"
1122
 
1123
+ # @ tribe-events-calendar
1124
+ #: ../lib/tribe-view-helpers.class.php:141
1125
+ msgid "Italy"
1126
+ msgstr "Italien"
1127
 
1128
+ # @ tribe-events-calendar
1129
+ #: ../lib/tribe-view-helpers.class.php:142
1130
+ msgid "Jamaica"
1131
+ msgstr "Jamaika"
1132
 
1133
+ # @ tribe-events-calendar
1134
+ #: ../lib/tribe-view-helpers.class.php:143
1135
+ msgid "Japan"
1136
+ msgstr "Japan"
1137
 
1138
+ # @ tribe-events-calendar
1139
+ #: ../lib/tribe-view-helpers.class.php:144
1140
+ msgid "Jordan"
1141
+ msgstr "Jordanien"
1142
 
1143
+ # @ tribe-events-calendar
1144
+ #: ../lib/tribe-view-helpers.class.php:145
1145
+ msgid "Kazakhstan"
1146
+ msgstr "Kasachstan"
1147
 
1148
+ # @ tribe-events-calendar
1149
+ #: ../lib/tribe-view-helpers.class.php:146
1150
+ msgid "Kenya"
1151
+ msgstr "Kenia"
1152
 
1153
+ # @ tribe-events-calendar
1154
+ #: ../lib/tribe-view-helpers.class.php:147
1155
+ msgid "Kiribati"
1156
+ msgstr "Kiribati"
1157
 
1158
+ # @ tribe-events-calendar
1159
+ #: ../lib/tribe-view-helpers.class.php:148
1160
+ msgid "Korea, Democratic People's Republic Of"
1161
+ msgstr "Nordkorea (Volksrepublik)"
1162
 
1163
+ # @ tribe-events-calendar
1164
+ #: ../lib/tribe-view-helpers.class.php:149
1165
+ msgid "Korea, Republic Of"
1166
+ msgstr "S&uuml;dkorea"
1167
 
1168
+ # @ tribe-events-calendar
1169
+ #: ../lib/tribe-view-helpers.class.php:150
1170
+ msgid "Kuwait"
1171
+ msgstr "Kuwait"
1172
 
1173
+ # @ tribe-events-calendar
1174
+ #: ../lib/tribe-view-helpers.class.php:151
1175
+ msgid "Kyrgyzstan"
1176
+ msgstr "Kirgistan"
1177
 
1178
+ # @ tribe-events-calendar
1179
+ #: ../lib/tribe-view-helpers.class.php:152
1180
+ msgid "Lao People's Democratic Republic"
1181
+ msgstr "Laos"
1182
 
1183
+ # @ tribe-events-calendar
1184
+ #: ../lib/tribe-view-helpers.class.php:153
1185
+ msgid "Latvia"
1186
+ msgstr "Lettland"
1187
 
1188
+ # @ tribe-events-calendar
1189
+ #: ../lib/tribe-view-helpers.class.php:154
1190
+ msgid "Lebanon"
1191
+ msgstr "Libanon"
1192
 
1193
+ # @ tribe-events-calendar
1194
+ #: ../lib/tribe-view-helpers.class.php:155
1195
+ msgid "Lesotho"
1196
+ msgstr "Lesotho"
1197
 
1198
+ # @ tribe-events-calendar
1199
+ #: ../lib/tribe-view-helpers.class.php:156
1200
+ msgid "Liberia"
1201
+ msgstr "Liberia"
1202
 
1203
+ # @ tribe-events-calendar
1204
+ #: ../lib/tribe-view-helpers.class.php:157
1205
+ msgid "Libya"
1206
+ msgstr "Libyen"
1207
 
1208
+ # @ tribe-events-calendar
1209
+ #: ../lib/tribe-view-helpers.class.php:158
1210
+ msgid "Liechtenstein"
1211
+ msgstr "Liechtenstein"
1212
 
1213
+ # @ tribe-events-calendar
1214
+ #: ../lib/tribe-view-helpers.class.php:159
1215
+ msgid "Lithuania"
1216
+ msgstr "Lithauen"
1217
 
1218
+ # @ tribe-events-calendar
1219
+ #: ../lib/tribe-view-helpers.class.php:160
1220
+ msgid "Luxembourg"
1221
+ msgstr "Luxemburg"
1222
 
1223
+ # @ tribe-events-calendar
1224
+ #: ../lib/tribe-view-helpers.class.php:161
1225
+ msgid "Macau"
1226
+ msgstr "Macau"
1227
 
1228
+ # @ tribe-events-calendar
1229
+ #: ../lib/tribe-view-helpers.class.php:162
1230
+ msgid "Macedonia"
1231
+ msgstr "Mazedonien"
1232
 
1233
+ # @ tribe-events-calendar
1234
+ #: ../lib/tribe-view-helpers.class.php:163
1235
+ msgid "Madagascar"
1236
+ msgstr "Madagascar"
1237
 
1238
+ # @ tribe-events-calendar
1239
+ #: ../lib/tribe-view-helpers.class.php:164
1240
+ msgid "Malawi"
1241
+ msgstr "Malawi"
1242
 
1243
+ # @ tribe-events-calendar
1244
+ #: ../lib/tribe-view-helpers.class.php:165
1245
+ msgid "Malaysia"
1246
+ msgstr "Malaysia"
1247
 
1248
+ # @ tribe-events-calendar
1249
+ #: ../lib/tribe-view-helpers.class.php:166
1250
+ msgid "Maldives"
1251
+ msgstr "Maldiven"
1252
 
1253
+ # @ tribe-events-calendar
1254
+ #: ../lib/tribe-view-helpers.class.php:167
1255
+ msgid "Mali"
1256
+ msgstr "Mali"
1257
 
1258
+ # @ tribe-events-calendar
1259
+ #: ../lib/tribe-view-helpers.class.php:168
1260
+ msgid "Malta"
1261
+ msgstr "Malta"
1262
 
1263
+ # @ tribe-events-calendar
1264
+ #: ../lib/tribe-view-helpers.class.php:169
1265
+ msgid "Marshall Islands"
1266
+ msgstr "Marshallinseln"
1267
 
1268
+ # @ tribe-events-calendar
1269
+ #: ../lib/tribe-view-helpers.class.php:170
1270
+ msgid "Martinique"
1271
+ msgstr "Martinique"
1272
 
1273
+ # @ tribe-events-calendar
1274
+ #: ../lib/tribe-view-helpers.class.php:171
1275
+ msgid "Mauritania"
1276
+ msgstr "Mauretanien"
1277
 
1278
+ # @ tribe-events-calendar
1279
+ #: ../lib/tribe-view-helpers.class.php:172
1280
+ msgid "Mauritius"
1281
+ msgstr "Mauritius"
1282
 
1283
+ # @ tribe-events-calendar
1284
+ #: ../lib/tribe-view-helpers.class.php:173
1285
+ msgid "Mayotte"
1286
+ msgstr "Mayotte"
1287
 
1288
+ # @ tribe-events-calendar
1289
+ #: ../lib/tribe-view-helpers.class.php:174
1290
+ msgid "Mexico"
1291
+ msgstr "Mexiko"
1292
 
1293
+ # @ tribe-events-calendar
1294
+ #: ../lib/tribe-view-helpers.class.php:175
1295
+ msgid "Micronesia, Federated States Of"
1296
+ msgstr "Mikronesien"
1297
 
1298
+ # @ tribe-events-calendar
1299
+ #: ../lib/tribe-view-helpers.class.php:176
1300
+ msgid "Moldova, Republic Of"
1301
+ msgstr "Moldawien"
1302
 
1303
+ # @ tribe-events-calendar
1304
+ #: ../lib/tribe-view-helpers.class.php:177
1305
+ msgid "Monaco"
1306
+ msgstr "Monaco"
1307
 
1308
+ # @ tribe-events-calendar
1309
+ #: ../lib/tribe-view-helpers.class.php:178
1310
+ msgid "Mongolia"
1311
+ msgstr "Mongolei"
1312
 
1313
+ # @ tribe-events-calendar
1314
+ #: ../lib/tribe-view-helpers.class.php:179
1315
+ msgid "Montenegro"
1316
+ msgstr "Montenegro"
1317
 
1318
+ # @ tribe-events-calendar
1319
+ #: ../lib/tribe-view-helpers.class.php:180
1320
+ msgid "Montserrat"
1321
+ msgstr "Montserrat"
1322
 
1323
+ # @ tribe-events-calendar
1324
+ #: ../lib/tribe-view-helpers.class.php:181
1325
+ msgid "Morocco"
1326
+ msgstr "Marokko"
1327
 
1328
+ # @ tribe-events-calendar
1329
+ #: ../lib/tribe-view-helpers.class.php:182
1330
+ msgid "Mozambique"
1331
+ msgstr "Mosambik"
1332
 
1333
+ # @ tribe-events-calendar
1334
+ #: ../lib/tribe-view-helpers.class.php:183
1335
+ msgid "Myanmar"
1336
+ msgstr "Myanmar"
1337
 
1338
+ # @ tribe-events-calendar
1339
+ #: ../lib/tribe-view-helpers.class.php:184
1340
+ msgid "Namibia"
1341
+ msgstr "Namibia"
1342
 
1343
+ # @ tribe-events-calendar
1344
+ #: ../lib/tribe-view-helpers.class.php:185
1345
+ msgid "Nauru"
1346
+ msgstr "Nauru"
1347
 
1348
+ # @ tribe-events-calendar
1349
+ #: ../lib/tribe-view-helpers.class.php:186
1350
+ msgid "Nepal"
1351
+ msgstr "Nepal"
1352
 
1353
+ # @ tribe-events-calendar
1354
+ #: ../lib/tribe-view-helpers.class.php:187
1355
+ msgid "Netherlands"
1356
+ msgstr "Niederlande"
1357
 
1358
+ # @ tribe-events-calendar
1359
+ #: ../lib/tribe-view-helpers.class.php:188
1360
+ msgid "Netherlands Antilles"
1361
+ msgstr "Niederl&auml;ndische Antillen"
1362
 
1363
+ # @ tribe-events-calendar
1364
+ #: ../lib/tribe-view-helpers.class.php:189
1365
+ msgid "New Caledonia"
1366
+ msgstr "Neukaledonien"
1367
 
1368
+ # @ tribe-events-calendar
1369
+ #: ../lib/tribe-view-helpers.class.php:190
1370
+ msgid "New Zealand"
1371
+ msgstr "Neuseeland"
1372
 
1373
+ # @ tribe-events-calendar
1374
+ #: ../lib/tribe-view-helpers.class.php:191
1375
+ msgid "Nicaragua"
1376
+ msgstr "Nicaragua"
1377
 
1378
+ # @ tribe-events-calendar
1379
+ #: ../lib/tribe-view-helpers.class.php:192
1380
+ msgid "Niger"
1381
+ msgstr "Niger"
1382
 
1383
+ # @ tribe-events-calendar
1384
+ #: ../lib/tribe-view-helpers.class.php:193
1385
+ msgid "Nigeria"
1386
+ msgstr "Nigeria"
1387
 
1388
+ # @ tribe-events-calendar
1389
+ #: ../lib/tribe-view-helpers.class.php:194
1390
+ msgid "Niue"
1391
+ msgstr "Niue"
1392
 
1393
+ # @ tribe-events-calendar
1394
+ #: ../lib/tribe-view-helpers.class.php:195
1395
+ msgid "Norfolk Island"
1396
+ msgstr "Norfolkinsel"
1397
 
1398
+ # @ tribe-events-calendar
1399
+ #: ../lib/tribe-view-helpers.class.php:196
1400
+ msgid "Northern Mariana Islands"
1401
+ msgstr "N&ouml;rdliche Marianen"
1402
 
1403
+ # @ tribe-events-calendar
1404
+ #: ../lib/tribe-view-helpers.class.php:197
1405
+ msgid "Norway"
1406
+ msgstr "Norwegen"
1407
 
1408
+ # @ tribe-events-calendar
1409
+ #: ../lib/tribe-view-helpers.class.php:198
1410
+ msgid "Oman"
1411
+ msgstr "Oman"
1412
 
1413
+ # @ tribe-events-calendar
1414
+ #: ../lib/tribe-view-helpers.class.php:199
1415
+ msgid "Pakistan"
1416
+ msgstr "Pakistan"
1417
 
1418
+ # @ tribe-events-calendar
1419
+ #: ../lib/tribe-view-helpers.class.php:200
1420
+ msgid "Palau"
1421
+ msgstr "Palau"
1422
 
1423
+ # @ tribe-events-calendar
1424
+ #: ../lib/tribe-view-helpers.class.php:201
1425
+ msgid "Panama"
1426
+ msgstr "Panama"
1427
 
1428
+ # @ tribe-events-calendar
1429
+ #: ../lib/tribe-view-helpers.class.php:202
1430
+ msgid "Papua New Guinea"
1431
+ msgstr "Papua-Neuguinea"
1432
 
1433
+ # @ tribe-events-calendar
1434
+ #: ../lib/tribe-view-helpers.class.php:203
1435
+ msgid "Paraguay"
1436
+ msgstr "Paraguay"
1437
 
1438
+ # @ tribe-events-calendar
1439
+ #: ../lib/tribe-view-helpers.class.php:204
1440
+ msgid "Peru"
1441
+ msgstr "Peru"
1442
 
1443
+ # @ tribe-events-calendar
1444
+ #: ../lib/tribe-view-helpers.class.php:205
1445
+ msgid "Philippines"
1446
+ msgstr "Philippinen"
1447
 
1448
+ # @ tribe-events-calendar
1449
+ #: ../lib/tribe-view-helpers.class.php:206
1450
+ msgid "Pitcairn"
1451
+ msgstr "Pitcairn"
1452
 
1453
+ # @ tribe-events-calendar
1454
+ #: ../lib/tribe-view-helpers.class.php:207
1455
+ msgid "Poland"
1456
+ msgstr "Polen"
1457
 
1458
+ # @ tribe-events-calendar
1459
+ #: ../lib/tribe-view-helpers.class.php:208
1460
+ msgid "Portugal"
1461
+ msgstr "Portugal"
1462
 
1463
+ # @ tribe-events-calendar
1464
+ #: ../lib/tribe-view-helpers.class.php:209
1465
+ msgid "Puerto Rico"
1466
+ msgstr "Puerto Rico"
1467
 
1468
+ # @ tribe-events-calendar
1469
+ #: ../lib/tribe-view-helpers.class.php:210
1470
+ msgid "Qatar"
1471
+ msgstr "Katar"
1472
 
1473
+ # @ tribe-events-calendar
1474
+ #: ../lib/tribe-view-helpers.class.php:211
1475
+ msgid "Reunion"
1476
+ msgstr "Reunion"
1477
 
1478
+ # @ tribe-events-calendar
1479
+ #: ../lib/tribe-view-helpers.class.php:212
1480
+ msgid "Romania"
1481
+ msgstr "Rum&auml;nien"
1482
 
1483
+ # @ tribe-events-calendar
1484
+ #: ../lib/tribe-view-helpers.class.php:213
1485
+ msgid "Russian Federation"
1486
+ msgstr "Russland / Russische F&ouml;rderation"
1487
 
1488
+ # @ tribe-events-calendar
1489
+ #: ../lib/tribe-view-helpers.class.php:214
1490
+ msgid "Rwanda"
1491
+ msgstr "Ruanda"
1492
 
1493
+ # @ tribe-events-calendar
1494
+ #: ../lib/tribe-view-helpers.class.php:215
1495
+ msgid "Saint Kitts And Nevis"
1496
+ msgstr "St. Kitts und Nevis"
1497
 
1498
+ # @ tribe-events-calendar
1499
+ #: ../lib/tribe-view-helpers.class.php:216
1500
+ msgid "Saint Lucia"
1501
+ msgstr "Saint Lucia"
1502
 
1503
+ # @ tribe-events-calendar
1504
+ #: ../lib/tribe-view-helpers.class.php:217
1505
+ msgid "Saint Vincent And The Grenadines"
1506
+ msgstr "St. Vincent und die Grenadinen"
1507
 
1508
+ # @ tribe-events-calendar
1509
+ #: ../lib/tribe-view-helpers.class.php:218
1510
+ msgid "Samoa"
1511
+ msgstr "Samoa"
1512
 
1513
+ # @ tribe-events-calendar
1514
+ #: ../lib/tribe-view-helpers.class.php:219
1515
+ msgid "San Marino"
1516
+ msgstr "San Marino"
1517
 
1518
+ # @ tribe-events-calendar
1519
+ #: ../lib/tribe-view-helpers.class.php:220
1520
+ msgid "Sao Tome And Principe"
1521
+ msgstr "S&atilde;o Tom&eacute; und Pr&iacute;ncipe"
1522
 
1523
+ # @ tribe-events-calendar
1524
+ #: ../lib/tribe-view-helpers.class.php:221
1525
+ msgid "Saudi Arabia"
1526
+ msgstr "Saudi-Arabien"
1527
 
1528
+ # @ tribe-events-calendar
1529
+ #: ../lib/tribe-view-helpers.class.php:222
1530
+ msgid "Senegal"
1531
+ msgstr "Senegal"
1532
 
1533
+ # @ tribe-events-calendar
1534
+ #: ../lib/tribe-view-helpers.class.php:223
1535
+ msgid "Serbia"
1536
+ msgstr "Serbien"
1537
 
1538
+ # @ tribe-events-calendar
1539
+ #: ../lib/tribe-view-helpers.class.php:224
1540
+ msgid "Seychelles"
1541
+ msgstr "Seychellen"
1542
 
1543
+ # @ tribe-events-calendar
1544
+ #: ../lib/tribe-view-helpers.class.php:225
1545
+ msgid "Sierra Leone"
1546
+ msgstr "Sierra Leone"
 
1547
 
1548
+ # @ tribe-events-calendar
1549
+ #: ../lib/tribe-view-helpers.class.php:226
1550
+ msgid "Singapore"
1551
+ msgstr "Singapur"
1552
 
1553
+ # @ tribe-events-calendar
1554
+ #: ../lib/tribe-view-helpers.class.php:227
1555
+ msgid "Slovakia (Slovak Republic)"
1556
+ msgstr "Slowakei"
1557
 
1558
+ # @ tribe-events-calendar
1559
+ #: ../lib/tribe-view-helpers.class.php:228
1560
+ msgid "Slovenia"
1561
+ msgstr "Slovenien"
 
1562
 
1563
+ # @ tribe-events-calendar
1564
+ #: ../lib/tribe-view-helpers.class.php:229
1565
+ msgid "Solomon Islands"
1566
+ msgstr "Salomonen"
1567
 
1568
+ # @ tribe-events-calendar
1569
+ #: ../lib/tribe-view-helpers.class.php:230
1570
+ msgid "Somalia"
1571
+ msgstr "Somalia"
1572
 
1573
+ # @ tribe-events-calendar
1574
+ #: ../lib/tribe-view-helpers.class.php:231
1575
+ msgid "South Africa"
1576
+ msgstr "S&uuml;dafrika"
 
1577
 
1578
+ # @ tribe-events-calendar
1579
+ #: ../lib/tribe-view-helpers.class.php:232
1580
+ msgid "South Georgia, South Sandwich Islands"
1581
+ msgstr "S&uuml;dgeorgien und die S&uuml;dlichen Sandwichinseln"
1582
 
1583
+ # @ tribe-events-calendar
1584
+ #: ../lib/tribe-view-helpers.class.php:233
1585
+ msgid "Spain"
1586
+ msgstr "Spanien"
1587
 
1588
+ # @ tribe-events-calendar
1589
+ #: ../lib/tribe-view-helpers.class.php:234
1590
+ msgid "Sri Lanka"
1591
+ msgstr "Sri Lanka"
 
 
1592
 
1593
+ # @ tribe-events-calendar
1594
+ #: ../lib/tribe-view-helpers.class.php:235
1595
+ msgid "St. Helena"
1596
+ msgstr "St. Helena"
1597
 
1598
+ # @ tribe-events-calendar
1599
+ #: ../lib/tribe-view-helpers.class.php:236
1600
+ msgid "St. Pierre And Miquelon"
1601
+ msgstr "Saint-Pierre und Miquelon"
1602
 
1603
+ # @ tribe-events-calendar
1604
+ #: ../lib/tribe-view-helpers.class.php:237
1605
+ msgid "Sudan"
1606
+ msgstr "Sudan"
1607
 
1608
+ # @ tribe-events-calendar
1609
+ #: ../lib/tribe-view-helpers.class.php:238
1610
+ msgid "Suriname"
1611
+ msgstr "Surinam"
1612
 
1613
+ # @ tribe-events-calendar
1614
+ #: ../lib/tribe-view-helpers.class.php:239
1615
+ msgid "Svalbard And Jan Mayen Islands"
1616
+ msgstr "Svalbard und Jan Mayen Islands"
1617
 
1618
+ # @ tribe-events-calendar
1619
+ #: ../lib/tribe-view-helpers.class.php:240
1620
+ msgid "Swaziland"
1621
+ msgstr "Swasiland"
1622
 
1623
+ # @ tribe-events-calendar
1624
+ #: ../lib/tribe-view-helpers.class.php:241
1625
+ msgid "Sweden"
1626
+ msgstr "Schweden"
1627
 
1628
+ # @ tribe-events-calendar
1629
+ #: ../lib/tribe-view-helpers.class.php:242
1630
+ msgid "Switzerland"
1631
+ msgstr "Schweiz"
 
1632
 
1633
+ # @ tribe-events-calendar
1634
+ #: ../lib/tribe-view-helpers.class.php:243
1635
+ msgid "Syrian Arab Republic"
1636
+ msgstr "Syrien"
1637
 
1638
+ # @ tribe-events-calendar
1639
+ #: ../lib/tribe-view-helpers.class.php:244
1640
+ msgid "Taiwan"
1641
+ msgstr "Taiwan"
1642
 
1643
+ # @ tribe-events-calendar
1644
+ #: ../lib/tribe-view-helpers.class.php:245
1645
+ msgid "Tajikistan"
1646
+ msgstr "Tadschikistan"
1647
 
1648
+ # @ tribe-events-calendar
1649
+ #: ../lib/tribe-view-helpers.class.php:246
1650
+ msgid "Tanzania, United Republic Of"
1651
+ msgstr "Tanzania"
1652
 
1653
+ # @ tribe-events-calendar
1654
+ #: ../lib/tribe-view-helpers.class.php:247
1655
+ msgid "Thailand"
1656
+ msgstr "Thailand"
 
1657
 
1658
+ # @ tribe-events-calendar
1659
+ #: ../lib/tribe-view-helpers.class.php:248
1660
+ msgid "Togo"
1661
+ msgstr "Togo"
1662
 
1663
+ # @ tribe-events-calendar
1664
+ #: ../lib/tribe-view-helpers.class.php:249
1665
+ msgid "Tokelau"
1666
+ msgstr "Tokelau"
1667
 
1668
+ # @ tribe-events-calendar
1669
+ #: ../lib/tribe-view-helpers.class.php:250
1670
+ msgid "Tonga"
1671
+ msgstr "Tonga"
1672
 
1673
+ # @ tribe-events-calendar
1674
+ #: ../lib/tribe-view-helpers.class.php:251
1675
+ msgid "Trinidad And Tobago"
1676
+ msgstr "Trinidad und Tobago"
 
1677
 
1678
+ # @ tribe-events-calendar
1679
+ #: ../lib/tribe-view-helpers.class.php:252
1680
+ msgid "Tunisia"
1681
+ msgstr "Tunesien"
1682
 
1683
+ # @ tribe-events-calendar
1684
+ #: ../lib/tribe-view-helpers.class.php:253
1685
+ msgid "Turkey"
1686
+ msgstr "T&uuml;rkei"
1687
 
1688
+ # @ tribe-events-calendar
1689
+ #: ../lib/tribe-view-helpers.class.php:254
1690
+ msgid "Turkmenistan"
1691
+ msgstr "Turkmenistan"
1692
 
1693
+ # @ tribe-events-calendar
1694
+ #: ../lib/tribe-view-helpers.class.php:255
1695
+ msgid "Turks And Caicos Islands"
1696
+ msgstr "Turks- und Caicosinseln"
1697
 
1698
+ # @ tribe-events-calendar
1699
+ #: ../lib/tribe-view-helpers.class.php:256
1700
+ msgid "Tuvalu"
1701
+ msgstr "Tuvalu"
1702
 
1703
+ # @ tribe-events-calendar
1704
+ #: ../lib/tribe-view-helpers.class.php:257
1705
+ msgid "Uganda"
1706
+ msgstr "Uganda"
1707
 
1708
+ # @ tribe-events-calendar
1709
+ #: ../lib/tribe-view-helpers.class.php:258
1710
+ msgid "Ukraine"
1711
+ msgstr "Ukraine"
1712
 
1713
+ # @ tribe-events-calendar
1714
+ #: ../lib/tribe-view-helpers.class.php:259
1715
+ msgid "United Arab Emirates"
1716
+ msgstr "Vereinigte Arabische Emirate"
1717
 
1718
+ # @ tribe-events-calendar
1719
+ #: ../lib/tribe-view-helpers.class.php:260
1720
+ msgid "United Kingdom"
1721
+ msgstr "Gro&szlig;britannien (Vereinigtes K&ouml;nigreich)"
1722
 
1723
+ # @ tribe-events-calendar
1724
+ #: ../lib/tribe-view-helpers.class.php:261
1725
+ msgid "United States Minor Outlying Islands"
1726
+ msgstr "United States Minor Outlying Islands"
1727
 
1728
+ # @ tribe-events-calendar
1729
+ #: ../lib/tribe-view-helpers.class.php:262
1730
+ msgid "Uruguay"
1731
+ msgstr "Uruguay"
1732
 
1733
+ # @ tribe-events-calendar
1734
+ #: ../lib/tribe-view-helpers.class.php:263
1735
+ msgid "Uzbekistan"
1736
+ msgstr "Usbekistan"
1737
 
1738
+ # @ tribe-events-calendar
1739
+ #: ../lib/tribe-view-helpers.class.php:264
1740
+ msgid "Vanuatu"
1741
+ msgstr "Vanuatu"
1742
 
1743
+ # @ tribe-events-calendar
1744
+ #: ../lib/tribe-view-helpers.class.php:265
1745
+ msgid "Venezuela"
1746
+ msgstr "Venezuela"
1747
 
1748
+ # @ tribe-events-calendar
1749
+ #: ../lib/tribe-view-helpers.class.php:266
1750
+ msgid "Viet Nam"
1751
+ msgstr "Vietnam"
1752
 
1753
+ # @ tribe-events-calendar
1754
+ #: ../lib/tribe-view-helpers.class.php:267
1755
+ msgid "Virgin Islands (British)"
1756
+ msgstr "Britische Jungferninseln"
1757
 
1758
+ # @ tribe-events-calendar
1759
+ #: ../lib/tribe-view-helpers.class.php:268
1760
+ msgid "Virgin Islands (U.S.)"
1761
+ msgstr "Amerikanische Jungferninseln"
1762
 
1763
+ # @ tribe-events-calendar
1764
+ #: ../lib/tribe-view-helpers.class.php:269
1765
+ msgid "Wallis And Futuna Islands"
1766
+ msgstr "Wallis und Futuna"
1767
 
1768
+ # @ tribe-events-calendar
1769
+ #: ../lib/tribe-view-helpers.class.php:270
1770
+ msgid "Western Sahara"
1771
+ msgstr "Westsahara"
1772
 
1773
+ # @ tribe-events-calendar
1774
+ #: ../lib/tribe-view-helpers.class.php:271
1775
+ msgid "Yemen"
1776
+ msgstr "Jemen"
1777
 
1778
+ # @ tribe-events-calendar
1779
+ #: ../lib/tribe-view-helpers.class.php:272
1780
+ msgid "Zambia"
1781
+ msgstr "Sambia"
1782
 
1783
+ # @ tribe-events-calendar
1784
+ #: ../lib/tribe-view-helpers.class.php:273
1785
+ msgid "Zimbabwe"
1786
+ msgstr "Simbabwe"
1787
 
1788
+ # @ tribe-events-calendar
1789
+ #: ../lib/tribe-view-helpers.class.php:293
1790
+ msgid "Alabama"
1791
+ msgstr "Alabama"
1792
 
1793
+ # @ tribe-events-calendar
1794
+ #: ../lib/tribe-view-helpers.class.php:294
1795
+ msgid "Alaska"
1796
+ msgstr "Alaska"
1797
 
1798
+ # @ tribe-events-calendar
1799
+ #: ../lib/tribe-view-helpers.class.php:295
1800
+ msgid "Arizona"
1801
+ msgstr "Arizona"
1802
 
1803
+ # @ tribe-events-calendar
1804
+ #: ../lib/tribe-view-helpers.class.php:296
1805
+ msgid "Arkansas"
1806
+ msgstr "Arkansas"
 
1807
 
1808
+ # @ tribe-events-calendar
1809
+ #: ../lib/tribe-view-helpers.class.php:297
1810
+ msgid "California"
1811
+ msgstr "Kalifornien"
 
1812
 
1813
+ # @ tribe-events-calendar
1814
+ #: ../lib/tribe-view-helpers.class.php:298
1815
+ msgid "Colorado"
1816
+ msgstr "Colorado"
1817
 
1818
+ # @ tribe-events-calendar
1819
+ #: ../lib/tribe-view-helpers.class.php:299
1820
+ msgid "Connecticut"
1821
+ msgstr "Connecticut"
1822
 
1823
+ # @ tribe-events-calendar
1824
+ #: ../lib/tribe-view-helpers.class.php:300
1825
+ msgid "Delaware"
1826
+ msgstr "Delaware"
1827
 
1828
+ # @ tribe-events-calendar
1829
+ #: ../lib/tribe-view-helpers.class.php:301
1830
+ msgid "District of Columbia"
1831
+ msgstr "District of Columbia"
1832
 
1833
+ # @ tribe-events-calendar
1834
+ #: ../lib/tribe-view-helpers.class.php:302
1835
+ msgid "Florida"
1836
+ msgstr "Florida"
1837
 
1838
+ # @ tribe-events-calendar
1839
+ #: ../lib/tribe-view-helpers.class.php:304
1840
+ msgid "Hawaii"
1841
+ msgstr "Hawaii"
1842
 
1843
+ # @ tribe-events-calendar
1844
+ #: ../lib/tribe-view-helpers.class.php:305
1845
+ msgid "Idaho"
1846
+ msgstr "Idaho"
1847
 
1848
+ # @ tribe-events-calendar
1849
+ #: ../lib/tribe-view-helpers.class.php:306
1850
+ msgid "Illinois"
1851
+ msgstr "Illinois"
1852
 
1853
+ # @ tribe-events-calendar
1854
+ #: ../lib/tribe-view-helpers.class.php:307
1855
+ msgid "Indiana"
1856
+ msgstr "Indiana"
 
 
1857
 
1858
+ # @ tribe-events-calendar
1859
+ #: ../lib/tribe-view-helpers.class.php:308
1860
+ msgid "Iowa"
1861
+ msgstr "Iowa"
1862
 
1863
+ # @ tribe-events-calendar
1864
+ #: ../lib/tribe-view-helpers.class.php:309
1865
+ msgid "Kansas"
1866
+ msgstr "Kansas"
 
 
1867
 
1868
+ # @ tribe-events-calendar
1869
+ #: ../lib/tribe-view-helpers.class.php:310
1870
+ msgid "Kentucky"
1871
+ msgstr "Kentucky"
 
 
1872
 
1873
+ # @ tribe-events-calendar
1874
+ #: ../lib/tribe-view-helpers.class.php:311
1875
+ msgid "Louisiana"
1876
+ msgstr "Louisiana"
 
1877
 
1878
+ # @ tribe-events-calendar
1879
+ #: ../lib/tribe-view-helpers.class.php:312
1880
+ msgid "Maine"
1881
+ msgstr "Maine"
 
1882
 
1883
+ # @ tribe-events-calendar
1884
+ #: ../lib/tribe-view-helpers.class.php:313
1885
+ msgid "Maryland"
1886
+ msgstr "Maryland"
 
1887
 
1888
+ # @ tribe-events-calendar
1889
+ #: ../lib/tribe-view-helpers.class.php:314
1890
+ msgid "Massachusetts"
1891
+ msgstr "Massachusetts"
 
 
 
 
1892
 
1893
+ # @ tribe-events-calendar
1894
+ #: ../lib/tribe-view-helpers.class.php:315
1895
+ msgid "Michigan"
1896
+ msgstr "Michigan"
 
 
1897
 
1898
+ # @ tribe-events-calendar
1899
+ #: ../lib/tribe-view-helpers.class.php:316
1900
+ msgid "Minnesota"
1901
+ msgstr "Minnesota"
 
1902
 
1903
+ # @ tribe-events-calendar
1904
+ #: ../lib/tribe-view-helpers.class.php:317
1905
+ msgid "Mississippi"
1906
+ msgstr "Mississippi"
 
 
1907
 
1908
+ # @ tribe-events-calendar
1909
+ #: ../lib/tribe-view-helpers.class.php:318
1910
+ msgid "Missouri"
1911
+ msgstr "Missouri"
 
 
1912
 
1913
+ # @ tribe-events-calendar
1914
+ #: ../lib/tribe-view-helpers.class.php:319
1915
+ msgid "Montana"
1916
+ msgstr "Montana"
 
 
1917
 
1918
+ # @ tribe-events-calendar
1919
+ #: ../lib/tribe-view-helpers.class.php:320
1920
+ msgid "Nebraska"
1921
+ msgstr "Nebraska"
1922
 
1923
+ # @ tribe-events-calendar
1924
+ #: ../lib/tribe-view-helpers.class.php:321
1925
+ msgid "Nevada"
1926
+ msgstr "Nevada"
1927
 
1928
+ # @ tribe-events-calendar
1929
+ #: ../lib/tribe-view-helpers.class.php:322
1930
+ msgid "New Hampshire"
1931
+ msgstr "New Hampshire"
1932
 
1933
+ # @ tribe-events-calendar
1934
+ #: ../lib/tribe-view-helpers.class.php:323
1935
+ msgid "New Jersey"
1936
+ msgstr "New Jersey"
1937
 
1938
+ # @ tribe-events-calendar
1939
+ #: ../lib/tribe-view-helpers.class.php:324
1940
+ msgid "New Mexico"
1941
+ msgstr "New Mexico"
 
1942
 
1943
+ # @ tribe-events-calendar
1944
+ #: ../lib/tribe-view-helpers.class.php:325
1945
+ msgid "New York"
1946
+ msgstr "New York"
1947
 
1948
+ # @ tribe-events-calendar
1949
+ #: ../lib/tribe-view-helpers.class.php:326
1950
+ msgid "North Carolina"
1951
+ msgstr "North Carolina"
1952
 
1953
+ # @ tribe-events-calendar
1954
+ #: ../lib/tribe-view-helpers.class.php:327
1955
+ msgid "North Dakota"
1956
+ msgstr "North Dakota"
1957
 
1958
+ # @ tribe-events-calendar
1959
+ #: ../lib/tribe-view-helpers.class.php:328
1960
+ msgid "Ohio"
1961
+ msgstr "Ohio"
 
1962
 
1963
+ # @ tribe-events-calendar
1964
+ #: ../lib/tribe-view-helpers.class.php:329
1965
+ msgid "Oklahoma"
1966
+ msgstr "Oklahoma"
 
 
1967
 
1968
+ # @ tribe-events-calendar
1969
+ #: ../lib/tribe-view-helpers.class.php:330
1970
+ msgid "Oregon"
1971
+ msgstr "Oregon"
1972
 
1973
+ # @ tribe-events-calendar
1974
+ #: ../lib/tribe-view-helpers.class.php:331
1975
+ msgid "Pennsylvania"
1976
+ msgstr "Pennsylvania"
1977
 
1978
+ # @ tribe-events-calendar
1979
+ #: ../lib/tribe-view-helpers.class.php:332
1980
+ msgid "Rhode Island"
1981
+ msgstr "Rhode Island"
1982
 
1983
+ # @ tribe-events-calendar
1984
+ #: ../lib/tribe-view-helpers.class.php:333
1985
+ msgid "South Carolina"
1986
+ msgstr "South Carolina"
 
1987
 
1988
+ # @ tribe-events-calendar
1989
+ #: ../lib/tribe-view-helpers.class.php:334
1990
+ msgid "South Dakota"
1991
+ msgstr "South Dakota"
1992
 
1993
+ # @ tribe-events-calendar
1994
+ #: ../lib/tribe-view-helpers.class.php:335
1995
+ msgid "Tennessee"
1996
+ msgstr "Tennessee"
 
1997
 
1998
+ # @ tribe-events-calendar
1999
+ #: ../lib/tribe-view-helpers.class.php:336
2000
+ msgid "Texas"
2001
+ msgstr "Texas"
2002
 
2003
+ # @ tribe-events-calendar
2004
+ #: ../lib/tribe-view-helpers.class.php:337
2005
+ msgid "Utah"
2006
+ msgstr "Utah"
 
2007
 
2008
+ # @ tribe-events-calendar
2009
+ #: ../lib/tribe-view-helpers.class.php:338
2010
+ msgid "Vermont"
2011
+ msgstr "Vermont"
 
2012
 
2013
+ # @ tribe-events-calendar
2014
+ #: ../lib/tribe-view-helpers.class.php:339
2015
+ msgid "Virginia"
2016
+ msgstr "Virginia"
2017
 
2018
+ # @ tribe-events-calendar
2019
+ #: ../lib/tribe-view-helpers.class.php:340
2020
+ msgid "Washington"
2021
+ msgstr "Washington"
 
2022
 
2023
+ # @ tribe-events-calendar
2024
+ #: ../lib/tribe-view-helpers.class.php:341
2025
+ msgid "West Virginia"
2026
+ msgstr "West Virginia"
2027
 
2028
+ # @ tribe-events-calendar
2029
+ #: ../lib/tribe-view-helpers.class.php:342
2030
+ msgid "Wisconsin"
2031
+ msgstr "Wisconsin"
2032
 
2033
+ # @ tribe-events-calendar
2034
+ #: ../lib/tribe-view-helpers.class.php:343
2035
+ msgid "Wyoming"
2036
+ msgstr "Wyoming"
 
 
2037
 
2038
+ # @ tribe-events-calendar
2039
+ #: ../lib/tribe-event-exception.class.php:17
2040
+ #: ../lib/tribe-event-exception.class.php:34
2041
+ msgid "Error"
2042
+ msgstr "Fehler"
2043
 
2044
+ # @ tribe-events-calendar
2045
+ #: ../lib/the-events-calendar.class.php:214
2046
+ msgid "The Events Calendar"
2047
+ msgstr "Veranstaltungskalender"
2048
 
2049
+ # @ tribe-events-calendar
2050
+ #: ../lib/the-events-calendar.class.php:217
2051
+ msgid "category"
2052
+ msgstr "kategorie"
 
2053
 
2054
+ # @ tribe-events-calendar
2055
+ #: ../lib/the-events-calendar.class.php:218
2056
+ msgid "month"
2057
+ msgstr "monat"
2058
 
2059
+ # @ tribe-events-calendar
2060
+ #: ../lib/the-events-calendar.class.php:219
2061
+ msgid "upcoming"
2062
+ msgstr "bevorstehend"
2063
 
2064
+ # @ tribe-events-calendar
2065
+ #: ../lib/the-events-calendar.class.php:220
2066
+ msgid "past"
2067
+ msgstr "vergangen"
2068
 
2069
+ # @ tribe-events-calendar
2070
+ #: ../lib/the-events-calendar.class.php:222
2071
+ msgid "venue"
2072
+ msgstr "Ort"
2073
 
2074
+ # @ tribe-events-calendar
2075
+ #: ../lib/the-events-calendar.class.php:232
2076
+ #, php-format
2077
+ msgid "Initializing Tribe Events on %s"
2078
+ msgstr "Tribe Events werden eingerichtet f&uuml;r %s"
2079
 
2080
+ # @ tribe-events-calendar
2081
+ #: ../lib/the-events-calendar.class.php:280
2082
+ #, php-format
2083
+ msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
2084
+ msgstr "Entschuldigung, das The Events Calendar Plugin erfordert WordPress Version %s oder h&ouml;her. Bitte aktualisieren Sie Ihre WordPress-Installation entsprechend, bevor Sie fortfahren."
2085
 
2086
+ # @ tribe-events-calendar
2087
+ #: ../lib/the-events-calendar.class.php:283
2088
+ #, php-format
2089
+ msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
2090
+ msgstr "Entschuldigung, das 'The Events Calendar'-Plugin erfordert PHP Version %s oder h&ouml;her. Kontaktieren Sie Ihren Webhosting-Anbieter, um auf eine h&ouml;here PHP-Version aktualisieren zu k&ouml;nnen."
2091
 
2092
+ # @ tribe-events-calendar
2093
+ #: ../lib/the-events-calendar.class.php:400
2094
+ msgid "Upcoming Events"
2095
+ msgstr "Bevorstehende Veranstaltungen"
2096
 
2097
+ # @ tribe-events-calendar
2098
+ #: ../lib/the-events-calendar.class.php:402
2099
+ msgid "Past Events"
2100
+ msgstr "Vergangene Veranstaltungen"
2101
 
2102
+ # @ tribe-events-calendar
2103
+ #: ../lib/the-events-calendar.class.php:406
2104
+ #, php-format
2105
+ msgid "Events for %s"
2106
+ msgstr "Veranstaltungen f&uuml;r %s"
2107
 
2108
+ # @ tribe-events-calendar
2109
+ #: ../lib/the-events-calendar.class.php:408
2110
+ msgid "Events this month"
2111
+ msgstr "Veranstaltungen diesen Monat"
2112
 
2113
+ # @ tribe-events-calendar
2114
+ #: ../lib/the-events-calendar.class.php:422
2115
+ msgid "No description has been entered for this event."
2116
+ msgstr "F&uuml;r diese Veranstaltung wurde keine Beschreibung eingetragen."
2117
 
2118
+ # @ tribe-events-calendar
2119
+ #: ../lib/the-events-calendar.class.php:487
2120
+ msgid "Events"
2121
+ msgstr "Veranstaltungen"
2122
 
2123
+ # @ tribe-events-calendar
2124
+ #: ../lib/the-events-calendar.class.php:488
2125
+ msgid "Event"
2126
+ msgstr "Veranstaltung"
2127
 
2128
+ # @ tribe-events-calendar
2129
+ #: ../lib/the-events-calendar.class.php:489
2130
+ #: ../lib/the-events-calendar.class.php:502
2131
+ #: ../lib/the-events-calendar.class.php:515
2132
+ msgid "Add New"
2133
+ msgstr "Hinzuf&uuml;gen"
2134
 
2135
+ # @ tribe-events-calendar
2136
+ #: ../lib/the-events-calendar.class.php:490
2137
+ msgid "Add New Event"
2138
+ msgstr "Neue Veranstaltung hinzuf&uuml;gen"
2139
 
2140
+ # @ tribe-events-calendar
2141
+ #: ../lib/the-events-calendar.class.php:491
2142
+ msgid "Edit Event"
2143
+ msgstr "Veranstaltung bearbeiten"
2144
 
2145
+ # @ tribe-events-calendar
2146
+ #: ../lib/the-events-calendar.class.php:492
2147
+ msgid "New Event"
2148
+ msgstr "Neue Veranstaltung"
2149
 
2150
+ # @ tribe-events-calendar
2151
+ #: ../lib/the-events-calendar.class.php:493
2152
+ msgid "View Event"
2153
+ msgstr "Veranstaltung ansehen"
2154
 
2155
+ # @ tribe-events-calendar
2156
+ #: ../lib/the-events-calendar.class.php:494
2157
+ msgid "Search Events"
2158
+ msgstr "Veranstaltungen suchen"
2159
 
2160
+ # @ tribe-events-calendar
2161
+ #: ../lib/the-events-calendar.class.php:495
2162
+ msgid "No events found"
2163
+ msgstr "Es wurden keine Veranstaltungen gefunden"
2164
 
2165
+ # @ tribe-events-calendar
2166
+ #: ../lib/the-events-calendar.class.php:496
2167
+ msgid "No events found in Trash"
2168
+ msgstr "Es befinden sich keine Veranstaltungen im Papierkorb"
2169
 
2170
+ # @ tribe-events-calendar
2171
+ #: ../lib/the-events-calendar.class.php:500
2172
+ msgid "Venues"
2173
+ msgstr "Veranstaltungsorte"
2174
 
2175
+ # @ tribe-events-calendar
2176
+ #: ../lib/the-events-calendar.class.php:501
2177
+ msgid "Venue"
2178
+ msgstr "Veranstaltungsort"
2179
 
2180
+ # @ tribe-events-calendar
2181
+ #: ../lib/the-events-calendar.class.php:503
2182
+ msgid "Add New Venue"
2183
+ msgstr "Neuen Veranstaltungsort hinzuf&uuml;gen"
 
2184
 
2185
+ # @ tribe-events-calendar
2186
+ #: ../lib/the-events-calendar.class.php:504
2187
+ msgid "Edit Venue"
2188
+ msgstr "Veranstaltungsort bearbeiten"
2189
 
2190
+ # @ tribe-events-calendar
2191
+ #: ../lib/the-events-calendar.class.php:505
2192
+ msgid "New Venue"
2193
+ msgstr "Neuer Veranstaltungsort"
2194
 
2195
+ # @ tribe-events-calendar
2196
+ #: ../lib/the-events-calendar.class.php:506
2197
+ #: ../lib/the-events-calendar.class.php:519
2198
+ msgid "View Venue"
2199
+ msgstr "Veranstaltungsort anzeigen"
2200
 
2201
+ # @ tribe-events-calendar
2202
+ #: ../lib/the-events-calendar.class.php:507
2203
+ msgid "Search Venues"
2204
+ msgstr "Veranstaltungsorte suchen"
2205
 
2206
+ # @ tribe-events-calendar
2207
+ #: ../lib/the-events-calendar.class.php:508
2208
+ msgid "No venue found"
2209
+ msgstr "Es wurde kein Veranstaltungsort gefunden"
 
2210
 
2211
+ # @ tribe-events-calendar
2212
+ #: ../lib/the-events-calendar.class.php:509
2213
+ msgid "No venues found in Trash"
2214
+ msgstr "Es befinden sich keine Veranstaltungsorte im Papierkorb"
 
 
2215
 
2216
+ # @ tribe-events-calendar
2217
+ #: ../lib/the-events-calendar.class.php:513
2218
+ msgid "Organizers"
2219
+ msgstr "Veranstalter"
 
2220
 
2221
+ # @ tribe-events-calendar
2222
+ #: ../lib/the-events-calendar.class.php:514
2223
+ msgid "Organizer"
2224
+ msgstr "Veranstalter"
 
2225
 
2226
+ # @ tribe-events-calendar
2227
+ #: ../lib/the-events-calendar.class.php:516
2228
+ msgid "Add New Organizer"
2229
+ msgstr "Neuen Veranstalter hinzuf&uuml;gen"
 
2230
 
2231
+ # @ tribe-events-calendar
2232
+ #: ../lib/the-events-calendar.class.php:517
2233
+ msgid "Edit Organizer"
2234
+ msgstr "Veranstalter bearbeiten"
2235
 
2236
+ # @ tribe-events-calendar
2237
+ #: ../lib/the-events-calendar.class.php:518
2238
+ msgid "New Organizer"
2239
+ msgstr "Neuer Veranstalter"
 
2240
 
2241
+ # @ tribe-events-calendar
2242
+ #: ../lib/the-events-calendar.class.php:520
2243
+ msgid "Search Organizers"
2244
+ msgstr "Veranstalter suchen"
 
2245
 
2246
+ # @ tribe-events-calendar
2247
+ #: ../lib/the-events-calendar.class.php:521
2248
+ msgid "No organizer found"
2249
+ msgstr "Es wurde kein Veranstalter gefunden"
2250
 
2251
+ # @ tribe-events-calendar
2252
+ #: ../lib/the-events-calendar.class.php:522
2253
+ msgid "No organizers found in Trash"
2254
+ msgstr "Es befinden sich keine Veranstalter im Papierkorb"
2255
 
2256
+ # @ tribe-events-calendar
2257
+ #: ../lib/the-events-calendar.class.php:527
2258
+ msgid "Event Category"
2259
+ msgstr "Veranstaltungskategorie"
2260
 
2261
+ # @ tribe-events-calendar
2262
+ #: ../lib/the-events-calendar.class.php:528
2263
+ msgid "Search Event Categories"
2264
+ msgstr "Veranstaltungskategorien suchen"
2265
 
2266
+ # @ tribe-events-calendar
2267
+ #: ../lib/the-events-calendar.class.php:529
2268
+ msgid "All Event Categories"
2269
+ msgstr "Alle Veranstaltungskategorien"
2270
 
2271
+ # @ tribe-events-calendar
2272
+ #: ../lib/the-events-calendar.class.php:530
2273
+ msgid "Parent Event Category"
2274
+ msgstr "&Uuml;bergeordnete Veranstaltungskategorie"
2275
 
2276
+ # @ tribe-events-calendar
2277
+ #: ../lib/the-events-calendar.class.php:531
2278
+ msgid "Parent Event Category:"
2279
+ msgstr "&Uuml;bergeordnete Veranstaltungskategorie:"
2280
 
2281
+ # @ tribe-events-calendar
2282
+ #: ../lib/the-events-calendar.class.php:532
2283
+ msgid "Edit Event Category"
2284
+ msgstr "Veranstaltungskategorie bearbeiten"
2285
 
2286
+ # @ tribe-events-calendar
2287
+ #: ../lib/the-events-calendar.class.php:533
2288
+ msgid "Update Event Category"
2289
+ msgstr "Veranstaltungskategorie aktualisieren"
 
2290
 
2291
+ # @ tribe-events-calendar
2292
+ #: ../lib/the-events-calendar.class.php:534
2293
+ msgid "Add New Event Category"
2294
+ msgstr "Neue Veranstaltungskategorie hinzuf&uuml;gen"
 
2295
 
2296
+ # @ tribe-events-calendar
2297
+ #: ../lib/the-events-calendar.class.php:535
2298
+ msgid "New Event Category Name"
2299
+ msgstr "Neuer Veranstaltungskategorie-Name"
 
2300
 
2301
+ # @ default
2302
+ #: ../lib/the-events-calendar.class.php:545
2303
  #, php-format
2304
  msgid "Event updated. <a href=\"%s\">View event</a>"
2305
  msgstr "Veranstaltung aktualisiert. <a href=\"%s\">Diese Veranstaltung ansehen</a>"
2306
 
2307
+ # @ default
2308
+ #: ../lib/the-events-calendar.class.php:546
2309
+ #: ../lib/the-events-calendar.class.php:563
2310
+ #: ../lib/the-events-calendar.class.php:580
2311
  msgid "Custom field updated."
2312
  msgstr "Benutzerdefiniertes Feld aktualisiert."
2313
 
2314
+ # @ default
2315
+ #: ../lib/the-events-calendar.class.php:547
2316
+ #: ../lib/the-events-calendar.class.php:564
2317
+ #: ../lib/the-events-calendar.class.php:581
2318
  msgid "Custom field deleted."
2319
  msgstr "Benutzerdefiniertes Feld gel&ouml;scht."
2320
 
2321
+ # @ default
2322
+ #: ../lib/the-events-calendar.class.php:548
2323
  msgid "Event updated."
2324
  msgstr "Veranstaltung aktualisiert."
2325
 
2326
+ # @ default
2327
+ #: ../lib/the-events-calendar.class.php:550
 
2328
  #, php-format
2329
  msgid "Event restored to revision from %s"
2330
  msgstr "Veranstaltung wiederhergestellt mit der Revision von %s"
2331
 
2332
+ # @ default
2333
+ #: ../lib/the-events-calendar.class.php:551
2334
  #, php-format
2335
  msgid "Event published. <a href=\"%s\">View event</a>"
2336
  msgstr "Veranstaltung ver&ouml;ffentlicht. <a href=\"%s\">Diese Veranstaltung ansehen</a>"
2337
 
2338
+ # @ default
2339
+ #: ../lib/the-events-calendar.class.php:552
2340
  msgid "Event saved."
2341
  msgstr "Veranstaltung gespeichert."
2342
 
2343
+ # @ default
2344
+ #: ../lib/the-events-calendar.class.php:553
2345
  #, php-format
2346
  msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
2347
  msgstr "Veranstaltung hinzugef&uuml;gt. <a target=\"_blank\" href=\"%s\">Vorschau</a>"
2348
 
2349
+ # @ default
2350
+ #: ../lib/the-events-calendar.class.php:554
2351
  #, php-format
2352
  msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
2353
  msgstr "Veranstaltung geplant f&uuml;r: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Vorschau</a>"
2354
 
2355
+ # @ default
2356
+ #: ../lib/the-events-calendar.class.php:556
2357
+ #: ../lib/the-events-calendar.class.php:573
2358
+ #: ../lib/the-events-calendar.class.php:590
2359
  msgid "M j, Y @ G:i"
2360
  msgstr "M j, Y @ G:i"
2361
 
2362
+ # @ default
2363
+ #: ../lib/the-events-calendar.class.php:557
2364
  #, php-format
2365
  msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
2366
  msgstr "Veranstaltungsentwurf aktualisiert. <a target=\"_blank\" href=\"%s\">Vorschau</a>"
2367
 
2368
+ # @ default
2369
+ #: ../lib/the-events-calendar.class.php:562
2370
  #, php-format
2371
  msgid "Venue updated. <a href=\"%s\">View venue</a>"
2372
  msgstr "Veranstaltungsort aktualisiert. <a href=\"%s\">Diesen Ort ansehen</a>"
2373
 
2374
+ # @ default
2375
+ #: ../lib/the-events-calendar.class.php:565
2376
  msgid "Venue updated."
2377
  msgstr "Veranstaltungsort aktualisiert."
2378
 
2379
+ # @ default
2380
+ #: ../lib/the-events-calendar.class.php:567
 
2381
  #, php-format
2382
  msgid "Venue restored to revision from %s"
2383
  msgstr "Veranstaltungsort wiederhergestellt mit der Revision von %s"
2384
 
2385
+ # @ default
2386
+ #: ../lib/the-events-calendar.class.php:568
2387
  #, php-format
2388
  msgid "Venue published. <a href=\"%s\">View venue</a>"
2389
  msgstr "Veranstaltungsort ver&ouml;ffentlicht. <a href=\"%s\">Diesen Ort ansehen</a>"
2390
 
2391
+ # @ default
2392
+ #: ../lib/the-events-calendar.class.php:569
2393
  msgid "Venue saved."
2394
  msgstr "Veranstaltungsort gespeichert."
2395
 
2396
+ # @ default
2397
+ #: ../lib/the-events-calendar.class.php:570
2398
  #, php-format
2399
  msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
2400
  msgstr "Veranstaltungsort hinzugef&uuml;gt. <a target=\"_blank\" href=\"%s\">Vorschau</a>"
2401
 
2402
+ # @ default
2403
+ #: ../lib/the-events-calendar.class.php:571
2404
  #, php-format
2405
  msgid "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview venue</a>"
2406
  msgstr "Veranstaltungsort geplant f&uuml;r: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Vorschau</a>"
2407
 
2408
+ # @ default
2409
+ #: ../lib/the-events-calendar.class.php:574
2410
  #, php-format
2411
  msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
2412
  msgstr "Entwurf des Veranstaltungsortes aktualisiert. <a target=\"_blank\" href=\"%s\">Vorschau</a>"
2413
 
2414
+ # @ default
2415
+ #: ../lib/the-events-calendar.class.php:579
2416
  #, php-format
2417
  msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
2418
  msgstr "Veranstalter aktualisiert. <a href=\"%s\">Diesen Veranstalter ansehen</a>"
2419
 
2420
+ # @ default
2421
+ #: ../lib/the-events-calendar.class.php:582
2422
  msgid "Organizer updated."
2423
  msgstr "Veranstalter aktualisiert."
2424
 
2425
+ # @ default
2426
+ #: ../lib/the-events-calendar.class.php:584
 
2427
  #, php-format
2428
  msgid "Organizer restored to revision from %s"
2429
  msgstr "Veranstalter wiederhergestellt mit der Revision von %s"
2430
 
2431
+ # @ default
2432
+ #: ../lib/the-events-calendar.class.php:585
2433
  #, php-format
2434
  msgid "Organizer published. <a href=\"%s\">View organizer</a>"
2435
  msgstr "Veranstalter publiziert. <a href=\"%s\">Diesen Veranstalter ansehen</a>"
2436
 
2437
+ # @ default
2438
+ #: ../lib/the-events-calendar.class.php:586
2439
  msgid "Organizer saved."
2440
  msgstr "Veranstalter gespeichert."
2441
 
2442
+ # @ default
2443
+ #: ../lib/the-events-calendar.class.php:587
2444
  #, php-format
2445
  msgid "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
2446
  msgstr "Veranstalter hinzugef&uuml;gt. <a target=\"_blank\" href=\"%s\">Vorschau</a>"
2447
 
2448
+ # @ default
2449
+ #: ../lib/the-events-calendar.class.php:588
2450
  #, php-format
2451
  msgid "Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview organizer</a>"
2452
  msgstr "Veranstalter geplant f&uuml;r: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Vorschau</a>"
2453
 
2454
+ # @ default
2455
+ #: ../lib/the-events-calendar.class.php:591
2456
  #, php-format
2457
  msgid "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
2458
  msgstr "Entwurf des Veranstalters aktualisiert. <a target=\"_blank\" href=\"%s\">Vorschau</a>"
2459
 
2460
+ # @ tribe-events-calendar
2461
+ #: ../lib/the-events-calendar.class.php:646
2462
+ msgid "Next"
2463
+ msgstr "N&auml;chste"
2464
+
2465
+ # @ tribe-events-calendar
2466
+ #: ../lib/the-events-calendar.class.php:647
2467
+ msgid "Prev"
2468
+ msgstr "Vorherige"
2469
+
2470
+ # @ tribe-events-calendar
2471
+ #: ../lib/the-events-calendar.class.php:648
2472
+ msgid "Today"
2473
+ msgstr "Heute"
2474
+
2475
+ # @ tribe-events-calendar
2476
+ #: ../lib/the-events-calendar.class.php:649
2477
+ msgid "Done"
2478
+ msgstr "Erledigt"
2479
+
2480
+ # @ tribe-events-calendar
2481
+ #: ../lib/the-events-calendar.class.php:1734
2482
  msgid "Event Options"
2483
  msgstr "Veranstaltungsoptionen"
2484
 
2485
+ # @ tribe-events-calendar
2486
+ #: ../lib/the-events-calendar.class.php:1736
2487
+ msgid "Venue Information"
2488
+ msgstr "Information zum Veranstaltungsort"
2489
+
2490
+ # @ tribe-events-calendar
2491
+ #: ../lib/the-events-calendar.class.php:1737
2492
+ msgid "Organizer Information"
2493
+ msgstr "Information zum Veranstalter"
2494
+
2495
+ # @ tribe-events-calendar
2496
+ #: ../lib/the-events-calendar.class.php:1839
2497
  msgid "View All Add-Ons"
2498
  msgstr "Alle Erweiterungen (Add-Ons) ansehen"
2499
 
2500
+ # @ default
2501
+ #: ../lib/the-events-calendar.class.php:1846
2502
  msgid "News from Tribe Pro"
2503
  msgstr "Neuigkeiten von Tribe Pro"
2504
 
2505
+ # @ tribe-events-calendar
2506
+ #: ../lib/tribe-debug-bar.class.php:18
 
 
 
 
 
 
 
 
 
 
 
2507
  msgid "Tribe"
2508
  msgstr "Tribe"
2509
 
2510
+ # @ tribe-events-calendar
2511
+ #: ../lib/tribe-the-events-calendar-import.class.php:45
2512
+ msgid "Upgrade from The Events Calendar"
2513
+ msgstr "Upgrade vom Plugin 'The Events Calendar' (freie Version)"
 
2514
 
2515
+ # @ tribe-events-calendar
2516
+ #: ../lib/tribe-the-events-calendar-import.class.php:46
2517
  msgid "It appears that you have some old events calendar data that needs to be upgraded. Please be sure to back up your database before initiating the upgrade. This process can not be undone."
2518
  msgstr "Es scheint, als h&auml;tten Sie noch alte Veranstaltungsdaten in der Datenbank, die aktualisiert werden m&uuml;ssen. Bitte stellen Sie sich, dass Sie vor dem Initialisieren des Upgrades eine Sicherung der (bisherigen) Datenbank anlegen. - Hinweis: Der gesamte Prozess kann <em>nicht</em> r&uuml;ckg&auml;ngig gemacht werden!"
2519
 
2520
+ # @ tribe-events-calendar
2521
+ #: ../lib/tribe-the-events-calendar-import.class.php:47
2522
+ msgid "Migrate Data!"
2523
+ msgstr "Daten migrieren (&uuml;bertragen)!"
2524
 
2525
+ # @ default
2526
+ #: ../lib/tribe-the-events-calendar-import.class.php:119
2527
+ #, php-format
2528
+ msgid "You successfully migrated (%d) entries."
2529
+ msgstr "Sie haben erfolgreich (%d) Eintr&auml;ge migriert (&uuml;bertragen)."
2530
 
2531
+ # @ tribe-events-calendar
2532
+ #: ../lib/tribe-the-events-calendar-import.class.php:189
2533
+ msgid "Install has 1 or more legacy event!"
2534
+ msgstr "In der Installation wurde(n) 1 oder mehrere alte/ abgelaufene Veranstaltung(en) gefunden!"
2535
 
2536
+ # @ tribe-events-calendar
2537
+ #: ../lib/template-tags.php:607
2538
+ msgid "Free"
2539
+ msgstr "Eintritt frei"
 
2540
 
2541
+ # @ tribe-events-calendar
2542
+ #: ../lib/template-tags.php:978
2543
+ msgid "Calendar of Events"
2544
+ msgstr "Veranstaltungskalender"
 
2545
 
2546
+ # @ tribe-events-calendar
2547
+ #: ../lib/template-tags.php:993
2548
+ msgid "Category:"
2549
+ msgstr "Kategorie:"
2550
 
2551
+ # @ tribe-events-calendar
2552
+ #: ../lib/widget-list.class.php:16
2553
+ msgid "A widget that displays the next upcoming x events."
2554
+ msgstr "Ein Widget, das die n&auml;chsten X Veranstaltungen anzeigt."
2555
 
2556
+ # @ tribe-events-calendar
2557
+ #: ../lib/widget-list.class.php:70
2558
+ msgid "View All Events"
2559
+ msgstr "Alle Veranstaltungen ansehen"
2560
 
2561
+ # @ tribe-events-calendar
2562
+ #: ../lib/widget-list.class.php:73
2563
+ msgid "There are no upcoming events at this time."
2564
+ msgstr "Es gibt derzeit keine bevorstehenden Veranstaltungen."
 
2565
 
lang/tribe-events-calendar-it_IT.mo CHANGED
Binary file
lang/tribe-events-calendar-it_IT.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: The Events Calendar 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-09-15 18:07-0500\n"
6
- "PO-Revision-Date: 2011-09-15 22:38+0100\n"
7
- "Last-Translator: Stefano Castelli <stefano.castelli@studiolost.it>\n"
8
  "Language-Team: Modern Tribe, Inc.\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -18,1057 +18,2209 @@ msgstr ""
18
  "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: ..\n"
20
 
21
- #@ tribe-events-calendar-pro
22
- #: views/events-advanced-list-load-widget-display.php:49
23
- #: views/widget-featured-display.php:48
24
- msgid "All Day"
25
- msgstr "Giorno intero"
26
 
27
- #@ tribe-events-calendar-pro
28
- #: views/events-advanced-list-load-widget-display.php:52
29
- msgid "Ends"
30
- msgstr "Termina"
 
 
 
31
 
32
- #@ tribe-events-calendar-pro
33
- #: views/events-advanced-list-load-widget-display.php:107
34
- msgid "Price:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  msgstr "Prezzo:"
36
 
37
- #@ tribe-events-calendar-pro
38
- #: views/single-venue.php:13
39
- msgid "&laquo; Back to Events"
40
- msgstr "&laquo; Torna agli Eventi"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
 
42
- #@ tribe-events-calendar-pro
43
- #: views/single-venue.php:19
44
- msgid "Name:"
45
- msgstr "Nome:"
46
 
47
- #@ tribe-events-calendar-pro
48
- #: views/single-venue.php:22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  msgid "Phone:"
50
  msgstr "Telefono:"
51
 
52
- #@ tribe-events-calendar-pro
53
- #: views/single-venue.php:28
54
- msgid "Address:"
55
- msgstr "Indirizzo:"
56
 
57
- #@ tribe-events-calendar-pro
58
- #: views/single-venue.php:30
59
- msgid "Click to view a Google Map"
60
- msgstr "Visualizza su Google Maps"
61
 
62
- #@ tribe-events-calendar-pro
63
- #: views/single-venue.php:30
64
- msgid "Google Map"
65
- msgstr "Google Map"
66
 
67
- #@ tribe-events-calendar-pro
68
- #: views/single-venue.php:62
69
- msgid "Start:"
70
- msgstr "Inizio:"
71
 
72
- #@ tribe-events-calendar-pro
73
- #: views/single-venue.php:66
74
- msgid "End:"
75
- msgstr "Termine:"
76
 
77
- #@ tribe-events-calendar-pro
78
- #: views/single-venue.php:74
79
- msgid "Cost:"
80
- msgstr "Prezzo:"
81
 
82
- #@ tribe-events-calendar-pro
83
- #: admin-views/event-defaults.php:1
84
- msgid "Customize Defaults"
85
- msgstr "Personalizza le impostazioni predefinite"
86
-
87
- #@ tribe-events-calendar-pro
88
- #: admin-views/event-defaults.php:2
89
- msgid "These settings change the default event form. For example, if you set a default venue, this field will be automatically filled in on a new event."
90
- msgstr "Queste impostazioni modificano il modulo Eventi predefinito. Per esempio, se si imposta un luogo predefinito, questo campo sar&agrave; automaticamente precompilato in ogni nuovo evento."
91
-
92
- #@ tribe-events-calendar-pro
93
- #: admin-views/event-defaults.php:5
94
- #: admin-views/event-defaults.php:9
95
- msgid "Automatically replace empty fields with default values"
96
- msgstr "Sostituisci automaticamente i campi vuoti con i valori predefiniti"
97
-
98
- #@ tribe-events-calendar-pro
99
- #: admin-views/event-defaults.php:13
100
- msgid "Enabled"
101
- msgstr "Attivato"
102
-
103
- #@ tribe-events-calendar-pro
104
- #: admin-views/event-defaults.php:19
105
- msgid "Default Organizer for Events"
106
- msgstr "Gestore eventi predefinito"
107
-
108
- #@ tribe-events-calendar-pro
109
- #: admin-views/event-defaults.php:22
110
- msgid "Default Organizer"
111
- msgstr "Gestore predefinito"
112
-
113
- #@ tribe-events-calendar-pro
114
- #: admin-views/event-defaults.php:23
115
- msgid "The default organizer value"
116
- msgstr "Il valore del gestore predefinito"
117
-
118
- #@ tribe-events-calendar-pro
119
- #: admin-views/event-defaults.php:23
120
- #: admin-views/event-defaults.php:31
121
- #: admin-views/event-defaults.php:38
122
- #: admin-views/event-defaults.php:45
123
- #: admin-views/event-defaults.php:66
124
- #: admin-views/event-defaults.php:74
125
- #: admin-views/event-defaults.php:82
126
- #: admin-views/event-defaults.php:108
127
- #, php-format
128
- msgid "The current default value is <strong>%s</strong>"
129
- msgstr "Il valore corrente &egrave; <strong>%s</strong>"
130
-
131
- #@ tribe-events-calendar-pro
132
- #: admin-views/event-defaults.php:27
133
- msgid "Default Venue for Events"
134
- msgstr "Luogo predefinito per gli eventi"
135
-
136
- #@ tribe-events-calendar-pro
137
- #: admin-views/event-defaults.php:30
138
- msgid "Default Venue"
139
- msgstr "Luogo predefinito"
140
-
141
- #@ tribe-events-calendar-pro
142
- #: admin-views/event-defaults.php:31
143
- msgid "The default venue value"
144
- msgstr "Il valore del luogo predefinito"
145
-
146
- #@ tribe-events-calendar-pro
147
- #: admin-views/event-defaults.php:35
148
- #: admin-views/event-defaults.php:37
149
- msgid "Default Address"
150
- msgstr "Indirizzo predefinito"
151
-
152
- #@ tribe-events-calendar-pro
153
- #: admin-views/event-defaults.php:38
154
- msgid "The default address value"
155
- msgstr "Il valore dell'indirizzo predefinito"
156
-
157
- #@ tribe-events-calendar-pro
158
- #: admin-views/event-defaults.php:42
159
- #: admin-views/event-defaults.php:44
160
- msgid "Default City"
161
- msgstr "Citt&agrave; predefinita"
162
-
163
- #@ tribe-events-calendar-pro
164
- #: admin-views/event-defaults.php:45
165
- msgid "The default city value"
166
- msgstr "Il valore della citt&agrave; predefinita"
167
-
168
- #@ tribe-events-calendar-pro
169
- #: admin-views/event-defaults.php:50
170
- msgid "Default State"
171
- msgstr "Stato predefinito"
172
-
173
- #@ tribe-events-calendar-pro
174
- #: admin-views/event-defaults.php:52
175
- #: admin-views/event-defaults.php:73
176
- msgid "Default Province or State"
177
- msgstr "Stato o Provincia predefiniti"
178
-
179
- #@ tribe-events-calendar-pro
180
- #: admin-views/event-defaults.php:55
181
  msgid "Select a State:"
182
  msgstr "Seleziona uno Stato:"
183
 
184
- #@ tribe-events-calendar-pro
185
- #: admin-views/event-defaults.php:66
186
- #: admin-views/event-defaults.php:74
187
- msgid "The default value"
188
- msgstr "Il valore predefinito"
189
-
190
- #@ tribe-events-calendar-pro
191
- #: admin-views/event-defaults.php:71
192
- msgid "Default Province"
193
- msgstr "La Provincia predefinita"
194
-
195
- #@ tribe-events-calendar-pro
196
- #: admin-views/event-defaults.php:79
197
- #: admin-views/event-defaults.php:81
198
- msgid "Default Postal Code"
199
- msgstr "Codice postale predefinito"
200
-
201
- #@ tribe-events-calendar-pro
202
- #: admin-views/event-defaults.php:82
203
- msgid "The default Postal Code value"
204
- msgstr "Il valore del codice postale predefinito"
205
-
206
- #@ tribe-events-calendar-pro
207
- #: admin-views/event-defaults.php:87
208
- msgid "Default Country for Events"
209
- msgstr "Stato predefinito per gli eventi"
210
-
211
- #@ tribe-events-calendar-pro
212
- #: admin-views/event-defaults.php:105
213
- #: admin-views/event-defaults.php:107
214
- msgid "Default Phone"
215
- msgstr "Telefono predefinito"
216
-
217
- #@ tribe-events-calendar-pro
218
- #: admin-views/event-defaults.php:108
219
- msgid "The default phone value"
220
- msgstr "Il valore del telefono predefinito"
221
-
222
- #@ tribe-events-calendar-pro
223
- #: admin-views/event-defaults.php:112
224
- msgid "Use a custom list of countries"
225
- msgstr "Usa una lista personalizzata di Paesi"
226
-
227
- #@ tribe-events-calendar-pro
228
- #: admin-views/event-defaults.php:114
229
- msgid "Use the following list:"
230
- msgstr "Usa la seguente lista:"
231
-
232
- #@ tribe-events-calendar-pro
233
- #: admin-views/event-defaults.php:116
234
- msgid "One country per line in the following format: <br/>US, United States <br/> UK, United Kingdom."
235
- msgstr "Un Paese per riga, nel seguente formato: <br/>USA, Stati Uniti d'America <br/>UK, Regno Unito."
236
-
237
- #@ tribe-events-calendar-pro
238
- #: admin-views/event-defaults.php:116
239
- msgid "(Replaces the default list.)"
240
- msgstr "(Sostituisce la lista predefinita.)"
241
-
242
- #@ tribe-events-calendar-pro
243
- #: admin-views/support-form.php:11
244
- msgid "Need help? Send us a support request."
245
- msgstr "Hai bisogno di aiuto? Inviaci una richiesta di supporto."
246
-
247
- #@ tribe-events-calendar-pro
248
- #: admin-views/support-form.php:14
249
- #, php-format
250
- msgid "Tell us about the problem you're seeing in as much detail as possible. Please note that we'll also be sending some basic system information along with this request so that we can better diagnose the issue. If you would like to contact us without sending any system information, please visit our support page at %s. Thanks!"
251
- msgstr "Informaci del problema con il maggiorn numero possibile di dettagli. Per meglio rislvere il problema, insieme a questa richiesta invieremo alcune informazioni di base sul sistema. Se invece preferisci evitare l'invio automatico di queste informazioni, visita la nostra pagina di supporto: %s. Grazie!"
252
-
253
- #@ tribe-events-calendar-pro
254
- #: admin-views/support-form.php:18
255
- msgid "Send a Support Request"
256
- msgstr "Invia una richiesta di supporto:"
257
-
258
- #@ tribe-events-calendar-pro
259
- #: admin-views/widget-admin-advanced-list.php:11
260
- #: admin-views/widget-admin-calendar.php:10
261
- #: admin-views/widget-admin-featured.php:10
262
  msgid "Title:"
263
  msgstr "Titolo:"
264
 
265
- #@ tribe-events-calendar-pro
266
- #: admin-views/widget-admin-advanced-list.php:16
267
  msgid "Show:"
268
  msgstr "Mostra:"
269
 
270
- #@ tribe-events-calendar-pro
271
- #: admin-views/widget-admin-advanced-list.php:24
272
  msgid "Show widget only if there are upcoming events:"
273
  msgstr "Mostra il widget solo se ci sono eventi in arrivo:"
274
 
275
- #@ tribe-events-calendar-pro
276
- #: admin-views/widget-admin-advanced-list.php:30
277
- msgid "Display:"
278
- msgstr "Mostra:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
279
 
280
- #@ tribe-events-calendar-pro
281
- #: admin-views/widget-admin-advanced-list.php:33
282
- msgid "Start Date & Time"
283
- msgstr "Data / ora di inizio"
284
 
285
- #@ tribe-events-calendar-pro
286
- #: admin-views/widget-admin-advanced-list.php:33
287
- msgid "(Widget will always show start date)"
288
- msgstr "(Il widget mostrer&agrave; sempre l'ora di inizio)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
289
 
290
- #@ tribe-events-calendar-pro
291
- #: admin-views/widget-admin-advanced-list.php:34
292
- msgid "End Date & Time"
293
- msgstr "Data / ora di termine"
294
 
295
- #@ tribe-events-calendar-pro
296
- #: admin-views/widget-admin-advanced-list.php:35
297
  msgid "Venue"
298
  msgstr "Localit&agrave;"
299
 
300
- #@ tribe-events-calendar-pro
301
- #: admin-views/widget-admin-advanced-list.php:36
302
- msgid "Address"
303
- msgstr "Indirizzo"
304
-
305
- #@ tribe-events-calendar-pro
306
- #: admin-views/widget-admin-advanced-list.php:37
307
- msgid "City"
308
- msgstr "Citt&agrave;"
309
-
310
- #@ tribe-events-calendar-pro
311
- #: admin-views/widget-admin-advanced-list.php:38
312
- msgid "State (US) Or Province (Int)"
313
- msgstr "Stato (USA) o Provincia (Int)"
314
-
315
- #@ tribe-events-calendar-pro
316
- #: admin-views/widget-admin-advanced-list.php:39
317
- msgid "Postal Code"
318
- msgstr "Codice postale"
319
-
320
- #@ tribe-events-calendar-pro
321
- #: admin-views/widget-admin-advanced-list.php:40
322
- msgid "Country"
323
- msgstr "Paese"
324
-
325
- #@ tribe-events-calendar-pro
326
- #: admin-views/widget-admin-advanced-list.php:41
327
- msgid "Phone"
328
- msgstr "Telefono"
329
-
330
- #@ tribe-events-calendar-pro
331
- #: admin-views/widget-admin-advanced-list.php:42
332
- msgid "Price"
333
- msgstr "Prezzo"
334
-
335
- #@ tribe-events-calendar-pro
336
- #: admin-views/widget-admin-advanced-list.php:49
337
- #: admin-views/widget-admin-featured.php:13
338
- msgid "Category:"
339
- msgstr "Categoria:"
340
 
341
- #@ tribe-events-calendar-pro
342
- #: admin-views/widget-admin-advanced-list.php:64
343
- msgid "If you wish to customize the widget display yourself, see the file views/events-list-load-widget-display.php inside the Events Premium plugin."
344
- msgstr "Se preferisci personalizzarti l'aspetto del widget, vedi il file views/events-list-load-widget-display.php dentro la cartella del plugin eventi in versione Premium"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
345
 
346
- #@ tribe-events-calendar-pro
347
- #: admin-views/event-meta-options.php:1
348
- msgid "Additional Fields"
349
- msgstr "Campi aggiuntivi"
350
-
351
- #@ tribe-events-calendar-pro
352
- #: admin-views/event-meta-options.php:2
353
- msgid "You can set up any additional custom fields that you would like to use for events here."
354
- msgstr "Qui puoi configurare i campi aggiuntivi per i tuoi eventi"
355
-
356
- #@ tribe-events-calendar-pro
357
- #: admin-views/event-meta-options.php:4
358
- msgid "Field Label"
359
- msgstr "Etichetta"
360
-
361
- #@ tribe-events-calendar-pro
362
- #: admin-views/event-meta-options.php:4
363
- msgid "Field Type"
364
- msgstr "Tipo campo"
365
-
366
- #@ tribe-events-calendar-pro
367
- #: admin-views/event-meta-options.php:4
368
- msgid "Options (one per line)"
369
- msgstr "Opzioni (una per riga)"
370
-
371
- #@ tribe-events-calendar-pro
372
- #: admin-views/event-meta-options.php:12
373
- msgid "Text"
374
- msgstr "Testo"
375
-
376
- #@ tribe-events-calendar-pro
377
- #: admin-views/event-meta-options.php:13
378
- msgid "Radio"
379
- msgstr "Radio button"
380
-
381
- #@ tribe-events-calendar-pro
382
- #: admin-views/event-meta-options.php:14
383
- msgid "Checkbox"
384
- msgstr "Checkbox"
385
-
386
- #@ tribe-events-calendar-pro
387
- #: admin-views/event-meta-options.php:15
388
- msgid "Dropdown"
389
- msgstr "Menu a tendina"
390
-
391
- #@ tribe-events-calendar-pro
392
- #: admin-views/event-meta-options.php:21
393
- msgid "Add another"
394
- msgstr "Aggiungi"
395
-
396
- #@ tribe-events-calendar-pro
397
- #: admin-views/event-meta-options.php:23
398
- msgid "Remove"
399
- msgstr "Rimuovi"
400
-
401
- #@ tribe-events-calendar-pro
402
- #: admin-views/event-meta-options.php:35
403
- msgid "Are you sure you wish to remove this field and its data from all events? Once you click OK this cannot be undone."
404
- msgstr "Sei certo di voler rimuovere questo campo e i relativi dati da tutti gli eventi? Se clicchi OK non potrai tornare indietro."
405
-
406
- #@ tribe-events-calendar-pro
407
- #: admin-views/event-recurrence.php:2
408
- msgid "Recurrence:"
409
- msgstr "Ripetizione:"
410
-
411
- #@ tribe-events-calendar-pro
412
- #: admin-views/event-recurrence.php:7
413
- msgid "None"
414
- msgstr "Nessuna"
415
-
416
- #@ tribe-events-calendar-pro
417
- #: admin-views/event-recurrence.php:8
418
- msgid "Every Day"
419
- msgstr "Ogni giorno"
420
-
421
- #@ tribe-events-calendar-pro
422
- #: admin-views/event-recurrence.php:9
423
- msgid "Every Week"
424
- msgstr "Ogni settimana"
425
-
426
- #@ tribe-events-calendar-pro
427
- #: admin-views/event-recurrence.php:10
428
- msgid "Every Month"
429
- msgstr "Ogni mese"
430
-
431
- #@ tribe-events-calendar-pro
432
- #: admin-views/event-recurrence.php:11
433
- msgid "Every Year"
434
- msgstr "Ogni anno"
435
-
436
- #@ tribe-events-calendar-pro
437
- #: admin-views/event-recurrence.php:12
438
- msgid "Custom"
439
- msgstr "Personalizzata"
440
-
441
- #@ tribe-events-calendar-pro
442
- #: admin-views/event-recurrence.php:15
443
- msgid "End"
444
- msgstr "Termine"
445
-
446
- #@ tribe-events-calendar-pro
447
- #: admin-views/event-recurrence.php:17
448
- msgid "On"
449
- msgstr "Il"
450
-
451
- #@ tribe-events-calendar-pro
452
- #: admin-views/event-recurrence.php:18
453
- msgid "After"
454
- msgstr "Dopo"
455
-
456
- #@ tribe-events-calendar-pro
457
- #: admin-views/event-recurrence.php:22
458
- msgid "You must select a recurrence end date"
459
- msgstr "Devi selezionare una data per il termine della ripetizione"
460
-
461
- #@ tribe-events-calendar-pro
462
- #: admin-views/event-recurrence.php:29
463
- msgid "Frequency"
464
- msgstr "Frequenza"
465
-
466
- #@ tribe-events-calendar-pro
467
- #: admin-views/event-recurrence.php:31
468
- msgid "Day(s)"
469
- msgstr "Giorno(i)"
470
-
471
- #@ tribe-events-calendar-pro
472
- #: admin-views/event-recurrence.php:31
473
- msgid "Daily"
474
- msgstr "Quotidiano"
475
-
476
- #@ tribe-events-calendar-pro
477
- #: admin-views/event-recurrence.php:32
478
- msgid "Week(s) on:"
479
- msgstr "Settimana(e) il:"
480
-
481
- #@ tribe-events-calendar-pro
482
- #: admin-views/event-recurrence.php:32
483
- msgid "Weekly"
484
- msgstr "Settimanale"
485
-
486
- #@ tribe-events-calendar-pro
487
- #: admin-views/event-recurrence.php:33
488
- msgid "Month(s) on the:"
489
- msgstr "Mese(i) il:"
490
-
491
- #@ tribe-events-calendar-pro
492
- #: admin-views/event-recurrence.php:33
493
- msgid "Monthly"
494
- msgstr "Mensile"
495
-
496
- #@ tribe-events-calendar-pro
497
- #: admin-views/event-recurrence.php:34
498
- msgid "Year(s) on:"
499
- msgstr "Anno(i) il:"
500
-
501
- #@ tribe-events-calendar-pro
502
- #: admin-views/event-recurrence.php:34
503
- msgid "Yearly"
504
- msgstr "Annuale"
505
-
506
- #@ tribe-events-calendar-pro
507
- #: admin-views/event-recurrence.php:36
508
- msgid "Every"
509
- msgstr "Ogni"
510
-
511
- #@ tribe-events-calendar-pro
512
- #: admin-views/event-recurrence.php:46
513
- msgid "M"
514
- msgstr "Lu"
515
-
516
- #@ tribe-events-calendar-pro
517
- #: admin-views/event-recurrence.php:47
518
- msgid "Tu"
519
- msgstr "Ma"
520
-
521
- #@ tribe-events-calendar-pro
522
- #: admin-views/event-recurrence.php:48
523
- msgid "W"
524
- msgstr "Me"
525
-
526
- #@ tribe-events-calendar-pro
527
- #: admin-views/event-recurrence.php:49
528
- msgid "Th"
529
- msgstr "Gi"
530
-
531
- #@ tribe-events-calendar-pro
532
- #: admin-views/event-recurrence.php:50
533
- msgid "F"
534
- msgstr "Ve"
535
-
536
- #@ tribe-events-calendar-pro
537
- #: admin-views/event-recurrence.php:51
538
- msgid "Sa"
539
- msgstr "Sa"
540
-
541
- #@ tribe-events-calendar-pro
542
- #: admin-views/event-recurrence.php:52
543
- msgid "Su"
544
- msgstr "Do"
545
-
546
- #@ tribe-events-calendar-pro
547
- #: admin-views/event-recurrence.php:60
548
- #: admin-views/event-recurrence.php:109
549
- msgid "First"
550
- msgstr "Primo"
551
-
552
- #@ tribe-events-calendar-pro
553
- #: admin-views/event-recurrence.php:61
554
- #: admin-views/event-recurrence.php:110
555
- msgid "Second"
556
- msgstr "Secondo"
557
-
558
- #@ tribe-events-calendar-pro
559
- #: admin-views/event-recurrence.php:62
560
- #: admin-views/event-recurrence.php:111
561
- msgid "Third"
562
- msgstr "Terzo"
563
-
564
- #@ tribe-events-calendar-pro
565
- #: admin-views/event-recurrence.php:63
566
- #: admin-views/event-recurrence.php:112
567
- msgid "Fourth"
568
- msgstr "Quarto"
569
-
570
- #@ tribe-events-calendar-pro
571
- #: admin-views/event-recurrence.php:64
572
- #: admin-views/event-recurrence.php:113
573
- msgid "Last"
574
- msgstr "Ultimo"
575
-
576
- #@ tribe-events-calendar-pro
577
- #@ default
578
- #: admin-views/event-recurrence.php:71
579
- #: admin-views/event-recurrence.php:116
580
- #: lib/tribe-events-recurrence-meta.class.php:522
581
- msgid "Monday"
582
- msgstr "Luned&igrave;"
583
-
584
- #@ tribe-events-calendar-pro
585
- #@ default
586
- #: admin-views/event-recurrence.php:72
587
- #: admin-views/event-recurrence.php:117
588
- #: lib/tribe-events-recurrence-meta.class.php:522
589
- msgid "Tuesday"
590
- msgstr "Marted&igrave;"
591
-
592
- #@ tribe-events-calendar-pro
593
- #@ default
594
- #: admin-views/event-recurrence.php:73
595
- #: admin-views/event-recurrence.php:118
596
- #: lib/tribe-events-recurrence-meta.class.php:522
597
- msgid "Wednesday"
598
- msgstr "Mercoled&igrave;"
599
-
600
- #@ tribe-events-calendar-pro
601
- #@ default
602
- #: admin-views/event-recurrence.php:74
603
- #: admin-views/event-recurrence.php:119
604
- #: lib/tribe-events-recurrence-meta.class.php:522
605
- msgid "Thursday"
606
- msgstr "Gioved&igrave;"
607
-
608
- #@ tribe-events-calendar-pro
609
- #@ default
610
- #: admin-views/event-recurrence.php:75
611
- #: admin-views/event-recurrence.php:120
612
- #: lib/tribe-events-recurrence-meta.class.php:522
613
- msgid "Friday"
614
- msgstr "Venerd&igrave;"
615
-
616
- #@ tribe-events-calendar-pro
617
- #@ default
618
- #: admin-views/event-recurrence.php:76
619
- #: admin-views/event-recurrence.php:121
620
- #: lib/tribe-events-recurrence-meta.class.php:522
621
- msgid "Saturday"
622
- msgstr "Sabato"
623
-
624
- #@ tribe-events-calendar-pro
625
- #@ default
626
- #: admin-views/event-recurrence.php:77
627
- #: admin-views/event-recurrence.php:122
628
- #: lib/tribe-events-recurrence-meta.class.php:522
629
- msgid "Sunday"
630
- msgstr "Domenica"
631
-
632
- #@ tribe-events-calendar-pro
633
- #: admin-views/event-recurrence.php:79
634
- #: admin-views/event-recurrence.php:124
635
- msgid "Day"
636
- msgstr "Giorno"
637
-
638
- #@ tribe-events-calendar-pro
639
- #: admin-views/event-recurrence.php:88
640
- msgid "Jan"
641
- msgstr "Gen"
642
-
643
- #@ tribe-events-calendar-pro
644
- #: admin-views/event-recurrence.php:89
645
- msgid "Feb"
646
- msgstr "Feb"
647
-
648
- #@ tribe-events-calendar-pro
649
- #: admin-views/event-recurrence.php:90
650
- msgid "Mar"
651
- msgstr "Mar"
652
-
653
- #@ tribe-events-calendar-pro
654
- #: admin-views/event-recurrence.php:91
655
- msgid "Apr"
656
- msgstr "Apr"
657
-
658
- #@ tribe-events-calendar-pro
659
- #@ default
660
- #: admin-views/event-recurrence.php:92
661
- #: lib/tribe-events-recurrence-meta.class.php:548
662
- msgid "May"
663
- msgstr "Mag"
664
-
665
- #@ tribe-events-calendar-pro
666
- #: admin-views/event-recurrence.php:93
667
- msgid "Jun"
668
- msgstr "Giu"
669
-
670
- #@ tribe-events-calendar-pro
671
- #: admin-views/event-recurrence.php:97
672
- msgid "Jul"
673
- msgstr "Lug"
674
-
675
- #@ tribe-events-calendar-pro
676
- #: admin-views/event-recurrence.php:98
677
- msgid "Aug"
678
- msgstr "Ago"
679
-
680
- #@ tribe-events-calendar-pro
681
- #: admin-views/event-recurrence.php:99
682
- msgid "Sep"
683
- msgstr "Set"
684
-
685
- #@ tribe-events-calendar-pro
686
- #: admin-views/event-recurrence.php:100
687
- msgid "Oct"
688
- msgstr "Ott"
689
-
690
- #@ tribe-events-calendar-pro
691
- #: admin-views/event-recurrence.php:101
692
- msgid "Nov"
693
- msgstr "Nov"
694
-
695
- #@ tribe-events-calendar-pro
696
- #: admin-views/event-recurrence.php:102
697
- msgid "Dec"
698
- msgstr "Dic"
699
-
700
- #@ tribe-events-calendar-pro
701
- #: admin-views/event-recurrence.php:107
702
- msgid "On the:"
703
- msgstr "Il:"
704
-
705
- #@ tribe-events-calendar-pro
706
- #: admin-views/event-meta.php:6
707
- msgid "Event Custom Fields"
708
- msgstr "Campo personalizzato evento"
709
-
710
- #@ tribe-events-calendar-pro
711
- #: admin-views/widget-admin-featured.php:17
712
- msgid "All Events"
713
- msgstr "Tutti gli eventi"
714
-
715
- #@ default
716
- #: vendor/advanced-post-manager/views/edit-filters.php:7
717
- #: vendor/advanced-post-manager/views/edit-filters.php:8
718
- msgid "Click to toggle"
719
- msgstr "Clicca per passare oltre"
720
-
721
- #@ tribe-events-calendar
722
- #: vendor/advanced-post-manager/views/edit-filters.php:8
723
- msgid "Filters &amp; Columns"
724
- msgstr "Filtri &amp; Colonne"
725
-
726
- #@ tribe-events-calendar
727
- #: vendor/advanced-post-manager/views/edit-filters.php:17
728
- msgid "Apply"
729
- msgstr "Applica"
730
-
731
- #@ tribe-events-calendar
732
- #: vendor/advanced-post-manager/views/edit-filters.php:18
733
- msgid "Clear"
734
- msgstr "Pulisci"
735
-
736
- #@ tribe-events-calendar
737
- #: vendor/advanced-post-manager/views/edit-filters.php:19
738
- #: vendor/advanced-post-manager/views/edit-filters.php:26
739
- msgid "Save"
740
- msgstr "Salva"
741
-
742
- #@ tribe-events-calendar
743
- #: vendor/advanced-post-manager/views/edit-filters.php:21
744
- msgid "Export to CSV"
745
- msgstr "Esporta in formato CSV"
746
-
747
- #@ tribe-events-calendar
748
- #: vendor/advanced-post-manager/views/edit-filters.php:25
749
- msgid "Filter Name"
750
- msgstr "Nome del filtro"
751
-
752
- #@ tribe-events-calendar
753
- #: vendor/advanced-post-manager/views/edit-filters.php:27
754
- msgid "Cancel"
755
- msgstr "Cancella"
756
-
757
- #@ tribe-apm
758
- #: vendor/advanced-post-manager/demo/demo.php:29
759
  #, php-format
760
- msgid "It looks like you might not have any demo data. <a href=\"%s\">Download our data</a> and use the <a href=\"%s\">WordPress Importer</a>."
761
- msgstr "Pare proprio che tu non disponga di alcun dato dimostrativo. <a href=\"%s\">Scarica i nostri dati</a> ed usa il <a href=\"%s\">Plugin di importazione di WordPress</a>."
762
-
763
- #@ tribe-events-calendar
764
- #: vendor/advanced-post-manager/lib/tribe-filters.class.php:504
765
- msgid "Choose a Saved Filter"
766
- msgstr "Scegli tra i filtri salvati"
767
-
768
- #@ tribe-events-calendar
769
- #: vendor/advanced-post-manager/lib/tribe-filters.class.php:620
770
- msgid "Add a Filter"
771
- msgstr "Aggiungi un filtro"
772
-
773
- #@ tribe-events-calendar
774
- #: vendor/advanced-post-manager/lib/tribe-meta-box-helper.php:42
775
- msgid "Extended Information"
776
- msgstr "Informazioni estese"
777
-
778
- #@ tribe-events-calendar
779
- #: vendor/advanced-post-manager/lib/tribe-columns.class.php:129
780
- msgid "Add a Column"
781
- msgstr "Aggiungi una colonna"
782
-
783
- #@ default
784
- #: vendor/advanced-post-manager/lib/tribe-meta-box.php:124
785
- #: vendor/advanced-post-manager/lib/tribe-meta-box.php:393
786
- msgid "Delete this image"
787
- msgstr "Elimina questa immagine"
788
-
789
- #@ default
790
- #: vendor/advanced-post-manager/lib/tribe-meta-box.php:124
791
- #: vendor/advanced-post-manager/lib/tribe-meta-box.php:350
792
- #: vendor/advanced-post-manager/lib/tribe-meta-box.php:393
793
- msgid "Delete"
794
- msgstr "Elimina"
795
-
796
- #@ default
797
- #: vendor/advanced-post-manager/lib/tribe-meta-box.php:346
798
- msgid "Uploaded files"
799
- msgstr "File caricati"
800
-
801
- #@ default
802
- #: vendor/advanced-post-manager/lib/tribe-meta-box.php:356
803
- msgid "Upload new files"
804
- msgstr "Carica nuovi file"
805
-
806
- #@ default
807
- #: vendor/advanced-post-manager/lib/tribe-meta-box.php:359
808
- msgid "Add more file"
809
- msgstr "Aggiungi file"
810
-
811
- #@ default
812
- #: vendor/advanced-post-manager/lib/tribe-meta-box.php:400
813
- msgid "Add more images"
814
- msgstr "Aggiungi immagini"
815
-
816
- #@ default
817
- #: vendor/advanced-post-manager/lib/tribe-meta-box.php:407
818
- msgid "Select a color"
819
- msgstr "Seleziona un colore"
820
-
821
- #@ default
822
- #: lib/widget-calendar.class.php:14
823
- msgid "A calendar of your events"
824
- msgstr "Un calendario dei tuoi eventi"
825
-
826
- #@ default
827
- #: lib/widget-calendar.class.php:15
828
- msgid "Events Calendar"
829
- msgstr "Calendario eventi"
830
-
831
- #@ tribe-events-calendar-pro
832
- #: lib/tribe-support.class.php:52
833
- msgid "Send a support request for this site."
834
- msgstr "Invia una richiesta di supporto per questo sito."
835
-
836
- #@ default
837
- #: lib/tribe-events-recurrence-meta.class.php:359
838
- msgid "Monthly custom recurrences cannot have a dash set as the day to occur on."
839
- msgstr "Le ricorrenze mensili personalizzate non possono avere un trattino impostato come il giorno in cui si verificano."
840
-
841
- #@ default
842
- #: lib/tribe-events-recurrence-meta.class.php:362
843
- msgid "Yearly custom recurrences cannot have a dash set as the day to occur on."
844
- msgstr "Le ricorrenze annuali personalizzate non possono avere impostato un trattino come il giorno in cui si verificano."
845
-
846
- #@ default
847
- #: lib/tribe-events-recurrence-meta.class.php:460
848
- #: lib/tribe-events-recurrence-meta.class.php:475
849
- msgid "Every day"
850
- msgstr "Ogni giorno"
851
-
852
- #@ default
853
- #: lib/tribe-events-recurrence-meta.class.php:464
854
- #: lib/tribe-events-recurrence-meta.class.php:480
855
- msgid "Every week"
856
- msgstr "Ogni settimana"
857
-
858
- #@ default
859
- #: lib/tribe-events-recurrence-meta.class.php:467
860
- #: lib/tribe-events-recurrence-meta.class.php:486
861
- msgid "Every month"
862
- msgstr "Ogni mese"
863
-
864
- #@ default
865
- #: lib/tribe-events-recurrence-meta.class.php:470
866
- #: lib/tribe-events-recurrence-meta.class.php:493
867
- msgid "Every year"
868
- msgstr "Ogni anno"
869
-
870
- #@ default
871
- #: lib/tribe-events-recurrence-meta.class.php:476
872
  #, php-format
873
- msgid "Every %d days"
874
- msgstr "Ogni %d giorni"
 
 
 
 
 
 
875
 
876
- #@ default
877
- #: lib/tribe-events-recurrence-meta.class.php:481
878
  #, php-format
879
- msgid "Every %d weeks"
880
- msgstr "Ogni %d settimane"
881
 
882
- #@ default
883
- #: lib/tribe-events-recurrence-meta.class.php:482
884
  #, php-format
885
- msgid " on %s"
886
- msgstr " il %s"
 
 
 
 
887
 
888
- #@ default
889
- #: lib/tribe-events-recurrence-meta.class.php:487
890
  #, php-format
891
- msgid "Every %d months"
892
- msgstr "Ogni %d mesi"
893
 
894
- #@ default
895
- #: lib/tribe-events-recurrence-meta.class.php:489
896
  #, php-format
897
- msgid " on the %s %s"
898
- msgstr " il %s %s"
899
 
900
- #@ default
901
- #: lib/tribe-events-recurrence-meta.class.php:489
902
- msgid "day"
903
- msgstr "giorno"
904
 
905
- #@ default
906
- #: lib/tribe-events-recurrence-meta.class.php:494
907
  #, php-format
908
- msgid "Every %d years"
909
- msgstr "Ogni %d anni"
910
 
911
- #@ default
912
- #: lib/tribe-events-recurrence-meta.class.php:496
913
- msgid "last"
914
- msgstr "ultimo"
915
 
916
- #@ default
917
- #: lib/tribe-events-recurrence-meta.class.php:501
918
  #, php-format
919
- msgid " on the %s %s of %s"
920
- msgstr " il %s %s del %s"
921
 
922
- #@ default
923
- #: lib/tribe-events-recurrence-meta.class.php:508
924
  #, php-format
925
- msgid " until %s"
926
- msgstr " fino al %s"
 
 
 
 
927
 
928
- #@ default
929
- #: lib/tribe-events-recurrence-meta.class.php:513
930
  #, php-format
931
- msgid "%s%s%s"
932
- msgstr "%s%s%s"
933
-
934
- #@ default
935
- #: lib/tribe-events-recurrence-meta.class.php:528
936
- #: lib/tribe-events-recurrence-meta.class.php:554
937
- msgid ", and "
938
- msgstr ", e "
939
-
940
- #@ default
941
- #: lib/tribe-events-recurrence-meta.class.php:530
942
- #: lib/tribe-events-recurrence-meta.class.php:556
943
- msgid " and "
944
- msgstr " e "
945
-
946
- #@ default
947
- #: lib/tribe-events-recurrence-meta.class.php:532
948
- #: lib/tribe-events-recurrence-meta.class.php:558
949
- msgid ", "
950
- msgstr ", "
951
-
952
- #@ default
953
- #: lib/tribe-events-recurrence-meta.class.php:547
954
- msgid "January"
955
- msgstr "Gennaio"
956
-
957
- #@ default
958
- #: lib/tribe-events-recurrence-meta.class.php:547
959
- msgid "February"
960
- msgstr "Febbraio"
961
-
962
- #@ default
963
- #: lib/tribe-events-recurrence-meta.class.php:547
964
- msgid "March"
965
- msgstr "Marzo"
966
-
967
- #@ default
968
- #: lib/tribe-events-recurrence-meta.class.php:547
969
- msgid "April"
970
- msgstr "Aprile"
971
-
972
- #@ default
973
- #: lib/tribe-events-recurrence-meta.class.php:548
974
- msgid "June"
975
- msgstr "Giugno"
976
-
977
- #@ default
978
- #: lib/tribe-events-recurrence-meta.class.php:548
979
- msgid "July"
980
- msgstr "Luglio"
981
-
982
- #@ default
983
- #: lib/tribe-events-recurrence-meta.class.php:548
984
- msgid "August"
985
- msgstr "Agosto"
986
-
987
- #@ default
988
- #: lib/tribe-events-recurrence-meta.class.php:548
989
- msgid "September"
990
- msgstr "Settembre"
991
-
992
- #@ default
993
- #: lib/tribe-events-recurrence-meta.class.php:548
994
- msgid "October"
995
- msgstr "Ottobre"
996
-
997
- #@ default
998
- #: lib/tribe-events-recurrence-meta.class.php:548
999
- msgid "November"
1000
- msgstr "Novembre"
1001
-
1002
- #@ default
1003
- #: lib/tribe-events-recurrence-meta.class.php:548
1004
- msgid "December"
1005
- msgstr "Dicembre"
1006
-
1007
- #@ default
1008
- #: lib/widget-featured.class.php:13
1009
- msgid "Your next upcoming event"
1010
- msgstr "Il prossimo evento"
1011
-
1012
- #@ default
1013
- #: lib/widget-featured.class.php:14
1014
- msgid "Next Event Widget"
1015
- msgstr "Widget Prossimo Evento"
1016
-
1017
- #@ tribe-events-calendar-pro
1018
- #: lib/widget-featured.class.php:62
1019
- msgid "There are no upcoming events at this time."
1020
- msgstr "Non ci sono eventi in arrivo al momento."
1021
 
1022
- #@ tribe-events-calendar-pro
1023
- #: lib/widget-advanced-list.class.php:16
1024
- msgid "A widget that displays the next upcoming x events."
1025
- msgstr "Un widget che mostra i prossimi N eventi."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1026
 
1027
- #@ default
1028
- #: lib/plugins/pue-client.php:306
1029
- msgid "Dismiss"
1030
- msgstr "Elimina"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1031
 
1032
- #@ default
1033
- #: lib/tribe-events-recurrence-meta.class.php:461
1034
  #, php-format
1035
- msgid " for %d day"
1036
- msgid_plural " for %d days"
1037
- msgstr[0] " per %d giorno"
1038
- msgstr[1] " per %d giorni"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1039
 
1040
- #@ default
1041
- #: lib/tribe-events-recurrence-meta.class.php:465
 
 
 
1042
  #, php-format
1043
- msgid " for %d week"
1044
- msgid_plural " for %d weeks"
1045
- msgstr[0] " per %d settimana"
1046
- msgstr[1] " per %d settimane"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1047
 
1048
- #@ default
1049
- #: lib/tribe-events-recurrence-meta.class.php:468
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1050
  #, php-format
1051
- msgid " for %d month"
1052
- msgid_plural " for %d months"
1053
- msgstr[0] " per %d mese"
1054
- msgstr[1] " per %d mesi"
1055
 
1056
- #@ default
1057
- #: lib/tribe-events-recurrence-meta.class.php:471
1058
  #, php-format
1059
- msgid " for %d year"
1060
- msgid_plural " for %d years"
1061
- msgstr[0] " per %d anno"
1062
- msgstr[1] " per %d anni"
1063
-
1064
- #@ default
1065
- #: lib/tribe-events-recurrence-meta.class.php:477
1066
- #: lib/tribe-events-recurrence-meta.class.php:483
1067
- #: lib/tribe-events-recurrence-meta.class.php:490
1068
- #: lib/tribe-events-recurrence-meta.class.php:502
1069
  #, php-format
1070
- msgid ", recurring %d time"
1071
- msgid_plural ", recurring %d times"
1072
- msgstr[0] ", ricorre %d volta"
1073
- msgstr[1] ", ricorre %d volte"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1074
 
2
  msgstr ""
3
  "Project-Id-Version: The Events Calendar 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-11-03 18:53+0100\n"
6
+ "PO-Revision-Date: 2011-11-12 11:48-0500\n"
7
+ "Last-Translator: John Gadbois <jgadbois@gmail.com>\n"
8
  "Language-Team: Modern Tribe, Inc.\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
18
  "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: ..\n"
20
 
21
+ # @ tribe-events-calendar-pro
22
+ #: ../admin-views/event-sidebar-options.php:11
23
+ msgid "Hide From Upcoming Events List"
24
+ msgstr "Nascondi dalla lista dei prossimi eventi"
 
25
 
26
+ #: ../admin-views/events-meta-box.php:26
27
+ msgid "Event Time &amp; Date"
28
+ msgstr "Data e ora evento"
29
+
30
+ #: ../admin-views/events-meta-box.php:29
31
+ msgid "You have changed the recurrence rules of this event. Saving the event will update all future events. If you did not mean to change all events, then please refresh the page."
32
+ msgstr ""
33
 
34
+ # @ tribe-events-calendar-pro
35
+ #: ../admin-views/events-meta-box.php:32
36
+ msgid "All day event?"
37
+ msgstr "Evento giornaliero?"
38
+
39
+ # @ tribe-events-calendar-pro
40
+ #: ../admin-views/events-meta-box.php:36
41
+ msgid "Start Date / Time:"
42
+ msgstr "Data / ora di inizio:"
43
+
44
+ #: ../admin-views/events-meta-box.php:39
45
+ #: ../admin-views/events-meta-box.php:60
46
+ msgid "YYYY-MM-DD"
47
+ msgstr "YYYY-MM-DD"
48
+
49
+ #: ../admin-views/events-meta-box.php:41
50
+ #: ../admin-views/events-meta-box.php:62
51
+ msgid "@"
52
+ msgstr "@"
53
+
54
+ # @ tribe-events-calendar-pro
55
+ #: ../admin-views/events-meta-box.php:57
56
+ msgid "End Date / Time:"
57
+ msgstr "Data / ora di fine:"
58
+
59
+ #: ../admin-views/events-meta-box.php:79
60
+ msgid "Event Location Details"
61
+ msgstr "Dettagli della location"
62
+
63
+ # @ tribe-events-calendar-pro
64
+ #: ../admin-views/events-meta-box.php:85
65
+ msgid "Show Google Maps Link:"
66
+ msgstr "Mostra il link di Google Maps:"
67
+
68
+ # @ tribe-events-calendar-pro
69
+ #: ../admin-views/events-meta-box.php:92
70
+ msgid "Show Google Map:"
71
+ msgstr "Mostra la Google Map:"
72
+
73
+ # @ tribe-events-calendar-pro
74
+ #: ../admin-views/events-meta-box.php:101
75
+ msgid "Event Organizer Details"
76
+ msgstr "Dettagli dell'organizzatore dell'evento"
77
+
78
+ # @ tribe-events-calendar-pro
79
+ #: ../admin-views/events-meta-box.php:110
80
+ msgid "Event Cost"
81
+ msgstr "Costo evento"
82
+
83
+ # @ tribe-events-calendar-pro
84
+ #: ../admin-views/events-meta-box.php:113
85
+ msgid "Cost:"
86
  msgstr "Prezzo:"
87
 
88
+ #: ../admin-views/events-meta-box.php:118
89
+ msgid "Leave blank to hide the field. Enter a 0 for events that are free."
90
+ msgstr "Lascia buanco per nascondere il campo. Inserisci 0 per gli eventi gratuiti."
91
+
92
+ #: ../admin-views/events-options.php:47
93
+ #, php-format
94
+ msgid "%s Settings"
95
+ msgstr "%s Impostazioni"
96
+
97
+ #: ../admin-views/events-options.php:51
98
+ msgid "Need a hand?"
99
+ msgstr "Bisogno di una mano?"
100
+
101
+ #: ../admin-views/events-options.php:52
102
+ #, php-format
103
+ msgid "If you're stuck on these options, please go to the <a href=\"%s\">support forum</a>."
104
+ msgstr "Se non sai come muoverti tra le opzioni, vai al <a href=\"%s\">forum di supporto</a>."
105
+
106
+ #: ../admin-views/events-options.php:54
107
+ msgid "Here is the iCal feed URL for your events: "
108
+ msgstr "Questo è l'iCal feed URL per i tuoi eventi:"
109
+
110
+ #: ../admin-views/events-options.php:60
111
+ msgid "Settings"
112
+ msgstr "Impostazioni"
113
+
114
+ # @ tribe-events-calendar-pro
115
+ #: ../admin-views/events-options.php:63
116
+ #: ../admin-views/events-options.php:67
117
+ msgid "Default View for the Events"
118
+ msgstr "Vista predefinita per gli eventi"
119
+
120
+ # @ tribe-events-calendar
121
+ #: ../admin-views/events-options.php:71
122
+ msgid "Calendar"
123
+ msgstr "Calendario"
124
+
125
+ # @ tribe-events-calendar-pro
126
+ #: ../admin-views/events-options.php:75
127
+ msgid "Event List"
128
+ msgstr "Lista Eventi"
129
+
130
+ #: ../admin-views/events-options.php:81
131
+ #: ../admin-views/events-options.php:85
132
+ #: ../admin-views/events-options.php:87
133
+ msgid "Show Comments"
134
+ msgstr "Mostra i commenti"
135
+
136
+ #: ../admin-views/events-options.php:95
137
+ #: ../admin-views/events-options.php:99
138
+ msgid "Multiday Event Cutoff"
139
+ msgstr ""
140
+
141
+ #: ../admin-views/events-options.php:113
142
+ msgid "For multi-day events, hide the last day from grid view if it ends on or before this time."
143
+ msgstr ""
144
+
145
+ # @ tribe-events-calendar-pro
146
+ #: ../admin-views/events-options.php:118
147
+ #: ../admin-views/events-options.php:122
148
+ msgid "Enable Google Maps"
149
+ msgstr "Abilita Google Maps"
150
+
151
+ #: ../admin-views/events-options.php:128
152
+ msgid "Height"
153
+ msgstr "Altezza"
154
+
155
+ #: ../admin-views/events-options.php:129
156
+ msgid "Width"
157
+ msgstr "Larghezza"
158
+
159
+ #: ../admin-views/events-options.php:129
160
+ msgid "(number or %)"
161
+ msgstr "(numbero o %)"
162
+
163
+ #: ../admin-views/events-options.php:133
164
+ msgid "If you don't have this turned on, your event listings won't have the backend map preview or frontend embedded map."
165
+ msgstr ""
166
+
167
+ #: ../admin-views/events-options.php:141
168
+ #: ../admin-views/events-options.php:143
169
+ msgid "Events URL slug"
170
+ msgstr "URL slug eventi"
171
+
172
+ #: ../admin-views/events-options.php:144
173
+ msgid "The slug used for building the Events URL."
174
+ msgstr "Lo slug usato per costruire l'URL degli eventi."
175
+
176
+ # @ tribe-events-calendar-pro
177
+ #: ../admin-views/events-options.php:144
178
+ #, php-format
179
+ msgid "Your current Events URL is <strong><a href=\"%s\">%s</a></strong>"
180
+ msgstr "Il tuo URL per gli Eventi è <strong><a href=\"%s\">%s</a></strong>"
181
+
182
+ #: ../admin-views/events-options.php:148
183
+ #: ../admin-views/events-options.php:150
184
+ msgid "Single Event URL slug"
185
+ msgstr "URL slug evento singolo"
186
+
187
+ #: ../admin-views/events-options.php:151
188
+ msgid "The slug used for building a single Event URL."
189
+ msgstr "Lo slog usato per costruire l'URL del singolo evento."
190
+
191
+ #: ../admin-views/events-options.php:152
192
+ #, php-format
193
+ msgid "<strong>NOTE:</strong> You <em>cannot</em> use the same slug as above. The above should ideally be plural, and this singular.<br />Your single Event URL is like: <strong>%s</strong>"
194
+ msgstr ""
195
+
196
+ #: ../admin-views/events-options.php:157
197
+ #: ../admin-views/events-options.php:159
198
+ msgid "Debug"
199
+ msgstr ""
200
 
201
+ #: ../admin-views/events-options.php:160
202
+ msgid "Debug Events display issues."
203
+ msgstr "Debug per problemi di visualizzazione degli eventi."
 
204
 
205
+ #: ../admin-views/events-options.php:161
206
+ #, php-format
207
+ msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the <a href=\"%s\" target=\"_blank\">Debug Bar Plugin</a> and look for the \"Tribe\" tab in the debug output."
208
+ msgstr ""
209
+
210
+ #: ../admin-views/events-options.php:166
211
+ msgid "Theme Settings"
212
+ msgstr "Impostazioni del tema"
213
+
214
+ # @ default
215
+ #: ../admin-views/events-options.php:169
216
+ #: ../admin-views/events-options.php:171
217
+ msgid "Events Template"
218
+ msgstr "Template Eventi"
219
+
220
+ # @ tribe-events-calendar-pro
221
+ #: ../admin-views/events-options.php:173
222
+ msgid "Default Events Template"
223
+ msgstr "Template Eventi predefinito"
224
+
225
+ # @ tribe-events-calendar-pro
226
+ #: ../admin-views/events-options.php:174
227
+ msgid "Default Page Template"
228
+ msgstr "Template Pagina predefinito"
229
+
230
+ #: ../admin-views/events-options.php:177
231
+ msgid "Choose a page template to control the look and feel of your calendar."
232
+ msgstr "Scegli un template da associare al tuo calendario."
233
+
234
+ #: ../admin-views/events-options.php:181
235
+ #: ../admin-views/events-options.php:183
236
+ #: ../admin-views/events-options.php:191
237
+ msgid "Add HTML before calendar"
238
+ msgstr "Aggiungi HTML prima del calendario"
239
+
240
+ #: ../admin-views/events-options.php:185
241
+ msgid "Some themes may require that you add extra divs before the calendar list to help with styling."
242
+ msgstr ""
243
+
244
+ #: ../admin-views/events-options.php:185
245
+ msgid "This is displayed directly after the header."
246
+ msgstr ""
247
+
248
+ #: ../admin-views/events-options.php:185
249
+ #: ../admin-views/events-options.php:193
250
+ msgid "You may use (x)HTML."
251
+ msgstr "Puoi usare (x)HTML."
252
+
253
+ #: ../admin-views/events-options.php:189
254
+ msgid "Add HTML after calendar"
255
+ msgstr "Aggiungi HTML dopo il calendario"
256
+
257
+ #: ../admin-views/events-options.php:193
258
+ msgid "Some themes may require that you add extra divs after the calendar list to help with styling."
259
+ msgstr ""
260
+
261
+ #: ../admin-views/events-options.php:193
262
+ msgid "This is displayed directly above the footer."
263
+ msgstr "Questo è visualizzato direttamente sopra il footer."
264
+
265
+ #: ../admin-views/events-options.php:202
266
+ msgid "Save Changes"
267
+ msgstr "Salva i cambiamenti"
268
+
269
+ # @ tribe-events-calendar
270
+ #: ../admin-views/organizer-meta-box.php:11
271
+ msgid "Organizer Name:"
272
+ msgstr "Nome organizzatore:"
273
+
274
+ # @ tribe-events-calendar-pro
275
+ #: ../admin-views/organizer-meta-box.php:17
276
+ #: ../admin-views/venue-meta-box.php:79
277
  msgid "Phone:"
278
  msgstr "Telefono:"
279
 
280
+ #: ../admin-views/organizer-meta-box.php:21
281
+ msgid "Website:"
282
+ msgstr "Sito web:"
 
283
 
284
+ #: ../admin-views/organizer-meta-box.php:25
285
+ msgid "Email:"
286
+ msgstr "Email:"
 
287
 
288
+ #: ../admin-views/recurrence-dialog.php:11
289
+ msgid "Which events do you wish to update?"
290
+ msgstr "Quali eventi vorresti aggiornare?"
 
291
 
292
+ #: ../admin-views/recurrence-dialog.php:14
293
+ msgid "Select your desired action"
294
+ msgstr "Seleziona la tua azione desiderata"
 
295
 
296
+ # @ tribe-events-calendar-pro
297
+ #: ../admin-views/venue-meta-box.php:12
298
+ msgid "Venue Name:"
299
+ msgstr "Locale:"
300
 
301
+ # @ tribe-events-calendar-pro
302
+ #: ../admin-views/venue-meta-box.php:19
303
+ msgid "Address:"
304
+ msgstr "Indirizzo:"
305
 
306
+ # @ tribe-events-calendar-pro
307
+ #: ../admin-views/venue-meta-box.php:23
308
+ msgid "City:"
309
+ msgstr "Città:"
310
+
311
+ # @ tribe-events-calendar-pro
312
+ #: ../admin-views/venue-meta-box.php:27
313
+ msgid "Country:"
314
+ msgstr "Nazione:"
315
+
316
+ # @ tribe-events-calendar-pro
317
+ #: ../admin-views/venue-meta-box.php:58
318
+ msgid "State or Province:"
319
+ msgstr "Stato (USA) o Provincia (Int):"
320
+
321
+ # @ tribe-events-calendar-pro
322
+ #: ../admin-views/venue-meta-box.php:61
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
323
  msgid "Select a State:"
324
  msgstr "Seleziona uno Stato:"
325
 
326
+ # @ tribe-events-calendar-pro
327
+ #: ../admin-views/venue-meta-box.php:75
328
+ msgid "Postal Code:"
329
+ msgstr "Codice postale:"
330
+
331
+ # @ tribe-events-calendar-pro
332
+ #: ../admin-views/widget-admin-list.php:11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
333
  msgid "Title:"
334
  msgstr "Titolo:"
335
 
336
+ # @ tribe-events-calendar-pro
337
+ #: ../admin-views/widget-admin-list.php:16
338
  msgid "Show:"
339
  msgstr "Mostra:"
340
 
341
+ # @ tribe-events-calendar-pro
342
+ #: ../admin-views/widget-admin-list.php:24
343
  msgid "Show widget only if there are upcoming events:"
344
  msgstr "Mostra il widget solo se ci sono eventi in arrivo:"
345
 
346
+ # @ tribe-events-calendar-pro
347
+ #: ../admin-views/widget-admin-list.php:30
348
+ msgid "If you wish to customize the widget display yourself, see the file views/events-list-load-widget-display.php inside the Events Premium plugin."
349
+ msgstr "Se preferisci personalizzarti l'aspetto del widget, vedi il file views/events-list-load-widget-display.php dentro la cartella del plugin eventi in versione Premium"
350
+
351
+ # @ default
352
+ #: ../lib/the-events-calendar.class.php:236
353
+ msgid "The Events Calendar"
354
+ msgstr "Calendario Eventi"
355
+
356
+ # @ tribe-events-calendar-pro
357
+ #: ../lib/the-events-calendar.class.php:239
358
+ msgid "category"
359
+ msgstr "categoria"
360
+
361
+ # @ tribe-events-calendar-pro
362
+ #: ../lib/the-events-calendar.class.php:240
363
+ msgid "month"
364
+ msgstr "mese"
365
+
366
+ #: ../lib/the-events-calendar.class.php:241
367
+ msgid "upcoming"
368
+ msgstr ""
369
+
370
+ # @ tribe-events-calendar-pro
371
+ #: ../lib/the-events-calendar.class.php:242
372
+ msgid "past"
373
+ msgstr "passato"
374
+
375
+ # @ tribe-events-calendar-pro
376
+ #: ../lib/the-events-calendar.class.php:244
377
+ msgid "venue"
378
+ msgstr "Locale"
379
+
380
+ #: ../lib/the-events-calendar.class.php:254
381
+ #, php-format
382
+ msgid "Initializing Tribe Events on %s"
383
+ msgstr ""
384
+
385
+ #: ../lib/the-events-calendar.class.php:311
386
+ #, php-format
387
+ msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
388
+ msgstr ""
389
+
390
+ #: ../lib/the-events-calendar.class.php:314
391
+ #, php-format
392
+ msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
393
+ msgstr ""
394
+
395
+ # @ default
396
+ #: ../lib/the-events-calendar.class.php:435
397
+ msgid "Upcoming Events"
398
+ msgstr "Prossimi Eventi"
399
+
400
+ # @ tribe-events-calendar-pro
401
+ #: ../lib/the-events-calendar.class.php:437
402
+ msgid "Past Events"
403
+ msgstr "Eventi Passati"
404
+
405
+ #: ../lib/the-events-calendar.class.php:441
406
+ #: ../lib/the-events-calendar.class.php:447
407
+ #, php-format
408
+ msgid "Events for %s"
409
+ msgstr "Eventi per %s"
410
+
411
+ # @ default
412
+ #: ../lib/the-events-calendar.class.php:443
413
+ msgid "Events this month"
414
+ msgstr "Eventi di questo mese"
415
+
416
+ #: ../lib/the-events-calendar.class.php:453
417
+ #, php-format
418
+ msgid "Events at %s"
419
+ msgstr ""
420
 
421
+ #: ../lib/the-events-calendar.class.php:465
422
+ msgid "No description has been entered for this event."
423
+ msgstr ""
 
424
 
425
+ # @ tribe-events-calendar-pro
426
+ #: ../lib/the-events-calendar.class.php:530
427
+ msgid "Events"
428
+ msgstr "Eventi"
429
+
430
+ # @ tribe-events-calendar-pro
431
+ #: ../lib/the-events-calendar.class.php:531
432
+ msgid "Event"
433
+ msgstr "Evento"
434
+
435
+ #: ../lib/the-events-calendar.class.php:532
436
+ #: ../lib/the-events-calendar.class.php:545
437
+ #: ../lib/the-events-calendar.class.php:558
438
+ msgid "Add New"
439
+ msgstr "Aggiungi nuovo"
440
+
441
+ # @ tribe-events-calendar-pro
442
+ #: ../lib/the-events-calendar.class.php:533
443
+ msgid "Add New Event"
444
+ msgstr "Aggiungi nuovo evento"
445
+
446
+ # @ tribe-events-calendar-pro
447
+ #: ../lib/the-events-calendar.class.php:534
448
+ msgid "Edit Event"
449
+ msgstr "Modifica evento"
450
+
451
+ # @ tribe-events-calendar-pro
452
+ #: ../lib/the-events-calendar.class.php:535
453
+ msgid "New Event"
454
+ msgstr "Nuovo evento"
455
+
456
+ # @ tribe-events-calendar-pro
457
+ #: ../lib/the-events-calendar.class.php:536
458
+ msgid "View Event"
459
+ msgstr "Vedi evento"
460
+
461
+ # @ tribe-events-calendar-pro
462
+ #: ../lib/the-events-calendar.class.php:537
463
+ msgid "Search Events"
464
+ msgstr "Ricerca Eventi"
465
+
466
+ #: ../lib/the-events-calendar.class.php:538
467
+ msgid "No events found"
468
+ msgstr "Nessun evento trovato"
469
+
470
+ #: ../lib/the-events-calendar.class.php:539
471
+ msgid "No events found in Trash"
472
+ msgstr ""
473
 
474
+ # @ tribe-events-calendar-pro
475
+ #: ../lib/the-events-calendar.class.php:543
476
+ msgid "Venues"
477
+ msgstr "Luoghi"
478
 
479
+ # @ tribe-events-calendar-pro
480
+ #: ../lib/the-events-calendar.class.php:544
481
  msgid "Venue"
482
  msgstr "Localit&agrave;"
483
 
484
+ #: ../lib/the-events-calendar.class.php:546
485
+ msgid "Add New Venue"
486
+ msgstr "Aggiungi nuovo luogo"
487
+
488
+ # @ tribe-events-calendar-pro
489
+ #: ../lib/the-events-calendar.class.php:547
490
+ msgid "Edit Venue"
491
+ msgstr "Modifica luogo"
492
+
493
+ # @ tribe-events-calendar-pro
494
+ #: ../lib/the-events-calendar.class.php:548
495
+ msgid "New Venue"
496
+ msgstr "Nuovo Locale"
497
+
498
+ # @ tribe-events-calendar-pro
499
+ #: ../lib/the-events-calendar.class.php:549
500
+ #: ../lib/the-events-calendar.class.php:562
501
+ msgid "View Venue"
502
+ msgstr "Vedi Locale"
503
+
504
+ # @ tribe-events-calendar-pro
505
+ #: ../lib/the-events-calendar.class.php:550
506
+ msgid "Search Venues"
507
+ msgstr "Ricerca Locali"
508
+
509
+ #: ../lib/the-events-calendar.class.php:551
510
+ msgid "No venue found"
511
+ msgstr "Nessun luogo trovato"
512
+
513
+ #: ../lib/the-events-calendar.class.php:552
514
+ msgid "No venues found in Trash"
515
+ msgstr ""
 
 
 
 
 
 
 
 
516
 
517
+ # @ tribe-events-calendar-pro
518
+ #: ../lib/the-events-calendar.class.php:556
519
+ msgid "Organizers"
520
+ msgstr "Organizzatori"
521
+
522
+ # @ tribe-events-calendar-pro
523
+ #: ../lib/the-events-calendar.class.php:557
524
+ msgid "Organizer"
525
+ msgstr "Organizzatore"
526
+
527
+ # @ tribe-events-calendar-pro
528
+ #: ../lib/the-events-calendar.class.php:559
529
+ msgid "Add New Organizer"
530
+ msgstr "Aggiungi Nuovo Organizzatore"
531
+
532
+ # @ tribe-events-calendar-pro
533
+ #: ../lib/the-events-calendar.class.php:560
534
+ msgid "Edit Organizer"
535
+ msgstr "Modifica organizzatore"
536
+
537
+ # @ tribe-events-calendar-pro
538
+ #: ../lib/the-events-calendar.class.php:561
539
+ msgid "New Organizer"
540
+ msgstr "Nuovo Organizzatore"
541
+
542
+ # @ tribe-events-calendar-pro
543
+ #: ../lib/the-events-calendar.class.php:563
544
+ msgid "Search Organizers"
545
+ msgstr "Ricerca Organizzatori"
546
+
547
+ #: ../lib/the-events-calendar.class.php:564
548
+ msgid "No organizer found"
549
+ msgstr "Nessun organizzatore trovato"
550
+
551
+ #: ../lib/the-events-calendar.class.php:565
552
+ msgid "No organizers found in Trash"
553
+ msgstr ""
554
+
555
+ # @ tribe-events-calendar-pro
556
+ #: ../lib/the-events-calendar.class.php:569
557
+ #: ../lib/tribe-admin-events-list.class.php:172
558
+ msgid "Event Categories"
559
+ msgstr "Categorie eventi"
560
+
561
+ # @ tribe-events-calendar-pro
562
+ #: ../lib/the-events-calendar.class.php:570
563
+ msgid "Event Category"
564
+ msgstr "Categoria Evento"
565
+
566
+ #: ../lib/the-events-calendar.class.php:571
567
+ msgid "Search Event Categories"
568
+ msgstr "Ricerca categorie evento"
569
+
570
+ # @ tribe-events-calendar-pro
571
+ #: ../lib/the-events-calendar.class.php:572
572
+ msgid "All Event Categories"
573
+ msgstr "Tutte le categorie eventi"
574
+
575
+ #: ../lib/the-events-calendar.class.php:573
576
+ msgid "Parent Event Category"
577
+ msgstr ""
578
+
579
+ #: ../lib/the-events-calendar.class.php:574
580
+ msgid "Parent Event Category:"
581
+ msgstr ""
582
+
583
+ #: ../lib/the-events-calendar.class.php:575
584
+ msgid "Edit Event Category"
585
+ msgstr ""
586
+
587
+ #: ../lib/the-events-calendar.class.php:576
588
+ msgid "Update Event Category"
589
+ msgstr ""
590
+
591
+ #: ../lib/the-events-calendar.class.php:577
592
+ msgid "Add New Event Category"
593
+ msgstr "Aggiungi nuova categoria evento"
594
+
595
+ #: ../lib/the-events-calendar.class.php:578
596
+ msgid "New Event Category Name"
597
+ msgstr ""
598
+
599
+ #: ../lib/the-events-calendar.class.php:588
600
+ #, php-format
601
+ msgid "Event updated. <a href=\"%s\">View event</a>"
602
+ msgstr "Evento aggiornato. <a href=\"%s\" target=\"_blank\">Vedi evento</a>"
603
+
604
+ #: ../lib/the-events-calendar.class.php:589
605
+ #: ../lib/the-events-calendar.class.php:606
606
+ #: ../lib/the-events-calendar.class.php:623
607
+ msgid "Custom field updated."
608
+ msgstr ""
609
+
610
+ # @ tribe-events-calendar-pro
611
+ #: ../lib/the-events-calendar.class.php:590
612
+ #: ../lib/the-events-calendar.class.php:607
613
+ #: ../lib/the-events-calendar.class.php:624
614
+ msgid "Custom field deleted."
615
+ msgstr "Campo personalizzato eliminato."
616
+
617
+ # @ default
618
+ #: ../lib/the-events-calendar.class.php:591
619
+ msgid "Event updated."
620
+ msgstr "Evento aggiornato."
621
+
622
+ #: ../lib/the-events-calendar.class.php:593
623
+ #, php-format
624
+ msgid "Event restored to revision from %s"
625
+ msgstr ""
626
+
627
+ #: ../lib/the-events-calendar.class.php:594
628
+ #, php-format
629
+ msgid "Event published. <a href=\"%s\">View event</a>"
630
+ msgstr "Evento pubblicato. <a href=\"%s\" target=\"_blank\">Vedi evento</a>"
631
+
632
+ # @ default
633
+ #: ../lib/the-events-calendar.class.php:595
634
+ msgid "Event saved."
635
+ msgstr "Evento salvato."
636
 
637
+ #: ../lib/the-events-calendar.class.php:596
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
638
  #, php-format
639
+ msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
640
+ msgstr "Event inviato. <a target=\"_blank\" href=\"%s\">Anteprima evento</a>"
641
+
642
+ #: ../lib/the-events-calendar.class.php:597
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
643
  #, php-format
644
+ msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
645
+ msgstr "Evento programmato perr: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Anteprima evento</a>"
646
+
647
+ #: ../lib/the-events-calendar.class.php:599
648
+ #: ../lib/the-events-calendar.class.php:616
649
+ #: ../lib/the-events-calendar.class.php:633
650
+ msgid "M j, Y @ G:i"
651
+ msgstr "j M Y @ G:i"
652
 
653
+ #: ../lib/the-events-calendar.class.php:600
 
654
  #, php-format
655
+ msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
656
+ msgstr "Bozza evento aggiornata. <a target=\"_blank\" href=\"%s\">Anteprima evento</a>"
657
 
658
+ #: ../lib/the-events-calendar.class.php:605
 
659
  #, php-format
660
+ msgid "Venue updated. <a href=\"%s\">View venue</a>"
661
+ msgstr ""
662
+
663
+ #: ../lib/the-events-calendar.class.php:608
664
+ msgid "Venue updated."
665
+ msgstr ""
666
 
667
+ #: ../lib/the-events-calendar.class.php:610
 
668
  #, php-format
669
+ msgid "Venue restored to revision from %s"
670
+ msgstr ""
671
 
672
+ #: ../lib/the-events-calendar.class.php:611
 
673
  #, php-format
674
+ msgid "Venue published. <a href=\"%s\">View venue</a>"
675
+ msgstr ""
676
 
677
+ #: ../lib/the-events-calendar.class.php:612
678
+ msgid "Venue saved."
679
+ msgstr ""
 
680
 
681
+ #: ../lib/the-events-calendar.class.php:613
 
682
  #, php-format
683
+ msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
684
+ msgstr ""
685
 
686
+ #: ../lib/the-events-calendar.class.php:614
687
+ #, php-format
688
+ msgid "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview venue</a>"
689
+ msgstr ""
690
 
691
+ #: ../lib/the-events-calendar.class.php:617
 
692
  #, php-format
693
+ msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
694
+ msgstr ""
695
 
696
+ #: ../lib/the-events-calendar.class.php:622
 
697
  #, php-format
698
+ msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
699
+ msgstr ""
700
+
701
+ #: ../lib/the-events-calendar.class.php:625
702
+ msgid "Organizer updated."
703
+ msgstr ""
704
 
705
+ #: ../lib/the-events-calendar.class.php:627
 
706
  #, php-format
707
+ msgid "Organizer restored to revision from %s"
708
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
709
 
710
+ #: ../lib/the-events-calendar.class.php:628
711
+ #, php-format
712
+ msgid "Organizer published. <a href=\"%s\">View organizer</a>"
713
+ msgstr ""
714
+
715
+ #: ../lib/the-events-calendar.class.php:629
716
+ msgid "Organizer saved."
717
+ msgstr ""
718
+
719
+ #: ../lib/the-events-calendar.class.php:630
720
+ #, php-format
721
+ msgid "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
722
+ msgstr ""
723
+
724
+ #: ../lib/the-events-calendar.class.php:631
725
+ #, php-format
726
+ msgid "Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview organizer</a>"
727
+ msgstr ""
728
+
729
+ #: ../lib/the-events-calendar.class.php:634
730
+ #, php-format
731
+ msgid "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
732
+ msgstr ""
733
 
734
+ # @ tribe-events-calendar-pro
735
+ #: ../lib/the-events-calendar.class.php:689
736
+ msgid "Next"
737
+ msgstr "Prossimo"
738
+
739
+ # @ tribe-events-calendar-pro
740
+ #: ../lib/the-events-calendar.class.php:690
741
+ msgid "Prev"
742
+ msgstr "Precedente"
743
+
744
+ # @ default
745
+ #: ../lib/the-events-calendar.class.php:691
746
+ msgid "Today"
747
+ msgstr "Oggi"
748
+
749
+ # @ tribe-events-calendar-pro
750
+ #: ../lib/the-events-calendar.class.php:692
751
+ msgid "Done"
752
+ msgstr "Fatto"
753
+
754
+ #: ../lib/the-events-calendar.class.php:1790
755
+ msgid "Event Options"
756
+ msgstr "Opzioni evento"
757
+
758
+ # @ tribe-events-calendar
759
+ #: ../lib/the-events-calendar.class.php:1792
760
+ msgid "Venue Information"
761
+ msgstr "Informazioni"
762
+
763
+ # @ tribe-events-calendar
764
+ #: ../lib/the-events-calendar.class.php:1793
765
+ msgid "Organizer Information"
766
+ msgstr "Informazioni dell'organizzatore"
767
+
768
+ #: ../lib/the-events-calendar.class.php:1906
769
+ msgid "Support"
770
+ msgstr "Supporto"
771
+
772
+ #: ../lib/the-events-calendar.class.php:1909
773
+ msgid "View All Add-Ons"
774
+ msgstr "Guarda tutti gli Add-Ons"
775
+
776
+ #: ../lib/the-events-calendar.class.php:1916
777
+ msgid "News from Tribe Pro"
778
+ msgstr "News da Tribe Pro"
779
+
780
+ # @ tribe-events-calendar-pro
781
+ #: ../lib/the-events-calendar.class.php:1961
782
+ msgid "Additional Functionality"
783
+ msgstr "Funzionalità aggiuntive"
784
+
785
+ #: ../lib/the-events-calendar.class.php:1966
786
+ #: ../lib/the-events-calendar.class.php:1972
787
+ msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
788
+ msgstr "Cerchi funzionalità aggiuntive incluso eventi ricorrenti, meta personalizzati, eventi per community, vendita ticket e altro?"
789
+
790
+ #: ../lib/the-events-calendar.class.php:1966
791
+ #: ../lib/the-events-calendar.class.php:1973
792
+ #, php-format
793
+ msgid "Check out the <a href=\"%s\">available Add-Ons</a>."
794
+ msgstr "Dai uno sguardo agli <a href=\"%s\">Add-Ons disponibili</a>."
795
 
796
+ #: ../lib/tribe-admin-events-list.class.php:40
 
797
  #, php-format
798
+ msgid "View &#8220;%s&#8221;"
799
+ msgstr "Vedi &#8220;%s&#8221;"
800
+
801
+ #: ../lib/tribe-admin-events-list.class.php:40
802
+ msgid "View"
803
+ msgstr "Vedi"
804
+
805
+ # @ tribe-events-calendar-pro
806
+ #: ../lib/tribe-admin-events-list.class.php:177
807
+ msgid "Start Date"
808
+ msgstr "Data inizio"
809
+
810
+ # @ tribe-events-calendar-pro
811
+ #: ../lib/tribe-admin-events-list.class.php:178
812
+ msgid "End Date"
813
+ msgstr "Data fine"
814
+
815
+ # @ tribe-events-calendar-pro
816
+ #: ../lib/tribe-admin-events-list.class.php:179
817
+ msgid "Recurring?"
818
+ msgstr "Ricorrente?"
819
+
820
+ #: ../lib/tribe-admin-events-list.class.php:222
821
+ msgid "Yes"
822
+ msgstr "Si"
823
+
824
+ # @ tribe-events-calendar-pro
825
+ #: ../lib/tribe-admin-events-list.class.php:222
826
+ msgid "No"
827
+ msgstr "No"
828
+
829
+ # @ tribe-events-calendar-pro
830
+ #: ../lib/tribe-admin-events-list.class.php:276
831
+ #, php-format
832
+ msgid "All %s"
833
+ msgstr "Tutti %s"
834
+
835
+ # @ tribe-events-calendar-pro
836
+ #: ../lib/tribe-debug-bar.class.php:18
837
+ msgid "Tribe"
838
+ msgstr "Tribe"
839
+
840
+ #: ../lib/tribe-event-exception.class.php:17
841
+ #: ../lib/tribe-event-exception.class.php:34
842
+ msgid "Error"
843
+ msgstr "Errore"
844
+
845
+ #: ../lib/tribe-the-events-calendar-import.class.php:44
846
+ msgid "Welcome to Events 2.0! This is a HUGE upgrade from 1.6.5. Please make sure you have backed up before proceeding any further. You can easily <a href=\" http://wordpress.org/extend/plugins/the-events-calendar/download/\">revert to an old version</a> if you want to backup first. This upgrade includes two major steps, <a href=\"options-general.php?page=tribe-events-calendar\">migrating data</a> & updating your templates as necessary. There have been significant changes to the template tags and functions. Check out our <a href=\"http://tri.be/migrating-from-events-calendar-1-6-5-to-2-0\">walkthrough on the upgrade</a> before proceeding and check out the FAQ & Knowledge base from the <a href=\"http://tri.be/support/\">support page</a>.<br/><br/> You have events that need to be migrated. Please visit the bottom of the <a href=\"options-general.php?page=tribe-events-calendar\">settings page</a> to perform the migration."
847
+ msgstr "Benvenuto a Events 2.0! Questo è un ENORME aggiornamento dalla 1.6.5. Fai un backup dei tuoi dati prima di procedere. Puoi facilmente <a href=\" http://wordpress.org/extend/plugins/the-events-calendar/download/\">ripristinare una vecchia versione</a> se vuoi prima effettuare un backup. Questo aggiornamento include tue punti principali, <a href=\"options-general.php?page=tribe-events-calendar\">migrare i contenuti</a> & aggiornare i tuoi template se necessario. Ci sono stati cambiamenti sostanziali ai tag dei template e alle funzioni. Dai uno sguardo alla nostra<a href=\"http://tri.be/migrating-from-events-calendar-1-6-5-to-2-0\">guida all'aggiornamento</a> prima di procedere e controlla la sezione FAQ e Knowledge base nella <a href=\"http://tri.be/support/\">pagina di supporto</a>.<br/><br/> I tuoi eventi hanno bisogno di essere convertiti. Vai in fondo alla <a href=\"options-general.php?page=tribe-events-calendar\">pagina delle impostazioni</a> per eseguire la migrazione."
848
+
849
+ # @ default
850
+ #: ../lib/tribe-the-events-calendar-import.class.php:54
851
+ msgid "Upgrade from The Events Calendar"
852
+ msgstr "Aggiornamento per The Events Calendar"
853
+
854
+ #: ../lib/tribe-the-events-calendar-import.class.php:55
855
+ msgid "It appears that you have some old events calendar data that needs to be upgraded. Please be sure to back up your database before initiating the upgrade. This process can not be undone."
856
+ msgstr "Sembra che tu abbia dei vecchi eventi che necessitano di essere aggiornati. Fai un backup del tuo database prima di iniziare. Il processo non può essere annullato."
857
 
858
+ #: ../lib/tribe-the-events-calendar-import.class.php:56
859
+ msgid "Migrate Data!"
860
+ msgstr "Migrazione dei dati"
861
+
862
+ #: ../lib/tribe-the-events-calendar-import.class.php:128
863
  #, php-format
864
+ msgid "You successfully migrated (%d) entries."
865
+ msgstr "Hai migrato con successo (%d) voci."
866
+
867
+ #: ../lib/tribe-the-events-calendar-import.class.php:199
868
+ msgid "Install has 1 or more legacy event!"
869
+ msgstr "L'installazione ha 1 o più eventi ereditati!"
870
+
871
+ # @ default
872
+ #: ../lib/tribe-view-helpers.class.php:16
873
+ #: ../lib/tribe-view-helpers.class.php:33
874
+ msgid "Select a Country:"
875
+ msgstr "Seleziona una nazione:"
876
+
877
+ #: ../lib/tribe-view-helpers.class.php:34
878
+ msgid "United States"
879
+ msgstr "United States"
880
+
881
+ #: ../lib/tribe-view-helpers.class.php:35
882
+ msgid "Afghanistan"
883
+ msgstr "Afghanistan"
884
+
885
+ #: ../lib/tribe-view-helpers.class.php:36
886
+ msgid "Albania"
887
+ msgstr "Albania"
888
+
889
+ #: ../lib/tribe-view-helpers.class.php:37
890
+ msgid "Algeria"
891
+ msgstr "Algeria"
892
+
893
+ #: ../lib/tribe-view-helpers.class.php:38
894
+ msgid "American Samoa"
895
+ msgstr "American Samoa"
896
+
897
+ #: ../lib/tribe-view-helpers.class.php:39
898
+ msgid "Andorra"
899
+ msgstr "Andorra"
900
+
901
+ #: ../lib/tribe-view-helpers.class.php:40
902
+ msgid "Angola"
903
+ msgstr "Angola"
904
+
905
+ #: ../lib/tribe-view-helpers.class.php:41
906
+ msgid "Anguilla"
907
+ msgstr "Anguilla"
908
+
909
+ #: ../lib/tribe-view-helpers.class.php:42
910
+ msgid "Antarctica"
911
+ msgstr "Antarctica"
912
+
913
+ #: ../lib/tribe-view-helpers.class.php:43
914
+ msgid "Antigua And Barbuda"
915
+ msgstr "Antigua And Barbuda"
916
+
917
+ #: ../lib/tribe-view-helpers.class.php:44
918
+ msgid "Argentina"
919
+ msgstr "Argentina"
920
+
921
+ #: ../lib/tribe-view-helpers.class.php:45
922
+ msgid "Armenia"
923
+ msgstr "Armenia"
924
+
925
+ #: ../lib/tribe-view-helpers.class.php:46
926
+ msgid "Aruba"
927
+ msgstr "Aruba"
928
+
929
+ #: ../lib/tribe-view-helpers.class.php:47
930
+ msgid "Australia"
931
+ msgstr "Australia"
932
+
933
+ # @ default
934
+ #: ../lib/tribe-view-helpers.class.php:48
935
+ msgid "Austria"
936
+ msgstr "Austria"
937
+
938
+ #: ../lib/tribe-view-helpers.class.php:49
939
+ msgid "Azerbaijan"
940
+ msgstr "Azerbaijan"
941
+
942
+ #: ../lib/tribe-view-helpers.class.php:50
943
+ msgid "Bahamas"
944
+ msgstr "Bahamas"
945
+
946
+ #: ../lib/tribe-view-helpers.class.php:51
947
+ msgid "Bahrain"
948
+ msgstr "Bahrain"
949
+
950
+ #: ../lib/tribe-view-helpers.class.php:52
951
+ msgid "Bangladesh"
952
+ msgstr "Bangladesh"
953
+
954
+ #: ../lib/tribe-view-helpers.class.php:53
955
+ msgid "Barbados"
956
+ msgstr "Barbados"
957
+
958
+ #: ../lib/tribe-view-helpers.class.php:54
959
+ msgid "Belarus"
960
+ msgstr "Belarus"
961
+
962
+ #: ../lib/tribe-view-helpers.class.php:55
963
+ msgid "Belgium"
964
+ msgstr "Belgium"
965
+
966
+ #: ../lib/tribe-view-helpers.class.php:56
967
+ msgid "Belize"
968
+ msgstr "Belize"
969
+
970
+ #: ../lib/tribe-view-helpers.class.php:57
971
+ msgid "Benin"
972
+ msgstr "Benin"
973
+
974
+ #: ../lib/tribe-view-helpers.class.php:58
975
+ msgid "Bermuda"
976
+ msgstr "Bermuda"
977
+
978
+ #: ../lib/tribe-view-helpers.class.php:59
979
+ msgid "Bhutan"
980
+ msgstr "Bhutan"
981
+
982
+ #: ../lib/tribe-view-helpers.class.php:60
983
+ msgid "Bolivia"
984
+ msgstr "Bolivia"
985
+
986
+ #: ../lib/tribe-view-helpers.class.php:61
987
+ msgid "Bosnia And Herzegowina"
988
+ msgstr "Bosnia And Herzegowina"
989
+
990
+ #: ../lib/tribe-view-helpers.class.php:62
991
+ msgid "Botswana"
992
+ msgstr "Botswana"
993
+
994
+ #: ../lib/tribe-view-helpers.class.php:63
995
+ msgid "Bouvet Island"
996
+ msgstr "Bouvet Island"
997
+
998
+ #: ../lib/tribe-view-helpers.class.php:64
999
+ msgid "Brazil"
1000
+ msgstr "Brazil"
1001
+
1002
+ #: ../lib/tribe-view-helpers.class.php:65
1003
+ msgid "British Indian Ocean Territory"
1004
+ msgstr "British Indian Ocean Territory"
1005
+
1006
+ #: ../lib/tribe-view-helpers.class.php:66
1007
+ msgid "Brunei Darussalam"
1008
+ msgstr "Brunei Darussalam"
1009
+
1010
+ #: ../lib/tribe-view-helpers.class.php:67
1011
+ msgid "Bulgaria"
1012
+ msgstr "Bulgaria"
1013
+
1014
+ #: ../lib/tribe-view-helpers.class.php:68
1015
+ msgid "Burkina Faso"
1016
+ msgstr "Burkina Faso"
1017
+
1018
+ #: ../lib/tribe-view-helpers.class.php:69
1019
+ msgid "Burundi"
1020
+ msgstr "Burundi"
1021
+
1022
+ #: ../lib/tribe-view-helpers.class.php:70
1023
+ msgid "Cambodia"
1024
+ msgstr "Cambodia"
1025
+
1026
+ #: ../lib/tribe-view-helpers.class.php:71
1027
+ msgid "Cameroon"
1028
+ msgstr "Cameroon"
1029
+
1030
+ #: ../lib/tribe-view-helpers.class.php:72
1031
+ msgid "Canada"
1032
+ msgstr "Canada"
1033
+
1034
+ #: ../lib/tribe-view-helpers.class.php:73
1035
+ msgid "Cape Verde"
1036
+ msgstr "Cape Verde"
1037
+
1038
+ #: ../lib/tribe-view-helpers.class.php:74
1039
+ msgid "Cayman Islands"
1040
+ msgstr "Cayman Islands"
1041
+
1042
+ #: ../lib/tribe-view-helpers.class.php:75
1043
+ msgid "Central African Republic"
1044
+ msgstr "Central African Republic"
1045
+
1046
+ #: ../lib/tribe-view-helpers.class.php:76
1047
+ msgid "Chad"
1048
+ msgstr "Chad"
1049
+
1050
+ # @ tribe-events-calendar
1051
+ #: ../lib/tribe-view-helpers.class.php:77
1052
+ msgid "Chile"
1053
+ msgstr "Chile"
1054
+
1055
+ #: ../lib/tribe-view-helpers.class.php:78
1056
+ msgid "China"
1057
+ msgstr "China"
1058
+
1059
+ #: ../lib/tribe-view-helpers.class.php:79
1060
+ msgid "Christmas Island"
1061
+ msgstr "Christmas Island"
1062
+
1063
+ #: ../lib/tribe-view-helpers.class.php:80
1064
+ msgid "Cocos (Keeling) Islands"
1065
+ msgstr "Cocos (Keeling) Islands"
1066
+
1067
+ #: ../lib/tribe-view-helpers.class.php:81
1068
+ msgid "Colombia"
1069
+ msgstr "Colombia"
1070
+
1071
+ #: ../lib/tribe-view-helpers.class.php:82
1072
+ msgid "Comoros"
1073
+ msgstr "Comoros"
1074
+
1075
+ #: ../lib/tribe-view-helpers.class.php:83
1076
+ msgid "Congo"
1077
+ msgstr "Congo"
1078
+
1079
+ #: ../lib/tribe-view-helpers.class.php:84
1080
+ msgid "Congo, The Democratic Republic Of The"
1081
+ msgstr "Congo, The Democratic Republic Of The"
1082
+
1083
+ #: ../lib/tribe-view-helpers.class.php:85
1084
+ msgid "Cook Islands"
1085
+ msgstr "Cook Islands"
1086
+
1087
+ #: ../lib/tribe-view-helpers.class.php:86
1088
+ msgid "Costa Rica"
1089
+ msgstr "Costa Rica"
1090
+
1091
+ #: ../lib/tribe-view-helpers.class.php:87
1092
+ msgid "Cote D'Ivoire"
1093
+ msgstr "Cote D'Ivoire"
1094
+
1095
+ #: ../lib/tribe-view-helpers.class.php:88
1096
+ msgid "Croatia (Local Name: Hrvatska)"
1097
+ msgstr "Croatia (Local Name: Hrvatska)"
1098
+
1099
+ #: ../lib/tribe-view-helpers.class.php:89
1100
+ msgid "Cuba"
1101
+ msgstr "Cuba"
1102
+
1103
+ #: ../lib/tribe-view-helpers.class.php:90
1104
+ msgid "Cyprus"
1105
+ msgstr "Cyprus"
1106
+
1107
+ #: ../lib/tribe-view-helpers.class.php:91
1108
+ msgid "Czech Republic"
1109
+ msgstr "Czech Republic"
1110
+
1111
+ #: ../lib/tribe-view-helpers.class.php:92
1112
+ msgid "Denmark"
1113
+ msgstr "Denmark"
1114
+
1115
+ #: ../lib/tribe-view-helpers.class.php:93
1116
+ msgid "Djibouti"
1117
+ msgstr "Djibouti"
1118
+
1119
+ #: ../lib/tribe-view-helpers.class.php:94
1120
+ msgid "Dominica"
1121
+ msgstr "Dominica"
1122
+
1123
+ #: ../lib/tribe-view-helpers.class.php:95
1124
+ msgid "Dominican Republic"
1125
+ msgstr "Dominican Republic"
1126
+
1127
+ #: ../lib/tribe-view-helpers.class.php:96
1128
+ msgid "East Timor"
1129
+ msgstr "East Timor"
1130
+
1131
+ #: ../lib/tribe-view-helpers.class.php:97
1132
+ msgid "Ecuador"
1133
+ msgstr "Ecuador"
1134
+
1135
+ #: ../lib/tribe-view-helpers.class.php:98
1136
+ msgid "Egypt"
1137
+ msgstr "Egypt"
1138
+
1139
+ #: ../lib/tribe-view-helpers.class.php:99
1140
+ msgid "El Salvador"
1141
+ msgstr "El Salvador"
1142
+
1143
+ #: ../lib/tribe-view-helpers.class.php:100
1144
+ msgid "Equatorial Guinea"
1145
+ msgstr "Equatorial Guinea"
1146
+
1147
+ #: ../lib/tribe-view-helpers.class.php:101
1148
+ msgid "Eritrea"
1149
+ msgstr "Eritrea"
1150
+
1151
+ #: ../lib/tribe-view-helpers.class.php:102
1152
+ msgid "Estonia"
1153
+ msgstr "Estonia"
1154
+
1155
+ #: ../lib/tribe-view-helpers.class.php:103
1156
+ msgid "Ethiopia"
1157
+ msgstr "Ethiopia"
1158
+
1159
+ #: ../lib/tribe-view-helpers.class.php:104
1160
+ msgid "Falkland Islands (Malvinas)"
1161
+ msgstr "Falkland Islands (Malvinas)"
1162
+
1163
+ #: ../lib/tribe-view-helpers.class.php:105
1164
+ msgid "Faroe Islands"
1165
+ msgstr "Faroe Islands"
1166
+
1167
+ #: ../lib/tribe-view-helpers.class.php:106
1168
+ msgid "Fiji"
1169
+ msgstr "Fiji"
1170
+
1171
+ #: ../lib/tribe-view-helpers.class.php:107
1172
+ msgid "Finland"
1173
+ msgstr "Finland"
1174
+
1175
+ # @ tribe-events-calendar
1176
+ #: ../lib/tribe-view-helpers.class.php:108
1177
+ msgid "France"
1178
+ msgstr "France"
1179
+
1180
+ #: ../lib/tribe-view-helpers.class.php:109
1181
+ msgid "France, Metropolitan"
1182
+ msgstr "France, Metropolitan"
1183
+
1184
+ #: ../lib/tribe-view-helpers.class.php:110
1185
+ msgid "French Guiana"
1186
+ msgstr "French Guiana"
1187
+
1188
+ #: ../lib/tribe-view-helpers.class.php:111
1189
+ msgid "French Polynesia"
1190
+ msgstr "French Polynesia"
1191
+
1192
+ #: ../lib/tribe-view-helpers.class.php:112
1193
+ msgid "French Southern Territories"
1194
+ msgstr "French Southern Territories"
1195
+
1196
+ #: ../lib/tribe-view-helpers.class.php:113
1197
+ msgid "Gabon"
1198
+ msgstr "Gabon"
1199
+
1200
+ #: ../lib/tribe-view-helpers.class.php:114
1201
+ msgid "Gambia"
1202
+ msgstr "Gambia"
1203
+
1204
+ #: ../lib/tribe-view-helpers.class.php:115
1205
+ #: ../lib/tribe-view-helpers.class.php:303
1206
+ msgid "Georgia"
1207
+ msgstr "Georgia"
1208
+
1209
+ #: ../lib/tribe-view-helpers.class.php:116
1210
+ msgid "Germany"
1211
+ msgstr "Germany"
1212
+
1213
+ #: ../lib/tribe-view-helpers.class.php:117
1214
+ msgid "Ghana"
1215
+ msgstr "Ghana"
1216
+
1217
+ #: ../lib/tribe-view-helpers.class.php:118
1218
+ msgid "Gibraltar"
1219
+ msgstr "Gibraltar"
1220
+
1221
+ #: ../lib/tribe-view-helpers.class.php:119
1222
+ msgid "Greece"
1223
+ msgstr "Greece"
1224
+
1225
+ #: ../lib/tribe-view-helpers.class.php:120
1226
+ msgid "Greenland"
1227
+ msgstr "Greenland"
1228
+
1229
+ #: ../lib/tribe-view-helpers.class.php:121
1230
+ msgid "Grenada"
1231
+ msgstr "Grenada"
1232
+
1233
+ #: ../lib/tribe-view-helpers.class.php:122
1234
+ msgid "Guadeloupe"
1235
+ msgstr "Guadeloupe"
1236
+
1237
+ #: ../lib/tribe-view-helpers.class.php:123
1238
+ msgid "Guam"
1239
+ msgstr "Guam"
1240
+
1241
+ #: ../lib/tribe-view-helpers.class.php:124
1242
+ msgid "Guatemala"
1243
+ msgstr "Guatemala"
1244
+
1245
+ # @ default
1246
+ #: ../lib/tribe-view-helpers.class.php:125
1247
+ msgid "Guinea"
1248
+ msgstr "Guinea"
1249
+
1250
+ #: ../lib/tribe-view-helpers.class.php:126
1251
+ msgid "Guinea-Bissau"
1252
+ msgstr "Guinea-Bissau"
1253
+
1254
+ #: ../lib/tribe-view-helpers.class.php:127
1255
+ msgid "Guyana"
1256
+ msgstr "Guyana"
1257
+
1258
+ #: ../lib/tribe-view-helpers.class.php:128
1259
+ msgid "Haiti"
1260
+ msgstr "Haiti"
1261
+
1262
+ #: ../lib/tribe-view-helpers.class.php:129
1263
+ msgid "Heard And Mc Donald Islands"
1264
+ msgstr "Heard And Mc Donald Islands"
1265
+
1266
+ #: ../lib/tribe-view-helpers.class.php:130
1267
+ msgid "Holy See (Vatican City State)"
1268
+ msgstr "Holy See (Vatican City State)"
1269
+
1270
+ #: ../lib/tribe-view-helpers.class.php:131
1271
+ msgid "Honduras"
1272
+ msgstr "Honduras"
1273
+
1274
+ #: ../lib/tribe-view-helpers.class.php:132
1275
+ msgid "Hong Kong"
1276
+ msgstr "Hong Kong"
1277
+
1278
+ # @ tribe-events-calendar-pro
1279
+ # @ default
1280
+ #: ../lib/tribe-view-helpers.class.php:133
1281
+ msgid "Hungary"
1282
+ msgstr "Hungary"
1283
+
1284
+ #: ../lib/tribe-view-helpers.class.php:134
1285
+ msgid "Iceland"
1286
+ msgstr "Iceland"
1287
+
1288
+ #: ../lib/tribe-view-helpers.class.php:135
1289
+ msgid "India"
1290
+ msgstr "India"
1291
+
1292
+ #: ../lib/tribe-view-helpers.class.php:136
1293
+ msgid "Indonesia"
1294
+ msgstr "Indonesia"
1295
+
1296
+ #: ../lib/tribe-view-helpers.class.php:137
1297
+ msgid "Iran (Islamic Republic Of)"
1298
+ msgstr "Iran (Islamic Republic Of)"
1299
+
1300
+ #: ../lib/tribe-view-helpers.class.php:138
1301
+ msgid "Iraq"
1302
+ msgstr "Iraq"
1303
+
1304
+ #: ../lib/tribe-view-helpers.class.php:139
1305
+ msgid "Ireland"
1306
+ msgstr "Ireland"
1307
+
1308
+ #: ../lib/tribe-view-helpers.class.php:140
1309
+ msgid "Israel"
1310
+ msgstr "Israel"
1311
+
1312
+ # @ tribe-events-calendar-pro
1313
+ #: ../lib/tribe-view-helpers.class.php:141
1314
+ msgid "Italy"
1315
+ msgstr "Italia"
1316
+
1317
+ #: ../lib/tribe-view-helpers.class.php:142
1318
+ msgid "Jamaica"
1319
+ msgstr "Jamaica"
1320
+
1321
+ # @ tribe-events-calendar-pro
1322
+ #: ../lib/tribe-view-helpers.class.php:143
1323
+ msgid "Japan"
1324
+ msgstr "Japan"
1325
+
1326
+ # @ tribe-events-calendar-pro
1327
+ #: ../lib/tribe-view-helpers.class.php:144
1328
+ msgid "Jordan"
1329
+ msgstr "Jordan"
1330
+
1331
+ #: ../lib/tribe-view-helpers.class.php:145
1332
+ msgid "Kazakhstan"
1333
+ msgstr "Kazakhstan"
1334
+
1335
+ #: ../lib/tribe-view-helpers.class.php:146
1336
+ msgid "Kenya"
1337
+ msgstr "Kenya"
1338
+
1339
+ #: ../lib/tribe-view-helpers.class.php:147
1340
+ msgid "Kiribati"
1341
+ msgstr "Kiribati"
1342
+
1343
+ #: ../lib/tribe-view-helpers.class.php:148
1344
+ msgid "Korea, Democratic People's Republic Of"
1345
+ msgstr "Korea, Democratic People's Republic Of"
1346
+
1347
+ #: ../lib/tribe-view-helpers.class.php:149
1348
+ msgid "Korea, Republic Of"
1349
+ msgstr "Korea, Republic Of"
1350
+
1351
+ #: ../lib/tribe-view-helpers.class.php:150
1352
+ msgid "Kuwait"
1353
+ msgstr "Kuwait"
1354
+
1355
+ #: ../lib/tribe-view-helpers.class.php:151
1356
+ msgid "Kyrgyzstan"
1357
+ msgstr "Kyrgyzstan"
1358
+
1359
+ #: ../lib/tribe-view-helpers.class.php:152
1360
+ msgid "Lao People's Democratic Republic"
1361
+ msgstr "Lao People's Democratic Republic"
1362
+
1363
+ # @ tribe-events-calendar-pro
1364
+ #: ../lib/tribe-view-helpers.class.php:153
1365
+ msgid "Latvia"
1366
+ msgstr "Latvia"
1367
+
1368
+ #: ../lib/tribe-view-helpers.class.php:154
1369
+ msgid "Lebanon"
1370
+ msgstr "Lebanon"
1371
+
1372
+ #: ../lib/tribe-view-helpers.class.php:155
1373
+ msgid "Lesotho"
1374
+ msgstr "Lesotho"
1375
+
1376
+ #: ../lib/tribe-view-helpers.class.php:156
1377
+ msgid "Liberia"
1378
+ msgstr "Liberia"
1379
+
1380
+ #: ../lib/tribe-view-helpers.class.php:157
1381
+ msgid "Libya"
1382
+ msgstr "Libya"
1383
+
1384
+ #: ../lib/tribe-view-helpers.class.php:158
1385
+ msgid "Liechtenstein"
1386
+ msgstr "Liechtenstein"
1387
+
1388
+ #: ../lib/tribe-view-helpers.class.php:159
1389
+ msgid "Lithuania"
1390
+ msgstr "Lithuania"
1391
+
1392
+ #: ../lib/tribe-view-helpers.class.php:160
1393
+ msgid "Luxembourg"
1394
+ msgstr "Luxembourg"
1395
+
1396
+ # @ default
1397
+ #: ../lib/tribe-view-helpers.class.php:161
1398
+ msgid "Macau"
1399
+ msgstr "Macau"
1400
+
1401
+ #: ../lib/tribe-view-helpers.class.php:162
1402
+ msgid "Macedonia"
1403
+ msgstr "Macedonia"
1404
+
1405
+ #: ../lib/tribe-view-helpers.class.php:163
1406
+ msgid "Madagascar"
1407
+ msgstr "Madagascar"
1408
+
1409
+ #: ../lib/tribe-view-helpers.class.php:164
1410
+ msgid "Malawi"
1411
+ msgstr "Malawi"
1412
+
1413
+ #: ../lib/tribe-view-helpers.class.php:165
1414
+ msgid "Malaysia"
1415
+ msgstr "Malaysia"
1416
+
1417
+ #: ../lib/tribe-view-helpers.class.php:166
1418
+ msgid "Maldives"
1419
+ msgstr "Maldives"
1420
+
1421
+ #: ../lib/tribe-view-helpers.class.php:167
1422
+ msgid "Mali"
1423
+ msgstr "Mali"
1424
+
1425
+ #: ../lib/tribe-view-helpers.class.php:168
1426
+ msgid "Malta"
1427
+ msgstr "Malta"
1428
+
1429
+ #: ../lib/tribe-view-helpers.class.php:169
1430
+ msgid "Marshall Islands"
1431
+ msgstr "Marshall Islands"
1432
+
1433
+ #: ../lib/tribe-view-helpers.class.php:170
1434
+ msgid "Martinique"
1435
+ msgstr "Martinique"
1436
+
1437
+ #: ../lib/tribe-view-helpers.class.php:171
1438
+ msgid "Mauritania"
1439
+ msgstr "Mauritania"
1440
+
1441
+ #: ../lib/tribe-view-helpers.class.php:172
1442
+ msgid "Mauritius"
1443
+ msgstr "Mauritius"
1444
+
1445
+ # @ tribe-events-calendar-pro
1446
+ # @ default
1447
+ #: ../lib/tribe-view-helpers.class.php:173
1448
+ msgid "Mayotte"
1449
+ msgstr "Mayotte"
1450
+
1451
+ #: ../lib/tribe-view-helpers.class.php:174
1452
+ msgid "Mexico"
1453
+ msgstr "Mexico"
1454
+
1455
+ #: ../lib/tribe-view-helpers.class.php:175
1456
+ msgid "Micronesia, Federated States Of"
1457
+ msgstr "Micronesia, Federated States Of"
1458
+
1459
+ #: ../lib/tribe-view-helpers.class.php:176
1460
+ msgid "Moldova, Republic Of"
1461
+ msgstr "Moldova, Republic Of"
1462
+
1463
+ # @ tribe-events-calendar-pro
1464
+ # @ default
1465
+ #: ../lib/tribe-view-helpers.class.php:177
1466
+ msgid "Monaco"
1467
+ msgstr "Monaco"
1468
+
1469
+ #: ../lib/tribe-view-helpers.class.php:178
1470
+ msgid "Mongolia"
1471
+ msgstr "Mongolia"
1472
+
1473
+ #: ../lib/tribe-view-helpers.class.php:179
1474
+ msgid "Montenegro"
1475
+ msgstr "Montenegro"
1476
+
1477
+ #: ../lib/tribe-view-helpers.class.php:180
1478
+ msgid "Montserrat"
1479
+ msgstr "Montserrat"
1480
+
1481
+ #: ../lib/tribe-view-helpers.class.php:181
1482
+ msgid "Morocco"
1483
+ msgstr "Morocco"
1484
+
1485
+ #: ../lib/tribe-view-helpers.class.php:182
1486
+ msgid "Mozambique"
1487
+ msgstr "Mozambique"
1488
+
1489
+ # @ tribe-events-calendar-pro
1490
+ #: ../lib/tribe-view-helpers.class.php:183
1491
+ msgid "Myanmar"
1492
+ msgstr "Myanmar"
1493
+
1494
+ #: ../lib/tribe-view-helpers.class.php:184
1495
+ msgid "Namibia"
1496
+ msgstr "Namibia"
1497
+
1498
+ #: ../lib/tribe-view-helpers.class.php:185
1499
+ msgid "Nauru"
1500
+ msgstr "Nauru"
1501
+
1502
+ #: ../lib/tribe-view-helpers.class.php:186
1503
+ msgid "Nepal"
1504
+ msgstr "Nepal"
1505
+
1506
+ #: ../lib/tribe-view-helpers.class.php:187
1507
+ msgid "Netherlands"
1508
+ msgstr "Netherlands"
1509
+
1510
+ #: ../lib/tribe-view-helpers.class.php:188
1511
+ msgid "Netherlands Antilles"
1512
+ msgstr "Netherlands Antilles"
1513
+
1514
+ #: ../lib/tribe-view-helpers.class.php:189
1515
+ msgid "New Caledonia"
1516
+ msgstr "New Caledonia"
1517
+
1518
+ #: ../lib/tribe-view-helpers.class.php:190
1519
+ msgid "New Zealand"
1520
+ msgstr "New Zealand"
1521
+
1522
+ #: ../lib/tribe-view-helpers.class.php:191
1523
+ msgid "Nicaragua"
1524
+ msgstr "Nicaragua"
1525
+
1526
+ #: ../lib/tribe-view-helpers.class.php:192
1527
+ msgid "Niger"
1528
+ msgstr "Niger"
1529
+
1530
+ #: ../lib/tribe-view-helpers.class.php:193
1531
+ msgid "Nigeria"
1532
+ msgstr "Nigeria"
1533
+
1534
+ #: ../lib/tribe-view-helpers.class.php:194
1535
+ msgid "Niue"
1536
+ msgstr "Niue"
1537
+
1538
+ #: ../lib/tribe-view-helpers.class.php:195
1539
+ msgid "Norfolk Island"
1540
+ msgstr "Norfolk Island"
1541
+
1542
+ #: ../lib/tribe-view-helpers.class.php:196
1543
+ msgid "Northern Mariana Islands"
1544
+ msgstr "Northern Mariana Islands"
1545
+
1546
+ #: ../lib/tribe-view-helpers.class.php:197
1547
+ msgid "Norway"
1548
+ msgstr "Norway"
1549
+
1550
+ # @ tribe-events-calendar-pro
1551
+ #: ../lib/tribe-view-helpers.class.php:198
1552
+ msgid "Oman"
1553
+ msgstr "Oman"
1554
+
1555
+ #: ../lib/tribe-view-helpers.class.php:199
1556
+ msgid "Pakistan"
1557
+ msgstr "Pakistan"
1558
 
1559
+ #: ../lib/tribe-view-helpers.class.php:200
1560
+ msgid "Palau"
1561
+ msgstr "Palau"
1562
+
1563
+ #: ../lib/tribe-view-helpers.class.php:201
1564
+ msgid "Panama"
1565
+ msgstr "Panama"
1566
+
1567
+ #: ../lib/tribe-view-helpers.class.php:202
1568
+ msgid "Papua New Guinea"
1569
+ msgstr "Papua New Guinea"
1570
+
1571
+ #: ../lib/tribe-view-helpers.class.php:203
1572
+ msgid "Paraguay"
1573
+ msgstr "Paraguay"
1574
+
1575
+ #: ../lib/tribe-view-helpers.class.php:204
1576
+ msgid "Peru"
1577
+ msgstr "Peru"
1578
+
1579
+ #: ../lib/tribe-view-helpers.class.php:205
1580
+ msgid "Philippines"
1581
+ msgstr "Philippines"
1582
+
1583
+ #: ../lib/tribe-view-helpers.class.php:206
1584
+ msgid "Pitcairn"
1585
+ msgstr "Pitcairn"
1586
+
1587
+ #: ../lib/tribe-view-helpers.class.php:207
1588
+ msgid "Poland"
1589
+ msgstr "Poland"
1590
+
1591
+ #: ../lib/tribe-view-helpers.class.php:208
1592
+ msgid "Portugal"
1593
+ msgstr "Portugal"
1594
+
1595
+ #: ../lib/tribe-view-helpers.class.php:209
1596
+ msgid "Puerto Rico"
1597
+ msgstr "Puerto Rico"
1598
+
1599
+ #: ../lib/tribe-view-helpers.class.php:210
1600
+ msgid "Qatar"
1601
+ msgstr "Qatar"
1602
+
1603
+ #: ../lib/tribe-view-helpers.class.php:211
1604
+ msgid "Reunion"
1605
+ msgstr "Reunion"
1606
+
1607
+ #: ../lib/tribe-view-helpers.class.php:212
1608
+ msgid "Romania"
1609
+ msgstr "Romania"
1610
+
1611
+ #: ../lib/tribe-view-helpers.class.php:213
1612
+ msgid "Russian Federation"
1613
+ msgstr "Russian Federation"
1614
+
1615
+ #: ../lib/tribe-view-helpers.class.php:214
1616
+ msgid "Rwanda"
1617
+ msgstr "Rwanda"
1618
+
1619
+ #: ../lib/tribe-view-helpers.class.php:215
1620
+ msgid "Saint Kitts And Nevis"
1621
+ msgstr "Saint Kitts And Nevis"
1622
+
1623
+ #: ../lib/tribe-view-helpers.class.php:216
1624
+ msgid "Saint Lucia"
1625
+ msgstr "Saint Lucia"
1626
+
1627
+ #: ../lib/tribe-view-helpers.class.php:217
1628
+ msgid "Saint Vincent And The Grenadines"
1629
+ msgstr "Saint Vincent And The Grenadines"
1630
+
1631
+ #: ../lib/tribe-view-helpers.class.php:218
1632
+ msgid "Samoa"
1633
+ msgstr "Samoa"
1634
+
1635
+ #: ../lib/tribe-view-helpers.class.php:219
1636
+ msgid "San Marino"
1637
+ msgstr "San Marino"
1638
+
1639
+ #: ../lib/tribe-view-helpers.class.php:220
1640
+ msgid "Sao Tome And Principe"
1641
+ msgstr "Sao Tome And Principe"
1642
+
1643
+ #: ../lib/tribe-view-helpers.class.php:221
1644
+ msgid "Saudi Arabia"
1645
+ msgstr "Saudi Arabia"
1646
+
1647
+ #: ../lib/tribe-view-helpers.class.php:222
1648
+ msgid "Senegal"
1649
+ msgstr "Senegal"
1650
+
1651
+ #: ../lib/tribe-view-helpers.class.php:223
1652
+ msgid "Serbia"
1653
+ msgstr "Serbia"
1654
+
1655
+ #: ../lib/tribe-view-helpers.class.php:224
1656
+ msgid "Seychelles"
1657
+ msgstr "Seychelles"
1658
+
1659
+ #: ../lib/tribe-view-helpers.class.php:225
1660
+ msgid "Sierra Leone"
1661
+ msgstr "Sierra Leone"
1662
+
1663
+ #: ../lib/tribe-view-helpers.class.php:226
1664
+ msgid "Singapore"
1665
+ msgstr "Singapore"
1666
+
1667
+ #: ../lib/tribe-view-helpers.class.php:227
1668
+ msgid "Slovakia (Slovak Republic)"
1669
+ msgstr "Slovakia (Slovak Republic)"
1670
+
1671
+ #: ../lib/tribe-view-helpers.class.php:228
1672
+ msgid "Slovenia"
1673
+ msgstr "Slovenia"
1674
+
1675
+ #: ../lib/tribe-view-helpers.class.php:229
1676
+ msgid "Solomon Islands"
1677
+ msgstr "Solomon Islands"
1678
+
1679
+ #: ../lib/tribe-view-helpers.class.php:230
1680
+ msgid "Somalia"
1681
+ msgstr "Somalia"
1682
+
1683
+ #: ../lib/tribe-view-helpers.class.php:231
1684
+ msgid "South Africa"
1685
+ msgstr "South Africa"
1686
+
1687
+ #: ../lib/tribe-view-helpers.class.php:232
1688
+ msgid "South Georgia, South Sandwich Islands"
1689
+ msgstr "South Georgia, South Sandwich Islands"
1690
+
1691
+ #: ../lib/tribe-view-helpers.class.php:233
1692
+ msgid "Spain"
1693
+ msgstr "Spain"
1694
+
1695
+ #: ../lib/tribe-view-helpers.class.php:234
1696
+ msgid "Sri Lanka"
1697
+ msgstr "Sri Lanka"
1698
+
1699
+ #: ../lib/tribe-view-helpers.class.php:235
1700
+ msgid "St. Helena"
1701
+ msgstr "St. Helena"
1702
+
1703
+ #: ../lib/tribe-view-helpers.class.php:236
1704
+ msgid "St. Pierre And Miquelon"
1705
+ msgstr "St. Pierre And Miquelon"
1706
+
1707
+ # @ tribe-events-calendar-pro
1708
+ # @ default
1709
+ #: ../lib/tribe-view-helpers.class.php:237
1710
+ msgid "Sudan"
1711
+ msgstr "Sudan"
1712
+
1713
+ #: ../lib/tribe-view-helpers.class.php:238
1714
+ msgid "Suriname"
1715
+ msgstr "Suriname"
1716
+
1717
+ #: ../lib/tribe-view-helpers.class.php:239
1718
+ msgid "Svalbard And Jan Mayen Islands"
1719
+ msgstr "Svalbard And Jan Mayen Islands"
1720
+
1721
+ #: ../lib/tribe-view-helpers.class.php:240
1722
+ msgid "Swaziland"
1723
+ msgstr "Swaziland"
1724
+
1725
+ #: ../lib/tribe-view-helpers.class.php:241
1726
+ msgid "Sweden"
1727
+ msgstr "Sweden"
1728
+
1729
+ #: ../lib/tribe-view-helpers.class.php:242
1730
+ msgid "Switzerland"
1731
+ msgstr "Switzerland"
1732
+
1733
+ #: ../lib/tribe-view-helpers.class.php:243
1734
+ msgid "Syrian Arab Republic"
1735
+ msgstr "Syrian Arab Republic"
1736
+
1737
+ #: ../lib/tribe-view-helpers.class.php:244
1738
+ msgid "Taiwan"
1739
+ msgstr "Taiwan"
1740
+
1741
+ #: ../lib/tribe-view-helpers.class.php:245
1742
+ msgid "Tajikistan"
1743
+ msgstr "Tajikistan"
1744
+
1745
+ #: ../lib/tribe-view-helpers.class.php:246
1746
+ msgid "Tanzania, United Republic Of"
1747
+ msgstr "Tanzania, United Republic Of"
1748
+
1749
+ # @ tribe-events-calendar-pro
1750
+ #: ../lib/tribe-view-helpers.class.php:247
1751
+ msgid "Thailand"
1752
+ msgstr "Thailand"
1753
+
1754
+ #: ../lib/tribe-view-helpers.class.php:248
1755
+ msgid "Togo"
1756
+ msgstr "Togo"
1757
+
1758
+ #: ../lib/tribe-view-helpers.class.php:249
1759
+ msgid "Tokelau"
1760
+ msgstr "Tokelau"
1761
+
1762
+ #: ../lib/tribe-view-helpers.class.php:250
1763
+ msgid "Tonga"
1764
+ msgstr "Tonga"
1765
+
1766
+ #: ../lib/tribe-view-helpers.class.php:251
1767
+ msgid "Trinidad And Tobago"
1768
+ msgstr "Trinidad And Tobago"
1769
+
1770
+ #: ../lib/tribe-view-helpers.class.php:252
1771
+ msgid "Tunisia"
1772
+ msgstr "Tunisia"
1773
+
1774
+ # @ tribe-events-calendar-pro
1775
+ # @ default
1776
+ #: ../lib/tribe-view-helpers.class.php:253
1777
+ msgid "Turkey"
1778
+ msgstr "Turkey"
1779
+
1780
+ #: ../lib/tribe-view-helpers.class.php:254
1781
+ msgid "Turkmenistan"
1782
+ msgstr "Turkmenistan"
1783
+
1784
+ #: ../lib/tribe-view-helpers.class.php:255
1785
+ msgid "Turks And Caicos Islands"
1786
+ msgstr "Turks And Caicos Islands"
1787
+
1788
+ #: ../lib/tribe-view-helpers.class.php:256
1789
+ msgid "Tuvalu"
1790
+ msgstr "Tuvalu"
1791
+
1792
+ #: ../lib/tribe-view-helpers.class.php:257
1793
+ msgid "Uganda"
1794
+ msgstr "Uganda"
1795
+
1796
+ #: ../lib/tribe-view-helpers.class.php:258
1797
+ msgid "Ukraine"
1798
+ msgstr "Ukraine"
1799
+
1800
+ #: ../lib/tribe-view-helpers.class.php:259
1801
+ msgid "United Arab Emirates"
1802
+ msgstr "United Arab Emirates"
1803
+
1804
+ #: ../lib/tribe-view-helpers.class.php:260
1805
+ msgid "United Kingdom"
1806
+ msgstr "United Kingdom"
1807
+
1808
+ #: ../lib/tribe-view-helpers.class.php:261
1809
+ msgid "United States Minor Outlying Islands"
1810
+ msgstr "United States Minor Outlying Islands"
1811
+
1812
+ #: ../lib/tribe-view-helpers.class.php:262
1813
+ msgid "Uruguay"
1814
+ msgstr "Uruguay"
1815
+
1816
+ #: ../lib/tribe-view-helpers.class.php:263
1817
+ msgid "Uzbekistan"
1818
+ msgstr "Uzbekistan"
1819
+
1820
+ #: ../lib/tribe-view-helpers.class.php:264
1821
+ msgid "Vanuatu"
1822
+ msgstr "Vanuatu"
1823
+
1824
+ # @ tribe-events-calendar-pro
1825
+ #: ../lib/tribe-view-helpers.class.php:265
1826
+ msgid "Venezuela"
1827
+ msgstr "Venezuela"
1828
+
1829
+ # @ tribe-events-calendar
1830
+ #: ../lib/tribe-view-helpers.class.php:266
1831
+ msgid "Viet Nam"
1832
+ msgstr "Viet Nam"
1833
+
1834
+ #: ../lib/tribe-view-helpers.class.php:267
1835
+ msgid "Virgin Islands (British)"
1836
+ msgstr "Virgin Islands (British)"
1837
+
1838
+ #: ../lib/tribe-view-helpers.class.php:268
1839
+ msgid "Virgin Islands (U.S.)"
1840
+ msgstr "Virgin Islands (U.S.)"
1841
+
1842
+ #: ../lib/tribe-view-helpers.class.php:269
1843
+ msgid "Wallis And Futuna Islands"
1844
+ msgstr "Wallis And Futuna Islands"
1845
+
1846
+ #: ../lib/tribe-view-helpers.class.php:270
1847
+ msgid "Western Sahara"
1848
+ msgstr "Western Sahara"
1849
+
1850
+ #: ../lib/tribe-view-helpers.class.php:271
1851
+ msgid "Yemen"
1852
+ msgstr "Yemen"
1853
+
1854
+ #: ../lib/tribe-view-helpers.class.php:272
1855
+ msgid "Zambia"
1856
+ msgstr "Zambia"
1857
+
1858
+ #: ../lib/tribe-view-helpers.class.php:273
1859
+ msgid "Zimbabwe"
1860
+ msgstr "Zimbabwe"
1861
+
1862
+ #: ../lib/tribe-view-helpers.class.php:293
1863
+ msgid "Alabama"
1864
+ msgstr "Alabama"
1865
+
1866
+ # @ default
1867
+ #: ../lib/tribe-view-helpers.class.php:294
1868
+ msgid "Alaska"
1869
+ msgstr "Alaska"
1870
+
1871
+ #: ../lib/tribe-view-helpers.class.php:295
1872
+ msgid "Arizona"
1873
+ msgstr "Arizona"
1874
+
1875
+ #: ../lib/tribe-view-helpers.class.php:296
1876
+ msgid "Arkansas"
1877
+ msgstr "Arkansas"
1878
+
1879
+ #: ../lib/tribe-view-helpers.class.php:297
1880
+ msgid "California"
1881
+ msgstr "California"
1882
+
1883
+ #: ../lib/tribe-view-helpers.class.php:298
1884
+ msgid "Colorado"
1885
+ msgstr "Colorado"
1886
+
1887
+ #: ../lib/tribe-view-helpers.class.php:299
1888
+ msgid "Connecticut"
1889
+ msgstr "Connecticut"
1890
+
1891
+ #: ../lib/tribe-view-helpers.class.php:300
1892
+ msgid "Delaware"
1893
+ msgstr "Delaware"
1894
+
1895
+ #: ../lib/tribe-view-helpers.class.php:301
1896
+ msgid "District of Columbia"
1897
+ msgstr "District of Columbia"
1898
+
1899
+ # @ tribe-events-calendar-pro
1900
+ # @ default
1901
+ #: ../lib/tribe-view-helpers.class.php:302
1902
+ msgid "Florida"
1903
+ msgstr "Florida"
1904
+
1905
+ #: ../lib/tribe-view-helpers.class.php:304
1906
+ msgid "Hawaii"
1907
+ msgstr "Hawaii"
1908
+
1909
+ #: ../lib/tribe-view-helpers.class.php:305
1910
+ msgid "Idaho"
1911
+ msgstr "Idaho"
1912
+
1913
+ #: ../lib/tribe-view-helpers.class.php:306
1914
+ msgid "Illinois"
1915
+ msgstr "Illinois"
1916
+
1917
+ #: ../lib/tribe-view-helpers.class.php:307
1918
+ msgid "Indiana"
1919
+ msgstr "Indiana"
1920
+
1921
+ #: ../lib/tribe-view-helpers.class.php:308
1922
+ msgid "Iowa"
1923
+ msgstr "Iowa"
1924
+
1925
+ #: ../lib/tribe-view-helpers.class.php:309
1926
+ msgid "Kansas"
1927
+ msgstr "Kansas"
1928
+
1929
+ #: ../lib/tribe-view-helpers.class.php:310
1930
+ msgid "Kentucky"
1931
+ msgstr "Kentucky"
1932
+
1933
+ #: ../lib/tribe-view-helpers.class.php:311
1934
+ msgid "Louisiana"
1935
+ msgstr "Louisiana"
1936
+
1937
+ #: ../lib/tribe-view-helpers.class.php:312
1938
+ msgid "Maine"
1939
+ msgstr "Maine"
1940
+
1941
+ #: ../lib/tribe-view-helpers.class.php:313
1942
+ msgid "Maryland"
1943
+ msgstr "Maryland"
1944
+
1945
+ #: ../lib/tribe-view-helpers.class.php:314
1946
+ msgid "Massachusetts"
1947
+ msgstr "Massachusetts"
1948
+
1949
+ #: ../lib/tribe-view-helpers.class.php:315
1950
+ msgid "Michigan"
1951
+ msgstr "Michigan"
1952
+
1953
+ #: ../lib/tribe-view-helpers.class.php:316
1954
+ msgid "Minnesota"
1955
+ msgstr "Minnesota"
1956
+
1957
+ #: ../lib/tribe-view-helpers.class.php:317
1958
+ msgid "Mississippi"
1959
+ msgstr "Mississippi"
1960
+
1961
+ #: ../lib/tribe-view-helpers.class.php:318
1962
+ msgid "Missouri"
1963
+ msgstr "Missouri"
1964
+
1965
+ # @ tribe-events-calendar-pro
1966
+ # @ default
1967
+ #: ../lib/tribe-view-helpers.class.php:319
1968
+ msgid "Montana"
1969
+ msgstr "Montana"
1970
+
1971
+ #: ../lib/tribe-view-helpers.class.php:320
1972
+ msgid "Nebraska"
1973
+ msgstr "Nebraska"
1974
+
1975
+ #: ../lib/tribe-view-helpers.class.php:321
1976
+ msgid "Nevada"
1977
+ msgstr "Nevada"
1978
+
1979
+ #: ../lib/tribe-view-helpers.class.php:322
1980
+ msgid "New Hampshire"
1981
+ msgstr "New Hampshire"
1982
+
1983
+ #: ../lib/tribe-view-helpers.class.php:323
1984
+ msgid "New Jersey"
1985
+ msgstr "New Jersey"
1986
+
1987
+ #: ../lib/tribe-view-helpers.class.php:324
1988
+ msgid "New Mexico"
1989
+ msgstr "New Mexico"
1990
+
1991
+ #: ../lib/tribe-view-helpers.class.php:325
1992
+ msgid "New York"
1993
+ msgstr "New York"
1994
+
1995
+ #: ../lib/tribe-view-helpers.class.php:326
1996
+ msgid "North Carolina"
1997
+ msgstr "North Carolina"
1998
+
1999
+ #: ../lib/tribe-view-helpers.class.php:327
2000
+ msgid "North Dakota"
2001
+ msgstr "North Dakota"
2002
+
2003
+ #: ../lib/tribe-view-helpers.class.php:328
2004
+ msgid "Ohio"
2005
+ msgstr "Ohio"
2006
+
2007
+ #: ../lib/tribe-view-helpers.class.php:329
2008
+ msgid "Oklahoma"
2009
+ msgstr "Oklahoma"
2010
+
2011
+ #: ../lib/tribe-view-helpers.class.php:330
2012
+ msgid "Oregon"
2013
+ msgstr "Oregon"
2014
+
2015
+ #: ../lib/tribe-view-helpers.class.php:331
2016
+ msgid "Pennsylvania"
2017
+ msgstr "Pennsylvania"
2018
+
2019
+ #: ../lib/tribe-view-helpers.class.php:332
2020
+ msgid "Rhode Island"
2021
+ msgstr "Rhode Island"
2022
+
2023
+ #: ../lib/tribe-view-helpers.class.php:333
2024
+ msgid "South Carolina"
2025
+ msgstr "South Carolina"
2026
+
2027
+ #: ../lib/tribe-view-helpers.class.php:334
2028
+ msgid "South Dakota"
2029
+ msgstr "South Dakota"
2030
+
2031
+ #: ../lib/tribe-view-helpers.class.php:335
2032
+ msgid "Tennessee"
2033
+ msgstr "Tennessee"
2034
+
2035
+ # @ tribe-events-calendar-pro
2036
+ #: ../lib/tribe-view-helpers.class.php:336
2037
+ msgid "Texas"
2038
+ msgstr "Texas"
2039
+
2040
+ #: ../lib/tribe-view-helpers.class.php:337
2041
+ msgid "Utah"
2042
+ msgstr "Utah"
2043
+
2044
+ # @ default
2045
+ #: ../lib/tribe-view-helpers.class.php:338
2046
+ msgid "Vermont"
2047
+ msgstr "Vermont"
2048
+
2049
+ #: ../lib/tribe-view-helpers.class.php:339
2050
+ msgid "Virginia"
2051
+ msgstr "Virginia"
2052
+
2053
+ #: ../lib/tribe-view-helpers.class.php:340
2054
+ msgid "Washington"
2055
+ msgstr "Washington"
2056
+
2057
+ #: ../lib/tribe-view-helpers.class.php:341
2058
+ msgid "West Virginia"
2059
+ msgstr "West Virginia"
2060
+
2061
+ #: ../lib/tribe-view-helpers.class.php:342
2062
+ msgid "Wisconsin"
2063
+ msgstr "Wisconsin"
2064
+
2065
+ #: ../lib/tribe-view-helpers.class.php:343
2066
+ msgid "Wyoming"
2067
+ msgstr "Wyoming"
2068
+
2069
+ # @ tribe-events-calendar-pro
2070
+ #: ../lib/widget-list.class.php:16
2071
+ msgid "A widget that displays the next upcoming x events."
2072
+ msgstr "Un widget che mostra i prossimi N eventi."
2073
+
2074
+ # @ tribe-events-calendar-pro
2075
+ #: ../lib/widget-list.class.php:70
2076
+ msgid "View All Events"
2077
+ msgstr "Vedi tutti gli eventi"
2078
+
2079
+ # @ tribe-events-calendar-pro
2080
+ #: ../lib/widget-list.class.php:73
2081
+ msgid "There are no upcoming events at this time."
2082
+ msgstr "Non ci sono eventi in arrivo al momento."
2083
+
2084
+ # @ tribe-events-calendar-pro
2085
+ #: ../public/template-tags/general.php:103
2086
+ msgid "Category:"
2087
+ msgstr "Categoria:"
2088
+
2089
+ # @ tribe-events-calendar-pro
2090
+ #: ../public/template-tags/general.php:220
2091
+ msgid "Free"
2092
+ msgstr "Gratuito"
2093
+
2094
+ # @ default
2095
+ #: ../public/template-tags/loop.php:130
2096
+ msgid "Calendar of Events"
2097
+ msgstr "Calendario degli eventi"
2098
+
2099
+ #: ../views/ecp-single-template.php:24
2100
+ msgid "Edit"
2101
+ msgstr "Modifica"
2102
+
2103
+ # @ tribe-events-calendar-pro
2104
+ #: ../views/events-list-load-widget-display.php:52
2105
+ msgid "All Day"
2106
+ msgstr "Giorno intero"
2107
+
2108
+ #: ../views/gridview.php:43
2109
+ #: ../views/list.php:165
2110
+ #: ../views/single.php:98
2111
+ msgid "iCal Import"
2112
+ msgstr "Importazione iCal"
2113
+
2114
+ # @ tribe-events-calendar-pro
2115
+ #: ../views/list.php:50
2116
+ #: ../views/single.php:20
2117
+ msgid "Start:"
2118
+ msgstr "Inizio:"
2119
+
2120
+ # @ tribe-events-calendar-pro
2121
+ #: ../views/list.php:54
2122
+ #: ../views/single.php:22
2123
+ msgid "End:"
2124
+ msgstr "Termine:"
2125
+
2126
+ # @ tribe-events-calendar-pro
2127
+ #: ../views/list.php:59
2128
+ #: ../views/single.php:25
2129
+ msgid "Date:"
2130
+ msgstr "Data:"
2131
+
2132
+ # @ tribe-events-calendar-pro
2133
+ #: ../views/list.php:69
2134
+ #: ../views/single.php:56
2135
+ msgid "Venue:"
2136
+ msgstr "Locale:"
2137
+
2138
+ # @ tribe-events-calendar-pro
2139
+ #: ../views/list.php:92
2140
+ #: ../views/single.php:73
2141
+ msgid "Google Map"
2142
+ msgstr "Google Map"
2143
+
2144
+ #: ../views/list.php:116
2145
  #, php-format
2146
+ msgid " listed under %s. Check out past events for this category or view the full calendar."
2147
+ msgstr "listato sotto %s. Dai uno sguardo agli eventi passati per questa categoria o guarda il calendario completo."
 
 
2148
 
2149
+ #: ../views/list.php:118
 
2150
  #, php-format
2151
+ msgid " listed under %s. Check out upcoming events for this category or view the full calendar."
2152
+ msgstr "listato sotto %s. Dai uno sguardo ai prossimi eventi per questa categoria o guarda il calendario completo."
2153
+
2154
+ #: ../views/list.php:123
 
 
 
 
 
 
2155
  #, php-format
2156
+ msgid "No events scheduled for <strong>%s</strong>. Please try another day."
2157
+ msgstr "Nessun evento programmato per <strong>%s</strong>. Controlla un altro giorno."
2158
+
2159
+ # @ default
2160
+ #: ../views/list.php:127
2161
+ msgid "No upcoming events"
2162
+ msgstr "Nessun evento futuro"
2163
+
2164
+ #: ../views/list.php:131
2165
+ msgid "No previous events"
2166
+ msgstr "Nessun evento precedente"
2167
+
2168
+ # @ tribe-events-calendar-pro
2169
+ #: ../views/list.php:144
2170
+ #: ../views/list.php:146
2171
+ #: ../views/list.php:148
2172
+ msgid "&laquo; Previous Events"
2173
+ msgstr "&laquo; Eventi precedenti"
2174
+
2175
+ # @ default
2176
+ #: ../views/list.php:155
2177
+ #: ../views/list.php:157
2178
+ #: ../views/list.php:159
2179
+ msgid "Next Events &raquo;"
2180
+ msgstr "Eventi successivi &raquo;"
2181
+
2182
+ # @ tribe-events-calendar-pro
2183
+ #: ../views/single.php:13
2184
+ msgid "&laquo; Back to Events"
2185
+ msgstr "&laquo; Torna agli Eventi"
2186
+
2187
+ #: ../views/single.php:14
2188
+ msgid "This event has passed."
2189
+ msgstr "Questo evento è passato."
2190
+
2191
+ # @ tribe-events-calendar-pro
2192
+ #: ../views/single.php:17
2193
+ msgid "Event:"
2194
+ msgstr "Evento:"
2195
+
2196
+ # @ tribe-events-calendar-pro
2197
+ #: ../views/single.php:34
2198
+ msgid "Organizer:"
2199
+ msgstr "Organizzatore:"
2200
+
2201
+ #: ../views/single.php:45
2202
+ msgid "Updated:"
2203
+ msgstr "Aggiornato:"
2204
+
2205
+ #: ../views/single.php:48
2206
+ msgid "Schedule:"
2207
+ msgstr "Programmazione:"
2208
+
2209
+ # @ tribe-events-calendar-pro
2210
+ #: ../views/single.php:73
2211
+ msgid "Click to view a Google Map"
2212
+ msgstr "Visualizza su Google Maps"
2213
+
2214
+ #: ../views/single.php:101
2215
+ msgid "Add to Google Calendar"
2216
+ msgstr "Aggiungi a Google Calendar"
2217
+
2218
+ # @ default
2219
+ #: ../views/single.php:101
2220
+ msgid "+ Google Calendar"
2221
+ msgstr "+ Google Calendar"
2222
+
2223
+ #: ../views/table-mini.php:24
2224
+ msgid "View all &raquo;"
2225
+ msgstr "Vedi tutto &raquo;"
2226
 
lang/tribe-events-calendar-nl_NL.mo ADDED
Binary file
lang/tribe-events-calendar-nl_NL.po ADDED
@@ -0,0 +1,2093 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # POT for The Events Calendar 2.0 by Modern Tribe, Inc..
2
+ # Copyright (C) 2011 Shane & Peter, Inc.
3
+ # This file is distributed under the same license as the The Events Calendar package.
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: The Events Calendar 2.0\n"
7
+ "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2011-09-09 18:04-0500\n"
9
+ "PO-Revision-Date: 2011-11-18 11:02+0100\n"
10
+ "Last-Translator: Rick van Dalen <rick@studio-pit.nl>\n"
11
+ "Language-Team: Modern Tribe, Inc.\n"
12
+ "Language: \n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-KeywordsList: __;_e\n"
18
+ "X-Poedit-Basepath: ./\n"
19
+ "X-Poedit-Language: Bulgarian\n"
20
+ "X-Poedit-Country: BULGARIA\n"
21
+ "X-Poedit-SearchPath-0: ..\n"
22
+
23
+ #: ../views/list.php:16
24
+ #: ../views/gridview.php:37
25
+ msgid "Event List"
26
+ msgstr "Activiteiten Lijst"
27
+
28
+ #: ../views/list.php:17
29
+ #: ../views/gridview.php:38
30
+ msgid "Calendar"
31
+ msgstr "Agenda"
32
+
33
+ #: ../views/list.php:42
34
+ #: ../views/single.php:17
35
+ msgid "Start:"
36
+ msgstr "Start"
37
+
38
+ #: ../views/list.php:46
39
+ #: ../views/single.php:20
40
+ msgid "End:"
41
+ msgstr "Einde"
42
+
43
+ #: ../views/list.php:54
44
+ #: ../views/single.php:47
45
+ msgid "Venue:"
46
+ msgstr "Locatie:"
47
+
48
+ #: ../views/list.php:63
49
+ #: ../views/single.php:33
50
+ #: ../views/single.php:51
51
+ #: ../admin-views/venue-meta-box.php:73
52
+ msgid "Phone:"
53
+ msgstr "Telefoon"
54
+
55
+ #: ../views/list.php:69
56
+ #: ../views/single.php:56
57
+ #: ../admin-views/venue-meta-box.php:19
58
+ msgid "Address:"
59
+ msgstr "Adres:"
60
+
61
+ #: ../views/list.php:71
62
+ #: ../views/single.php:58
63
+ msgid "Google Map"
64
+ msgstr "Google Map"
65
+
66
+ #: ../views/list.php:81
67
+ #: ../views/single.php:24
68
+ #: ../admin-views/events-meta-box.php:128
69
+ msgid "Cost:"
70
+ msgstr "Kost:"
71
+
72
+ #: ../views/list.php:95
73
+ #, php-format
74
+ msgid " listed under %s. Check out upcoming events for this category or view the full calendar."
75
+ msgstr "Staat onder %s. Bekijk aankomende activiteiten voor deze categorie of bekijk de volledige aganda."
76
+
77
+ #: ../views/list.php:97
78
+ #, php-format
79
+ msgid " listed under %s. Check out past events for this category or view the full calendar."
80
+ msgstr "Staat onder %s. Bekijk eerdere activiteiten voor deze categorie of bekijk de volledige aganda."
81
+
82
+ #: ../views/list.php:103
83
+ msgid "No upcoming events"
84
+ msgstr "Geen aankomende activiteiten"
85
+
86
+ #: ../views/list.php:107
87
+ msgid "No previous events"
88
+ msgstr "Geen eerdere activiteiten"
89
+
90
+ #: ../views/list.php:120
91
+ #: ../views/list.php:122
92
+ #: ../views/list.php:124
93
+ msgid "&laquo; Previous Events"
94
+ msgstr "&laquo; Vorige activiteiten"
95
+
96
+ #: ../views/list.php:131
97
+ #: ../views/list.php:133
98
+ #: ../views/list.php:135
99
+ msgid "Next Events &raquo;"
100
+ msgstr "Volgende activiteiten &raquo;"
101
+
102
+ #: ../views/list.php:140
103
+ #: ../views/gridview.php:42
104
+ #: ../views/single.php:83
105
+ msgid "iCal Import"
106
+ msgstr "iCal Importeren"
107
+
108
+ #: ../views/table-mini.php:24
109
+ msgid "View all &raquo;"
110
+ msgstr "Bekijk allen &raquo;"
111
+
112
+ #: ../views/single.php:13
113
+ msgid "&laquo; Back to Events"
114
+ msgstr "&laquo; Terug naar evenementen"
115
+
116
+ #: ../views/single.php:14
117
+ msgid "This event has passed."
118
+ msgstr "Deze activiteit is verstreken."
119
+
120
+ #: ../views/single.php:29
121
+ msgid "Organizer:"
122
+ msgstr "Organizer:"
123
+
124
+ #: ../views/single.php:37
125
+ msgid "Email:"
126
+ msgstr "Email:"
127
+
128
+ #: ../views/single.php:41
129
+ msgid "Schedule:"
130
+ msgstr "Schema:"
131
+
132
+ #: ../views/single.php:58
133
+ msgid "Click to view a Google Map"
134
+ msgstr "Klik om een Google Map te zien"
135
+
136
+ #: ../views/single.php:86
137
+ msgid "Add to Google Calendar"
138
+ msgstr "Voeg toe aan de Google Calendar"
139
+
140
+ #: ../views/single.php:86
141
+ msgid "+ Google Calendar"
142
+ msgstr "+ Google agenda"
143
+
144
+ #: ../views/events-list-load-widget-display.php:48
145
+ msgid "All Day"
146
+ msgstr "De hele dag"
147
+
148
+ #: ../views/events-list-load-widget-display.php:51
149
+ msgid "Ends"
150
+ msgstr "Eindigd"
151
+
152
+ #: ../views/ecp-single-template.php:24
153
+ msgid "Edit"
154
+ msgstr "Bewerk"
155
+
156
+ #: ../admin-views/events-meta-box.php:26
157
+ msgid "Event Time &amp; Date"
158
+ msgstr "Activiteiten tijd &amp; Datum"
159
+
160
+ #: ../admin-views/events-meta-box.php:29
161
+ msgid "You have changed the recurrence rules of this event. Saving the event will update all future events. If you did not mean to change all events, then please refresh the page."
162
+ msgstr "U heeft de terugkerende regels van deze activiteit veranderd. Zodra u dit opslaat is dit van toepassing op alle toekomstige activiteiten. Wilt u dit niet refresh de pagina."
163
+
164
+ #: ../admin-views/events-meta-box.php:32
165
+ msgid "All day event?"
166
+ msgstr "Is de activiteit de hele dag?"
167
+
168
+ #: ../admin-views/events-meta-box.php:36
169
+ msgid "Start Date / Time:"
170
+ msgstr "Start datum / tijd:"
171
+
172
+ #: ../admin-views/events-meta-box.php:39
173
+ #: ../admin-views/events-meta-box.php:60
174
+ msgid "YYYY-MM-DD"
175
+ msgstr "DD-MM-YYYY"
176
+
177
+ #: ../admin-views/events-meta-box.php:41
178
+ #: ../admin-views/events-meta-box.php:62
179
+ msgid "@"
180
+ msgstr "@"
181
+
182
+ #: ../admin-views/events-meta-box.php:57
183
+ msgid "End Date / Time:"
184
+ msgstr "Einddatum / Tijd:"
185
+
186
+ #: ../admin-views/events-meta-box.php:79
187
+ msgid "Event Location Details"
188
+ msgstr "Activiteiten locatie details"
189
+
190
+ #: ../admin-views/events-meta-box.php:83
191
+ msgid "Use Saved Venue:"
192
+ msgstr "Gebruik opgeslagen locaties:"
193
+
194
+ #: ../admin-views/events-meta-box.php:91
195
+ msgid "Show Google Maps Link:"
196
+ msgstr "Bekijk Google Maps Link:"
197
+
198
+ #: ../admin-views/events-meta-box.php:98
199
+ msgid "Show Google Map:"
200
+ msgstr "Bekijk Google Map::"
201
+
202
+ #: ../admin-views/events-meta-box.php:107
203
+ msgid "Event Organizer Details"
204
+ msgstr "Activiteiten organizer details"
205
+
206
+ #: ../admin-views/events-meta-box.php:110
207
+ msgid "Use Saved Organizer:"
208
+ msgstr "Gebruik opgeslagen Organizer:"
209
+
210
+ #: ../admin-views/events-meta-box.php:125
211
+ msgid "Event Cost"
212
+ msgstr "Activiteiten kosten"
213
+
214
+ #: ../admin-views/events-meta-box.php:133
215
+ msgid "Leave blank to hide the field. Enter a 0 for events that are free."
216
+ msgstr "Laat het veld leeg om het te verbergen. Voeg een 0 toe voor activiteiten die gratis zijn."
217
+
218
+ #: ../admin-views/events-meta-box.php:139
219
+ msgid "Additional Functionality"
220
+ msgstr "Extra functionaliteiten"
221
+
222
+ #: ../admin-views/events-meta-box.php:144
223
+ msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
224
+ msgstr "Zoek je naar extra functionaliteiten zoals terugkerende activiteiten, verkoop tickets en meer?"
225
+
226
+ #: ../admin-views/events-meta-box.php:144
227
+ #, php-format
228
+ msgid "Check out the <a href=\"%s\">available Add-Ons</a>."
229
+ msgstr "Bekijk de <a href=\"%s\">beschikbare Add-Ons</a>."
230
+
231
+ #: ../admin-views/venue-meta-box.php:12
232
+ msgid "Venue Name:"
233
+ msgstr "Locatie naam:"
234
+
235
+ #: ../admin-views/venue-meta-box.php:23
236
+ msgid "City:"
237
+ msgstr "Stad:"
238
+
239
+ #: ../admin-views/venue-meta-box.php:27
240
+ msgid "Country:"
241
+ msgstr "Land:"
242
+
243
+ #: ../admin-views/venue-meta-box.php:52
244
+ msgid "State or Province:"
245
+ msgstr "Provincie:"
246
+
247
+ #: ../admin-views/venue-meta-box.php:55
248
+ msgid "Select a State:"
249
+ msgstr "Kies een provincie:"
250
+
251
+ #: ../admin-views/venue-meta-box.php:69
252
+ msgid "Postal Code:"
253
+ msgstr "Postcode:"
254
+
255
+ #: ../admin-views/recurrence-dialog.php:11
256
+ msgid "Which events do you wish to update?"
257
+ msgstr "Welke activiteit wilt u updaten?"
258
+
259
+ #: ../admin-views/recurrence-dialog.php:14
260
+ msgid "Select your desired action"
261
+ msgstr "Selecteer jouw gewenste actie"
262
+
263
+ #: ../admin-views/events-options.php:47
264
+ #, php-format
265
+ msgid "%s Settings"
266
+ msgstr "%s instellingen"
267
+
268
+ #: ../admin-views/events-options.php:53
269
+ msgid "Need a hand?"
270
+ msgstr "Hulp nodig?"
271
+
272
+ #: ../admin-views/events-options.php:54
273
+ #, php-format
274
+ msgid "If you're stuck on these options, please <a href=\"%s\">check out the documentation</a>. Or, go to the <a href=\"%s\">support forum</a>."
275
+ msgstr "Lukt het niet?, bekijk onze <a href=\"%s\">documentatie</a>. of ga naar het <a href=\"%s\">support forum</a>."
276
+
277
+ #: ../admin-views/events-options.php:56
278
+ msgid "Here is the iCal feed URL for your events: "
279
+ msgstr "Hier is de iCal feed URL voor jouw activiteiten: "
280
+
281
+ #: ../admin-views/events-options.php:62
282
+ msgid "Settings"
283
+ msgstr "Instellingen"
284
+
285
+ #: ../admin-views/events-options.php:65
286
+ #: ../admin-views/events-options.php:69
287
+ msgid "Default View for the Events"
288
+ msgstr "Standaard opmaak voor de activiteiten"
289
+
290
+ #: ../admin-views/events-options.php:83
291
+ #: ../admin-views/events-options.php:87
292
+ #: ../admin-views/events-options.php:89
293
+ msgid "Show Comments"
294
+ msgstr "Laat commentaar zien"
295
+
296
+ #: ../admin-views/events-options.php:97
297
+ #: ../admin-views/events-options.php:101
298
+ msgid "Multiday Event Cutoff"
299
+ msgstr "Laatste dag van een meerdaagse activiteit"
300
+
301
+ #: ../admin-views/events-options.php:115
302
+ msgid "For multi-day events, hide the last day from grid view if it ends on or before this time."
303
+ msgstr "Voor een meerdaagse activiteit, verberg de laatste dag als het eindigt voor deze tijd."
304
+
305
+ #: ../admin-views/events-options.php:120
306
+ #: ../admin-views/events-options.php:124
307
+ msgid "Enable Google Maps"
308
+ msgstr "Google Maps toestaan"
309
+
310
+ #: ../admin-views/events-options.php:130
311
+ msgid "Height"
312
+ msgstr "Hoogte"
313
+
314
+ #: ../admin-views/events-options.php:131
315
+ msgid "Width"
316
+ msgstr "Breedte"
317
+
318
+ #: ../admin-views/events-options.php:131
319
+ msgid "(number or %)"
320
+ msgstr "(nummer of %)"
321
+
322
+ #: ../admin-views/events-options.php:135
323
+ msgid "If you don't have this turned on, your event listings won't have the backend map preview or frontend embedded map."
324
+ msgstr "Als u dit niet heeft aanstaat, toont de activiteitenlijst niet the backend map voorvertoning of frontend embedded map."
325
+
326
+ #: ../admin-views/events-options.php:143
327
+ #: ../admin-views/events-options.php:147
328
+ msgid "Use Pretty URLs"
329
+ msgstr "Gebruik zoekmachine vriendelijke URLs"
330
+
331
+ #: ../admin-views/events-options.php:153
332
+ msgid "Although unlikely, pretty URLs (ie, http://site/events/upcoming) may interfere with custom themes or plugins."
333
+ msgstr "Het is onwaarschijnlijk, maar het kan zijn dat zoekmachine vriendelijk URLs (ie, http://site/events/upcoming) conflicten oplevert met custom themes of plugins."
334
+
335
+ #: ../admin-views/events-options.php:159
336
+ #: ../admin-views/events-options.php:161
337
+ msgid "Events URL slug"
338
+ msgstr "Activiteiten URL permalink"
339
+
340
+ #: ../admin-views/events-options.php:162
341
+ msgid "The slug used for building the Events URL."
342
+ msgstr "De permalink is gebruikt om activiteiten URL op te bouwen."
343
+
344
+ #: ../admin-views/events-options.php:162
345
+ #, php-format
346
+ msgid "Your current Events URL is <strong>%s</strong>"
347
+ msgstr "De huidige activiteiten URL is <strong>%s</strong>"
348
+
349
+ #: ../admin-views/events-options.php:166
350
+ #: ../admin-views/events-options.php:168
351
+ msgid "Single Event URL slug"
352
+ msgstr "Single Event URL slug"
353
+
354
+ #: ../admin-views/events-options.php:169
355
+ msgid "The slug used for building a single Event URL."
356
+ msgstr "De permalink is gebruikt om een eenmalige activiteit URL op te bouwen."
357
+
358
+ #: ../admin-views/events-options.php:170
359
+ #, php-format
360
+ msgid "<strong>NOTE:</strong> You <em>cannot</em> use the same slug as above. The above should ideally be plural, and this singular.<br />Your single Event URL is like: <strong>%s</strong>"
361
+ msgstr "<strong>NOTE:</strong> U <em>kunt</em> niet dezelfde slug gebruiken als hierboven.Het is nu in enkelvoud en ideaaliter zou het in meervoud moeten zijn. <br />De single activiteit URL is: <strong>%s</strong>"
362
+
363
+ #: ../admin-views/events-options.php:175
364
+ #: ../admin-views/events-options.php:177
365
+ msgid "Debug"
366
+ msgstr "Debug"
367
+
368
+ #: ../admin-views/events-options.php:178
369
+ msgid "Debug Events display issues."
370
+ msgstr "Debug activiteiten toont conflicten."
371
+
372
+ #: ../admin-views/events-options.php:179
373
+ #, php-format
374
+ msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the <a href=\"%s\" target=\"_blank\">Debug Bar Plugin</a> and look for the \"Tribe\" tab in the debug output."
375
+ msgstr "Sta toe om debug informatie te loggen. Standaard wordt dit aan PHP error log toegevoegd. Als u log berichten in de browser wilt zien dan adviseren wij om <a href=\"%s\" target=\"_blank\">Debug Bar Plugin</a> te installeren. Kijk onder de \"Tribe\" tab in de debug output."
376
+
377
+ #: ../admin-views/events-options.php:184
378
+ msgid "Theme Settings"
379
+ msgstr "Theme instellingen"
380
+
381
+ #: ../admin-views/events-options.php:187
382
+ #: ../admin-views/events-options.php:189
383
+ msgid "Events Template"
384
+ msgstr "Activiteiten Template"
385
+
386
+ #: ../admin-views/events-options.php:191
387
+ msgid "Default ECP Template"
388
+ msgstr "Standaard ECP Template"
389
+
390
+ #: ../admin-views/events-options.php:192
391
+ msgid "Default Page Template"
392
+ msgstr "Standaard pagina Template"
393
+
394
+ #: ../admin-views/events-options.php:195
395
+ msgid "Choose a page template to control the look and feel of your calendar."
396
+ msgstr "Kies een pagina template om de look and feel van de agenda te bepalen."
397
+
398
+ #: ../admin-views/events-options.php:199
399
+ #: ../admin-views/events-options.php:201
400
+ #: ../admin-views/events-options.php:209
401
+ msgid "Add HTML before calendar"
402
+ msgstr "Voeg HTML toe voor de agenda"
403
+
404
+ #: ../admin-views/events-options.php:203
405
+ msgid "Some themes may require that you add extra divs before the calendar list to help with styling."
406
+ msgstr "Sommige themes hebben extra divs nodig voor de agenda lijst om te helpen met stylen."
407
+
408
+ #: ../admin-views/events-options.php:203
409
+ msgid "This is displayed directly after the header."
410
+ msgstr "Dit verschijnt direct na de header."
411
+
412
+ #: ../admin-views/events-options.php:203
413
+ #: ../admin-views/events-options.php:211
414
+ msgid "You may use (x)HTML."
415
+ msgstr "U mag gebruik maken van (x)HTML."
416
+
417
+ #: ../admin-views/events-options.php:207
418
+ msgid "Add HTML after calendar"
419
+ msgstr "Voeg HTML toe na de agenda"
420
+
421
+ #: ../admin-views/events-options.php:211
422
+ msgid "Some themes may require that you add extra divs after the calendar list to help with styling."
423
+ msgstr "Sommige themes hebben extra divs nodig na de agenda lijst om te helpen met stylen."
424
+
425
+ #: ../admin-views/events-options.php:211
426
+ msgid "This is displayed directly above the footer."
427
+ msgstr "Dit verschijnt direct boven de footer"
428
+
429
+ #: ../admin-views/events-options.php:220
430
+ msgid "Save Changes"
431
+ msgstr "Bewaar de veranderingen"
432
+
433
+ #: ../admin-views/widget-admin-list.php:11
434
+ msgid "Title:"
435
+ msgstr "Titel:"
436
+
437
+ #: ../admin-views/widget-admin-list.php:16
438
+ msgid "Show:"
439
+ msgstr "Toon:"
440
+
441
+ #: ../admin-views/widget-admin-list.php:24
442
+ msgid "Show widget only if there are upcoming events:"
443
+ msgstr "Toon widget alleen wanneer het aankomende activiteiten zijn:"
444
+
445
+ #: ../admin-views/widget-admin-list.php:30
446
+ msgid "If you wish to customize the widget display yourself, see the file views/events-list-load-widget-display.php inside the Events Premium plugin."
447
+ msgstr "If you wish to customize the widget display yourself, see the file views/events-list-load-widget-display.php inside the Events Premium plugin."
448
+
449
+ #: ../admin-views/organizer-meta-box.php:11
450
+ msgid "Organizer Name:"
451
+ msgstr "Organizer naam:"
452
+
453
+ #: ../admin-views/organizer-meta-box.php:21
454
+ msgid "Website:"
455
+ msgstr "Website:"
456
+
457
+ #: ../lib/tribe-admin-events-list.class.php:160
458
+ #: ../lib/the-events-calendar.class.php:523
459
+ msgid "Event Categories"
460
+ msgstr "Activiteiten categorieën"
461
+
462
+ #: ../lib/tribe-admin-events-list.class.php:165
463
+ msgid "Start Date"
464
+ msgstr "Startdatum"
465
+
466
+ #: ../lib/tribe-admin-events-list.class.php:166
467
+ msgid "End Date"
468
+ msgstr "Einddatum"
469
+
470
+ #: ../lib/tribe-admin-events-list.class.php:167
471
+ msgid "Recurring?"
472
+ msgstr "Terugkerende?"
473
+
474
+ #: ../lib/tribe-admin-events-list.class.php:245
475
+ #, php-format
476
+ msgid "All %s"
477
+ msgstr "Allen %s"
478
+
479
+ #: ../lib/tribe-view-helpers.class.php:16
480
+ #: ../lib/tribe-view-helpers.class.php:33
481
+ msgid "Select a Country:"
482
+ msgstr "Selecteer een land:"
483
+
484
+ #: ../lib/tribe-view-helpers.class.php:34
485
+ #: ../lib/template-tags.php:830
486
+ #: ../lib/template-tags.php:964
487
+ msgid "United States"
488
+ msgstr "Verenigde staten van Amerika"
489
+
490
+ #: ../lib/tribe-view-helpers.class.php:35
491
+ msgid "Afghanistan"
492
+ msgstr ""
493
+
494
+ #: ../lib/tribe-view-helpers.class.php:36
495
+ msgid "Albania"
496
+ msgstr ""
497
+
498
+ #: ../lib/tribe-view-helpers.class.php:37
499
+ msgid "Algeria"
500
+ msgstr ""
501
+
502
+ #: ../lib/tribe-view-helpers.class.php:38
503
+ msgid "American Samoa"
504
+ msgstr ""
505
+
506
+ #: ../lib/tribe-view-helpers.class.php:39
507
+ msgid "Andorra"
508
+ msgstr ""
509
+
510
+ #: ../lib/tribe-view-helpers.class.php:40
511
+ msgid "Angola"
512
+ msgstr ""
513
+
514
+ #: ../lib/tribe-view-helpers.class.php:41
515
+ msgid "Anguilla"
516
+ msgstr ""
517
+
518
+ #: ../lib/tribe-view-helpers.class.php:42
519
+ msgid "Antarctica"
520
+ msgstr ""
521
+
522
+ #: ../lib/tribe-view-helpers.class.php:43
523
+ msgid "Antigua And Barbuda"
524
+ msgstr ""
525
+
526
+ #: ../lib/tribe-view-helpers.class.php:44
527
+ msgid "Argentina"
528
+ msgstr ""
529
+
530
+ #: ../lib/tribe-view-helpers.class.php:45
531
+ msgid "Armenia"
532
+ msgstr ""
533
+
534
+ #: ../lib/tribe-view-helpers.class.php:46
535
+ msgid "Aruba"
536
+ msgstr ""
537
+
538
+ #: ../lib/tribe-view-helpers.class.php:47
539
+ msgid "Australia"
540
+ msgstr ""
541
+
542
+ #: ../lib/tribe-view-helpers.class.php:48
543
+ msgid "Austria"
544
+ msgstr ""
545
+
546
+ #: ../lib/tribe-view-helpers.class.php:49
547
+ msgid "Azerbaijan"
548
+ msgstr ""
549
+
550
+ #: ../lib/tribe-view-helpers.class.php:50
551
+ msgid "Bahamas"
552
+ msgstr ""
553
+
554
+ #: ../lib/tribe-view-helpers.class.php:51
555
+ msgid "Bahrain"
556
+ msgstr ""
557
+
558
+ #: ../lib/tribe-view-helpers.class.php:52
559
+ msgid "Bangladesh"
560
+ msgstr ""
561
+
562
+ #: ../lib/tribe-view-helpers.class.php:53
563
+ msgid "Barbados"
564
+ msgstr ""
565
+
566
+ #: ../lib/tribe-view-helpers.class.php:54
567
+ msgid "Belarus"
568
+ msgstr ""
569
+
570
+ #: ../lib/tribe-view-helpers.class.php:55
571
+ msgid "Belgium"
572
+ msgstr ""
573
+
574
+ #: ../lib/tribe-view-helpers.class.php:56
575
+ msgid "Belize"
576
+ msgstr ""
577
+
578
+ #: ../lib/tribe-view-helpers.class.php:57
579
+ msgid "Benin"
580
+ msgstr ""
581
+
582
+ #: ../lib/tribe-view-helpers.class.php:58
583
+ msgid "Bermuda"
584
+ msgstr ""
585
+
586
+ #: ../lib/tribe-view-helpers.class.php:59
587
+ msgid "Bhutan"
588
+ msgstr ""
589
+
590
+ #: ../lib/tribe-view-helpers.class.php:60
591
+ msgid "Bolivia"
592
+ msgstr ""
593
+
594
+ #: ../lib/tribe-view-helpers.class.php:61
595
+ msgid "Bosnia And Herzegowina"
596
+ msgstr ""
597
+
598
+ #: ../lib/tribe-view-helpers.class.php:62
599
+ msgid "Botswana"
600
+ msgstr ""
601
+
602
+ #: ../lib/tribe-view-helpers.class.php:63
603
+ msgid "Bouvet Island"
604
+ msgstr ""
605
+
606
+ #: ../lib/tribe-view-helpers.class.php:64
607
+ msgid "Brazil"
608
+ msgstr ""
609
+
610
+ #: ../lib/tribe-view-helpers.class.php:65
611
+ msgid "British Indian Ocean Territory"
612
+ msgstr ""
613
+
614
+ #: ../lib/tribe-view-helpers.class.php:66
615
+ msgid "Brunei Darussalam"
616
+ msgstr ""
617
+
618
+ #: ../lib/tribe-view-helpers.class.php:67
619
+ msgid "Bulgaria"
620
+ msgstr ""
621
+
622
+ #: ../lib/tribe-view-helpers.class.php:68
623
+ msgid "Burkina Faso"
624
+ msgstr ""
625
+
626
+ #: ../lib/tribe-view-helpers.class.php:69
627
+ msgid "Burundi"
628
+ msgstr ""
629
+
630
+ #: ../lib/tribe-view-helpers.class.php:70
631
+ msgid "Cambodia"
632
+ msgstr ""
633
+
634
+ #: ../lib/tribe-view-helpers.class.php:71
635
+ msgid "Cameroon"
636
+ msgstr ""
637
+
638
+ #: ../lib/tribe-view-helpers.class.php:72
639
+ msgid "Canada"
640
+ msgstr ""
641
+
642
+ #: ../lib/tribe-view-helpers.class.php:73
643
+ msgid "Cape Verde"
644
+ msgstr ""
645
+
646
+ #: ../lib/tribe-view-helpers.class.php:74
647
+ msgid "Cayman Islands"
648
+ msgstr ""
649
+
650
+ #: ../lib/tribe-view-helpers.class.php:75
651
+ msgid "Central African Republic"
652
+ msgstr ""
653
+
654
+ #: ../lib/tribe-view-helpers.class.php:76
655
+ msgid "Chad"
656
+ msgstr ""
657
+
658
+ #: ../lib/tribe-view-helpers.class.php:77
659
+ msgid "Chile"
660
+ msgstr ""
661
+
662
+ #: ../lib/tribe-view-helpers.class.php:78
663
+ msgid "China"
664
+ msgstr ""
665
+
666
+ #: ../lib/tribe-view-helpers.class.php:79
667
+ msgid "Christmas Island"
668
+ msgstr ""
669
+
670
+ #: ../lib/tribe-view-helpers.class.php:80
671
+ msgid "Cocos (Keeling) Islands"
672
+ msgstr ""
673
+
674
+ #: ../lib/tribe-view-helpers.class.php:81
675
+ msgid "Colombia"
676
+ msgstr ""
677
+
678
+ #: ../lib/tribe-view-helpers.class.php:82
679
+ msgid "Comoros"
680
+ msgstr ""
681
+
682
+ #: ../lib/tribe-view-helpers.class.php:83
683
+ msgid "Congo"
684
+ msgstr ""
685
+
686
+ #: ../lib/tribe-view-helpers.class.php:84
687
+ msgid "Congo, The Democratic Republic Of The"
688
+ msgstr ""
689
+
690
+ #: ../lib/tribe-view-helpers.class.php:85
691
+ msgid "Cook Islands"
692
+ msgstr ""
693
+
694
+ #: ../lib/tribe-view-helpers.class.php:86
695
+ msgid "Costa Rica"
696
+ msgstr ""
697
+
698
+ #: ../lib/tribe-view-helpers.class.php:87
699
+ msgid "Cote D'Ivoire"
700
+ msgstr ""
701
+
702
+ #: ../lib/tribe-view-helpers.class.php:88
703
+ msgid "Croatia (Local Name: Hrvatska)"
704
+ msgstr ""
705
+
706
+ #: ../lib/tribe-view-helpers.class.php:89
707
+ msgid "Cuba"
708
+ msgstr ""
709
+
710
+ #: ../lib/tribe-view-helpers.class.php:90
711
+ msgid "Cyprus"
712
+ msgstr ""
713
+
714
+ #: ../lib/tribe-view-helpers.class.php:91
715
+ msgid "Czech Republic"
716
+ msgstr ""
717
+
718
+ #: ../lib/tribe-view-helpers.class.php:92
719
+ msgid "Denmark"
720
+ msgstr ""
721
+
722
+ #: ../lib/tribe-view-helpers.class.php:93
723
+ msgid "Djibouti"
724
+ msgstr ""
725
+
726
+ #: ../lib/tribe-view-helpers.class.php:94
727
+ msgid "Dominica"
728
+ msgstr ""
729
+
730
+ #: ../lib/tribe-view-helpers.class.php:95
731
+ msgid "Dominican Republic"
732
+ msgstr ""
733
+
734
+ #: ../lib/tribe-view-helpers.class.php:96
735
+ msgid "East Timor"
736
+ msgstr ""
737
+
738
+ #: ../lib/tribe-view-helpers.class.php:97
739
+ msgid "Ecuador"
740
+ msgstr ""
741
+
742
+ #: ../lib/tribe-view-helpers.class.php:98
743
+ msgid "Egypt"
744
+ msgstr ""
745
+
746
+ #: ../lib/tribe-view-helpers.class.php:99
747
+ msgid "El Salvador"
748
+ msgstr ""
749
+
750
+ #: ../lib/tribe-view-helpers.class.php:100
751
+ msgid "Equatorial Guinea"
752
+ msgstr ""
753
+
754
+ #: ../lib/tribe-view-helpers.class.php:101
755
+ msgid "Eritrea"
756
+ msgstr ""
757
+
758
+ #: ../lib/tribe-view-helpers.class.php:102
759
+ msgid "Estonia"
760
+ msgstr ""
761
+
762
+ #: ../lib/tribe-view-helpers.class.php:103
763
+ msgid "Ethiopia"
764
+ msgstr ""
765
+
766
+ #: ../lib/tribe-view-helpers.class.php:104
767
+ msgid "Falkland Islands (Malvinas)"
768
+ msgstr ""
769
+
770
+ #: ../lib/tribe-view-helpers.class.php:105
771
+ msgid "Faroe Islands"
772
+ msgstr ""
773
+
774
+ #: ../lib/tribe-view-helpers.class.php:106
775
+ msgid "Fiji"
776
+ msgstr ""
777
+
778
+ #: ../lib/tribe-view-helpers.class.php:107
779
+ msgid "Finland"
780
+ msgstr ""
781
+
782
+ #: ../lib/tribe-view-helpers.class.php:108
783
+ msgid "France"
784
+ msgstr ""
785
+
786
+ #: ../lib/tribe-view-helpers.class.php:109
787
+ msgid "France, Metropolitan"
788
+ msgstr ""
789
+
790
+ #: ../lib/tribe-view-helpers.class.php:110
791
+ msgid "French Guiana"
792
+ msgstr ""
793
+
794
+ #: ../lib/tribe-view-helpers.class.php:111
795
+ msgid "French Polynesia"
796
+ msgstr ""
797
+
798
+ #: ../lib/tribe-view-helpers.class.php:112
799
+ msgid "French Southern Territories"
800
+ msgstr ""
801
+
802
+ #: ../lib/tribe-view-helpers.class.php:113
803
+ msgid "Gabon"
804
+ msgstr ""
805
+
806
+ #: ../lib/tribe-view-helpers.class.php:114
807
+ msgid "Gambia"
808
+ msgstr ""
809
+
810
+ #: ../lib/tribe-view-helpers.class.php:115
811
+ #: ../lib/tribe-view-helpers.class.php:304
812
+ msgid "Georgia"
813
+ msgstr ""
814
+
815
+ #: ../lib/tribe-view-helpers.class.php:116
816
+ msgid "Germany"
817
+ msgstr ""
818
+
819
+ #: ../lib/tribe-view-helpers.class.php:117
820
+ msgid "Ghana"
821
+ msgstr ""
822
+
823
+ #: ../lib/tribe-view-helpers.class.php:118
824
+ msgid "Gibraltar"
825
+ msgstr ""
826
+
827
+ #: ../lib/tribe-view-helpers.class.php:119
828
+ msgid "Greece"
829
+ msgstr ""
830
+
831
+ #: ../lib/tribe-view-helpers.class.php:120
832
+ msgid "Greenland"
833
+ msgstr ""
834
+
835
+ #: ../lib/tribe-view-helpers.class.php:121
836
+ msgid "Grenada"
837
+ msgstr ""
838
+
839
+ #: ../lib/tribe-view-helpers.class.php:122
840
+ msgid "Guadeloupe"
841
+ msgstr ""
842
+
843
+ #: ../lib/tribe-view-helpers.class.php:123
844
+ msgid "Guam"
845
+ msgstr ""
846
+
847
+ #: ../lib/tribe-view-helpers.class.php:124
848
+ msgid "Guatemala"
849
+ msgstr ""
850
+
851
+ #: ../lib/tribe-view-helpers.class.php:125
852
+ msgid "Guinea"
853
+ msgstr ""
854
+
855
+ #: ../lib/tribe-view-helpers.class.php:126
856
+ msgid "Guinea-Bissau"
857
+ msgstr ""
858
+
859
+ #: ../lib/tribe-view-helpers.class.php:127
860
+ msgid "Guyana"
861
+ msgstr ""
862
+
863
+ #: ../lib/tribe-view-helpers.class.php:128
864
+ msgid "Haiti"
865
+ msgstr ""
866
+
867
+ #: ../lib/tribe-view-helpers.class.php:129
868
+ msgid "Heard And Mc Donald Islands"
869
+ msgstr ""
870
+
871
+ #: ../lib/tribe-view-helpers.class.php:130
872
+ msgid "Holy See (Vatican City State)"
873
+ msgstr ""
874
+
875
+ #: ../lib/tribe-view-helpers.class.php:131
876
+ msgid "Honduras"
877
+ msgstr ""
878
+
879
+ #: ../lib/tribe-view-helpers.class.php:132
880
+ msgid "Hong Kong"
881
+ msgstr ""
882
+
883
+ #: ../lib/tribe-view-helpers.class.php:133
884
+ msgid "Hungary"
885
+ msgstr ""
886
+
887
+ #: ../lib/tribe-view-helpers.class.php:134
888
+ msgid "Iceland"
889
+ msgstr ""
890
+
891
+ #: ../lib/tribe-view-helpers.class.php:135
892
+ msgid "India"
893
+ msgstr ""
894
+
895
+ #: ../lib/tribe-view-helpers.class.php:136
896
+ msgid "Indonesia"
897
+ msgstr ""
898
+
899
+ #: ../lib/tribe-view-helpers.class.php:137
900
+ msgid "Iran (Islamic Republic Of)"
901
+ msgstr ""
902
+
903
+ #: ../lib/tribe-view-helpers.class.php:138
904
+ msgid "Iraq"
905
+ msgstr ""
906
+
907
+ #: ../lib/tribe-view-helpers.class.php:139
908
+ msgid "Ireland"
909
+ msgstr ""
910
+
911
+ #: ../lib/tribe-view-helpers.class.php:140
912
+ msgid "Israel"
913
+ msgstr ""
914
+
915
+ #: ../lib/tribe-view-helpers.class.php:141
916
+ msgid "Italy"
917
+ msgstr ""
918
+
919
+ #: ../lib/tribe-view-helpers.class.php:142
920
+ msgid "Jamaica"
921
+ msgstr ""
922
+
923
+ #: ../lib/tribe-view-helpers.class.php:143
924
+ msgid "Japan"
925
+ msgstr ""
926
+
927
+ #: ../lib/tribe-view-helpers.class.php:144
928
+ msgid "Jordan"
929
+ msgstr ""
930
+
931
+ #: ../lib/tribe-view-helpers.class.php:145
932
+ msgid "Kazakhstan"
933
+ msgstr ""
934
+
935
+ #: ../lib/tribe-view-helpers.class.php:146
936
+ msgid "Kenya"
937
+ msgstr ""
938
+
939
+ #: ../lib/tribe-view-helpers.class.php:147
940
+ msgid "Kiribati"
941
+ msgstr ""
942
+
943
+ #: ../lib/tribe-view-helpers.class.php:148
944
+ msgid "Korea, Democratic People's Republic Of"
945
+ msgstr ""
946
+
947
+ #: ../lib/tribe-view-helpers.class.php:149
948
+ msgid "Korea, Republic Of"
949
+ msgstr ""
950
+
951
+ #: ../lib/tribe-view-helpers.class.php:150
952
+ msgid "Kuwait"
953
+ msgstr ""
954
+
955
+ #: ../lib/tribe-view-helpers.class.php:151
956
+ msgid "Kyrgyzstan"
957
+ msgstr ""
958
+
959
+ #: ../lib/tribe-view-helpers.class.php:152
960
+ msgid "Lao People's Democratic Republic"
961
+ msgstr ""
962
+
963
+ #: ../lib/tribe-view-helpers.class.php:153
964
+ msgid "Latvia"
965
+ msgstr ""
966
+
967
+ #: ../lib/tribe-view-helpers.class.php:154
968
+ msgid "Lebanon"
969
+ msgstr ""
970
+
971
+ #: ../lib/tribe-view-helpers.class.php:155
972
+ msgid "Lesotho"
973
+ msgstr ""
974
+
975
+ #: ../lib/tribe-view-helpers.class.php:156
976
+ msgid "Liberia"
977
+ msgstr ""
978
+
979
+ #: ../lib/tribe-view-helpers.class.php:157
980
+ msgid "Libyan Arab Jamahiriya"
981
+ msgstr ""
982
+
983
+ #: ../lib/tribe-view-helpers.class.php:158
984
+ msgid "Liechtenstein"
985
+ msgstr ""
986
+
987
+ #: ../lib/tribe-view-helpers.class.php:159
988
+ msgid "Lithuania"
989
+ msgstr ""
990
+
991
+ #: ../lib/tribe-view-helpers.class.php:160
992
+ msgid "Luxembourg"
993
+ msgstr ""
994
+
995
+ #: ../lib/tribe-view-helpers.class.php:161
996
+ msgid "Macau"
997
+ msgstr ""
998
+
999
+ #: ../lib/tribe-view-helpers.class.php:162
1000
+ msgid "Macedonia, Former Yugoslav Republic Of"
1001
+ msgstr ""
1002
+
1003
+ #: ../lib/tribe-view-helpers.class.php:163
1004
+ msgid "Madagascar"
1005
+ msgstr ""
1006
+
1007
+ #: ../lib/tribe-view-helpers.class.php:164
1008
+ msgid "Malawi"
1009
+ msgstr ""
1010
+
1011
+ #: ../lib/tribe-view-helpers.class.php:165
1012
+ msgid "Malaysia"
1013
+ msgstr ""
1014
+
1015
+ #: ../lib/tribe-view-helpers.class.php:166
1016
+ msgid "Maldives"
1017
+ msgstr ""
1018
+
1019
+ #: ../lib/tribe-view-helpers.class.php:167
1020
+ msgid "Mali"
1021
+ msgstr ""
1022
+
1023
+ #: ../lib/tribe-view-helpers.class.php:168
1024
+ msgid "Malta"
1025
+ msgstr ""
1026
+
1027
+ #: ../lib/tribe-view-helpers.class.php:169
1028
+ msgid "Marshall Islands"
1029
+ msgstr ""
1030
+
1031
+ #: ../lib/tribe-view-helpers.class.php:170
1032
+ msgid "Martinique"
1033
+ msgstr ""
1034
+
1035
+ #: ../lib/tribe-view-helpers.class.php:171
1036
+ msgid "Mauritania"
1037
+ msgstr ""
1038
+
1039
+ #: ../lib/tribe-view-helpers.class.php:172
1040
+ msgid "Mauritius"
1041
+ msgstr ""
1042
+
1043
+ #: ../lib/tribe-view-helpers.class.php:173
1044
+ msgid "Mayotte"
1045
+ msgstr ""
1046
+
1047
+ #: ../lib/tribe-view-helpers.class.php:174
1048
+ msgid "Mexico"
1049
+ msgstr ""
1050
+
1051
+ #: ../lib/tribe-view-helpers.class.php:175
1052
+ msgid "Micronesia, Federated States Of"
1053
+ msgstr ""
1054
+
1055
+ #: ../lib/tribe-view-helpers.class.php:176
1056
+ msgid "Moldova, Republic Of"
1057
+ msgstr ""
1058
+
1059
+ #: ../lib/tribe-view-helpers.class.php:177
1060
+ msgid "Monaco"
1061
+ msgstr ""
1062
+
1063
+ #: ../lib/tribe-view-helpers.class.php:178
1064
+ msgid "Mongolia"
1065
+ msgstr ""
1066
+
1067
+ #: ../lib/tribe-view-helpers.class.php:179
1068
+ msgid "Montenegro"
1069
+ msgstr ""
1070
+
1071
+ #: ../lib/tribe-view-helpers.class.php:180
1072
+ msgid "Montserrat"
1073
+ msgstr ""
1074
+
1075
+ #: ../lib/tribe-view-helpers.class.php:181
1076
+ msgid "Morocco"
1077
+ msgstr ""
1078
+
1079
+ #: ../lib/tribe-view-helpers.class.php:182
1080
+ msgid "Mozambique"
1081
+ msgstr ""
1082
+
1083
+ #: ../lib/tribe-view-helpers.class.php:183
1084
+ msgid "Myanmar"
1085
+ msgstr ""
1086
+
1087
+ #: ../lib/tribe-view-helpers.class.php:184
1088
+ msgid "Namibia"
1089
+ msgstr ""
1090
+
1091
+ #: ../lib/tribe-view-helpers.class.php:185
1092
+ msgid "Nauru"
1093
+ msgstr ""
1094
+
1095
+ #: ../lib/tribe-view-helpers.class.php:186
1096
+ msgid "Nepal"
1097
+ msgstr ""
1098
+
1099
+ #: ../lib/tribe-view-helpers.class.php:187
1100
+ msgid "Netherlands"
1101
+ msgstr ""
1102
+
1103
+ #: ../lib/tribe-view-helpers.class.php:188
1104
+ msgid "Netherlands Antilles"
1105
+ msgstr ""
1106
+
1107
+ #: ../lib/tribe-view-helpers.class.php:189
1108
+ msgid "New Caledonia"
1109
+ msgstr ""
1110
+
1111
+ #: ../lib/tribe-view-helpers.class.php:190
1112
+ msgid "New Zealand"
1113
+ msgstr ""
1114
+
1115
+ #: ../lib/tribe-view-helpers.class.php:191
1116
+ msgid "Nicaragua"
1117
+ msgstr ""
1118
+
1119
+ #: ../lib/tribe-view-helpers.class.php:192
1120
+ msgid "Niger"
1121
+ msgstr ""
1122
+
1123
+ #: ../lib/tribe-view-helpers.class.php:193
1124
+ msgid "Nigeria"
1125
+ msgstr ""
1126
+
1127
+ #: ../lib/tribe-view-helpers.class.php:194
1128
+ msgid "Niue"
1129
+ msgstr ""
1130
+
1131
+ #: ../lib/tribe-view-helpers.class.php:195
1132
+ msgid "Norfolk Island"
1133
+ msgstr ""
1134
+
1135
+ #: ../lib/tribe-view-helpers.class.php:196
1136
+ msgid "Northern Mariana Islands"
1137
+ msgstr ""
1138
+
1139
+ #: ../lib/tribe-view-helpers.class.php:197
1140
+ msgid "Norway"
1141
+ msgstr ""
1142
+
1143
+ #: ../lib/tribe-view-helpers.class.php:198
1144
+ msgid "Oman"
1145
+ msgstr ""
1146
+
1147
+ #: ../lib/tribe-view-helpers.class.php:199
1148
+ msgid "Pakistan"
1149
+ msgstr ""
1150
+
1151
+ #: ../lib/tribe-view-helpers.class.php:200
1152
+ msgid "Palau"
1153
+ msgstr ""
1154
+
1155
+ #: ../lib/tribe-view-helpers.class.php:201
1156
+ msgid "Panama"
1157
+ msgstr ""
1158
+
1159
+ #: ../lib/tribe-view-helpers.class.php:202
1160
+ msgid "Papua New Guinea"
1161
+ msgstr ""
1162
+
1163
+ #: ../lib/tribe-view-helpers.class.php:203
1164
+ msgid "Paraguay"
1165
+ msgstr ""
1166
+
1167
+ #: ../lib/tribe-view-helpers.class.php:204
1168
+ msgid "Peru"
1169
+ msgstr ""
1170
+
1171
+ #: ../lib/tribe-view-helpers.class.php:205
1172
+ msgid "Philippines"
1173
+ msgstr ""
1174
+
1175
+ #: ../lib/tribe-view-helpers.class.php:206
1176
+ msgid "Pitcairn"
1177
+ msgstr ""
1178
+
1179
+ #: ../lib/tribe-view-helpers.class.php:207
1180
+ msgid "Poland"
1181
+ msgstr ""
1182
+
1183
+ #: ../lib/tribe-view-helpers.class.php:208
1184
+ msgid "Portugal"
1185
+ msgstr ""
1186
+
1187
+ #: ../lib/tribe-view-helpers.class.php:209
1188
+ msgid "Puerto Rico"
1189
+ msgstr ""
1190
+
1191
+ #: ../lib/tribe-view-helpers.class.php:210
1192
+ msgid "Qatar"
1193
+ msgstr ""
1194
+
1195
+ #: ../lib/tribe-view-helpers.class.php:211
1196
+ msgid "Reunion"
1197
+ msgstr ""
1198
+
1199
+ #: ../lib/tribe-view-helpers.class.php:212
1200
+ msgid "Romania"
1201
+ msgstr ""
1202
+
1203
+ #: ../lib/tribe-view-helpers.class.php:213
1204
+ msgid "Russian Federation"
1205
+ msgstr ""
1206
+
1207
+ #: ../lib/tribe-view-helpers.class.php:214
1208
+ msgid "Rwanda"
1209
+ msgstr ""
1210
+
1211
+ #: ../lib/tribe-view-helpers.class.php:215
1212
+ msgid "Saint Kitts And Nevis"
1213
+ msgstr ""
1214
+
1215
+ #: ../lib/tribe-view-helpers.class.php:216
1216
+ msgid "Saint Lucia"
1217
+ msgstr ""
1218
+
1219
+ #: ../lib/tribe-view-helpers.class.php:217
1220
+ msgid "Saint Vincent And The Grenadines"
1221
+ msgstr ""
1222
+
1223
+ #: ../lib/tribe-view-helpers.class.php:218
1224
+ msgid "Samoa"
1225
+ msgstr ""
1226
+
1227
+ #: ../lib/tribe-view-helpers.class.php:219
1228
+ msgid "San Marino"
1229
+ msgstr ""
1230
+
1231
+ #: ../lib/tribe-view-helpers.class.php:220
1232
+ msgid "Sao Tome And Principe"
1233
+ msgstr ""
1234
+
1235
+ #: ../lib/tribe-view-helpers.class.php:221
1236
+ msgid "Saudi Arabia"
1237
+ msgstr ""
1238
+
1239
+ #: ../lib/tribe-view-helpers.class.php:222
1240
+ msgid "Senegal"
1241
+ msgstr ""
1242
+
1243
+ #: ../lib/tribe-view-helpers.class.php:223
1244
+ msgid "Serbia"
1245
+ msgstr ""
1246
+
1247
+ #: ../lib/tribe-view-helpers.class.php:224
1248
+ msgid "Seychelles"
1249
+ msgstr ""
1250
+
1251
+ #: ../lib/tribe-view-helpers.class.php:225
1252
+ msgid "Sierra Leone"
1253
+ msgstr ""
1254
+
1255
+ #: ../lib/tribe-view-helpers.class.php:226
1256
+ msgid "Singapore"
1257
+ msgstr ""
1258
+
1259
+ #: ../lib/tribe-view-helpers.class.php:227
1260
+ msgid "Slovakia (Slovak Republic)"
1261
+ msgstr ""
1262
+
1263
+ #: ../lib/tribe-view-helpers.class.php:228
1264
+ msgid "Slovenia"
1265
+ msgstr ""
1266
+
1267
+ #: ../lib/tribe-view-helpers.class.php:229
1268
+ msgid "Solomon Islands"
1269
+ msgstr ""
1270
+
1271
+ #: ../lib/tribe-view-helpers.class.php:230
1272
+ msgid "Somalia"
1273
+ msgstr ""
1274
+
1275
+ #: ../lib/tribe-view-helpers.class.php:231
1276
+ msgid "South Africa"
1277
+ msgstr ""
1278
+
1279
+ #: ../lib/tribe-view-helpers.class.php:232
1280
+ msgid "South Georgia, South Sandwich Islands"
1281
+ msgstr ""
1282
+
1283
+ #: ../lib/tribe-view-helpers.class.php:233
1284
+ msgid "Spain"
1285
+ msgstr ""
1286
+
1287
+ #: ../lib/tribe-view-helpers.class.php:234
1288
+ msgid "Sri Lanka"
1289
+ msgstr ""
1290
+
1291
+ #: ../lib/tribe-view-helpers.class.php:235
1292
+ msgid "St. Helena"
1293
+ msgstr ""
1294
+
1295
+ #: ../lib/tribe-view-helpers.class.php:236
1296
+ msgid "St. Pierre And Miquelon"
1297
+ msgstr ""
1298
+
1299
+ #: ../lib/tribe-view-helpers.class.php:237
1300
+ msgid "Sudan"
1301
+ msgstr ""
1302
+
1303
+ #: ../lib/tribe-view-helpers.class.php:238
1304
+ msgid "Suriname"
1305
+ msgstr ""
1306
+
1307
+ #: ../lib/tribe-view-helpers.class.php:239
1308
+ msgid "Svalbard And Jan Mayen Islands"
1309
+ msgstr ""
1310
+
1311
+ #: ../lib/tribe-view-helpers.class.php:240
1312
+ msgid "Swaziland"
1313
+ msgstr ""
1314
+
1315
+ #: ../lib/tribe-view-helpers.class.php:241
1316
+ msgid "Sweden"
1317
+ msgstr ""
1318
+
1319
+ #: ../lib/tribe-view-helpers.class.php:242
1320
+ msgid "Switzerland"
1321
+ msgstr ""
1322
+
1323
+ #: ../lib/tribe-view-helpers.class.php:243
1324
+ msgid "Syrian Arab Republic"
1325
+ msgstr ""
1326
+
1327
+ #: ../lib/tribe-view-helpers.class.php:244
1328
+ msgid "Taiwan"
1329
+ msgstr ""
1330
+
1331
+ #: ../lib/tribe-view-helpers.class.php:245
1332
+ msgid "Tajikistan"
1333
+ msgstr ""
1334
+
1335
+ #: ../lib/tribe-view-helpers.class.php:246
1336
+ msgid "Tanzania, United Republic Of"
1337
+ msgstr ""
1338
+
1339
+ #: ../lib/tribe-view-helpers.class.php:247
1340
+ msgid "Thailand"
1341
+ msgstr ""
1342
+
1343
+ #: ../lib/tribe-view-helpers.class.php:248
1344
+ msgid "Togo"
1345
+ msgstr ""
1346
+
1347
+ #: ../lib/tribe-view-helpers.class.php:249
1348
+ msgid "Tokelau"
1349
+ msgstr ""
1350
+
1351
+ #: ../lib/tribe-view-helpers.class.php:250
1352
+ msgid "Tonga"
1353
+ msgstr ""
1354
+
1355
+ #: ../lib/tribe-view-helpers.class.php:251
1356
+ msgid "Trinidad And Tobago"
1357
+ msgstr ""
1358
+
1359
+ #: ../lib/tribe-view-helpers.class.php:252
1360
+ msgid "Tunisia"
1361
+ msgstr ""
1362
+
1363
+ #: ../lib/tribe-view-helpers.class.php:253
1364
+ msgid "Turkey"
1365
+ msgstr ""
1366
+
1367
+ #: ../lib/tribe-view-helpers.class.php:254
1368
+ msgid "Turkmenistan"
1369
+ msgstr ""
1370
+
1371
+ #: ../lib/tribe-view-helpers.class.php:255
1372
+ msgid "Turks And Caicos Islands"
1373
+ msgstr ""
1374
+
1375
+ #: ../lib/tribe-view-helpers.class.php:256
1376
+ msgid "Tuvalu"
1377
+ msgstr ""
1378
+
1379
+ #: ../lib/tribe-view-helpers.class.php:257
1380
+ msgid "Uganda"
1381
+ msgstr ""
1382
+
1383
+ #: ../lib/tribe-view-helpers.class.php:258
1384
+ msgid "Ukraine"
1385
+ msgstr ""
1386
+
1387
+ #: ../lib/tribe-view-helpers.class.php:259
1388
+ msgid "United Arab Emirates"
1389
+ msgstr ""
1390
+
1391
+ #: ../lib/tribe-view-helpers.class.php:260
1392
+ msgid "United Kingdom"
1393
+ msgstr ""
1394
+
1395
+ #: ../lib/tribe-view-helpers.class.php:261
1396
+ msgid "United States Minor Outlying Islands"
1397
+ msgstr ""
1398
+
1399
+ #: ../lib/tribe-view-helpers.class.php:262
1400
+ msgid "Uruguay"
1401
+ msgstr ""
1402
+
1403
+ #: ../lib/tribe-view-helpers.class.php:263
1404
+ msgid "Uzbekistan"
1405
+ msgstr ""
1406
+
1407
+ #: ../lib/tribe-view-helpers.class.php:264
1408
+ msgid "Vanuatu"
1409
+ msgstr ""
1410
+
1411
+ #: ../lib/tribe-view-helpers.class.php:265
1412
+ msgid "Venezuela"
1413
+ msgstr ""
1414
+
1415
+ #: ../lib/tribe-view-helpers.class.php:266
1416
+ msgid "Viet Nam"
1417
+ msgstr ""
1418
+
1419
+ #: ../lib/tribe-view-helpers.class.php:267
1420
+ msgid "Virgin Islands (British)"
1421
+ msgstr ""
1422
+
1423
+ #: ../lib/tribe-view-helpers.class.php:268
1424
+ msgid "Virgin Islands (U.S.)"
1425
+ msgstr ""
1426
+
1427
+ #: ../lib/tribe-view-helpers.class.php:269
1428
+ msgid "Wallis And Futuna Islands"
1429
+ msgstr ""
1430
+
1431
+ #: ../lib/tribe-view-helpers.class.php:270
1432
+ msgid "Western Sahara"
1433
+ msgstr ""
1434
+
1435
+ #: ../lib/tribe-view-helpers.class.php:271
1436
+ msgid "Yemen"
1437
+ msgstr ""
1438
+
1439
+ #: ../lib/tribe-view-helpers.class.php:272
1440
+ msgid "Yugoslavia"
1441
+ msgstr ""
1442
+
1443
+ #: ../lib/tribe-view-helpers.class.php:273
1444
+ msgid "Zambia"
1445
+ msgstr ""
1446
+
1447
+ #: ../lib/tribe-view-helpers.class.php:274
1448
+ msgid "Zimbabwe"
1449
+ msgstr ""
1450
+
1451
+ #: ../lib/tribe-view-helpers.class.php:294
1452
+ msgid "Alabama"
1453
+ msgstr ""
1454
+
1455
+ #: ../lib/tribe-view-helpers.class.php:295
1456
+ msgid "Alaska"
1457
+ msgstr ""
1458
+
1459
+ #: ../lib/tribe-view-helpers.class.php:296
1460
+ msgid "Arizona"
1461
+ msgstr ""
1462
+
1463
+ #: ../lib/tribe-view-helpers.class.php:297
1464
+ msgid "Arkansas"
1465
+ msgstr ""
1466
+
1467
+ #: ../lib/tribe-view-helpers.class.php:298
1468
+ msgid "California"
1469
+ msgstr ""
1470
+
1471
+ #: ../lib/tribe-view-helpers.class.php:299
1472
+ msgid "Colorado"
1473
+ msgstr ""
1474
+
1475
+ #: ../lib/tribe-view-helpers.class.php:300
1476
+ msgid "Connecticut"
1477
+ msgstr ""
1478
+
1479
+ #: ../lib/tribe-view-helpers.class.php:301
1480
+ msgid "Delaware"
1481
+ msgstr ""
1482
+
1483
+ #: ../lib/tribe-view-helpers.class.php:302
1484
+ msgid "District of Columbia"
1485
+ msgstr ""
1486
+
1487
+ #: ../lib/tribe-view-helpers.class.php:303
1488
+ msgid "Florida"
1489
+ msgstr ""
1490
+
1491
+ #: ../lib/tribe-view-helpers.class.php:305
1492
+ msgid "Hawaii"
1493
+ msgstr ""
1494
+
1495
+ #: ../lib/tribe-view-helpers.class.php:306
1496
+ msgid "Idaho"
1497
+ msgstr ""
1498
+
1499
+ #: ../lib/tribe-view-helpers.class.php:307
1500
+ msgid "Illinois"
1501
+ msgstr ""
1502
+
1503
+ #: ../lib/tribe-view-helpers.class.php:308
1504
+ msgid "Indiana"
1505
+ msgstr ""
1506
+
1507
+ #: ../lib/tribe-view-helpers.class.php:309
1508
+ msgid "Iowa"
1509
+ msgstr ""
1510
+
1511
+ #: ../lib/tribe-view-helpers.class.php:310
1512
+ msgid "Kansas"
1513
+ msgstr ""
1514
+
1515
+ #: ../lib/tribe-view-helpers.class.php:311
1516
+ msgid "Kentucky"
1517
+ msgstr ""
1518
+
1519
+ #: ../lib/tribe-view-helpers.class.php:312
1520
+ msgid "Louisiana"
1521
+ msgstr ""
1522
+
1523
+ #: ../lib/tribe-view-helpers.class.php:313
1524
+ msgid "Maine"
1525
+ msgstr ""
1526
+
1527
+ #: ../lib/tribe-view-helpers.class.php:314
1528
+ msgid "Maryland"
1529
+ msgstr ""
1530
+
1531
+ #: ../lib/tribe-view-helpers.class.php:315
1532
+ msgid "Massachusetts"
1533
+ msgstr ""
1534
+
1535
+ #: ../lib/tribe-view-helpers.class.php:316
1536
+ msgid "Michigan"
1537
+ msgstr ""
1538
+
1539
+ #: ../lib/tribe-view-helpers.class.php:317
1540
+ msgid "Minnesota"
1541
+ msgstr ""
1542
+
1543
+ #: ../lib/tribe-view-helpers.class.php:318
1544
+ msgid "Mississippi"
1545
+ msgstr ""
1546
+
1547
+ #: ../lib/tribe-view-helpers.class.php:319
1548
+ msgid "Missouri"
1549
+ msgstr ""
1550
+
1551
+ #: ../lib/tribe-view-helpers.class.php:320
1552
+ msgid "Montana"
1553
+ msgstr ""
1554
+
1555
+ #: ../lib/tribe-view-helpers.class.php:321
1556
+ msgid "Nebraska"
1557
+ msgstr ""
1558
+
1559
+ #: ../lib/tribe-view-helpers.class.php:322
1560
+ msgid "Nevada"
1561
+ msgstr ""
1562
+
1563
+ #: ../lib/tribe-view-helpers.class.php:323
1564
+ msgid "New Hampshire"
1565
+ msgstr ""
1566
+
1567
+ #: ../lib/tribe-view-helpers.class.php:324
1568
+ msgid "New Jersey"
1569
+ msgstr ""
1570
+
1571
+ #: ../lib/tribe-view-helpers.class.php:325
1572
+ msgid "New Mexico"
1573
+ msgstr ""
1574
+
1575
+ #: ../lib/tribe-view-helpers.class.php:326
1576
+ msgid "New York"
1577
+ msgstr ""
1578
+
1579
+ #: ../lib/tribe-view-helpers.class.php:327
1580
+ msgid "North Carolina"
1581
+ msgstr ""
1582
+
1583
+ #: ../lib/tribe-view-helpers.class.php:328
1584
+ msgid "North Dakota"
1585
+ msgstr ""
1586
+
1587
+ #: ../lib/tribe-view-helpers.class.php:329
1588
+ msgid "Ohio"
1589
+ msgstr ""
1590
+
1591
+ #: ../lib/tribe-view-helpers.class.php:330
1592
+ msgid "Oklahoma"
1593
+ msgstr ""
1594
+
1595
+ #: ../lib/tribe-view-helpers.class.php:331
1596
+ msgid "Oregon"
1597
+ msgstr ""
1598
+
1599
+ #: ../lib/tribe-view-helpers.class.php:332
1600
+ msgid "Pennsylvania"
1601
+ msgstr ""
1602
+
1603
+ #: ../lib/tribe-view-helpers.class.php:333
1604
+ msgid "Rhode Island"
1605
+ msgstr ""
1606
+
1607
+ #: ../lib/tribe-view-helpers.class.php:334
1608
+ msgid "South Carolina"
1609
+ msgstr ""
1610
+
1611
+ #: ../lib/tribe-view-helpers.class.php:335
1612
+ msgid "South Dakota"
1613
+ msgstr ""
1614
+
1615
+ #: ../lib/tribe-view-helpers.class.php:336
1616
+ msgid "Tennessee"
1617
+ msgstr ""
1618
+
1619
+ #: ../lib/tribe-view-helpers.class.php:337
1620
+ msgid "Texas"
1621
+ msgstr ""
1622
+
1623
+ #: ../lib/tribe-view-helpers.class.php:338
1624
+ msgid "Utah"
1625
+ msgstr ""
1626
+
1627
+ #: ../lib/tribe-view-helpers.class.php:339
1628
+ msgid "Vermont"
1629
+ msgstr ""
1630
+
1631
+ #: ../lib/tribe-view-helpers.class.php:340
1632
+ msgid "Virginia"
1633
+ msgstr ""
1634
+
1635
+ #: ../lib/tribe-view-helpers.class.php:341
1636
+ msgid "Washington"
1637
+ msgstr ""
1638
+
1639
+ #: ../lib/tribe-view-helpers.class.php:342
1640
+ msgid "West Virginia"
1641
+ msgstr ""
1642
+
1643
+ #: ../lib/tribe-view-helpers.class.php:343
1644
+ msgid "Wisconsin"
1645
+ msgstr ""
1646
+
1647
+ #: ../lib/tribe-view-helpers.class.php:344
1648
+ msgid "Wyoming"
1649
+ msgstr ""
1650
+
1651
+ #: ../lib/tribe-event-exception.class.php:17
1652
+ #: ../lib/tribe-event-exception.class.php:34
1653
+ msgid "Error"
1654
+ msgstr "Fout"
1655
+
1656
+ #: ../lib/the-events-calendar.class.php:211
1657
+ msgid "The Events Calendar"
1658
+ msgstr "The Events Calendar"
1659
+
1660
+ #: ../lib/the-events-calendar.class.php:214
1661
+ msgid "category"
1662
+ msgstr "categorie"
1663
+
1664
+ #: ../lib/the-events-calendar.class.php:215
1665
+ msgid "month"
1666
+ msgstr "maand"
1667
+
1668
+ #: ../lib/the-events-calendar.class.php:216
1669
+ msgid "upcoming"
1670
+ msgstr "aankomend"
1671
+
1672
+ #: ../lib/the-events-calendar.class.php:217
1673
+ msgid "past"
1674
+ msgstr "afgerond"
1675
+
1676
+ #: ../lib/the-events-calendar.class.php:219
1677
+ msgid "venue"
1678
+ msgstr "locatie"
1679
+
1680
+ #: ../lib/the-events-calendar.class.php:229
1681
+ #, php-format
1682
+ msgid "Initializing Tribe Events on %s"
1683
+ msgstr "Initialiseren Tribe activiteiten op %s"
1684
+
1685
+ #: ../lib/the-events-calendar.class.php:277
1686
+ #, php-format
1687
+ msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
1688
+ msgstr "Sorry, The Events Calendar heeft WordPress versie %s nodig of hoger. Graag u WordPress installatie upgraden."
1689
+
1690
+ #: ../lib/the-events-calendar.class.php:280
1691
+ #, php-format
1692
+ msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
1693
+ msgstr "Sorry, The Events Calendar heeft PHP versie %s nodig of hoger. Vraag aan u webhost of de nieuwste versie van PHP geinstalleerd kan worden."
1694
+
1695
+ #: ../lib/the-events-calendar.class.php:397
1696
+ msgid "Upcoming Events"
1697
+ msgstr "Aankomende activiteiten"
1698
+
1699
+ #: ../lib/the-events-calendar.class.php:399
1700
+ msgid "Past Events"
1701
+ msgstr "Afgeronde activiteiten"
1702
+
1703
+ #: ../lib/the-events-calendar.class.php:403
1704
+ #, php-format
1705
+ msgid "Events for %s"
1706
+ msgstr "Activiteiten voor %s"
1707
+
1708
+ #: ../lib/the-events-calendar.class.php:405
1709
+ msgid "Events this month"
1710
+ msgstr "Activiteiten deze maand"
1711
+
1712
+ #: ../lib/the-events-calendar.class.php:419
1713
+ msgid "No description has been entered for this event."
1714
+ msgstr "Er is geen beschrijving voor deze activiteit toegevoegd."
1715
+
1716
+ #: ../lib/the-events-calendar.class.php:484
1717
+ msgid "Events"
1718
+ msgstr "Activiteiten"
1719
+
1720
+ #: ../lib/the-events-calendar.class.php:485
1721
+ msgid "Event"
1722
+ msgstr "Activiteit"
1723
+
1724
+ #: ../lib/the-events-calendar.class.php:486
1725
+ #: ../lib/the-events-calendar.class.php:499
1726
+ #: ../lib/the-events-calendar.class.php:512
1727
+ msgid "Add New"
1728
+ msgstr "Voeg nieuwe toe"
1729
+
1730
+ #: ../lib/the-events-calendar.class.php:487
1731
+ msgid "Add New Event"
1732
+ msgstr "Voeg nieuwe activiteit toe"
1733
+
1734
+ #: ../lib/the-events-calendar.class.php:488
1735
+ msgid "Edit Event"
1736
+ msgstr "Bewerk activiteit"
1737
+
1738
+ #: ../lib/the-events-calendar.class.php:489
1739
+ msgid "New Event"
1740
+ msgstr "Nieuwe activiteit"
1741
+
1742
+ #: ../lib/the-events-calendar.class.php:490
1743
+ msgid "View Event"
1744
+ msgstr "Bekijk activiteit"
1745
+
1746
+ #: ../lib/the-events-calendar.class.php:491
1747
+ msgid "Search Events"
1748
+ msgstr "Doorzoek activiteit"
1749
+
1750
+ #: ../lib/the-events-calendar.class.php:492
1751
+ msgid "No events found"
1752
+ msgstr "Geen activiteiten gevonden"
1753
+
1754
+ #: ../lib/the-events-calendar.class.php:493
1755
+ msgid "No events found in Trash"
1756
+ msgstr "Geen activiteiten gevonden in de prullemand"
1757
+
1758
+ #: ../lib/the-events-calendar.class.php:497
1759
+ #: ../lib/the-events-calendar.class.php:681
1760
+ msgid "Venues"
1761
+ msgstr "Locaties"
1762
+
1763
+ #: ../lib/the-events-calendar.class.php:498
1764
+ msgid "Venue"
1765
+ msgstr "Locatie"
1766
+
1767
+ #: ../lib/the-events-calendar.class.php:500
1768
+ msgid "Add New Venue"
1769
+ msgstr "Voeg nieuwe locatie toe"
1770
+
1771
+ #: ../lib/the-events-calendar.class.php:501
1772
+ msgid "Edit Venue"
1773
+ msgstr "Bewerk locatie"
1774
+
1775
+ #: ../lib/the-events-calendar.class.php:502
1776
+ msgid "New Venue"
1777
+ msgstr "Nieuwe locatie"
1778
+
1779
+ #: ../lib/the-events-calendar.class.php:503
1780
+ #: ../lib/the-events-calendar.class.php:516
1781
+ msgid "View Venue"
1782
+ msgstr "Bekijk locaties"
1783
+
1784
+ #: ../lib/the-events-calendar.class.php:504
1785
+ msgid "Search Venues"
1786
+ msgstr "Doorzoek locaties"
1787
+
1788
+ #: ../lib/the-events-calendar.class.php:505
1789
+ msgid "No venue found"
1790
+ msgstr "Geen locaties gevonden"
1791
+
1792
+ #: ../lib/the-events-calendar.class.php:506
1793
+ msgid "No venues found in Trash"
1794
+ msgstr "Geen locaties gevonden in de prullemand"
1795
+
1796
+ #: ../lib/the-events-calendar.class.php:510
1797
+ #: ../lib/the-events-calendar.class.php:682
1798
+ msgid "Organizers"
1799
+ msgstr "Organizers"
1800
+
1801
+ #: ../lib/the-events-calendar.class.php:511
1802
+ msgid "Organizer"
1803
+ msgstr "Organizer"
1804
+
1805
+ #: ../lib/the-events-calendar.class.php:513
1806
+ msgid "Add New Organizer"
1807
+ msgstr "Voeg nieuwe organizer toe"
1808
+
1809
+ #: ../lib/the-events-calendar.class.php:514
1810
+ msgid "Edit Organizer"
1811
+ msgstr "Bewerk organizer"
1812
+
1813
+ #: ../lib/the-events-calendar.class.php:515
1814
+ msgid "New Organizer"
1815
+ msgstr "Nieuwe organizer"
1816
+
1817
+ #: ../lib/the-events-calendar.class.php:517
1818
+ msgid "Search Organizers"
1819
+ msgstr "Doorzoek organizers"
1820
+
1821
+ #: ../lib/the-events-calendar.class.php:518
1822
+ msgid "No organizer found"
1823
+ msgstr "Geen organizer gevonden"
1824
+
1825
+ #: ../lib/the-events-calendar.class.php:519
1826
+ msgid "No organizers found in Trash"
1827
+ msgstr "Geen organizers gevonden in de prullemand"
1828
+
1829
+ #: ../lib/the-events-calendar.class.php:524
1830
+ msgid "Event Category"
1831
+ msgstr "activiteiten categorie"
1832
+
1833
+ #: ../lib/the-events-calendar.class.php:525
1834
+ msgid "Search Event Categories"
1835
+ msgstr "Zoek activiteiten categorie"
1836
+
1837
+ #: ../lib/the-events-calendar.class.php:526
1838
+ msgid "All Event Categories"
1839
+ msgstr "Alle activiteiten categorieën"
1840
+
1841
+ #: ../lib/the-events-calendar.class.php:527
1842
+ msgid "Parent Event Category"
1843
+ msgstr "Huidige activiteiten categorie"
1844
+
1845
+ #: ../lib/the-events-calendar.class.php:528
1846
+ msgid "Parent Event Category:"
1847
+ msgstr "Huidige activiteiten categorie:"
1848
+
1849
+ #: ../lib/the-events-calendar.class.php:529
1850
+ msgid "Edit Event Category"
1851
+ msgstr "Bewerk activiteiten categorie"
1852
+
1853
+ #: ../lib/the-events-calendar.class.php:530
1854
+ msgid "Update Event Category"
1855
+ msgstr "Update activiteiten categorie"
1856
+
1857
+ #: ../lib/the-events-calendar.class.php:531
1858
+ msgid "Add New Event Category"
1859
+ msgstr "Voeg een nieuwe activiteiten categorie toe"
1860
+
1861
+ #: ../lib/the-events-calendar.class.php:532
1862
+ msgid "New Event Category Name"
1863
+ msgstr "Nieuwe activiteiten categorie naam"
1864
+
1865
+ #: ../lib/the-events-calendar.class.php:542
1866
+ #, php-format
1867
+ msgid "Event updated. <a href=\"%s\">View event</a>"
1868
+ msgstr "Activiteit geupdate. <a href=\"%s\">Bekijk activiteit</a>"
1869
+
1870
+ #: ../lib/the-events-calendar.class.php:543
1871
+ #: ../lib/the-events-calendar.class.php:560
1872
+ #: ../lib/the-events-calendar.class.php:577
1873
+ msgid "Custom field updated."
1874
+ msgstr "Custom veld geupdate."
1875
+
1876
+ #: ../lib/the-events-calendar.class.php:544
1877
+ #: ../lib/the-events-calendar.class.php:561
1878
+ #: ../lib/the-events-calendar.class.php:578
1879
+ msgid "Custom field deleted."
1880
+ msgstr "Custom veld verwijderd."
1881
+
1882
+ #: ../lib/the-events-calendar.class.php:545
1883
+ msgid "Event updated."
1884
+ msgstr "Activiteit geupdate."
1885
+
1886
+ #: ../lib/the-events-calendar.class.php:547
1887
+ #, php-format
1888
+ msgid "Event restored to revision from %s"
1889
+ msgstr "Activiteit opgelslagen voor revisie %s"
1890
+
1891
+ #: ../lib/the-events-calendar.class.php:548
1892
+ #, php-format
1893
+ msgid "Event published. <a href=\"%s\">View event</a>"
1894
+ msgstr "Activiteit gepubliseerd. <a href=\"%s\">Bekijk activiteit</a>"
1895
+
1896
+ #: ../lib/the-events-calendar.class.php:549
1897
+ msgid "Event saved."
1898
+ msgstr "Activiteit opgeslagen"
1899
+
1900
+ #: ../lib/the-events-calendar.class.php:550
1901
+ #, php-format
1902
+ msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1903
+ msgstr "Activiteit toegevoegd. <a target=\"_blank\" href=\"%s\">Bekijk activiteit</a>"
1904
+
1905
+ #: ../lib/the-events-calendar.class.php:551
1906
+ #, php-format
1907
+ msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1908
+ msgstr "Activiteit ingeroosterd voor: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Bekijk activiteit</a>"
1909
+
1910
+ #: ../lib/the-events-calendar.class.php:553
1911
+ #: ../lib/the-events-calendar.class.php:570
1912
+ #: ../lib/the-events-calendar.class.php:587
1913
+ msgid "M j, Y @ G:i"
1914
+ msgstr "M j, Y @ G:i"
1915
+
1916
+ #: ../lib/the-events-calendar.class.php:554
1917
+ #, php-format
1918
+ msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1919
+ msgstr "Activiteit draft updated. <a target=\"_blank\" href=\"%s\">Bekijk activiteit</a>"
1920
+
1921
+ #: ../lib/the-events-calendar.class.php:559
1922
+ #, php-format
1923
+ msgid "Venue updated. <a href=\"%s\">View venue</a>"
1924
+ msgstr "Locatie geupdate. <a href=\"%s\">Bekijk locatie</a>"
1925
+
1926
+ #: ../lib/the-events-calendar.class.php:562
1927
+ msgid "Venue updated."
1928
+ msgstr "Locatie geupdate."
1929
+
1930
+ #: ../lib/the-events-calendar.class.php:564
1931
+ #, php-format
1932
+ msgid "Venue restored to revision from %s"
1933
+ msgstr "Locatie opgeslagen voor revisie %s"
1934
+
1935
+ #: ../lib/the-events-calendar.class.php:565
1936
+ #, php-format
1937
+ msgid "Venue published. <a href=\"%s\">View venue</a>"
1938
+ msgstr "Locatie gepubliseerd. <a href=\"%s\">Bekijk locatie</a>"
1939
+
1940
+ #: ../lib/the-events-calendar.class.php:566
1941
+ msgid "Venue saved."
1942
+ msgstr "Locatie opgeslagen."
1943
+
1944
+ #: ../lib/the-events-calendar.class.php:567
1945
+ #, php-format
1946
+ msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1947
+ msgstr "Locatie toegevoegd. <a target=\"_blank\" href=\"%s\">Bekijk locatie</a>"
1948
+
1949
+ #: ../lib/the-events-calendar.class.php:568
1950
+ #, php-format
1951
+ msgid "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview venue</a>"
1952
+ msgstr "Locatie ingeroosterd voor: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Bekijk locatie</a>"
1953
+
1954
+ #: ../lib/the-events-calendar.class.php:571
1955
+ #, php-format
1956
+ msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1957
+ msgstr "Locatie draft geupdate. <a target=\"_blank\" href=\"%s\">Bekijk locatie</a>"
1958
+
1959
+ #: ../lib/the-events-calendar.class.php:576
1960
+ #, php-format
1961
+ msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
1962
+ msgstr "Organizer geupdate. <a href=\"%s\">Bekijk organizer</a>"
1963
+
1964
+ #: ../lib/the-events-calendar.class.php:579
1965
+ msgid "Organizer updated."
1966
+ msgstr "Organizer geupdate."
1967
+
1968
+ #: ../lib/the-events-calendar.class.php:581
1969
+ #, php-format
1970
+ msgid "Organizer restored to revision from %s"
1971
+ msgstr "Organizer opgelslagen voor revisie %s"
1972
+
1973
+ #: ../lib/the-events-calendar.class.php:582
1974
+ #, php-format
1975
+ msgid "Organizer published. <a href=\"%s\">View organizer</a>"
1976
+ msgstr "Organizer gepubliseerd. <a href=\"%s\">Bekijk organizer</a>"
1977
+
1978
+ #: ../lib/the-events-calendar.class.php:583
1979
+ msgid "Organizer saved."
1980
+ msgstr "Organizer opgeslagen."
1981
+
1982
+ #: ../lib/the-events-calendar.class.php:584
1983
+ #, php-format
1984
+ msgid "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
1985
+ msgstr "Organizer toegevoegd. <a target=\"_blank\" href=\"%s\">Bekijk organizer</a>"
1986
+
1987
+ #: ../lib/the-events-calendar.class.php:585
1988
+ #, php-format
1989
+ msgid "Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview organizer</a>"
1990
+ msgstr "Organizer ingeroosterd voor: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Bekijk organizer</a>"
1991
+
1992
+ #: ../lib/the-events-calendar.class.php:588
1993
+ #, php-format
1994
+ msgid "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
1995
+ msgstr "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Bekijk organizer</a>"
1996
+
1997
+ #: ../lib/the-events-calendar.class.php:643
1998
+ msgid "Next"
1999
+ msgstr "Volgende"
2000
+
2001
+ #: ../lib/the-events-calendar.class.php:644
2002
+ msgid "Prev"
2003
+ msgstr "Vorige"
2004
+
2005
+ #: ../lib/the-events-calendar.class.php:645
2006
+ msgid "Today"
2007
+ msgstr "Vandaag"
2008
+
2009
+ #: ../lib/the-events-calendar.class.php:646
2010
+ msgid "Done"
2011
+ msgstr "Klaar"
2012
+
2013
+ #: ../lib/the-events-calendar.class.php:1409
2014
+ msgid "Use New Venue"
2015
+ msgstr "Gebruik nieuwe locatie"
2016
+
2017
+ #: ../lib/the-events-calendar.class.php:1416
2018
+ msgid "No saved venues yet."
2019
+ msgstr "Nog geen locaties opgeslagen."
2020
+
2021
+ #: ../lib/the-events-calendar.class.php:1494
2022
+ msgid "Use New Organizer"
2023
+ msgstr "Gebruik nieuwe organizer"
2024
+
2025
+ #: ../lib/the-events-calendar.class.php:1501
2026
+ msgid "No saved organizers yet."
2027
+ msgstr "Nog geen organizers opgeslagen."
2028
+
2029
+ #: ../lib/the-events-calendar.class.php:1739
2030
+ msgid "Event Options"
2031
+ msgstr "Activiteiten opties"
2032
+
2033
+ #: ../lib/the-events-calendar.class.php:1741
2034
+ msgid "Venue Information"
2035
+ msgstr "Locatie informatie"
2036
+
2037
+ #: ../lib/the-events-calendar.class.php:1742
2038
+ msgid "Organizer Information"
2039
+ msgstr "Organizer informatie"
2040
+
2041
+ #: ../lib/the-events-calendar.class.php:1844
2042
+ msgid "View All Add-Ons"
2043
+ msgstr "Bekijk alle Add-Ons"
2044
+
2045
+ #: ../lib/the-events-calendar.class.php:1851
2046
+ msgid "News from Tribe Pro"
2047
+ msgstr "Tribe Pro nieuws"
2048
+
2049
+ #: ../lib/tribe-debug-bar.class.php:18
2050
+ msgid "Tribe"
2051
+ msgstr "Tribe"
2052
+
2053
+ #: ../lib/tribe-the-events-calendar-import.class.php:45
2054
+ msgid "Upgrade from The Events Calendar"
2055
+ msgstr "Upgrade van The Events Calendar"
2056
+
2057
+ #: ../lib/tribe-the-events-calendar-import.class.php:46
2058
+ msgid "It appears that you have some old events calendar data that needs to be upgraded. Please be sure to back up your database before initiating the upgrade. This process can not be undone."
2059
+ msgstr "U moet uw verouderde activiteiten data upgraden. Het upgrade proces is onomkeerbaar zorg voordat u gaat upgraden eerst een backup van de database maakt."
2060
+
2061
+ #: ../lib/tribe-the-events-calendar-import.class.php:47
2062
+ msgid "Migrate Data!"
2063
+ msgstr "Migreer data!"
2064
+
2065
+ #: ../lib/tribe-the-events-calendar-import.class.php:119
2066
+ #, php-format
2067
+ msgid "You successfully migrated (%d) entries."
2068
+ msgstr "Er zijn (%d) entries succesvol gemigreerd."
2069
+
2070
+ #: ../lib/tribe-the-events-calendar-import.class.php:189
2071
+ msgid "Install has 1 or more legacy event!"
2072
+ msgstr "Installatie heeft 1 of meer legacy activiteit!"
2073
+
2074
+ #: ../lib/template-tags.php:331
2075
+ msgid "Free"
2076
+ msgstr "Gratis"
2077
+
2078
+ #: ../lib/template-tags.php:863
2079
+ msgid "Calendar of Events"
2080
+ msgstr "Kalender van activiteiten"
2081
+
2082
+ #: ../lib/widget-list.class.php:16
2083
+ msgid "A widget that displays the next upcoming x events."
2084
+ msgstr "Een widget die alle aankomende activiteiten toont."
2085
+
2086
+ #: ../lib/widget-list.class.php:70
2087
+ msgid "View All Events"
2088
+ msgstr "Bekijk alle activiteiten"
2089
+
2090
+ #: ../lib/widget-list.class.php:73
2091
+ msgid "There are no upcoming events at this time."
2092
+ msgstr "Er zijn geen aankomende activiteiten op dit moment."
2093
+
lang/tribe-events-calendar-ru_RU.mo CHANGED
Binary file
lang/tribe-events-calendar-ru_RU.po CHANGED
@@ -6,7 +6,7 @@ msgstr ""
6
  "Project-Id-Version: The Events Calendar 2.0\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2011-09-19 16:36-0500\n"
9
- "PO-Revision-Date: 2011-10-18 01:59-0800\n"
10
  "Last-Translator: mikei <mm@hilightprojects.com>\n"
11
  "Language-Team: mikei <mm@hilightprojects.com>\n"
12
  "Language: \n"
@@ -235,7 +235,7 @@ msgstr "Страна:"
235
 
236
  #: ../admin-views/venue-meta-box.php:52
237
  msgid "State or Province:"
238
- msgstr "Шта, Провинция или Область:"
239
 
240
  #: ../admin-views/venue-meta-box.php:55
241
  msgid "Select a State:"
@@ -323,30 +323,30 @@ msgstr "Если не подключено, то карта не будет по
323
  #: ../admin-views/events-options.php:143
324
  #: ../admin-views/events-options.php:145
325
  msgid "Events URL slug"
326
- msgstr "Строка URL для события "
327
 
328
  #: ../admin-views/events-options.php:146
329
  msgid "The slug used for building the Events URL."
330
- msgstr "Строка используется для URL события"
331
 
332
  #: ../admin-views/events-options.php:146
333
  #, php-format
334
  msgid "Your current Events URL is <strong>%s</strong>"
335
- msgstr "Текущий URL события<strong>%s</strong>"
336
 
337
  #: ../admin-views/events-options.php:150
338
  #: ../admin-views/events-options.php:152
339
  msgid "Single Event URL slug"
340
- msgstr "Строка URL для одноразового события"
341
 
342
  #: ../admin-views/events-options.php:153
343
  msgid "The slug used for building a single Event URL."
344
- msgstr "Строка используется для URL одноразового события"
345
 
346
  #: ../admin-views/events-options.php:154
347
  #, php-format
348
  msgid "<strong>NOTE:</strong> You <em>cannot</em> use the same slug as above. The above should ideally be plural, and this singular.<br />Your single Event URL is like: <strong>%s</strong>"
349
- msgstr "<strong>ВНИМАНИЕ:</strong> <em>Нельзя</em> использовать ту же строку, как выше. Эта строка в идеале должна быть во множественном числе, и в единственном числе.<br />ваш одноразовый URL, как: <strong>%s</strong>"
350
 
351
  #: ../admin-views/events-options.php:159
352
  #: ../admin-views/events-options.php:161
@@ -1197,7 +1197,7 @@ msgstr ""
1197
 
1198
  #: ../lib/tribe-view-helpers.class.php:213
1199
  msgid "Russian Federation"
1200
- msgstr "Россия"
1201
 
1202
  #: ../lib/tribe-view-helpers.class.php:214
1203
  msgid "Rwanda"
6
  "Project-Id-Version: The Events Calendar 2.0\n"
7
  "Report-Msgid-Bugs-To: \n"
8
  "POT-Creation-Date: 2011-09-19 16:36-0500\n"
9
+ "PO-Revision-Date: 2011-10-23 02:22-0800\n"
10
  "Last-Translator: mikei <mm@hilightprojects.com>\n"
11
  "Language-Team: mikei <mm@hilightprojects.com>\n"
12
  "Language: \n"
235
 
236
  #: ../admin-views/venue-meta-box.php:52
237
  msgid "State or Province:"
238
+ msgstr "Штат, Провинция или Область:"
239
 
240
  #: ../admin-views/venue-meta-box.php:55
241
  msgid "Select a State:"
323
  #: ../admin-views/events-options.php:143
324
  #: ../admin-views/events-options.php:145
325
  msgid "Events URL slug"
326
+ msgstr "URL страницы событий"
327
 
328
  #: ../admin-views/events-options.php:146
329
  msgid "The slug used for building the Events URL."
330
+ msgstr "Поле используется для URL страницы Календаря."
331
 
332
  #: ../admin-views/events-options.php:146
333
  #, php-format
334
  msgid "Your current Events URL is <strong>%s</strong>"
335
+ msgstr "Ваш URL страницы Календаря <strong>%s</strong>"
336
 
337
  #: ../admin-views/events-options.php:150
338
  #: ../admin-views/events-options.php:152
339
  msgid "Single Event URL slug"
340
+ msgstr "URL страницы одиночного события"
341
 
342
  #: ../admin-views/events-options.php:153
343
  msgid "The slug used for building a single Event URL."
344
+ msgstr "Поле используется для URL страницы одиночного события"
345
 
346
  #: ../admin-views/events-options.php:154
347
  #, php-format
348
  msgid "<strong>NOTE:</strong> You <em>cannot</em> use the same slug as above. The above should ideally be plural, and this singular.<br />Your single Event URL is like: <strong>%s</strong>"
349
+ msgstr "<strong>ВНИМАНИЕ:</strong> <em>Нельзя</em> использовать тоже слово, как выше. В первом случае, слово в идеале должно быть во множественном числе, а это слово - в единственном числе.<br /> URL страницы одиночного события должен выглядеть как: <strong>%s</strong>"
350
 
351
  #: ../admin-views/events-options.php:159
352
  #: ../admin-views/events-options.php:161
1197
 
1198
  #: ../lib/tribe-view-helpers.class.php:213
1199
  msgid "Russian Federation"
1200
+ msgstr ""
1201
 
1202
  #: ../lib/tribe-view-helpers.class.php:214
1203
  msgid "Rwanda"
lang/tribe-events-calendar.pot CHANGED
@@ -5,8 +5,8 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: The Events Calendar 2.0\n"
7
  "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2011-10-26 21:47-0500\n"
9
- "PO-Revision-Date: 2011-10-26 21:48-0500\n"
10
  "Last-Translator: John Gadbois <jgadbois@gmail.com>\n"
11
  "Language-Team: Modern Tribe, Inc.\n"
12
  "Language: \n"
@@ -20,585 +20,304 @@ msgstr ""
20
  "X-Poedit-Country: UNITED STATES\n"
21
  "X-Poedit-SearchPath-0: ..\n"
22
 
23
- #: ../template-tags.php:102
24
- msgid "Category:"
25
- msgstr ""
26
-
27
- #: ../template-tags.php:204
28
- msgid "Free"
29
  msgstr ""
30
 
31
- #: ../template-tags.php:510
32
- msgid "Calendar of Events"
33
  msgstr ""
34
 
35
- #: ../template-tags.php:914
36
- msgid "United States"
37
  msgstr ""
38
 
39
- #: ../views/events-list-load-widget-display.php:52
40
- msgid "All Day"
41
  msgstr ""
42
 
43
- #: ../views/table-mini.php:24
44
- msgid "View all &raquo;"
45
  msgstr ""
46
 
47
- #: ../views/list.php:18
48
- #: ../views/gridview.php:37
49
- msgid "Event List"
50
  msgstr ""
51
 
52
- #: ../views/list.php:19
53
- #: ../views/gridview.php:38
54
- msgid "Calendar"
55
  msgstr ""
56
 
57
- #: ../views/list.php:50
58
- #: ../views/single.php:20
59
- msgid "Start:"
60
  msgstr ""
61
 
62
- #: ../views/list.php:54
63
- #: ../views/single.php:22
64
- msgid "End:"
65
  msgstr ""
66
 
67
- #: ../views/list.php:59
68
- #: ../views/single.php:25
69
- msgid "Date:"
70
  msgstr ""
71
 
72
- #: ../views/list.php:69
73
- #: ../views/single.php:54
74
- msgid "Venue:"
75
  msgstr ""
76
 
77
- #: ../views/list.php:84
78
- #: ../views/single.php:38
79
- #: ../views/single.php:64
80
- msgid "Phone:"
81
  msgstr ""
82
 
83
- #: ../views/list.php:90
84
- #: ../views/single.php:69
85
- msgid "Address:"
86
  msgstr ""
87
 
88
- #: ../views/list.php:92
89
- #: ../views/single.php:71
90
- msgid "Google Map"
91
  msgstr ""
92
 
93
- #: ../views/list.php:102
94
- #: ../views/single.php:29
95
- msgid "Cost:"
96
  msgstr ""
97
 
98
- #: ../views/list.php:116
99
  #, php-format
100
- msgid " listed under %s. Check out past events for this category or view the full calendar."
101
  msgstr ""
102
 
103
- #: ../views/list.php:118
104
- #, php-format
105
- msgid " listed under %s. Check out upcoming events for this category or view the full calendar."
106
  msgstr ""
107
 
108
- #: ../views/list.php:123
109
  #, php-format
110
- msgid "No events scheduled for <strong>%s</strong>. Please try another day."
111
  msgstr ""
112
 
113
- #: ../views/list.php:127
114
- msgid "No upcoming events"
115
  msgstr ""
116
 
117
- #: ../views/list.php:131
118
- msgid "No previous events"
119
  msgstr ""
120
 
121
- #: ../views/list.php:144
122
- #: ../views/list.php:146
123
- #: ../views/list.php:148
124
- msgid "&laquo; Previous Events"
125
  msgstr ""
126
 
127
- #: ../views/list.php:155
128
- #: ../views/list.php:157
129
- #: ../views/list.php:159
130
- msgid "Next Events &raquo;"
131
  msgstr ""
132
 
133
- #: ../views/list.php:165
134
- #: ../views/single.php:96
135
- #: ../views/gridview.php:43
136
- msgid "iCal Import"
137
  msgstr ""
138
 
139
- #: ../views/single.php:13
140
- msgid "&laquo; Back to Events"
 
 
141
  msgstr ""
142
 
143
- #: ../views/single.php:14
144
- msgid "This event has passed."
 
145
  msgstr ""
146
 
147
- #: ../views/single.php:17
148
- msgid "Event:"
149
  msgstr ""
150
 
151
- #: ../views/single.php:34
152
- msgid "Organizer:"
 
153
  msgstr ""
154
 
155
- #: ../views/single.php:42
156
- msgid "Email:"
157
  msgstr ""
158
 
159
- #: ../views/single.php:45
160
- msgid "Updated:"
161
  msgstr ""
162
 
163
- #: ../views/single.php:48
164
- msgid "Schedule:"
165
  msgstr ""
166
 
167
- #: ../views/single.php:71
168
- msgid "Click to view a Google Map"
169
  msgstr ""
170
 
171
- #: ../views/single.php:99
172
- msgid "Add to Google Calendar"
 
173
  msgstr ""
174
 
175
- #: ../views/single.php:99
176
- msgid "+ Google Calendar"
177
  msgstr ""
178
 
179
- #: ../views/ecp-single-template.php:24
180
- msgid "Edit"
 
181
  msgstr ""
182
 
183
- #: ../lib/widget-list.class.php:16
184
- msgid "A widget that displays the next upcoming x events."
 
185
  msgstr ""
186
 
187
- #: ../lib/widget-list.class.php:70
188
- msgid "View All Events"
189
  msgstr ""
190
 
191
- #: ../lib/widget-list.class.php:73
192
- msgid "There are no upcoming events at this time."
 
193
  msgstr ""
194
 
195
- #: ../lib/tribe-event-exception.class.php:17
196
- #: ../lib/tribe-event-exception.class.php:34
197
- msgid "Error"
198
  msgstr ""
199
 
200
- #: ../lib/the-events-calendar.class.php:224
201
- msgid "The Events Calendar"
202
  msgstr ""
203
 
204
- #: ../lib/the-events-calendar.class.php:227
205
- msgid "category"
 
206
  msgstr ""
207
 
208
- #: ../lib/the-events-calendar.class.php:228
209
- msgid "month"
210
  msgstr ""
211
 
212
- #: ../lib/the-events-calendar.class.php:229
213
- msgid "upcoming"
 
214
  msgstr ""
215
 
216
- #: ../lib/the-events-calendar.class.php:230
217
- msgid "past"
218
  msgstr ""
219
 
220
- #: ../lib/the-events-calendar.class.php:232
221
- msgid "venue"
222
  msgstr ""
223
 
224
- #: ../lib/the-events-calendar.class.php:242
225
- #, php-format
226
- msgid "Initializing Tribe Events on %s"
227
  msgstr ""
228
 
229
- #: ../lib/the-events-calendar.class.php:299
230
- #, php-format
231
- msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
 
232
  msgstr ""
233
 
234
- #: ../lib/the-events-calendar.class.php:302
235
- #, php-format
236
- msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
237
  msgstr ""
238
 
239
- #: ../lib/the-events-calendar.class.php:423
240
- msgid "Upcoming Events"
241
  msgstr ""
242
 
243
- #: ../lib/the-events-calendar.class.php:425
244
- msgid "Past Events"
 
245
  msgstr ""
246
 
247
- #: ../lib/the-events-calendar.class.php:429
248
- #: ../lib/the-events-calendar.class.php:435
249
- #, php-format
250
- msgid "Events for %s"
251
  msgstr ""
252
 
253
- #: ../lib/the-events-calendar.class.php:431
254
- msgid "Events this month"
255
  msgstr ""
256
 
257
- #: ../lib/the-events-calendar.class.php:441
258
- #, php-format
259
- msgid "Events at %s"
260
  msgstr ""
261
 
262
- #: ../lib/the-events-calendar.class.php:453
263
- msgid "No description has been entered for this event."
264
  msgstr ""
265
 
266
- #: ../lib/the-events-calendar.class.php:518
267
- msgid "Events"
268
  msgstr ""
269
 
270
- #: ../lib/the-events-calendar.class.php:519
271
- msgid "Event"
272
  msgstr ""
273
 
274
- #: ../lib/the-events-calendar.class.php:520
275
- #: ../lib/the-events-calendar.class.php:533
276
- #: ../lib/the-events-calendar.class.php:546
277
- msgid "Add New"
278
  msgstr ""
279
 
280
- #: ../lib/the-events-calendar.class.php:521
281
- msgid "Add New Event"
282
  msgstr ""
283
 
284
- #: ../lib/the-events-calendar.class.php:522
285
- msgid "Edit Event"
286
  msgstr ""
287
 
288
- #: ../lib/the-events-calendar.class.php:523
289
- msgid "New Event"
290
  msgstr ""
291
 
292
- #: ../lib/the-events-calendar.class.php:524
293
- msgid "View Event"
294
  msgstr ""
295
 
296
- #: ../lib/the-events-calendar.class.php:525
297
- msgid "Search Events"
298
  msgstr ""
299
 
300
- #: ../lib/the-events-calendar.class.php:526
301
- msgid "No events found"
302
  msgstr ""
303
 
304
- #: ../lib/the-events-calendar.class.php:527
305
- msgid "No events found in Trash"
306
  msgstr ""
307
 
308
- #: ../lib/the-events-calendar.class.php:531
309
- msgid "Venues"
310
  msgstr ""
311
 
312
- #: ../lib/the-events-calendar.class.php:532
313
- msgid "Venue"
 
314
  msgstr ""
315
 
316
- #: ../lib/the-events-calendar.class.php:534
317
- msgid "Add New Venue"
318
  msgstr ""
319
 
320
- #: ../lib/the-events-calendar.class.php:535
321
- msgid "Edit Venue"
322
  msgstr ""
323
 
324
- #: ../lib/the-events-calendar.class.php:536
325
- msgid "New Venue"
326
- msgstr ""
327
-
328
- #: ../lib/the-events-calendar.class.php:537
329
- #: ../lib/the-events-calendar.class.php:550
330
- msgid "View Venue"
331
- msgstr ""
332
-
333
- #: ../lib/the-events-calendar.class.php:538
334
- msgid "Search Venues"
335
- msgstr ""
336
-
337
- #: ../lib/the-events-calendar.class.php:539
338
- msgid "No venue found"
339
- msgstr ""
340
-
341
- #: ../lib/the-events-calendar.class.php:540
342
- msgid "No venues found in Trash"
343
- msgstr ""
344
-
345
- #: ../lib/the-events-calendar.class.php:544
346
- msgid "Organizers"
347
- msgstr ""
348
-
349
- #: ../lib/the-events-calendar.class.php:545
350
- msgid "Organizer"
351
- msgstr ""
352
-
353
- #: ../lib/the-events-calendar.class.php:547
354
- msgid "Add New Organizer"
355
- msgstr ""
356
-
357
- #: ../lib/the-events-calendar.class.php:548
358
- msgid "Edit Organizer"
359
- msgstr ""
360
-
361
- #: ../lib/the-events-calendar.class.php:549
362
- msgid "New Organizer"
363
- msgstr ""
364
-
365
- #: ../lib/the-events-calendar.class.php:551
366
- msgid "Search Organizers"
367
- msgstr ""
368
-
369
- #: ../lib/the-events-calendar.class.php:552
370
- msgid "No organizer found"
371
- msgstr ""
372
-
373
- #: ../lib/the-events-calendar.class.php:553
374
- msgid "No organizers found in Trash"
375
- msgstr ""
376
-
377
- #: ../lib/the-events-calendar.class.php:557
378
- msgid "Event Categories"
379
- msgstr ""
380
-
381
- #: ../lib/the-events-calendar.class.php:558
382
- msgid "Event Category"
383
- msgstr ""
384
-
385
- #: ../lib/the-events-calendar.class.php:559
386
- msgid "Search Event Categories"
387
- msgstr ""
388
-
389
- #: ../lib/the-events-calendar.class.php:560
390
- msgid "All Event Categories"
391
- msgstr ""
392
-
393
- #: ../lib/the-events-calendar.class.php:561
394
- msgid "Parent Event Category"
395
- msgstr ""
396
-
397
- #: ../lib/the-events-calendar.class.php:562
398
- msgid "Parent Event Category:"
399
- msgstr ""
400
-
401
- #: ../lib/the-events-calendar.class.php:563
402
- msgid "Edit Event Category"
403
- msgstr ""
404
-
405
- #: ../lib/the-events-calendar.class.php:564
406
- msgid "Update Event Category"
407
- msgstr ""
408
-
409
- #: ../lib/the-events-calendar.class.php:565
410
- msgid "Add New Event Category"
411
- msgstr ""
412
-
413
- #: ../lib/the-events-calendar.class.php:566
414
- msgid "New Event Category Name"
415
- msgstr ""
416
-
417
- #: ../lib/the-events-calendar.class.php:576
418
- #, php-format
419
- msgid "Event updated. <a href=\"%s\">View event</a>"
420
- msgstr ""
421
-
422
- #: ../lib/the-events-calendar.class.php:577
423
- #: ../lib/the-events-calendar.class.php:594
424
- #: ../lib/the-events-calendar.class.php:611
425
- msgid "Custom field updated."
426
- msgstr ""
427
-
428
- #: ../lib/the-events-calendar.class.php:578
429
- #: ../lib/the-events-calendar.class.php:595
430
- #: ../lib/the-events-calendar.class.php:612
431
- msgid "Custom field deleted."
432
- msgstr ""
433
-
434
- #: ../lib/the-events-calendar.class.php:579
435
- msgid "Event updated."
436
- msgstr ""
437
-
438
- #: ../lib/the-events-calendar.class.php:581
439
- #, php-format
440
- msgid "Event restored to revision from %s"
441
- msgstr ""
442
-
443
- #: ../lib/the-events-calendar.class.php:582
444
- #, php-format
445
- msgid "Event published. <a href=\"%s\">View event</a>"
446
- msgstr ""
447
-
448
- #: ../lib/the-events-calendar.class.php:583
449
- msgid "Event saved."
450
- msgstr ""
451
-
452
- #: ../lib/the-events-calendar.class.php:584
453
- #, php-format
454
- msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
455
- msgstr ""
456
-
457
- #: ../lib/the-events-calendar.class.php:585
458
- #, php-format
459
- msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
460
- msgstr ""
461
-
462
- #: ../lib/the-events-calendar.class.php:587
463
- #: ../lib/the-events-calendar.class.php:604
464
- #: ../lib/the-events-calendar.class.php:621
465
- msgid "M j, Y @ G:i"
466
- msgstr ""
467
-
468
- #: ../lib/the-events-calendar.class.php:588
469
- #, php-format
470
- msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
471
- msgstr ""
472
-
473
- #: ../lib/the-events-calendar.class.php:593
474
- #, php-format
475
- msgid "Venue updated. <a href=\"%s\">View venue</a>"
476
- msgstr ""
477
-
478
- #: ../lib/the-events-calendar.class.php:596
479
- msgid "Venue updated."
480
- msgstr ""
481
-
482
- #: ../lib/the-events-calendar.class.php:598
483
- #, php-format
484
- msgid "Venue restored to revision from %s"
485
- msgstr ""
486
-
487
- #: ../lib/the-events-calendar.class.php:599
488
- #, php-format
489
- msgid "Venue published. <a href=\"%s\">View venue</a>"
490
- msgstr ""
491
-
492
- #: ../lib/the-events-calendar.class.php:600
493
- msgid "Venue saved."
494
- msgstr ""
495
-
496
- #: ../lib/the-events-calendar.class.php:601
497
- #, php-format
498
- msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
499
- msgstr ""
500
-
501
- #: ../lib/the-events-calendar.class.php:602
502
- #, php-format
503
- msgid "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview venue</a>"
504
- msgstr ""
505
-
506
- #: ../lib/the-events-calendar.class.php:605
507
- #, php-format
508
- msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
509
- msgstr ""
510
-
511
- #: ../lib/the-events-calendar.class.php:610
512
- #, php-format
513
- msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
514
- msgstr ""
515
-
516
- #: ../lib/the-events-calendar.class.php:613
517
- msgid "Organizer updated."
518
- msgstr ""
519
-
520
- #: ../lib/the-events-calendar.class.php:615
521
- #, php-format
522
- msgid "Organizer restored to revision from %s"
523
- msgstr ""
524
-
525
- #: ../lib/the-events-calendar.class.php:616
526
- #, php-format
527
- msgid "Organizer published. <a href=\"%s\">View organizer</a>"
528
- msgstr ""
529
-
530
- #: ../lib/the-events-calendar.class.php:617
531
- msgid "Organizer saved."
532
- msgstr ""
533
-
534
- #: ../lib/the-events-calendar.class.php:618
535
- #, php-format
536
- msgid "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
537
- msgstr ""
538
-
539
- #: ../lib/the-events-calendar.class.php:619
540
- #, php-format
541
- msgid "Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview organizer</a>"
542
- msgstr ""
543
-
544
- #: ../lib/the-events-calendar.class.php:622
545
- #, php-format
546
- msgid "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
547
- msgstr ""
548
-
549
- #: ../lib/the-events-calendar.class.php:677
550
- msgid "Next"
551
- msgstr ""
552
-
553
- #: ../lib/the-events-calendar.class.php:678
554
- msgid "Prev"
555
- msgstr ""
556
-
557
- #: ../lib/the-events-calendar.class.php:679
558
- msgid "Today"
559
- msgstr ""
560
-
561
- #: ../lib/the-events-calendar.class.php:680
562
- msgid "Done"
563
- msgstr ""
564
-
565
- #: ../lib/the-events-calendar.class.php:1778
566
- msgid "Event Options"
567
- msgstr ""
568
-
569
- #: ../lib/the-events-calendar.class.php:1780
570
- msgid "Venue Information"
571
- msgstr ""
572
-
573
- #: ../lib/the-events-calendar.class.php:1781
574
- msgid "Organizer Information"
575
- msgstr ""
576
-
577
- #: ../lib/the-events-calendar.class.php:1894
578
- msgid "Support"
579
- msgstr ""
580
-
581
- #: ../lib/the-events-calendar.class.php:1897
582
- msgid "View All Add-Ons"
583
- msgstr ""
584
-
585
- #: ../lib/the-events-calendar.class.php:1904
586
- msgid "News from Tribe Pro"
587
- msgstr ""
588
-
589
- #: ../lib/the-events-calendar.class.php:1949
590
- msgid "Additional Functionality"
591
  msgstr ""
592
 
593
- #: ../lib/the-events-calendar.class.php:1954
594
- #: ../lib/the-events-calendar.class.php:1960
595
- msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
596
  msgstr ""
597
 
598
- #: ../lib/the-events-calendar.class.php:1954
599
- #: ../lib/the-events-calendar.class.php:1961
600
- #, php-format
601
- msgid "Check out the <a href=\"%s\">available Add-Ons</a>."
602
  msgstr ""
603
 
604
  #: ../lib/tribe-view-helpers.class.php:16
@@ -606,6 +325,10 @@ msgstr ""
606
  msgid "Select a Country:"
607
  msgstr ""
608
 
 
 
 
 
609
  #: ../lib/tribe-view-helpers.class.php:35
610
  msgid "Afghanistan"
611
  msgstr ""
@@ -1763,10 +1486,6 @@ msgstr ""
1763
  msgid "Wyoming"
1764
  msgstr ""
1765
 
1766
- #: ../lib/tribe-debug-bar.class.php:18
1767
- msgid "Tribe"
1768
- msgstr ""
1769
-
1770
  #: ../lib/tribe-the-events-calendar-import.class.php:44
1771
  msgid "Welcome to Events 2.0! This is a HUGE upgrade from 1.6.5. Please make sure you have backed up before proceeding any further. You can easily <a href=\" http://wordpress.org/extend/plugins/the-events-calendar/download/\">revert to an old version</a> if you want to backup first. This upgrade includes two major steps, <a href=\"options-general.php?page=tribe-events-calendar\">migrating data</a> & updating your templates as necessary. There have been significant changes to the template tags and functions. Check out our <a href=\"http://tri.be/migrating-from-events-calendar-1-6-5-to-2-0\">walkthrough on the upgrade</a> before proceeding and check out the FAQ & Knowledge base from the <a href=\"http://tri.be/support/\">support page</a>.<br/><br/> You have events that need to be migrated. Please visit the bottom of the <a href=\"options-general.php?page=tribe-events-calendar\">settings page</a> to perform the migration."
1772
  msgstr ""
@@ -1801,6 +1520,11 @@ msgstr ""
1801
  msgid "View"
1802
  msgstr ""
1803
 
 
 
 
 
 
1804
  #: ../lib/tribe-admin-events-list.class.php:177
1805
  msgid "Start Date"
1806
  msgstr ""
@@ -1826,278 +1550,551 @@ msgstr ""
1826
  msgid "All %s"
1827
  msgstr ""
1828
 
1829
- #: ../admin-views/event-sidebar-options.php:11
1830
- msgid "Hide From Upcoming Events List"
1831
  msgstr ""
1832
 
1833
- #: ../admin-views/widget-admin-list.php:11
1834
- msgid "Title:"
1835
- msgstr ""
1836
 
1837
- #: ../admin-views/widget-admin-list.php:16
1838
- msgid "Show:"
1839
  msgstr ""
1840
 
1841
- #: ../admin-views/widget-admin-list.php:24
1842
- msgid "Show widget only if there are upcoming events:"
1843
  msgstr ""
1844
 
1845
- #: ../admin-views/widget-admin-list.php:30
1846
- msgid "If you wish to customize the widget display yourself, see the file views/events-list-load-widget-display.php inside the Events Premium plugin."
1847
  msgstr ""
1848
 
1849
- #: ../admin-views/recurrence-dialog.php:11
1850
- msgid "Which events do you wish to update?"
1851
  msgstr ""
1852
 
1853
- #: ../admin-views/recurrence-dialog.php:14
1854
- msgid "Select your desired action"
 
1855
  msgstr ""
1856
 
1857
- #: ../admin-views/events-options.php:47
1858
  #, php-format
1859
- msgid "%s Settings"
1860
  msgstr ""
1861
 
1862
- #: ../admin-views/events-options.php:51
1863
- msgid "Need a hand?"
 
1864
  msgstr ""
1865
 
1866
- #: ../admin-views/events-options.php:52
 
 
 
 
 
 
 
 
 
1867
  #, php-format
1868
- msgid "If you're stuck on these options, please go to the <a href=\"%s\">support forum</a>."
1869
  msgstr ""
1870
 
1871
- #: ../admin-views/events-options.php:54
1872
- msgid "Here is the iCal feed URL for your events: "
1873
  msgstr ""
1874
 
1875
- #: ../admin-views/events-options.php:60
1876
- msgid "Settings"
 
1877
  msgstr ""
1878
 
1879
- #: ../admin-views/events-options.php:63
1880
- #: ../admin-views/events-options.php:67
1881
- msgid "Default View for the Events"
1882
  msgstr ""
1883
 
1884
- #: ../admin-views/events-options.php:81
1885
- #: ../admin-views/events-options.php:85
1886
- #: ../admin-views/events-options.php:87
1887
- msgid "Show Comments"
1888
  msgstr ""
1889
 
1890
- #: ../admin-views/events-options.php:95
1891
- #: ../admin-views/events-options.php:99
1892
- msgid "Multiday Event Cutoff"
1893
  msgstr ""
1894
 
1895
- #: ../admin-views/events-options.php:113
1896
- msgid "For multi-day events, hide the last day from grid view if it ends on or before this time."
 
 
1897
  msgstr ""
1898
 
1899
- #: ../admin-views/events-options.php:118
1900
- #: ../admin-views/events-options.php:122
1901
- msgid "Enable Google Maps"
1902
  msgstr ""
1903
 
1904
- #: ../admin-views/events-options.php:128
1905
- msgid "Height"
1906
  msgstr ""
1907
 
1908
- #: ../admin-views/events-options.php:129
1909
- msgid "Width"
1910
  msgstr ""
1911
 
1912
- #: ../admin-views/events-options.php:129
1913
- msgid "(number or %)"
1914
  msgstr ""
1915
 
1916
- #: ../admin-views/events-options.php:133
1917
- msgid "If you don't have this turned on, your event listings won't have the backend map preview or frontend embedded map."
1918
  msgstr ""
1919
 
1920
- #: ../admin-views/events-options.php:141
1921
- #: ../admin-views/events-options.php:143
1922
- msgid "Events URL slug"
1923
  msgstr ""
1924
 
1925
- #: ../admin-views/events-options.php:144
1926
- msgid "The slug used for building the Events URL."
1927
  msgstr ""
1928
 
1929
- #: ../admin-views/events-options.php:144
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1930
  #, php-format
1931
- msgid "Your current Events URL is <strong><a href=\"%s\">%s</a></strong>"
1932
  msgstr ""
1933
 
1934
- #: ../admin-views/events-options.php:148
1935
- #: ../admin-views/events-options.php:150
1936
- msgid "Single Event URL slug"
 
1937
  msgstr ""
1938
 
1939
- #: ../admin-views/events-options.php:151
1940
- msgid "The slug used for building a single Event URL."
 
 
1941
  msgstr ""
1942
 
1943
- #: ../admin-views/events-options.php:152
 
 
 
 
1944
  #, php-format
1945
- msgid "<strong>NOTE:</strong> You <em>cannot</em> use the same slug as above. The above should ideally be plural, and this singular.<br />Your single Event URL is like: <strong>%s</strong>"
1946
  msgstr ""
1947
 
1948
- #: ../admin-views/events-options.php:157
1949
- #: ../admin-views/events-options.php:159
1950
- msgid "Debug"
1951
  msgstr ""
1952
 
1953
- #: ../admin-views/events-options.php:160
1954
- msgid "Debug Events display issues."
1955
  msgstr ""
1956
 
1957
- #: ../admin-views/events-options.php:161
1958
  #, php-format
1959
- msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the <a href=\"%s\" target=\"_blank\">Debug Bar Plugin</a> and look for the \"Tribe\" tab in the debug output."
1960
  msgstr ""
1961
 
1962
- #: ../admin-views/events-options.php:166
1963
- msgid "Theme Settings"
 
1964
  msgstr ""
1965
 
1966
- #: ../admin-views/events-options.php:169
1967
- #: ../admin-views/events-options.php:171
1968
- msgid "Events Template"
 
1969
  msgstr ""
1970
 
1971
- #: ../admin-views/events-options.php:173
1972
- msgid "Default Events Template"
 
1973
  msgstr ""
1974
 
1975
- #: ../admin-views/events-options.php:174
1976
- msgid "Default Page Template"
 
1977
  msgstr ""
1978
 
1979
- #: ../admin-views/events-options.php:177
1980
- msgid "Choose a page template to control the look and feel of your calendar."
1981
  msgstr ""
1982
 
1983
- #: ../admin-views/events-options.php:181
1984
- #: ../admin-views/events-options.php:183
1985
- #: ../admin-views/events-options.php:191
1986
- msgid "Add HTML before calendar"
1987
  msgstr ""
1988
 
1989
- #: ../admin-views/events-options.php:185
1990
- msgid "Some themes may require that you add extra divs before the calendar list to help with styling."
 
1991
  msgstr ""
1992
 
1993
- #: ../admin-views/events-options.php:185
1994
- msgid "This is displayed directly after the header."
1995
  msgstr ""
1996
 
1997
- #: ../admin-views/events-options.php:185
1998
- #: ../admin-views/events-options.php:193
1999
- msgid "You may use (x)HTML."
2000
  msgstr ""
2001
 
2002
- #: ../admin-views/events-options.php:189
2003
- msgid "Add HTML after calendar"
 
2004
  msgstr ""
2005
 
2006
- #: ../admin-views/events-options.php:193
2007
- msgid "Some themes may require that you add extra divs after the calendar list to help with styling."
 
2008
  msgstr ""
2009
 
2010
- #: ../admin-views/events-options.php:193
2011
- msgid "This is displayed directly above the footer."
 
2012
  msgstr ""
2013
 
2014
- #: ../admin-views/events-options.php:202
2015
- msgid "Save Changes"
2016
  msgstr ""
2017
 
2018
- #: ../admin-views/organizer-meta-box.php:11
2019
- msgid "Organizer Name:"
 
2020
  msgstr ""
2021
 
2022
- #: ../admin-views/organizer-meta-box.php:21
2023
- msgid "Website:"
 
2024
  msgstr ""
2025
 
2026
- #: ../admin-views/venue-meta-box.php:12
2027
- msgid "Venue Name:"
2028
  msgstr ""
2029
 
2030
- #: ../admin-views/venue-meta-box.php:23
2031
- msgid "City:"
 
2032
  msgstr ""
2033
 
2034
- #: ../admin-views/venue-meta-box.php:27
2035
- msgid "Country:"
 
2036
  msgstr ""
2037
 
2038
- #: ../admin-views/venue-meta-box.php:58
2039
- msgid "State or Province:"
 
2040
  msgstr ""
2041
 
2042
- #: ../admin-views/venue-meta-box.php:61
2043
- msgid "Select a State:"
2044
  msgstr ""
2045
 
2046
- #: ../admin-views/venue-meta-box.php:75
2047
- msgid "Postal Code:"
2048
  msgstr ""
2049
 
2050
- #: ../admin-views/events-meta-box.php:26
2051
- msgid "Event Time &amp; Date"
2052
  msgstr ""
2053
 
2054
- #: ../admin-views/events-meta-box.php:29
2055
- msgid "You have changed the recurrence rules of this event. Saving the event will update all future events. If you did not mean to change all events, then please refresh the page."
2056
  msgstr ""
2057
 
2058
- #: ../admin-views/events-meta-box.php:32
2059
- msgid "All day event?"
2060
  msgstr ""
2061
 
2062
- #: ../admin-views/events-meta-box.php:36
2063
- msgid "Start Date / Time:"
2064
  msgstr ""
2065
 
2066
- #: ../admin-views/events-meta-box.php:39
2067
- #: ../admin-views/events-meta-box.php:60
2068
- msgid "YYYY-MM-DD"
2069
  msgstr ""
2070
 
2071
- #: ../admin-views/events-meta-box.php:41
2072
- #: ../admin-views/events-meta-box.php:62
2073
- msgid "@"
2074
  msgstr ""
2075
 
2076
- #: ../admin-views/events-meta-box.php:57
2077
- msgid "End Date / Time:"
2078
  msgstr ""
2079
 
2080
- #: ../admin-views/events-meta-box.php:79
2081
- msgid "Event Location Details"
2082
  msgstr ""
2083
 
2084
- #: ../admin-views/events-meta-box.php:85
2085
- msgid "Show Google Maps Link:"
2086
  msgstr ""
2087
 
2088
- #: ../admin-views/events-meta-box.php:92
2089
- msgid "Show Google Map:"
 
2090
  msgstr ""
2091
 
2092
- #: ../admin-views/events-meta-box.php:101
2093
- msgid "Event Organizer Details"
 
 
2094
  msgstr ""
2095
 
2096
- #: ../admin-views/events-meta-box.php:110
2097
- msgid "Event Cost"
2098
  msgstr ""
2099
 
2100
- #: ../admin-views/events-meta-box.php:118
2101
- msgid "Leave blank to hide the field. Enter a 0 for events that are free."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2102
  msgstr ""
2103
 
5
  msgstr ""
6
  "Project-Id-Version: The Events Calendar 2.0\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2011-12-01 12:15-0500\n"
9
+ "PO-Revision-Date: 2011-12-01 12:15-0500\n"
10
  "Last-Translator: John Gadbois <jgadbois@gmail.com>\n"
11
  "Language-Team: Modern Tribe, Inc.\n"
12
  "Language: \n"
20
  "X-Poedit-Country: UNITED STATES\n"
21
  "X-Poedit-SearchPath-0: ..\n"
22
 
23
+ #: ../admin-views/event-sidebar-options.php:11
24
+ msgid "Hide From Upcoming Events List"
 
 
 
 
25
  msgstr ""
26
 
27
+ #: ../admin-views/events-meta-box.php:26
28
+ msgid "Event Time &amp; Date"
29
  msgstr ""
30
 
31
+ #: ../admin-views/events-meta-box.php:29
32
+ msgid "You have changed the recurrence rules of this event. Saving the event will update all future events. If you did not mean to change all events, then please refresh the page."
33
  msgstr ""
34
 
35
+ #: ../admin-views/events-meta-box.php:32
36
+ msgid "All day event?"
37
  msgstr ""
38
 
39
+ #: ../admin-views/events-meta-box.php:36
40
+ msgid "Start Date / Time:"
41
  msgstr ""
42
 
43
+ #: ../admin-views/events-meta-box.php:39
44
+ #: ../admin-views/events-meta-box.php:60
45
+ msgid "YYYY-MM-DD"
46
  msgstr ""
47
 
48
+ #: ../admin-views/events-meta-box.php:41
49
+ #: ../admin-views/events-meta-box.php:62
50
+ msgid "@"
51
  msgstr ""
52
 
53
+ #: ../admin-views/events-meta-box.php:57
54
+ msgid "End Date / Time:"
 
55
  msgstr ""
56
 
57
+ #: ../admin-views/events-meta-box.php:79
58
+ msgid "Event Location Details"
 
59
  msgstr ""
60
 
61
+ #: ../admin-views/events-meta-box.php:85
62
+ msgid "Show Google Maps Link:"
 
63
  msgstr ""
64
 
65
+ #: ../admin-views/events-meta-box.php:92
66
+ msgid "Show Google Map:"
 
67
  msgstr ""
68
 
69
+ #: ../admin-views/events-meta-box.php:101
70
+ msgid "Event Organizer Details"
 
 
71
  msgstr ""
72
 
73
+ #: ../admin-views/events-meta-box.php:110
74
+ msgid "Event Cost"
 
75
  msgstr ""
76
 
77
+ #: ../admin-views/events-meta-box.php:113
78
+ msgid "Cost:"
 
79
  msgstr ""
80
 
81
+ #: ../admin-views/events-meta-box.php:118
82
+ msgid "Leave blank to hide the field. Enter a 0 for events that are free."
 
83
  msgstr ""
84
 
85
+ #: ../admin-views/events-options.php:47
86
  #, php-format
87
+ msgid "%s Settings"
88
  msgstr ""
89
 
90
+ #: ../admin-views/events-options.php:51
91
+ msgid "Need a hand?"
 
92
  msgstr ""
93
 
94
+ #: ../admin-views/events-options.php:52
95
  #, php-format
96
+ msgid "If you're stuck on these options, please go to the <a href=\"%s\">support forum</a>."
97
  msgstr ""
98
 
99
+ #: ../admin-views/events-options.php:54
100
+ msgid "Here is the iCal feed URL for your events: "
101
  msgstr ""
102
 
103
+ #: ../admin-views/events-options.php:60
104
+ msgid "Settings"
105
  msgstr ""
106
 
107
+ #: ../admin-views/events-options.php:63
108
+ #: ../admin-views/events-options.php:67
109
+ msgid "Default View for the Events"
 
110
  msgstr ""
111
 
112
+ #: ../admin-views/events-options.php:71
113
+ msgid "Calendar"
 
 
114
  msgstr ""
115
 
116
+ #: ../admin-views/events-options.php:75
117
+ msgid "Event List"
 
 
118
  msgstr ""
119
 
120
+ #: ../admin-views/events-options.php:81
121
+ #: ../admin-views/events-options.php:85
122
+ #: ../admin-views/events-options.php:87
123
+ msgid "Show Comments"
124
  msgstr ""
125
 
126
+ #: ../admin-views/events-options.php:95
127
+ #: ../admin-views/events-options.php:99
128
+ msgid "Multiday Event Cutoff"
129
  msgstr ""
130
 
131
+ #: ../admin-views/events-options.php:113
132
+ msgid "For multi-day events, hide the last day from grid view if it ends on or before this time."
133
  msgstr ""
134
 
135
+ #: ../admin-views/events-options.php:118
136
+ #: ../admin-views/events-options.php:122
137
+ msgid "Enable Google Maps"
138
  msgstr ""
139
 
140
+ #: ../admin-views/events-options.php:128
141
+ msgid "Height"
142
  msgstr ""
143
 
144
+ #: ../admin-views/events-options.php:129
145
+ msgid "Width"
146
  msgstr ""
147
 
148
+ #: ../admin-views/events-options.php:129
149
+ msgid "(number or %)"
150
  msgstr ""
151
 
152
+ #: ../admin-views/events-options.php:133
153
+ msgid "If you don't have this turned on, your event listings won't have the backend map preview or frontend embedded map."
154
  msgstr ""
155
 
156
+ #: ../admin-views/events-options.php:141
157
+ #: ../admin-views/events-options.php:143
158
+ msgid "Events URL slug"
159
  msgstr ""
160
 
161
+ #: ../admin-views/events-options.php:144
162
+ msgid "The slug used for building the Events URL."
163
  msgstr ""
164
 
165
+ #: ../admin-views/events-options.php:144
166
+ #, php-format
167
+ msgid "Your current Events URL is <strong><a href=\"%s\">%s</a></strong>"
168
  msgstr ""
169
 
170
+ #: ../admin-views/events-options.php:148
171
+ #: ../admin-views/events-options.php:150
172
+ msgid "Single Event URL slug"
173
  msgstr ""
174
 
175
+ #: ../admin-views/events-options.php:151
176
+ msgid "The slug used for building a single Event URL."
177
  msgstr ""
178
 
179
+ #: ../admin-views/events-options.php:152
180
+ #, php-format
181
+ msgid "<strong>NOTE:</strong> You <em>cannot</em> use the same slug as above. The above should ideally be plural, and this singular.<br />Your single Event URL is like: <strong>%s</strong>"
182
  msgstr ""
183
 
184
+ #: ../admin-views/events-options.php:157
185
+ #: ../admin-views/events-options.php:159
186
+ msgid "Debug"
187
  msgstr ""
188
 
189
+ #: ../admin-views/events-options.php:160
190
+ msgid "Debug Events display issues."
191
  msgstr ""
192
 
193
+ #: ../admin-views/events-options.php:161
194
+ #, php-format
195
+ msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the <a href=\"%s\" target=\"_blank\">Debug Bar Plugin</a> and look for the \"Tribe\" tab in the debug output."
196
  msgstr ""
197
 
198
+ #: ../admin-views/events-options.php:166
199
+ msgid "Theme Settings"
200
  msgstr ""
201
 
202
+ #: ../admin-views/events-options.php:169
203
+ #: ../admin-views/events-options.php:171
204
+ msgid "Events Template"
205
  msgstr ""
206
 
207
+ #: ../admin-views/events-options.php:173
208
+ msgid "Default Events Template"
209
  msgstr ""
210
 
211
+ #: ../admin-views/events-options.php:174
212
+ msgid "Default Page Template"
213
  msgstr ""
214
 
215
+ #: ../admin-views/events-options.php:177
216
+ msgid "Choose a page template to control the look and feel of your calendar."
 
217
  msgstr ""
218
 
219
+ #: ../admin-views/events-options.php:181
220
+ #: ../admin-views/events-options.php:183
221
+ #: ../admin-views/events-options.php:191
222
+ msgid "Add HTML before calendar"
223
  msgstr ""
224
 
225
+ #: ../admin-views/events-options.php:185
226
+ msgid "Some themes may require that you add extra divs before the calendar list to help with styling."
 
227
  msgstr ""
228
 
229
+ #: ../admin-views/events-options.php:185
230
+ msgid "This is displayed directly after the header."
231
  msgstr ""
232
 
233
+ #: ../admin-views/events-options.php:185
234
+ #: ../admin-views/events-options.php:193
235
+ msgid "You may use (x)HTML."
236
  msgstr ""
237
 
238
+ #: ../admin-views/events-options.php:189
239
+ msgid "Add HTML after calendar"
 
 
240
  msgstr ""
241
 
242
+ #: ../admin-views/events-options.php:193
243
+ msgid "Some themes may require that you add extra divs after the calendar list to help with styling."
244
  msgstr ""
245
 
246
+ #: ../admin-views/events-options.php:193
247
+ msgid "This is displayed directly above the footer."
 
248
  msgstr ""
249
 
250
+ #: ../admin-views/events-options.php:202
251
+ msgid "Save Changes"
252
  msgstr ""
253
 
254
+ #: ../admin-views/widget-admin-list.php:11
255
+ msgid "Title:"
256
  msgstr ""
257
 
258
+ #: ../admin-views/widget-admin-list.php:16
259
+ msgid "Show:"
260
  msgstr ""
261
 
262
+ #: ../admin-views/widget-admin-list.php:24
263
+ msgid "Show widget only if there are upcoming events:"
 
 
264
  msgstr ""
265
 
266
+ #: ../admin-views/widget-admin-list.php:30
267
+ msgid "If you wish to customize the widget display yourself, see the file views/events-list-load-widget-display.php inside the Events Premium plugin."
268
  msgstr ""
269
 
270
+ #: ../admin-views/venue-meta-box.php:12
271
+ msgid "Venue Name:"
272
  msgstr ""
273
 
274
+ #: ../admin-views/venue-meta-box.php:19
275
+ msgid "Address:"
276
  msgstr ""
277
 
278
+ #: ../admin-views/venue-meta-box.php:23
279
+ msgid "City:"
280
  msgstr ""
281
 
282
+ #: ../admin-views/venue-meta-box.php:27
283
+ msgid "Country:"
284
  msgstr ""
285
 
286
+ #: ../admin-views/venue-meta-box.php:58
287
+ msgid "State or Province:"
288
  msgstr ""
289
 
290
+ #: ../admin-views/venue-meta-box.php:61
291
+ msgid "Select a State:"
292
  msgstr ""
293
 
294
+ #: ../admin-views/venue-meta-box.php:77
295
+ msgid "Postal Code:"
296
  msgstr ""
297
 
298
+ #: ../admin-views/venue-meta-box.php:81
299
+ #: ../admin-views/organizer-meta-box.php:17
300
+ msgid "Phone:"
301
  msgstr ""
302
 
303
+ #: ../admin-views/organizer-meta-box.php:11
304
+ msgid "Organizer Name:"
305
  msgstr ""
306
 
307
+ #: ../admin-views/organizer-meta-box.php:21
308
+ msgid "Website:"
309
  msgstr ""
310
 
311
+ #: ../admin-views/organizer-meta-box.php:25
312
+ msgid "Email:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
313
  msgstr ""
314
 
315
+ #: ../admin-views/recurrence-dialog.php:11
316
+ msgid "Which events do you wish to update?"
 
317
  msgstr ""
318
 
319
+ #: ../admin-views/recurrence-dialog.php:14
320
+ msgid "Select your desired action"
 
 
321
  msgstr ""
322
 
323
  #: ../lib/tribe-view-helpers.class.php:16
325
  msgid "Select a Country:"
326
  msgstr ""
327
 
328
+ #: ../lib/tribe-view-helpers.class.php:34
329
+ msgid "United States"
330
+ msgstr ""
331
+
332
  #: ../lib/tribe-view-helpers.class.php:35
333
  msgid "Afghanistan"
334
  msgstr ""
1486
  msgid "Wyoming"
1487
  msgstr ""
1488
 
 
 
 
 
1489
  #: ../lib/tribe-the-events-calendar-import.class.php:44
1490
  msgid "Welcome to Events 2.0! This is a HUGE upgrade from 1.6.5. Please make sure you have backed up before proceeding any further. You can easily <a href=\" http://wordpress.org/extend/plugins/the-events-calendar/download/\">revert to an old version</a> if you want to backup first. This upgrade includes two major steps, <a href=\"options-general.php?page=tribe-events-calendar\">migrating data</a> & updating your templates as necessary. There have been significant changes to the template tags and functions. Check out our <a href=\"http://tri.be/migrating-from-events-calendar-1-6-5-to-2-0\">walkthrough on the upgrade</a> before proceeding and check out the FAQ & Knowledge base from the <a href=\"http://tri.be/support/\">support page</a>.<br/><br/> You have events that need to be migrated. Please visit the bottom of the <a href=\"options-general.php?page=tribe-events-calendar\">settings page</a> to perform the migration."
1491
  msgstr ""
1520
  msgid "View"
1521
  msgstr ""
1522
 
1523
+ #: ../lib/tribe-admin-events-list.class.php:172
1524
+ #: ../lib/the-events-calendar.class.php:597
1525
+ msgid "Event Categories"
1526
+ msgstr ""
1527
+
1528
  #: ../lib/tribe-admin-events-list.class.php:177
1529
  msgid "Start Date"
1530
  msgstr ""
1550
  msgid "All %s"
1551
  msgstr ""
1552
 
1553
+ #: ../lib/the-events-calendar.class.php:239
1554
+ msgid "The Events Calendar"
1555
  msgstr ""
1556
 
1557
+ #: ../lib/the-events-calendar.class.php:242
1558
+ msgid "category"
1559
+ msgstr ""
1560
 
1561
+ #: ../lib/the-events-calendar.class.php:243
1562
+ msgid "month"
1563
  msgstr ""
1564
 
1565
+ #: ../lib/the-events-calendar.class.php:244
1566
+ msgid "upcoming"
1567
  msgstr ""
1568
 
1569
+ #: ../lib/the-events-calendar.class.php:245
1570
+ msgid "past"
1571
  msgstr ""
1572
 
1573
+ #: ../lib/the-events-calendar.class.php:247
1574
+ msgid "venue"
1575
  msgstr ""
1576
 
1577
+ #: ../lib/the-events-calendar.class.php:257
1578
+ #, php-format
1579
+ msgid "Initializing Tribe Events on %s"
1580
  msgstr ""
1581
 
1582
+ #: ../lib/the-events-calendar.class.php:314
1583
  #, php-format
1584
+ msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
1585
  msgstr ""
1586
 
1587
+ #: ../lib/the-events-calendar.class.php:317
1588
+ #, php-format
1589
+ msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
1590
  msgstr ""
1591
 
1592
+ #: ../lib/the-events-calendar.class.php:438
1593
+ msgid "Upcoming Events"
1594
+ msgstr ""
1595
+
1596
+ #: ../lib/the-events-calendar.class.php:440
1597
+ msgid "Past Events"
1598
+ msgstr ""
1599
+
1600
+ #: ../lib/the-events-calendar.class.php:444
1601
+ #: ../lib/the-events-calendar.class.php:450
1602
  #, php-format
1603
+ msgid "Events for %s"
1604
  msgstr ""
1605
 
1606
+ #: ../lib/the-events-calendar.class.php:446
1607
+ msgid "Events this month"
1608
  msgstr ""
1609
 
1610
+ #: ../lib/the-events-calendar.class.php:456
1611
+ #, php-format
1612
+ msgid "Events at %s"
1613
  msgstr ""
1614
 
1615
+ #: ../lib/the-events-calendar.class.php:468
1616
+ msgid "No description has been entered for this event."
 
1617
  msgstr ""
1618
 
1619
+ #: ../lib/the-events-calendar.class.php:558
1620
+ msgid "Events"
 
 
1621
  msgstr ""
1622
 
1623
+ #: ../lib/the-events-calendar.class.php:559
1624
+ msgid "Event"
 
1625
  msgstr ""
1626
 
1627
+ #: ../lib/the-events-calendar.class.php:560
1628
+ #: ../lib/the-events-calendar.class.php:573
1629
+ #: ../lib/the-events-calendar.class.php:586
1630
+ msgid "Add New"
1631
  msgstr ""
1632
 
1633
+ #: ../lib/the-events-calendar.class.php:561
1634
+ msgid "Add New Event"
 
1635
  msgstr ""
1636
 
1637
+ #: ../lib/the-events-calendar.class.php:562
1638
+ msgid "Edit Event"
1639
  msgstr ""
1640
 
1641
+ #: ../lib/the-events-calendar.class.php:563
1642
+ msgid "New Event"
1643
  msgstr ""
1644
 
1645
+ #: ../lib/the-events-calendar.class.php:564
1646
+ msgid "View Event"
1647
  msgstr ""
1648
 
1649
+ #: ../lib/the-events-calendar.class.php:565
1650
+ msgid "Search Events"
1651
  msgstr ""
1652
 
1653
+ #: ../lib/the-events-calendar.class.php:566
1654
+ msgid "No events found"
 
1655
  msgstr ""
1656
 
1657
+ #: ../lib/the-events-calendar.class.php:567
1658
+ msgid "No events found in Trash"
1659
  msgstr ""
1660
 
1661
+ #: ../lib/the-events-calendar.class.php:571
1662
+ msgid "Venues"
1663
+ msgstr ""
1664
+
1665
+ #: ../lib/the-events-calendar.class.php:572
1666
+ msgid "Venue"
1667
+ msgstr ""
1668
+
1669
+ #: ../lib/the-events-calendar.class.php:574
1670
+ msgid "Add New Venue"
1671
+ msgstr ""
1672
+
1673
+ #: ../lib/the-events-calendar.class.php:575
1674
+ msgid "Edit Venue"
1675
+ msgstr ""
1676
+
1677
+ #: ../lib/the-events-calendar.class.php:576
1678
+ msgid "New Venue"
1679
+ msgstr ""
1680
+
1681
+ #: ../lib/the-events-calendar.class.php:577
1682
+ #: ../lib/the-events-calendar.class.php:590
1683
+ msgid "View Venue"
1684
+ msgstr ""
1685
+
1686
+ #: ../lib/the-events-calendar.class.php:578
1687
+ msgid "Search Venues"
1688
+ msgstr ""
1689
+
1690
+ #: ../lib/the-events-calendar.class.php:579
1691
+ msgid "No venue found"
1692
+ msgstr ""
1693
+
1694
+ #: ../lib/the-events-calendar.class.php:580
1695
+ msgid "No venues found in Trash"
1696
+ msgstr ""
1697
+
1698
+ #: ../lib/the-events-calendar.class.php:584
1699
+ msgid "Organizers"
1700
+ msgstr ""
1701
+
1702
+ #: ../lib/the-events-calendar.class.php:585
1703
+ msgid "Organizer"
1704
+ msgstr ""
1705
+
1706
+ #: ../lib/the-events-calendar.class.php:587
1707
+ msgid "Add New Organizer"
1708
+ msgstr ""
1709
+
1710
+ #: ../lib/the-events-calendar.class.php:588
1711
+ msgid "Edit Organizer"
1712
+ msgstr ""
1713
+
1714
+ #: ../lib/the-events-calendar.class.php:589
1715
+ msgid "New Organizer"
1716
+ msgstr ""
1717
+
1718
+ #: ../lib/the-events-calendar.class.php:591
1719
+ msgid "Search Organizers"
1720
+ msgstr ""
1721
+
1722
+ #: ../lib/the-events-calendar.class.php:592
1723
+ msgid "No organizer found"
1724
+ msgstr ""
1725
+
1726
+ #: ../lib/the-events-calendar.class.php:593
1727
+ msgid "No organizers found in Trash"
1728
+ msgstr ""
1729
+
1730
+ #: ../lib/the-events-calendar.class.php:598
1731
+ msgid "Event Category"
1732
+ msgstr ""
1733
+
1734
+ #: ../lib/the-events-calendar.class.php:599
1735
+ msgid "Search Event Categories"
1736
+ msgstr ""
1737
+
1738
+ #: ../lib/the-events-calendar.class.php:600
1739
+ msgid "All Event Categories"
1740
+ msgstr ""
1741
+
1742
+ #: ../lib/the-events-calendar.class.php:601
1743
+ msgid "Parent Event Category"
1744
+ msgstr ""
1745
+
1746
+ #: ../lib/the-events-calendar.class.php:602
1747
+ msgid "Parent Event Category:"
1748
+ msgstr ""
1749
+
1750
+ #: ../lib/the-events-calendar.class.php:603
1751
+ msgid "Edit Event Category"
1752
+ msgstr ""
1753
+
1754
+ #: ../lib/the-events-calendar.class.php:604
1755
+ msgid "Update Event Category"
1756
+ msgstr ""
1757
+
1758
+ #: ../lib/the-events-calendar.class.php:605
1759
+ msgid "Add New Event Category"
1760
+ msgstr ""
1761
+
1762
+ #: ../lib/the-events-calendar.class.php:606
1763
+ msgid "New Event Category Name"
1764
+ msgstr ""
1765
+
1766
+ #: ../lib/the-events-calendar.class.php:616
1767
  #, php-format
1768
+ msgid "Event updated. <a href=\"%s\">View event</a>"
1769
  msgstr ""
1770
 
1771
+ #: ../lib/the-events-calendar.class.php:617
1772
+ #: ../lib/the-events-calendar.class.php:634
1773
+ #: ../lib/the-events-calendar.class.php:651
1774
+ msgid "Custom field updated."
1775
  msgstr ""
1776
 
1777
+ #: ../lib/the-events-calendar.class.php:618
1778
+ #: ../lib/the-events-calendar.class.php:635
1779
+ #: ../lib/the-events-calendar.class.php:652
1780
+ msgid "Custom field deleted."
1781
  msgstr ""
1782
 
1783
+ #: ../lib/the-events-calendar.class.php:619
1784
+ msgid "Event updated."
1785
+ msgstr ""
1786
+
1787
+ #: ../lib/the-events-calendar.class.php:621
1788
  #, php-format
1789
+ msgid "Event restored to revision from %s"
1790
  msgstr ""
1791
 
1792
+ #: ../lib/the-events-calendar.class.php:622
1793
+ #, php-format
1794
+ msgid "Event published. <a href=\"%s\">View event</a>"
1795
  msgstr ""
1796
 
1797
+ #: ../lib/the-events-calendar.class.php:623
1798
+ msgid "Event saved."
1799
  msgstr ""
1800
 
1801
+ #: ../lib/the-events-calendar.class.php:624
1802
  #, php-format
1803
+ msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1804
  msgstr ""
1805
 
1806
+ #: ../lib/the-events-calendar.class.php:625
1807
+ #, php-format
1808
+ msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1809
  msgstr ""
1810
 
1811
+ #: ../lib/the-events-calendar.class.php:627
1812
+ #: ../lib/the-events-calendar.class.php:644
1813
+ #: ../lib/the-events-calendar.class.php:661
1814
+ msgid "M j, Y @ G:i"
1815
  msgstr ""
1816
 
1817
+ #: ../lib/the-events-calendar.class.php:628
1818
+ #, php-format
1819
+ msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1820
  msgstr ""
1821
 
1822
+ #: ../lib/the-events-calendar.class.php:633
1823
+ #, php-format
1824
+ msgid "Venue updated. <a href=\"%s\">View venue</a>"
1825
  msgstr ""
1826
 
1827
+ #: ../lib/the-events-calendar.class.php:636
1828
+ msgid "Venue updated."
1829
  msgstr ""
1830
 
1831
+ #: ../lib/the-events-calendar.class.php:638
1832
+ #, php-format
1833
+ msgid "Venue restored to revision from %s"
 
1834
  msgstr ""
1835
 
1836
+ #: ../lib/the-events-calendar.class.php:639
1837
+ #, php-format
1838
+ msgid "Venue published. <a href=\"%s\">View venue</a>"
1839
  msgstr ""
1840
 
1841
+ #: ../lib/the-events-calendar.class.php:640
1842
+ msgid "Venue saved."
1843
  msgstr ""
1844
 
1845
+ #: ../lib/the-events-calendar.class.php:641
1846
+ #, php-format
1847
+ msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1848
  msgstr ""
1849
 
1850
+ #: ../lib/the-events-calendar.class.php:642
1851
+ #, php-format
1852
+ msgid "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview venue</a>"
1853
  msgstr ""
1854
 
1855
+ #: ../lib/the-events-calendar.class.php:645
1856
+ #, php-format
1857
+ msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1858
  msgstr ""
1859
 
1860
+ #: ../lib/the-events-calendar.class.php:650
1861
+ #, php-format
1862
+ msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
1863
  msgstr ""
1864
 
1865
+ #: ../lib/the-events-calendar.class.php:653
1866
+ msgid "Organizer updated."
1867
  msgstr ""
1868
 
1869
+ #: ../lib/the-events-calendar.class.php:655
1870
+ #, php-format
1871
+ msgid "Organizer restored to revision from %s"
1872
  msgstr ""
1873
 
1874
+ #: ../lib/the-events-calendar.class.php:656
1875
+ #, php-format
1876
+ msgid "Organizer published. <a href=\"%s\">View organizer</a>"
1877
  msgstr ""
1878
 
1879
+ #: ../lib/the-events-calendar.class.php:657
1880
+ msgid "Organizer saved."
1881
  msgstr ""
1882
 
1883
+ #: ../lib/the-events-calendar.class.php:658
1884
+ #, php-format
1885
+ msgid "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
1886
  msgstr ""
1887
 
1888
+ #: ../lib/the-events-calendar.class.php:659
1889
+ #, php-format
1890
+ msgid "Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview organizer</a>"
1891
  msgstr ""
1892
 
1893
+ #: ../lib/the-events-calendar.class.php:662
1894
+ #, php-format
1895
+ msgid "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
1896
  msgstr ""
1897
 
1898
+ #: ../lib/the-events-calendar.class.php:717
1899
+ msgid "Next"
1900
  msgstr ""
1901
 
1902
+ #: ../lib/the-events-calendar.class.php:718
1903
+ msgid "Prev"
1904
  msgstr ""
1905
 
1906
+ #: ../lib/the-events-calendar.class.php:719
1907
+ msgid "Today"
1908
  msgstr ""
1909
 
1910
+ #: ../lib/the-events-calendar.class.php:720
1911
+ msgid "Done"
1912
  msgstr ""
1913
 
1914
+ #: ../lib/the-events-calendar.class.php:1835
1915
+ msgid "Event Options"
1916
  msgstr ""
1917
 
1918
+ #: ../lib/the-events-calendar.class.php:1837
1919
+ msgid "Venue Information"
1920
  msgstr ""
1921
 
1922
+ #: ../lib/the-events-calendar.class.php:1838
1923
+ msgid "Organizer Information"
 
1924
  msgstr ""
1925
 
1926
+ #: ../lib/the-events-calendar.class.php:1951
1927
+ msgid "Support"
 
1928
  msgstr ""
1929
 
1930
+ #: ../lib/the-events-calendar.class.php:1954
1931
+ msgid "View All Add-Ons"
1932
  msgstr ""
1933
 
1934
+ #: ../lib/the-events-calendar.class.php:1961
1935
+ msgid "News from Modern Tribe"
1936
  msgstr ""
1937
 
1938
+ #: ../lib/the-events-calendar.class.php:2006
1939
+ msgid "Additional Functionality"
1940
  msgstr ""
1941
 
1942
+ #: ../lib/the-events-calendar.class.php:2011
1943
+ #: ../lib/the-events-calendar.class.php:2017
1944
+ msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
1945
  msgstr ""
1946
 
1947
+ #: ../lib/the-events-calendar.class.php:2011
1948
+ #: ../lib/the-events-calendar.class.php:2018
1949
+ #, php-format
1950
+ msgid "Check out the <a href=\"%s\">available Add-Ons</a>."
1951
  msgstr ""
1952
 
1953
+ #: ../lib/widget-list.class.php:16
1954
+ msgid "A widget that displays the next upcoming x events."
1955
  msgstr ""
1956
 
1957
+ #: ../lib/widget-list.class.php:70
1958
+ msgid "View All Events"
1959
+ msgstr ""
1960
+
1961
+ #: ../lib/widget-list.class.php:73
1962
+ msgid "There are no upcoming events at this time."
1963
+ msgstr ""
1964
+
1965
+ #: ../lib/tribe-debug-bar.class.php:18
1966
+ msgid "Tribe"
1967
+ msgstr ""
1968
+
1969
+ #: ../lib/tribe-event-exception.class.php:17
1970
+ #: ../lib/tribe-event-exception.class.php:34
1971
+ msgid "Error"
1972
+ msgstr ""
1973
+
1974
+ #: ../public/template-tags/loop.php:130
1975
+ msgid "Calendar of Events"
1976
+ msgstr ""
1977
+
1978
+ #: ../public/template-tags/general.php:103
1979
+ msgid "Category:"
1980
+ msgstr ""
1981
+
1982
+ #: ../public/template-tags/general.php:220
1983
+ msgid "Free"
1984
+ msgstr ""
1985
+
1986
+ #: ../views/list.php:50
1987
+ #: ../views/single.php:20
1988
+ msgid "Start:"
1989
+ msgstr ""
1990
+
1991
+ #: ../views/list.php:54
1992
+ #: ../views/single.php:22
1993
+ msgid "End:"
1994
+ msgstr ""
1995
+
1996
+ #: ../views/list.php:59
1997
+ #: ../views/single.php:25
1998
+ msgid "Date:"
1999
+ msgstr ""
2000
+
2001
+ #: ../views/list.php:69
2002
+ #: ../views/single.php:59
2003
+ msgid "Venue:"
2004
+ msgstr ""
2005
+
2006
+ #: ../views/list.php:92
2007
+ #: ../views/single.php:76
2008
+ msgid "Google Map"
2009
+ msgstr ""
2010
+
2011
+ #: ../views/list.php:116
2012
+ #, php-format
2013
+ msgid " listed under %s. Check out past events for this category or view the full calendar."
2014
+ msgstr ""
2015
+
2016
+ #: ../views/list.php:118
2017
+ #, php-format
2018
+ msgid " listed under %s. Check out upcoming events for this category or view the full calendar."
2019
+ msgstr ""
2020
+
2021
+ #: ../views/list.php:123
2022
+ #, php-format
2023
+ msgid "No events scheduled for <strong>%s</strong>. Please try another day."
2024
+ msgstr ""
2025
+
2026
+ #: ../views/list.php:127
2027
+ msgid "No upcoming events"
2028
+ msgstr ""
2029
+
2030
+ #: ../views/list.php:131
2031
+ msgid "No previous events"
2032
+ msgstr ""
2033
+
2034
+ #: ../views/list.php:144
2035
+ #: ../views/list.php:146
2036
+ #: ../views/list.php:148
2037
+ msgid "&laquo; Previous Events"
2038
+ msgstr ""
2039
+
2040
+ #: ../views/list.php:155
2041
+ #: ../views/list.php:157
2042
+ #: ../views/list.php:159
2043
+ msgid "Next Events &raquo;"
2044
+ msgstr ""
2045
+
2046
+ #: ../views/list.php:165
2047
+ #: ../views/gridview.php:43
2048
+ #: ../views/single.php:101
2049
+ msgid "iCal Import"
2050
+ msgstr ""
2051
+
2052
+ #: ../views/ecp-single-template.php:24
2053
+ msgid "Edit"
2054
+ msgstr ""
2055
+
2056
+ #: ../views/events-list-load-widget-display.php:52
2057
+ msgid "All Day"
2058
+ msgstr ""
2059
+
2060
+ #: ../views/table-mini.php:24
2061
+ msgid "View all &raquo;"
2062
+ msgstr ""
2063
+
2064
+ #: ../views/single.php:13
2065
+ msgid "&laquo; Back to Events"
2066
+ msgstr ""
2067
+
2068
+ #: ../views/single.php:14
2069
+ msgid "This event has passed."
2070
+ msgstr ""
2071
+
2072
+ #: ../views/single.php:17
2073
+ msgid "Event:"
2074
+ msgstr ""
2075
+
2076
+ #: ../views/single.php:34
2077
+ #: ../views/single.php:37
2078
+ msgid "Organizer:"
2079
+ msgstr ""
2080
+
2081
+ #: ../views/single.php:48
2082
+ msgid "Updated:"
2083
+ msgstr ""
2084
+
2085
+ #: ../views/single.php:51
2086
+ msgid "Schedule:"
2087
+ msgstr ""
2088
+
2089
+ #: ../views/single.php:76
2090
+ msgid "Click to view a Google Map"
2091
+ msgstr ""
2092
+
2093
+ #: ../views/single.php:104
2094
+ msgid "Add to Google Calendar"
2095
+ msgstr ""
2096
+
2097
+ #: ../views/single.php:104
2098
+ msgid "+ Google Calendar"
2099
  msgstr ""
2100
 
lib/the-events-calendar.class.php CHANGED
@@ -16,14 +16,16 @@ if ( !class_exists( 'TribeEvents' ) ) {
16
  const VENUE_POST_TYPE = 'tribe_venue';
17
  const ORGANIZER_POST_TYPE = 'tribe_organizer';
18
  const PLUGIN_DOMAIN = 'tribe-events-calendar';
19
- const VERSION = '2.0.1';
20
  const FEED_URL = 'http://tri.be/category/products/feed/';
21
 
22
  protected $postTypeArgs = array(
23
  'public' => true,
24
  'rewrite' => array('slug' => 'event', 'with_front' => false),
25
  'menu_position' => 6,
26
- 'supports' => array('title','editor','excerpt','author','thumbnail')
 
 
27
  );
28
  protected $postVenueTypeArgs = array(
29
  'public' => true,
@@ -31,15 +33,19 @@ if ( !class_exists( 'TribeEvents' ) ) {
31
  'show_ui' => true,
32
  'show_in_menu' => 0,
33
  'supports' => array('title', 'editor'),
 
 
34
  'exclude_from_search' => true
35
  );
36
  protected $postOrganizerTypeArgs = array(
37
  'public' => true,
38
  'rewrite' => false,
39
  'show_ui' => true,
40
- 'show_in_menu' => 0,
41
  'menu_position' => 6,
42
  'supports' => array(''),
 
 
43
  'exclude_from_search' => true
44
  );
45
  protected $taxonomyLabels;
@@ -501,7 +507,32 @@ if ( !class_exists( 'TribeEvents' ) ) {
501
  register_post_type(self::POSTTYPE, $this->postTypeArgs);
502
  register_post_type(self::VENUE_POST_TYPE, $this->postVenueTypeArgs);
503
  register_post_type(self::ORGANIZER_POST_TYPE, $this->postOrganizerTypeArgs);
504
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
505
  register_taxonomy( self::TAXONOMY, self::POSTTYPE, array(
506
  'hierarchical' => true,
507
  'update_count_callback' => '',
@@ -740,7 +771,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
740
  if ( isset($_POST['saveEventsCalendarOptions']) && check_admin_referer('saveEventsCalendarOptions') ) {
741
  $options = self::getOptions();
742
  $options['viewOption'] = $_POST['viewOption'];
743
- if($_POST['defaultCountry']) {
744
  $countries = TribeEventsViewHelpers::constructCountries();
745
  $defaultCountryKey = array_search( $_POST['defaultCountry'], $countries );
746
  $options['defaultCountry'] = array( $defaultCountryKey, $_POST['defaultCountry'] );
@@ -752,7 +783,13 @@ if ( !class_exists( 'TribeEvents' ) ) {
752
  }
753
 
754
  // single event cannot be same as plural. Or empty.
755
- if ( $_POST['singleEventSlug'] === $_POST['eventsSlug'] || empty($_POST['singleEventSlug']) ) {
 
 
 
 
 
 
756
  $_POST['singleEventSlug'] = 'event';
757
  }
758
 
@@ -1137,7 +1174,12 @@ if ( !class_exists( 'TribeEvents' ) ) {
1137
  return esc_url($this->uglyLink($type, $secondary));
1138
  }
1139
 
1140
- $eventUrl = trailingslashit( home_url() . '/' . $this->rewriteSlug );
 
 
 
 
 
1141
 
1142
  // if we're on an Event Cat, show the cat link, except for home.
1143
  if ( $type !== 'home' && is_tax( self::TAXONOMY ) ) {
@@ -1356,7 +1398,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
1356
  if($date == '')
1357
  return date(TribeDateUtils::DBDATEFORMAT);
1358
 
1359
- $date = str_replace( array('-','/',' ',':','–','—','-'), '-', $date );
1360
  // ensure no extra bits are added
1361
  list($year, $month, $day) = explode('-', $date);
1362
 
@@ -1397,13 +1439,16 @@ if ( !class_exists( 'TribeEvents' ) ) {
1397
  return;
1398
  }
1399
  // don't do anything on autosave or auto-draft either or massupdates
1400
- if ( wp_is_post_autosave( $postId ) || $post->post_status == 'auto-draft' || isset($_GET['bulk_edit']) || $_REQUEST['action'] == 'inline-save' ) {
1401
  return;
1402
  }
1403
 
1404
  // remove these actions even if nonce is not set
1405
  remove_action( 'save_post', array( $this, 'save_venue_data' ), 16, 2 );
1406
  remove_action( 'save_post', array( $this, 'save_organizer_data' ), 16, 2 );
 
 
 
1407
 
1408
  if ( !wp_verify_nonce( $_POST['ecp_nonce'], TribeEvents::POSTTYPE ) )
1409
  return;
@@ -1434,7 +1479,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
1434
  // are not venue posts
1435
  if ( wp_is_post_autosave( $postID ) || $post->post_status == 'auto-draft' ||
1436
  isset($_GET['bulk_edit']) || $_REQUEST['action'] == 'inline-save' ||
1437
- !$_POST['venue'] ||
1438
  ($post->post_type != self::VENUE_POST_TYPE && $postID)) {
1439
  return;
1440
  }
@@ -1470,6 +1515,9 @@ if ( !class_exists( 'TribeEvents' ) ) {
1470
  // Or inline saves, or data being posted without a organizer Or
1471
  // finally, called from the save_post action, but on save_posts that
1472
  // are not organizer posts
 
 
 
1473
  if ( wp_is_post_autosave( $postID ) || $post->post_status == 'auto-draft' ||
1474
  isset($_GET['bulk_edit']) || $_REQUEST['action'] == 'inline-save' ||
1475
  !$_POST['organizer'] ||
@@ -1884,7 +1932,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
1884
  AND ((d1.meta_value = '" .$date . "' AND ID $sign ".$id.") OR
1885
  d1.meta_value $sign '" .$date . "')
1886
  AND $wpdb->posts.post_status = 'publish'
1887
- AND $wpdb->posts.ID != $id
1888
  ORDER BY TIMESTAMP(d1.meta_value) $order, ID $order
1889
  LIMIT 1";
1890
 
@@ -1892,7 +1940,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
1892
  if(is_object($results)) {
1893
  if ( !$anchor ) {
1894
  $anchor = $results->post_title;
1895
- } elseif ( strpos( $anchor, '%title%' ) ) {
1896
  $anchor = preg_replace( '|%title%|', $results->post_title, $anchor );
1897
  }
1898
 
@@ -1913,12 +1961,12 @@ if ( !class_exists( 'TribeEvents' ) ) {
1913
  }
1914
 
1915
  public function dashboardWidget() {
1916
- wp_add_dashboard_widget( 'tribe_dashboard_widget', __( 'News from Tribe Pro' ), array( $this, 'outputDashboardWidget' ) );
1917
  }
1918
 
1919
  public function outputDashboardWidget() {
1920
  echo '<div class="rss-widget">';
1921
- wp_widget_rss_output( self::FEED_URL );
1922
  echo "</div>";
1923
  }
1924
 
16
  const VENUE_POST_TYPE = 'tribe_venue';
17
  const ORGANIZER_POST_TYPE = 'tribe_organizer';
18
  const PLUGIN_DOMAIN = 'tribe-events-calendar';
19
+ const VERSION = '2.0.2';
20
  const FEED_URL = 'http://tri.be/category/products/feed/';
21
 
22
  protected $postTypeArgs = array(
23
  'public' => true,
24
  'rewrite' => array('slug' => 'event', 'with_front' => false),
25
  'menu_position' => 6,
26
+ 'supports' => array('title','editor','excerpt','author','thumbnail'),
27
+ //'capability_type' => array('tribe_event', 'tribe_events'),
28
+ //'map_meta_cap' => TRUE,
29
  );
30
  protected $postVenueTypeArgs = array(
31
  'public' => true,
33
  'show_ui' => true,
34
  'show_in_menu' => 0,
35
  'supports' => array('title', 'editor'),
36
+ //'capability_type' => array('tribe_venue', 'tribe_venues'),
37
+ //'map_meta_cap' => TRUE,
38
  'exclude_from_search' => true
39
  );
40
  protected $postOrganizerTypeArgs = array(
41
  'public' => true,
42
  'rewrite' => false,
43
  'show_ui' => true,
44
+ 'show_in_menu' => 0,
45
  'menu_position' => 6,
46
  'supports' => array(''),
47
+ //'capability_type' => array('tribe_organizer', 'tribe_organizers'),
48
+ //'map_meta_cap' => TRUE,
49
  'exclude_from_search' => true
50
  );
51
  protected $taxonomyLabels;
507
  register_post_type(self::POSTTYPE, $this->postTypeArgs);
508
  register_post_type(self::VENUE_POST_TYPE, $this->postVenueTypeArgs);
509
  register_post_type(self::ORGANIZER_POST_TYPE, $this->postOrganizerTypeArgs);
510
+
511
+ $role = get_role( 'administrator' );
512
+ $role->add_cap( 'edit_tribe_event' );
513
+ $role->add_cap( 'read_tribe_event' );
514
+ $role->add_cap( 'delete_tribe_event' );
515
+ $role->add_cap( 'edit_tribe_events' );
516
+ $role->add_cap( 'edit_others_tribe_events' );
517
+ $role->add_cap( 'publish_tribe_events' );
518
+ $role->add_cap( 'read_private_tribe_events' );
519
+
520
+ $role->add_cap( 'edit_tribe_venue' );
521
+ $role->add_cap( 'read_tribe_venue' );
522
+ $role->add_cap( 'delete_tribe_venue' );
523
+ $role->add_cap( 'edit_tribe_venues' );
524
+ $role->add_cap( 'edit_others_tribe_venues' );
525
+ $role->add_cap( 'publish_tribe_venues' );
526
+ $role->add_cap( 'read_private_tribe_venues' );
527
+
528
+ $role->add_cap( 'edit_tribe_organizer' );
529
+ $role->add_cap( 'read_tribe_organizer' );
530
+ $role->add_cap( 'delete_tribe_organizer' );
531
+ $role->add_cap( 'edit_tribe_organizers' );
532
+ $role->add_cap( 'edit_others_tribe_organizers' );
533
+ $role->add_cap( 'publish_tribe_organizers' );
534
+ $role->add_cap( 'read_private_tribe_organizers' );
535
+
536
  register_taxonomy( self::TAXONOMY, self::POSTTYPE, array(
537
  'hierarchical' => true,
538
  'update_count_callback' => '',
771
  if ( isset($_POST['saveEventsCalendarOptions']) && check_admin_referer('saveEventsCalendarOptions') ) {
772
  $options = self::getOptions();
773
  $options['viewOption'] = $_POST['viewOption'];
774
+ if(isset($_POST['defaultCountry']) && $_POST['defaultCountry']) {
775
  $countries = TribeEventsViewHelpers::constructCountries();
776
  $defaultCountryKey = array_search( $_POST['defaultCountry'], $countries );
777
  $options['defaultCountry'] = array( $defaultCountryKey, $_POST['defaultCountry'] );
783
  }
784
 
785
  // single event cannot be same as plural. Or empty.
786
+ if( isset($_POST['singleEventSlug']) && isset($_POST['eventsSlug']) ){
787
+ if ( $_POST['singleEventSlug'] === $_POST['eventsSlug'] ) {
788
+ $_POST['singleEventSlug'] = 'event';
789
+ }
790
+ }
791
+
792
+ if( empty($_POST['singleEventSlug']) ){
793
  $_POST['singleEventSlug'] = 'event';
794
  }
795
 
1174
  return esc_url($this->uglyLink($type, $secondary));
1175
  }
1176
 
1177
+ // account for semi-pretty permalinks
1178
+ if( strpos(get_option('permalink_structure'),"index.php") !== FALSE ) {
1179
+ $eventUrl = trailingslashit( home_url() . '/index.php/' . $this->rewriteSlug );
1180
+ } else {
1181
+ $eventUrl = trailingslashit( home_url() . '/' . $this->rewriteSlug );
1182
+ }
1183
 
1184
  // if we're on an Event Cat, show the cat link, except for home.
1185
  if ( $type !== 'home' && is_tax( self::TAXONOMY ) ) {
1398
  if($date == '')
1399
  return date(TribeDateUtils::DBDATEFORMAT);
1400
 
1401
+ $date = str_replace( array('-','/',' ',':',chr(150),chr(151),chr(45)), '-', $date );
1402
  // ensure no extra bits are added
1403
  list($year, $month, $day) = explode('-', $date);
1404
 
1439
  return;
1440
  }
1441
  // don't do anything on autosave or auto-draft either or massupdates
1442
+ if ( wp_is_post_autosave( $postId ) || $post->post_status == 'auto-draft' || isset($_GET['bulk_edit']) || (isset($_REQUEST['action']) && $_REQUEST['action'] == 'inline-save') ) {
1443
  return;
1444
  }
1445
 
1446
  // remove these actions even if nonce is not set
1447
  remove_action( 'save_post', array( $this, 'save_venue_data' ), 16, 2 );
1448
  remove_action( 'save_post', array( $this, 'save_organizer_data' ), 16, 2 );
1449
+
1450
+ if( !isset($_POST['ecp_nonce']) )
1451
+ return;
1452
 
1453
  if ( !wp_verify_nonce( $_POST['ecp_nonce'], TribeEvents::POSTTYPE ) )
1454
  return;
1479
  // are not venue posts
1480
  if ( wp_is_post_autosave( $postID ) || $post->post_status == 'auto-draft' ||
1481
  isset($_GET['bulk_edit']) || $_REQUEST['action'] == 'inline-save' ||
1482
+ (isset($_POST['venue']) && !$_POST['venue']) ||
1483
  ($post->post_type != self::VENUE_POST_TYPE && $postID)) {
1484
  return;
1485
  }
1515
  // Or inline saves, or data being posted without a organizer Or
1516
  // finally, called from the save_post action, but on save_posts that
1517
  // are not organizer posts
1518
+
1519
+ if( !isset($_POST['organizer']) ) $_POST['organizer'] = null;
1520
+
1521
  if ( wp_is_post_autosave( $postID ) || $post->post_status == 'auto-draft' ||
1522
  isset($_GET['bulk_edit']) || $_REQUEST['action'] == 'inline-save' ||
1523
  !$_POST['organizer'] ||
1932
  AND ((d1.meta_value = '" .$date . "' AND ID $sign ".$id.") OR
1933
  d1.meta_value $sign '" .$date . "')
1934
  AND $wpdb->posts.post_status = 'publish'
1935
+ AND ($wpdb->posts.ID != $id OR d1.meta_value != '$date')
1936
  ORDER BY TIMESTAMP(d1.meta_value) $order, ID $order
1937
  LIMIT 1";
1938
 
1940
  if(is_object($results)) {
1941
  if ( !$anchor ) {
1942
  $anchor = $results->post_title;
1943
+ } elseif ( strpos( $anchor, '%title%' ) !== false ) {
1944
  $anchor = preg_replace( '|%title%|', $results->post_title, $anchor );
1945
  }
1946
 
1961
  }
1962
 
1963
  public function dashboardWidget() {
1964
+ wp_add_dashboard_widget( 'tribe_dashboard_widget', __( 'News from Modern Tribe' ), array( $this, 'outputDashboardWidget' ) );
1965
  }
1966
 
1967
  public function outputDashboardWidget() {
1968
  echo '<div class="rss-widget">';
1969
+ wp_widget_rss_output( self::FEED_URL, array( 'items' => 10 ) );
1970
  echo "</div>";
1971
  }
1972
 
lib/tribe-event-api.class.php CHANGED
@@ -8,6 +8,13 @@ if ( !defined('ABSPATH') ) { die('-1'); }
8
 
9
  if (!class_exists('TribeEventsAPI')) {
10
  class TribeEventsAPI {
 
 
 
 
 
 
 
11
 
12
  /**
13
  * Create a new event
@@ -133,9 +140,9 @@ if (!class_exists('TribeEventsAPI')) {
133
  * Creates a new organizer
134
  */
135
  public static function createOrganizer($data) {
136
- if ( isset($data['Organizer']) ) {
137
  $postdata = array(
138
- 'post_title' => $data['Organizer'],
139
  'post_type' => TribeEvents::ORGANIZER_POST_TYPE,
140
  'post_status' => 'publish',
141
  );
@@ -148,7 +155,18 @@ if (!class_exists('TribeEventsAPI')) {
148
  }
149
  }
150
  }
151
-
 
 
 
 
 
 
 
 
 
 
 
152
  /**
153
  * Deletes an organizer
154
  */
@@ -177,9 +195,9 @@ if (!class_exists('TribeEventsAPI')) {
177
  * Creates a new venue
178
  */
179
  public static function createVenue($data) {
180
- if ( $data['Venue'] ) {
181
  $postdata = array(
182
- 'post_title' => $data['Venue'],
183
  'post_type' => TribeEvents::VENUE_POST_TYPE,
184
  'post_status' => 'publish',
185
  );
@@ -192,6 +210,17 @@ if (!class_exists('TribeEventsAPI')) {
192
  }
193
  }
194
  }
 
 
 
 
 
 
 
 
 
 
 
195
 
196
  /**
197
  * Updates a venue
8
 
9
  if (!class_exists('TribeEventsAPI')) {
10
  class TribeEventsAPI {
11
+ public static $valid_venue_keys = array(
12
+ 'Venue', 'Address', 'City', 'Province', 'State', 'StateProvince', 'Zip', 'Phone'
13
+ );
14
+
15
+ public static $valid_organizer_keys = array(
16
+ 'Organizer', 'Phone', 'Email', 'Website'
17
+ );
18
 
19
  /**
20
  * Create a new event
140
  * Creates a new organizer
141
  */
142
  public static function createOrganizer($data) {
143
+ if ( (isset($data['Organizer']) && $data['Organizer']) || self::someOrganizerDataSet($data) ) {
144
  $postdata = array(
145
+ 'post_title' => $data['Organizer'] ? $data['Organizer'] : "Unnamed Organizer",
146
  'post_type' => TribeEvents::ORGANIZER_POST_TYPE,
147
  'post_status' => 'publish',
148
  );
155
  }
156
  }
157
  }
158
+
159
+ /**
160
+ * Check to see if any organizer data set
161
+ */
162
+ private static function someOrganizerDataSet($data) {
163
+ foreach(self::$valid_organizer_keys as $key) {
164
+ if(isset($data[$key]) && $data[$key]) return true;
165
+ }
166
+
167
+ return false;
168
+ }
169
+
170
  /**
171
  * Deletes an organizer
172
  */
195
  * Creates a new venue
196
  */
197
  public static function createVenue($data) {
198
+ if ( (isset($data['Venue']) && $data['Venue']) || self::someVenueDataSet($data) ) {
199
  $postdata = array(
200
+ 'post_title' => $data['Venue'] ? $data['Venue'] : "Unnamed Venue",
201
  'post_type' => TribeEvents::VENUE_POST_TYPE,
202
  'post_status' => 'publish',
203
  );
210
  }
211
  }
212
  }
213
+
214
+ /**
215
+ * Check to see if any venue data set
216
+ */
217
+ private static function someVenueDataSet($data) {
218
+ foreach(self::$valid_venue_keys as $key) {
219
+ if( isset($data[$key]) && $data[$key]) return true;
220
+ }
221
+
222
+ return false;
223
+ }
224
 
225
  /**
226
  * Updates a venue
lib/tribe-templates.class.php CHANGED
@@ -134,7 +134,7 @@ if (!class_exists('TribeEventsTemplates')) {
134
  $tribe_ecp = TribeEvents::instance();
135
 
136
  remove_filter('comments_template', array(__CLASS__, 'load_ecp_comments_page_template') );
137
- if (!is_single() || tribe_is_showing_all() || (tribe_get_option('showComments','no') == 'no')) {
138
  return $tribe_ecp->pluginPath . 'admin-views/no-comments.php';
139
  }
140
  return $template;
134
  $tribe_ecp = TribeEvents::instance();
135
 
136
  remove_filter('comments_template', array(__CLASS__, 'load_ecp_comments_page_template') );
137
+ if (!is_single() || tribe_is_showing_all() || (tribe_get_option('showComments',false) === false)) {
138
  return $tribe_ecp->pluginPath . 'admin-views/no-comments.php';
139
  }
140
  return $template;
lib/tribe-the-events-calendar-import.class.php CHANGED
@@ -41,7 +41,7 @@ if (!class_exists('TribeEventsImport')) {
41
  public function promptUpgrade() {
42
  if ( self::hasLegacyEvents() ) {
43
  echo '<div class="error"><p>' .
44
- __('Welcome to Events 2.0! This is a HUGE upgrade from 1.6.5. Please make sure you have backed up before proceeding any further. You can easily <a href=" http://wordpress.org/extend/plugins/the-events-calendar/download/">revert to an old version</a> if you want to backup first. This upgrade includes two major steps, <a href="options-general.php?page=tribe-events-calendar">migrating data</a> & updating your templates as necessary. There have been significant changes to the template tags and functions. Check out our <a href="http://tri.be/migrating-from-events-calendar-1-6-5-to-2-0">walkthrough on the upgrade</a> before proceeding and check out the FAQ & Knowledge base from the <a href="http://tri.be/support/">support page</a>.<br/><br/> You have events that need to be migrated. Please visit the bottom of the <a href="options-general.php?page=tribe-events-calendar">settings page</a> to perform the migration.', 'tribe-events-calendar') .
45
  '</p></div>';
46
  }
47
  }
41
  public function promptUpgrade() {
42
  if ( self::hasLegacyEvents() ) {
43
  echo '<div class="error"><p>' .
44
+ __('Welcome to Events 2.0! This is a HUGE upgrade from 1.6.5. Please make sure you have backed up before proceeding any further. You can easily <a href=" http://wordpress.org/extend/plugins/the-events-calendar/download/">revert to an old version</a> if you want to backup first. This upgrade includes two major steps, <a href="options-general.php?page=tribe-events-calendar">migrating data</a> & updating your templates as necessary. There have been significant changes to the template tags and functions. Check out our <a href="http://tri.be/migrating-from-events-calendar-1-6-5-to-2-0">walkthrough on the upgrade</a> before proceeding and check out the FAQ & Knowledge base from the <a href="http://tri.be/support/">support page</a>. If you\'re new to The Events Calendar, you may want to review our <a href="http://tri.be/support/documentation/events-calendar-pro-new-user-primer/">new user primer</a>.<br/><br/> You have events that need to be migrated. Please visit the bottom of the <a href="options-general.php?page=tribe-events-calendar">settings page</a> to perform the migration.', 'tribe-events-calendar') .
45
  '</p></div>';
46
  }
47
  }
public/template-tags/date.php CHANGED
@@ -33,7 +33,11 @@ if( class_exists( 'TribeEvents' ) ) {
33
  if( tribe_get_all_day( $postId ) )
34
  $displayTime = false;
35
 
36
- $date = strtotime( $post->EventStartDate ? $post->EventStartDate : tribe_get_event_meta( $postId, '_EventStartDate', true ));
 
 
 
 
37
 
38
  return tribe_event_format_date($date, $displayTime, $dateFormat );
39
  }
@@ -61,7 +65,11 @@ if( class_exists( 'TribeEvents' ) ) {
61
  if( tribe_get_all_day( $postId ) )
62
  $displayTime = false;
63
 
64
- $date = strtotime( $post->EventEndDate ? $post->EventEndDate : tribe_get_event_meta( $postId, '_EventEndDate', true ));
 
 
 
 
65
 
66
  return tribe_event_format_date($date, $displayTime, $dateFormat );
67
  }
33
  if( tribe_get_all_day( $postId ) )
34
  $displayTime = false;
35
 
36
+ if( isset($post->EventStartDate) ){
37
+ $date = strtotime( $post->EventStartDate ? $post->EventStartDate : tribe_get_event_meta( $postId, '_EventStartDate', true ));
38
+ }else{
39
+ return; // '&mdash;';
40
+ }
41
 
42
  return tribe_event_format_date($date, $displayTime, $dateFormat );
43
  }
65
  if( tribe_get_all_day( $postId ) )
66
  $displayTime = false;
67
 
68
+ if( isset($post->EventEndDate) ){
69
+ $date = strtotime( $post->EventEndDate ? $post->EventEndDate : tribe_get_event_meta( $postId, '_EventEndDate', true ));
70
+ }else{
71
+ return; // '&mdash;';
72
+ }
73
 
74
  return tribe_event_format_date($date, $displayTime, $dateFormat );
75
  }
public/template-tags/general.php CHANGED
@@ -224,6 +224,30 @@ if( class_exists( 'TribeEvents' ) ) {
224
 
225
  return apply_filters( 'tribe_get_cost', $cost );
226
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
227
 
228
  }
229
  ?>
224
 
225
  return apply_filters( 'tribe_get_cost', $cost );
226
  }
227
+
228
+ /**
229
+ * Event in Category Conditional
230
+ *
231
+ * Returns true if the event is in the specified catagory slug
232
+ *
233
+ * @param string $event_cat_slug
234
+ * @param int $event_id
235
+ * @return boolean
236
+ * @since 2.0.2
237
+ */
238
+ function tribe_event_in_category($event_cat_slug, $event_id = null){
239
+
240
+ if( empty($event_id) )
241
+ $event_id = get_the_ID();
242
+
243
+ $term = term_exists($event_cat_slug, TribeEvents::TAXONOMY);
244
+
245
+ if ( tribe_is_event($event_id) && is_object_in_term($event_id, TribeEvents::TAXONOMY, array( $term['term_id'] ) ) ) {
246
+ return true;
247
+ }else{
248
+ return false;
249
+ }
250
+ }
251
 
252
  }
253
  ?>
public/template-tags/link.php CHANGED
@@ -130,9 +130,9 @@ if( class_exists( 'TribeEvents' ) ) {
130
  * @return string
131
  * @since 2.0
132
  */
133
- function tribe_get_event_link($post = null) {
134
- return apply_filters( 'tribe_get_event_link', TribeEvents::instance()->getLink('single', $post), $post );
135
  }
136
 
137
  }
138
- ?>
130
  * @return string
131
  * @since 2.0
132
  */
133
+ function tribe_get_event_link($event = null) {
134
+ return apply_filters( 'tribe_get_event_link', TribeEvents::instance()->getLink('single', $event), $event );
135
  }
136
 
137
  }
138
+ ?>
public/template-tags/organizer.php CHANGED
@@ -44,7 +44,7 @@ if( class_exists( 'TribeEvents' ) ) {
44
  */
45
  function tribe_get_organizer( $postId = null) {
46
  $postId = TribeEvents::postIdHelper( $postId );
47
- $output = esc_html(tribe_get_event_meta( tribe_get_organizer_id( $postId ), '_OrganizerOrganizer', true ));
48
  return apply_filters( 'tribe_get_organizer', $output );
49
  }
50
 
@@ -83,14 +83,16 @@ if( class_exists( 'TribeEvents' ) ) {
83
  * Returns the event Organizer Name with a link to their supplied website url
84
  *
85
  * @param int $postId Can supply either event id or organizer id, if none specified, current post is used
86
- * @param bool $display If true displays full html links around organizers name, if false returns just the link without displaying it
 
87
  * @return string Organizer Name and Url
88
  * @since 2.0
89
  */
90
- function tribe_get_organizer_link( $postId = null, $display = true ) {
91
  $postId = TribeEvents::postIdHelper( $postId );
92
  $url = esc_url(tribe_get_event_meta( tribe_get_organizer_id( $postId ), '_OrganizerWebsite', true ));
93
- if( $display && $url != '' ) {
 
94
  $organizer_name = tribe_get_organizer($postId);
95
  $link = '<a href="'.$url.'">'.$organizer_name.'</a>';
96
  } else {
@@ -120,4 +122,4 @@ if( class_exists( 'TribeEvents' ) ) {
120
  }
121
 
122
  }
123
- ?>
44
  */
45
  function tribe_get_organizer( $postId = null) {
46
  $postId = TribeEvents::postIdHelper( $postId );
47
+ $output = esc_html(get_the_title( tribe_get_organizer_id( $postId ) ));
48
  return apply_filters( 'tribe_get_organizer', $output );
49
  }
50
 
83
  * Returns the event Organizer Name with a link to their supplied website url
84
  *
85
  * @param int $postId Can supply either event id or organizer id, if none specified, current post is used
86
+ * @param bool $full_link If true displays full html links around organizers name, if false returns just the link without displaying it
87
+ * @param bool $display If true, echo the link, otherwise return
88
  * @return string Organizer Name and Url
89
  * @since 2.0
90
  */
91
+ function tribe_get_organizer_link( $postId = null, $full_link = true, $display = true ) {
92
  $postId = TribeEvents::postIdHelper( $postId );
93
  $url = esc_url(tribe_get_event_meta( tribe_get_organizer_id( $postId ), '_OrganizerWebsite', true ));
94
+
95
+ if( $full_link && $url != '' ) {
96
  $organizer_name = tribe_get_organizer($postId);
97
  $link = '<a href="'.$url.'">'.$organizer_name.'</a>';
98
  } else {
122
  }
123
 
124
  }
125
+ ?>
readme.txt CHANGED
@@ -4,8 +4,8 @@ Contributors: Shane Pearlman (shane.pearlman), Peter Chester (peterchester), Joh
4
  Tags: modern tribe, tribe, widget, events, tooltips, grid, month, list, calendar, recurring, event, venue, eventbrite, registration, tickets, ticketing, eventbright, api, dates, date, plugin, posts, sidebar, template, theme, time, google maps, conference, workshop, concert, meeting, seminar, summit, forum, shortcode
5
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QA7QZM4CNQ342
6
  Requires at least: 3.1
7
- Tested up to: 3.2.1
8
- Stable tag: 2.0.1
9
 
10
  == Description ==
11
 
@@ -13,6 +13,8 @@ IMPORTANT NOTICE: If you are upgrading from a previous version of The Events Cal
13
 
14
  The Events Calendar plugin enables you to rapidly create and manage events. Features include Google Maps integration as well as default templates such as a calendar grid and event list, widget and so much more. Looking for recurring events, the ability to sell tickets, manage conference schedules, accept user submitted events automatically and more? Check out the <a href="http://tri.be/products/?ref=tec-readme">available premium and community add-ons</a>. Have questions or looking to get help from our active user community, <a href="https://www.facebook.com/ModernTribeInc">join us on Facebook</a>, sign up for our newsletter (bottom of the home page) or check out <a href="http://tri.be/support/?ref=tec-readme">our support page</a>. Please note that while we are actively supporting this plugin, we don't provide support for non-paying users.
15
 
 
 
16
  = The Events Calendar 2.0 =
17
 
18
  * Event custom post type
@@ -57,6 +59,9 @@ The Events Calendar plugin enables you to rapidly create and manage events. Feat
57
  1. Update your permalinks to ensure that the event specific rewrite rules take effect.
58
  1. If you have trouble installing, see the [Codex](http://codex.wordpress.org/Managing_Plugins#Manual_Plugin_Installation) for more helpful info.
59
 
 
 
 
60
  = Activate =
61
 
62
  No setup required. Just plug and play!
@@ -72,9 +77,47 @@ For template tags, you can view our template tag includes in the "public" folder
72
 
73
  == Changelog ==
74
 
75
- = 2.0.1 =
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76
 
 
77
  Small features, UX and Content Tweeks:
 
78
  * Enabled method to turn off event upsell messages on your site in wp-config.php - define( 'TRIBE_HIDE_UPSELL', true );
79
  * Updated migration message to help 1.6.5 users have an easier time when they upgrade to 2.0
80
  * Added a "View my events" link in the settings panel to help users find where the calendar lives
@@ -84,6 +127,7 @@ Small features, UX and Content Tweeks:
84
  * Added and updated documentation on http://tri.be/support/documentation/
85
 
86
  Bugs:
 
87
  * Added "00" in the time drop down when in 24 hour mode
88
  * Updated default end time to "17" for 24 hour mode
89
  * Fixed broken link in the "you need events 2.0 open source" on activation for PRO users.
@@ -99,5 +143,9 @@ Bugs:
99
  * Venue / Organizer data not saving for certain cases of recurrence fixed.
100
 
101
  = 2.0 =
 
 
 
102
 
103
- This is such a major re-write that we are starting the change log over.
 
4
  Tags: modern tribe, tribe, widget, events, tooltips, grid, month, list, calendar, recurring, event, venue, eventbrite, registration, tickets, ticketing, eventbright, api, dates, date, plugin, posts, sidebar, template, theme, time, google maps, conference, workshop, concert, meeting, seminar, summit, forum, shortcode
5
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QA7QZM4CNQ342
6
  Requires at least: 3.1
7
+ Tested up to: 3.3
8
+ Stable tag: 2.0.2
9
 
10
  == Description ==
11
 
13
 
14
  The Events Calendar plugin enables you to rapidly create and manage events. Features include Google Maps integration as well as default templates such as a calendar grid and event list, widget and so much more. Looking for recurring events, the ability to sell tickets, manage conference schedules, accept user submitted events automatically and more? Check out the <a href="http://tri.be/products/?ref=tec-readme">available premium and community add-ons</a>. Have questions or looking to get help from our active user community, <a href="https://www.facebook.com/ModernTribeInc">join us on Facebook</a>, sign up for our newsletter (bottom of the home page) or check out <a href="http://tri.be/support/?ref=tec-readme">our support page</a>. Please note that while we are actively supporting this plugin, we don't provide support for non-paying users.
15
 
16
+ Just getting started? Check out our <a href="http://tri.be/support/documentation/events-calendar-pro-new-user-primer/?ref=tec-readme">new user primer!</a>
17
+
18
  = The Events Calendar 2.0 =
19
 
20
  * Event custom post type
59
  1. Update your permalinks to ensure that the event specific rewrite rules take effect.
60
  1. If you have trouble installing, see the [Codex](http://codex.wordpress.org/Managing_Plugins#Manual_Plugin_Installation) for more helpful info.
61
 
62
+ For more information, check out our <a href="http://tri.be/support/documentation/events-calendar-pro-new-user-primer/?ref=tec-readme">new user primer!</a>
63
+
64
+
65
  = Activate =
66
 
67
  No setup required. Just plug and play!
77
 
78
  == Changelog ==
79
 
80
+ = 2.0.2 =
81
+ Small features, UX and Content Tweaks:
82
+
83
+ * Added link to new user primer (http://tri.be/support/documentation/events-calendar-pro-new-user-primer?ref=tec-readme) to the activation message.
84
+ * Added tribe_is_event_in_category conditional to plugin code base.
85
+ * Plugin now adds a default role when registering custom post types.
86
+ * Russian language files incorporated (free & PRO) from Mikhail Michouris
87
+ * Dutch translation files incorporated (free only) from Rick van Dalen
88
+ * Danish translation files incorporated (PRO only) from Christian Andersen
89
+ * Italian translation files incorporated (free & PRO) from Stefano Castelli
90
+
91
+ Bugs:
92
+
93
+ * Months will now show appropriate day count, instead of 31 days as they were previously.
94
+ * Custom recurring events previously not showing start AND end time (just start time); now are showing both.
95
+ * Hack to include events in your main loop no longer causes event link to vanish.
96
+ * Fixed issue of recurrence settings changing upon publication.
97
+ * Fixed other bug related to recurrence details showing incorrect date/time.
98
+ * General bugs with weekly recurrence have been squashed.
99
+ * Admin page should no longer hang when updating a recurring event.
100
+ * Breadcrumbs will now show the correct slug info on Thesis.
101
+ * Not entering a name for an organizer or venue doesn’t stop it from publishing, as it did previously.
102
+ * Admin events list now appears with soonest event at the top, not the bottom.
103
+ * Deleting instances of recurrence now works within individual entries.
104
+ * Unnamed venue/organizer now created when no venue or organizer name added.
105
+ * Featured image no longer overlaps the map on individual entries in the default 2011 theme.
106
+ * Custom recurrence events weren't previously showing end time on the frontend; they will now.
107
+ * Comments box now appears on the default page template (was previously only on default events template).
108
+ * Minor change to line 1835 of the-events-calendar.class.php.
109
+ * Incorporated patch to include file name in permalink for users running the plugin on shared IIS servers.
110
+ * Changes to incorrect tag on lines 58, 60 & 62 in views/single.php.
111
+ * Next/Previous link in recurring & standalone events both work fine.
112
+ * General display tweaks to Calendar widget (wasn't showing future events previously, and CSS was screwy)
113
+ * Renamed the dashboard Tribe newsfeed widget to conform with rebranding efforts.
114
+ * Worked to better display comments in Thesis & Genesis themes.
115
+ * General display bugs related to the WP 3.3 beta.
116
+ * Fixed general PHP notices that appeared with debug turned on in your wp-config file.
117
 
118
+ = 2.0.1 =
119
  Small features, UX and Content Tweeks:
120
+
121
  * Enabled method to turn off event upsell messages on your site in wp-config.php - define( 'TRIBE_HIDE_UPSELL', true );
122
  * Updated migration message to help 1.6.5 users have an easier time when they upgrade to 2.0
123
  * Added a "View my events" link in the settings panel to help users find where the calendar lives
127
  * Added and updated documentation on http://tri.be/support/documentation/
128
 
129
  Bugs:
130
+
131
  * Added "00" in the time drop down when in 24 hour mode
132
  * Updated default end time to "17" for 24 hour mode
133
  * Fixed broken link in the "you need events 2.0 open source" on activation for PRO users.
143
  * Venue / Organizer data not saving for certain cases of recurrence fixed.
144
 
145
  = 2.0 =
146
+ This is such a major re-write that we are starting the change log over.
147
+
148
+ == Upgrade Notice ==
149
 
150
+ = 2.0.2 =
151
+ 2.0.2 is a minor bug patch for 2.0. Are you upgrading from 1.6.5? Events 2.0 is a MAJOR upgrade, please backup your data and plan a little time in case you have to make any theme edits. Check out the upgrade tutorials in support on the tri.be website.
resources/events-admin-ui.css CHANGED
@@ -13,4 +13,4 @@
13
  }
14
  .ui-datepicker thead tr th {
15
  font-size:10px;
16
- }
13
  }
14
  .ui-datepicker thead tr th {
15
  font-size:10px;
16
+ }
resources/events.css CHANGED
@@ -200,11 +200,11 @@ table.tribe-events-calendar, .tribe-events-calendar td {
200
  font-size:11px;
201
  font-weight:bold;
202
  }
203
- .tribe-events-calendar td.tribe-events-present .daynum, .tribe-events-calendar td.tribe-events-present .daynum a {
204
  background-color: #666;
205
  color: #fff;
206
  }
207
- .tribe-events-calendar td.tribe-events-past .daynum, .tribe-events-calendar td.tribe-events-past .daynum a {
208
  color: #999;
209
  }
210
  .tribe-events-calendar th {
@@ -315,7 +315,7 @@ table.tribe-events-calendar, .tribe-events-calendar td {
315
  }
316
  #tribe-events-event-meta .column {
317
  float:left;
318
- width:45%;
319
  padding:0 4% 0 0;
320
  text-align:left;
321
  margin:0;
@@ -516,4 +516,4 @@ h4 .tribe-view-all-events {
516
  }
517
  *+html #tribe-events-calendar-header {
518
  margin-bottom:30px;
519
- }
200
  font-size:11px;
201
  font-weight:bold;
202
  }
203
+ .tribe-events-calendar td.tribe-events-present .daynum, .tribe-events-calendar td.tribe-events-present .daynum > a {
204
  background-color: #666;
205
  color: #fff;
206
  }
207
+ .tribe-events-calendar td.tribe-events-past .daynum, .tribe-events-calendar td.tribe-events-past .daynum > a {
208
  color: #999;
209
  }
210
  .tribe-events-calendar th {
315
  }
316
  #tribe-events-event-meta .column {
317
  float:left;
318
+ width:30%;
319
  padding:0 4% 0 0;
320
  text-align:left;
321
  margin:0;
516
  }
517
  *+html #tribe-events-calendar-header {
518
  margin-bottom:30px;
519
+ }
resources/smoothness/jquery-ui-1.7.3.custom.css CHANGED
@@ -289,7 +289,7 @@
289
  .ui-datepicker .ui-datepicker-prev-hover { left:1px; }
290
  .ui-datepicker .ui-datepicker-next-hover { right:1px; }
291
  .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; }
292
- .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
293
  .ui-datepicker .ui-datepicker-title select { float:left; font-size:1em; margin:1px 0; }
294
  .ui-datepicker select.ui-datepicker-month-year {width: 100%;}
295
  .ui-datepicker select.ui-datepicker-month,
289
  .ui-datepicker .ui-datepicker-prev-hover { left:1px; }
290
  .ui-datepicker .ui-datepicker-next-hover { right:1px; }
291
  .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; }
292
+ .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; height: 24px; }
293
  .ui-datepicker .ui-datepicker-title select { float:left; font-size:1em; margin:1px 0; }
294
  .ui-datepicker select.ui-datepicker-month-year {width: 100%;}
295
  .ui-datepicker select.ui-datepicker-month,
the-events-calendar.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: The Events Calendar
4
  Description: The Events Calendar open source plugin empowers you to rapidly create and manage events using the post editor. Google Maps, microformats for SEO, calendar grid view and event list view, widgets and much more. <a href="http://tri.be/wordpress-events-calendar/?ref=tec-plugin">Check out the full feature list</a>. Need more features, peruse the selection of Add-Ons.
5
- Version: 2.0.1
6
  Author: Modern Tribe, Inc.
7
  Author URI: http://tri.be?ref=tec-plugin
8
  Text Domain: tribe-events-calendar
2
  /*
3
  Plugin Name: The Events Calendar
4
  Description: The Events Calendar open source plugin empowers you to rapidly create and manage events using the post editor. Google Maps, microformats for SEO, calendar grid view and event list view, widgets and much more. <a href="http://tri.be/wordpress-events-calendar/?ref=tec-plugin">Check out the full feature list</a>. Need more features, peruse the selection of Add-Ons.
5
+ Version: 2.0.2
6
  Author: Modern Tribe, Inc.
7
  Author URI: http://tri.be?ref=tec-plugin
8
  Text Domain: tribe-events-calendar
views/list.php CHANGED
@@ -45,7 +45,7 @@ if ( !defined('ABSPATH') ) { die('-1'); }
45
 
46
  <div class="tribe-events-event-list-meta" itemprop="location" itemscope itemtype="http://schema.org/Place">
47
  <table cellspacing="0">
48
- <?php if (tribe_is_multiday()): ?>
49
  <tr>
50
  <td class="tribe-events-event-meta-desc"><?php _e('Start:', 'tribe-events-calendar') ?></td>
51
  <td class="tribe-events-event-meta-value" itemprop="startDate" content="<?php echo tribe_get_start_date(); ?>"><?php echo tribe_get_start_date(); ?></td>
45
 
46
  <div class="tribe-events-event-list-meta" itemprop="location" itemscope itemtype="http://schema.org/Place">
47
  <table cellspacing="0">
48
+ <?php if (tribe_is_multiday() || !tribe_get_all_day()): ?>
49
  <tr>
50
  <td class="tribe-events-event-meta-desc"><?php _e('Start:', 'tribe-events-calendar') ?></td>
51
  <td class="tribe-events-event-meta-value" itemprop="startDate" content="<?php echo tribe_get_start_date(); ?>"><?php echo tribe_get_start_date(); ?></td>
views/single.php CHANGED
@@ -30,9 +30,12 @@ if ( !defined('ABSPATH') ) { die('-1'); }
30
  <dd itemprop="price"><?php echo tribe_get_cost(); ?></dd>
31
  <?php endif; ?>
32
  <?php tribe_meta_event_cats(); ?>
33
- <?php if ( tribe_get_organizer_link( false, false ) ) : ?>
34
  <dt><?php _e('Organizer:', 'tribe-events-calendar') ?></dt>
35
  <dd class="vcard author"><span class="fn url"><?php echo tribe_get_organizer_link(); ?></span></dd>
 
 
 
36
  <?php endif; ?>
37
  <?php if ( tribe_get_organizer_phone() ) : ?>
38
  <dt><?php _e('Phone:', 'tribe-events-calendar') ?></dt>
@@ -55,11 +58,11 @@ if ( !defined('ABSPATH') ) { die('-1'); }
55
  <?php if(tribe_get_venue()) : ?>
56
  <dt><?php _e('Venue:', 'tribe-events-calendar') ?></dt>
57
  <dd itemprop="name">
58
- <? if( class_exists( 'TribeEventsPro' ) ): ?>
59
  <?php tribe_get_venue_link( get_the_ID(), class_exists( 'TribeEventsPro' ) ); ?>
60
- <? else: ?>
61
  <?php echo tribe_get_venue( get_the_ID() ) ?>
62
- <? endif; ?>
63
  </dd>
64
  <?php endif; ?>
65
  <?php if(tribe_get_phone()) : ?>
30
  <dd itemprop="price"><?php echo tribe_get_cost(); ?></dd>
31
  <?php endif; ?>
32
  <?php tribe_meta_event_cats(); ?>
33
+ <?php if ( tribe_get_organizer_link( get_the_ID(), false, false ) ) : ?>
34
  <dt><?php _e('Organizer:', 'tribe-events-calendar') ?></dt>
35
  <dd class="vcard author"><span class="fn url"><?php echo tribe_get_organizer_link(); ?></span></dd>
36
+ <?php else: ?>
37
+ <dt><?php _e('Organizer:', 'tribe-events-calendar') ?></dt>
38
+ <dd class="vcard author"><span class="fn url"><?php echo tribe_get_organizer(); ?></span></dd>
39
  <?php endif; ?>
40
  <?php if ( tribe_get_organizer_phone() ) : ?>
41
  <dt><?php _e('Phone:', 'tribe-events-calendar') ?></dt>
58
  <?php if(tribe_get_venue()) : ?>
59
  <dt><?php _e('Venue:', 'tribe-events-calendar') ?></dt>
60
  <dd itemprop="name">
61
+ <?php if( class_exists( 'TribeEventsPro' ) ): ?>
62
  <?php tribe_get_venue_link( get_the_ID(), class_exists( 'TribeEventsPro' ) ); ?>
63
+ <?php else: ?>
64
  <?php echo tribe_get_venue( get_the_ID() ) ?>
65
+ <?php endif; ?>
66
  </dd>
67
  <?php endif; ?>
68
  <?php if(tribe_get_phone()) : ?>
views/table.php CHANGED
@@ -53,7 +53,8 @@ $monthView = tribe_sort_by_month( $eventPosts, $tribe_ecp->date );
53
  echo "<td class='tribe-events-othermonth'></td>";
54
  }
55
  // output this month
56
- for( $day = 1; $day <= date("t", intval($date)); $day++ ) {
 
57
  if( ($day + $offset - 1) % 7 == 0 && $day != 1) {
58
  echo "</tr>\n\t<tr>";
59
  $rows++;
53
  echo "<td class='tribe-events-othermonth'></td>";
54
  }
55
  // output this month
56
+ $days_in_month = date("t", intval($date));
57
+ for( $day = 1; $day <= $days_in_month; $day++ ) {
58
  if( ($day + $offset - 1) % 7 == 0 && $day != 1) {
59
  echo "</tr>\n\t<tr>";
60
  $rows++;