Version Description
Small features, UX and Content Tweaks:
- Incorporated get_tribe_custom(Field label) to code base
- Code updated to account for additional translation strings
- Made the $sep param of TribeEvents::maybeAddEventTitle() optional
Bug Fixes:
- Organizer data can now be changed on an already-published entry in core
- tribe_get_start_date() fixed
- Future instances of custom recurrence no longer display inaccurate start/end times
- In views/single.php on lines 58, 60 & 62, changed tag to <? instead of <?php
- Required changes to WP_PLUGIN_URL (line 126) & WP_CONTENT_URL (line 930) in the.events.calendar.class.php
- Deleting a single instance of recurrence in PRO (whether from the list or from within an entry) now works correctly with appropriate prompts/dialogue boxes
- Attempting to change from a saved organizer/venue to no organizer/venue now works
- Venue no longer behaves bizarrely when no address data added
- Fixed issue where event links broke for recurring events whenever a site had permalinks set to default; also fixed general conflicts that occurred when URL rewriting was off
- Customized defaults can now be turned off after being enabled under Settings -> The Events Calendar
- Removed instances where organizer data displayed as event title for some users
- Changes made to custom fields under Settings -> The Events Calendar now take effect upon save
- Non-U.S. states and provinces now save correctly
- General fixes to improve how default venues/organizers function and are modified
- Addressed various PHP notices
Download this release
Release Info
Developer | jkudish |
Plugin | The Events Calendar |
Version | 2.0.3 |
Comparing to | |
See all releases |
Code changes from version 2.0.2 to 2.0.3
- admin-views/events-meta-box.php +1 -2
- admin-views/events-options.php +2 -2
- admin-views/recurrence-dialog.php +1 -1
- admin-views/venue-meta-box.php +4 -2
- lang/tribe-events-calendar.pot +906 -906
- lib/template-tags-deprecated.php +1 -1
- lib/the-events-calendar.class.php +97 -57
- lib/tribe-admin-events-list.class.php +1 -1
- lib/tribe-event-api.class.php +10 -4
- lib/tribe-the-events-calendar-import.class.php +1 -1
- public/template-tags/date.php +8 -2
- public/template-tags/general.php +15 -0
- public/template-tags/organizer.php +6 -2
- readme.txt +46 -15
- resources/events-admin.css +6 -0
- resources/events-admin.js +0 -24
- screenshot-2.jpg +0 -0
- screenshot-3.jpg +0 -0
- screenshot-4.jpg +0 -0
- screenshot-5.jpg +0 -0
- screenshot-6.jpg +0 -0
- the-events-calendar.php +2 -2
- views/ecp-page-template.php +2 -1
- views/gridview.php +1 -2
- views/single.php +3 -3
admin-views/events-meta-box.php
CHANGED
@@ -12,7 +12,6 @@ if ( !defined('ABSPATH') ) { die('-1'); }
|
|
12 |
.eventBritePluginPlug {display:none;}
|
13 |
<?php endif; ?>
|
14 |
</style>
|
15 |
-
<?php require_once('recurrence-dialog.php'); ?>
|
16 |
<div id="eventIntro">
|
17 |
<div id="tribe-events-post-error" class="tribe-events-error error"></div>
|
18 |
<?php $this->do_action('tribe_events_post_errors', $postId, true) ?>
|
@@ -111,7 +110,7 @@ if ( !defined('ABSPATH') ) { die('-1'); }
|
|
111 |
</tr>
|
112 |
<tr>
|
113 |
<td><?php _e('Cost:','tribe-events-calendar'); ?></td>
|
114 |
-
<td><input tabindex="<?php $this->tabIndex(); ?>" type='text' id='EventCost' name='EventCost' size='6' value='<?php echo esc_attr($_EventCost); ?>' /></td>
|
115 |
</tr>
|
116 |
<tr>
|
117 |
<td></td>
|
12 |
.eventBritePluginPlug {display:none;}
|
13 |
<?php endif; ?>
|
14 |
</style>
|
|
|
15 |
<div id="eventIntro">
|
16 |
<div id="tribe-events-post-error" class="tribe-events-error error"></div>
|
17 |
<?php $this->do_action('tribe_events_post_errors', $postId, true) ?>
|
110 |
</tr>
|
111 |
<tr>
|
112 |
<td><?php _e('Cost:','tribe-events-calendar'); ?></td>
|
113 |
+
<td><input tabindex="<?php $this->tabIndex(); ?>" type='text' id='EventCost' name='EventCost' size='6' value='<?php echo (isset($_EventCost)) ? esc_attr($_EventCost) : ''; ?>' /></td>
|
114 |
</tr>
|
115 |
<tr>
|
116 |
<td></td>
|
admin-views/events-options.php
CHANGED
@@ -170,8 +170,8 @@ div.tribe_settings{
|
|
170 |
<td><fieldset>
|
171 |
<legend class="screen-reader-text"><?php _e('Events Template', 'tribe-events-calendar' ); ?></legend>
|
172 |
<select name="spEventsTemplate">
|
173 |
-
<option value=''><?php _e('Default Events Template'); ?></option>
|
174 |
-
<option value='default' <?php selected(tribe_get_option('spEventsTemplate', 'default') == 'default') ?>><?php _e('Default Page Template'); ?></option>
|
175 |
<?php page_template_dropdown(tribe_get_option('spEventsTemplate', 'default')); ?>
|
176 |
</select>
|
177 |
<div><?php _e('Choose a page template to control the look and feel of your calendar.', 'tribe-events-calendar');?> </div>
|
170 |
<td><fieldset>
|
171 |
<legend class="screen-reader-text"><?php _e('Events Template', 'tribe-events-calendar' ); ?></legend>
|
172 |
<select name="spEventsTemplate">
|
173 |
+
<option value=''><?php _e('Default Events Template', 'tribe-events-calendar' ); ?></option>
|
174 |
+
<option value='default' <?php selected(tribe_get_option('spEventsTemplate', 'default') == 'default') ?>><?php _e('Default Page Template', 'tribe-events-calendar' ); ?></option>
|
175 |
<?php page_template_dropdown(tribe_get_option('spEventsTemplate', 'default')); ?>
|
176 |
</select>
|
177 |
<div><?php _e('Choose a page template to control the look and feel of your calendar.', 'tribe-events-calendar');?> </div>
|
admin-views/recurrence-dialog.php
CHANGED
@@ -10,6 +10,6 @@ if ( !defined('ABSPATH') ) { die('-1'); }
|
|
10 |
<div id="recurring-dialog" title="Saving Recurring Event" style="display: none;">
|
11 |
<?php _e('Which events do you wish to update?','tribe-events-calendar'); ?><br/>
|
12 |
</div>
|
13 |
-
<div id="deletion-dialog" title="Delete Recurring Event" style="display: none;" data-start="<?php echo $recStart ?>" data-post="<?php echo $recPost ?>">
|
14 |
<?php _e('Select your desired action','tribe-events-calendar'); ?><br/>
|
15 |
</div>
|
10 |
<div id="recurring-dialog" title="Saving Recurring Event" style="display: none;">
|
11 |
<?php _e('Which events do you wish to update?','tribe-events-calendar'); ?><br/>
|
12 |
</div>
|
13 |
+
<div id="deletion-dialog" title="Delete Recurring Event" style="display: none;" data-start="<?php echo (isset($recStart)) ? $recStart : '' ?>" data-post="<?php echo (isset($recPost)) ? $recPost : '' ?>">
|
14 |
<?php _e('Select your desired action','tribe-events-calendar'); ?><br/>
|
15 |
</div>
|
admin-views/venue-meta-box.php
CHANGED
@@ -32,7 +32,7 @@ if ( !defined('ABSPATH') ) { die('-1'); }
|
|
32 |
$defaultCountry = tribe_get_option('defaultCountry');
|
33 |
if (isset($_VenueCountry) && $_VenueCountry) {
|
34 |
$current = $_VenueCountry;
|
35 |
-
} elseif (isset($defaultCountry[1])) {
|
36 |
$current = $defaultCountry[1];
|
37 |
} else {
|
38 |
$current = null;
|
@@ -56,7 +56,7 @@ 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 ( isset($_VenueStateProvince) && $_VenueStateProvince != '' && $_VenueStateProvince != -1 ) ? 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
|
@@ -68,9 +68,11 @@ if ( !defined('ABSPATH') ) { die('-1'); }
|
|
68 |
}
|
69 |
}
|
70 |
print (">" . esc_html($fullname) . "</option>\n");
|
|
|
71 |
}
|
72 |
?>
|
73 |
</select>
|
|
|
74 |
</td>
|
75 |
</tr>
|
76 |
<tr class="venue">
|
32 |
$defaultCountry = tribe_get_option('defaultCountry');
|
33 |
if (isset($_VenueCountry) && $_VenueCountry) {
|
34 |
$current = $_VenueCountry;
|
35 |
+
} elseif (isset($defaultCountry[1]) && tribe_get_option('defaultValueReplace')) {
|
36 |
$current = $defaultCountry[1];
|
37 |
} else {
|
38 |
$current = null;
|
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($_VenueProvince) : 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
|
68 |
}
|
69 |
}
|
70 |
print (">" . esc_html($fullname) . "</option>\n");
|
71 |
+
|
72 |
}
|
73 |
?>
|
74 |
</select>
|
75 |
+
|
76 |
</td>
|
77 |
</tr>
|
78 |
<tr class="venue">
|
lang/tribe-events-calendar.pot
CHANGED
@@ -5,14 +5,14 @@ msgid ""
|
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: The Events Calendar 2.0\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
-
"POT-Creation-Date:
|
9 |
-
"PO-Revision-Date:
|
10 |
-
"Last-Translator:
|
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"
|
@@ -24,61 +24,61 @@ msgstr ""
|
|
24 |
msgid "Hide From Upcoming Events List"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: ../admin-views/events-meta-box.php:
|
28 |
msgid "Event Time & Date"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: ../admin-views/events-meta-box.php:
|
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:
|
36 |
msgid "All day event?"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: ../admin-views/events-meta-box.php:
|
40 |
msgid "Start Date / Time:"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: ../admin-views/events-meta-box.php:
|
44 |
-
#: ../admin-views/events-meta-box.php:
|
45 |
msgid "YYYY-MM-DD"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: ../admin-views/events-meta-box.php:
|
49 |
-
#: ../admin-views/events-meta-box.php:
|
50 |
msgid "@"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: ../admin-views/events-meta-box.php:
|
54 |
msgid "End Date / Time:"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: ../admin-views/events-meta-box.php:
|
58 |
msgid "Event Location Details"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: ../admin-views/events-meta-box.php:
|
62 |
msgid "Show Google Maps Link:"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: ../admin-views/events-meta-box.php:
|
66 |
msgid "Show Google Map:"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: ../admin-views/events-meta-box.php:
|
70 |
msgid "Event Organizer Details"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: ../admin-views/events-meta-box.php:
|
74 |
msgid "Event Cost"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: ../admin-views/events-meta-box.php:
|
78 |
msgid "Cost:"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: ../admin-views/events-meta-box.php:
|
82 |
msgid "Leave blank to hide the field. Enter a 0 for events that are free."
|
83 |
msgstr ""
|
84 |
|
@@ -251,20 +251,29 @@ msgstr ""
|
|
251 |
msgid "Save Changes"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: ../admin-views/
|
255 |
-
msgid "
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: ../admin-views/
|
259 |
-
|
|
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: ../admin-views/
|
263 |
-
msgid "
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: ../admin-views/
|
267 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
msgstr ""
|
269 |
|
270 |
#: ../admin-views/venue-meta-box.php:12
|
@@ -291,1663 +300,1663 @@ msgstr ""
|
|
291 |
msgid "Select a State:"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: ../admin-views/venue-meta-box.php:
|
295 |
msgid "Postal Code:"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: ../admin-views/
|
299 |
-
|
300 |
-
msgid "Phone:"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: ../admin-views/
|
304 |
-
msgid "
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: ../admin-views/
|
308 |
-
msgid "
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: ../admin-views/
|
312 |
-
msgid "
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: ../
|
316 |
-
msgid "
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: ../
|
320 |
-
msgid "
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ../lib/
|
324 |
-
|
325 |
-
msgid "Select a Country:"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: ../lib/
|
329 |
-
msgid "
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: ../lib/
|
333 |
-
msgid "
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: ../lib/
|
337 |
-
msgid "
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: ../lib/
|
341 |
-
|
|
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: ../lib/
|
345 |
-
|
|
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: ../lib/
|
349 |
-
|
|
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: ../lib/
|
353 |
-
msgid "
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: ../lib/
|
357 |
-
msgid "
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: ../lib/
|
361 |
-
|
|
|
|
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: ../lib/
|
365 |
-
msgid "
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: ../lib/
|
369 |
-
|
|
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: ../lib/
|
373 |
-
msgid "
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: ../lib/
|
377 |
-
msgid "
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: ../lib/
|
381 |
-
msgid "
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: ../lib/
|
385 |
-
|
|
|
|
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: ../lib/
|
389 |
-
msgid "
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: ../lib/
|
393 |
-
msgid "
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: ../lib/
|
397 |
-
msgid "
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: ../lib/
|
401 |
-
msgid "
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: ../lib/
|
405 |
-
msgid "
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: ../lib/
|
409 |
-
msgid "
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: ../lib/
|
413 |
-
msgid "
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: ../lib/
|
417 |
-
msgid "
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: ../lib/
|
421 |
-
msgid "
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: ../lib/
|
425 |
-
msgid "
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: ../lib/
|
429 |
-
msgid "
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: ../lib/
|
433 |
-
msgid "
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: ../lib/
|
437 |
-
|
|
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: ../lib/
|
441 |
-
msgid "
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: ../lib/
|
445 |
-
msgid "
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: ../lib/
|
449 |
-
msgid "
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: ../lib/
|
453 |
-
msgid "
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: ../lib/
|
457 |
-
msgid "
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: ../lib/
|
461 |
-
msgid "
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: ../lib/
|
465 |
-
msgid "
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: ../lib/
|
469 |
-
msgid "
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: ../lib/
|
473 |
-
msgid "
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: ../lib/
|
477 |
-
msgid "
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: ../lib/
|
481 |
-
msgid "
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: ../lib/
|
485 |
-
|
|
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: ../lib/
|
489 |
-
msgid "
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: ../lib/
|
493 |
-
msgid "
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: ../lib/
|
497 |
-
msgid "
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: ../lib/
|
501 |
-
msgid "
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: ../lib/
|
505 |
-
msgid "
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: ../lib/
|
509 |
-
msgid "
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: ../lib/
|
513 |
-
msgid "
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: ../lib/
|
517 |
-
msgid "
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: ../lib/
|
521 |
-
msgid "
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: ../lib/
|
525 |
-
|
|
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: ../lib/
|
529 |
-
|
|
|
|
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: ../lib/
|
533 |
-
|
|
|
|
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: ../lib/
|
537 |
-
msgid "
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: ../lib/
|
541 |
-
|
|
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: ../lib/
|
545 |
-
|
546 |
-
|
|
|
547 |
|
548 |
-
#: ../lib/
|
549 |
-
msgid "
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: ../lib/
|
553 |
-
|
|
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: ../lib/
|
557 |
-
|
|
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: ../lib/
|
561 |
-
|
|
|
|
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: ../lib/
|
565 |
-
|
|
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: ../lib/
|
569 |
-
|
|
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: ../lib/
|
573 |
-
msgid "
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: ../lib/
|
577 |
-
|
|
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: ../lib/
|
581 |
-
|
|
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: ../lib/
|
585 |
-
msgid "
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: ../lib/
|
589 |
-
|
|
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: ../lib/
|
593 |
-
|
|
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: ../lib/
|
597 |
-
|
|
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: ../lib/
|
601 |
-
|
|
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: ../lib/
|
605 |
-
msgid "
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: ../lib/
|
609 |
-
|
|
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: ../lib/
|
613 |
-
|
|
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: ../lib/
|
617 |
-
msgid "
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: ../lib/
|
621 |
-
|
|
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: ../lib/
|
625 |
-
|
|
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: ../lib/
|
629 |
-
|
|
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: ../lib/
|
633 |
-
msgid "
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: ../lib/
|
637 |
-
msgid "
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: ../lib/
|
641 |
-
msgid "
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: ../lib/
|
645 |
-
msgid "
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: ../lib/
|
649 |
-
msgid "
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: ../lib/
|
653 |
-
|
654 |
-
msgid "Georgia"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: ../lib/
|
658 |
-
msgid "
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: ../lib/
|
662 |
-
msgid "
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: ../lib/
|
666 |
-
msgid "
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: ../lib/
|
670 |
-
msgid "
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: ../lib/
|
674 |
-
msgid "
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: ../lib/
|
678 |
-
|
|
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: ../lib/
|
682 |
-
|
|
|
|
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: ../lib/tribe-
|
686 |
-
|
|
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: ../lib/tribe-
|
690 |
-
msgid "
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: ../lib/tribe-
|
694 |
-
msgid "
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: ../lib/tribe-
|
698 |
-
msgid "
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: ../lib/tribe-
|
702 |
-
msgid "
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: ../lib/tribe-
|
706 |
-
msgid "
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: ../lib/tribe-
|
710 |
-
msgid "
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: ../lib/tribe-
|
714 |
-
|
|
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: ../lib/tribe-
|
718 |
-
msgid "
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: ../lib/tribe-
|
722 |
-
|
|
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: ../lib/tribe-
|
726 |
-
msgid "
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: ../lib/tribe-
|
730 |
-
msgid "
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: ../lib/tribe-
|
734 |
-
msgid "
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: ../lib/tribe-
|
738 |
-
msgid "
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: ../lib/tribe-
|
742 |
-
|
|
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: ../lib/tribe-
|
746 |
-
msgid "
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: ../lib/tribe-view-helpers.class.php:
|
750 |
-
|
|
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: ../lib/tribe-view-helpers.class.php:
|
754 |
-
msgid "
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: ../lib/tribe-view-helpers.class.php:
|
758 |
-
msgid "
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: ../lib/tribe-view-helpers.class.php:
|
762 |
-
msgid "
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: ../lib/tribe-view-helpers.class.php:
|
766 |
-
msgid "
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: ../lib/tribe-view-helpers.class.php:
|
770 |
-
msgid "
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: ../lib/tribe-view-helpers.class.php:
|
774 |
-
msgid "
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: ../lib/tribe-view-helpers.class.php:
|
778 |
-
msgid "
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: ../lib/tribe-view-helpers.class.php:
|
782 |
-
msgid "
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: ../lib/tribe-view-helpers.class.php:
|
786 |
-
msgid "
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: ../lib/tribe-view-helpers.class.php:
|
790 |
-
msgid "
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: ../lib/tribe-view-helpers.class.php:
|
794 |
-
msgid "
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: ../lib/tribe-view-helpers.class.php:
|
798 |
-
msgid "
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: ../lib/tribe-view-helpers.class.php:
|
802 |
-
msgid "
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: ../lib/tribe-view-helpers.class.php:
|
806 |
-
msgid "
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: ../lib/tribe-view-helpers.class.php:
|
810 |
-
msgid "
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: ../lib/tribe-view-helpers.class.php:
|
814 |
-
msgid "
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: ../lib/tribe-view-helpers.class.php:
|
818 |
-
msgid "
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: ../lib/tribe-view-helpers.class.php:
|
822 |
-
msgid "
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: ../lib/tribe-view-helpers.class.php:
|
826 |
-
msgid "
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: ../lib/tribe-view-helpers.class.php:
|
830 |
-
msgid "
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: ../lib/tribe-view-helpers.class.php:
|
834 |
-
msgid "
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: ../lib/tribe-view-helpers.class.php:
|
838 |
-
msgid "
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: ../lib/tribe-view-helpers.class.php:
|
842 |
-
msgid "
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: ../lib/tribe-view-helpers.class.php:
|
846 |
-
msgid "
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: ../lib/tribe-view-helpers.class.php:
|
850 |
-
msgid "
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: ../lib/tribe-view-helpers.class.php:
|
854 |
-
msgid "
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: ../lib/tribe-view-helpers.class.php:
|
858 |
-
msgid "
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: ../lib/tribe-view-helpers.class.php:
|
862 |
-
msgid "
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: ../lib/tribe-view-helpers.class.php:
|
866 |
-
msgid "
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: ../lib/tribe-view-helpers.class.php:
|
870 |
-
msgid "
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: ../lib/tribe-view-helpers.class.php:
|
874 |
-
msgid "
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: ../lib/tribe-view-helpers.class.php:
|
878 |
-
msgid "
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: ../lib/tribe-view-helpers.class.php:
|
882 |
-
msgid "
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: ../lib/tribe-view-helpers.class.php:
|
886 |
-
msgid "
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: ../lib/tribe-view-helpers.class.php:
|
890 |
-
msgid "
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: ../lib/tribe-view-helpers.class.php:
|
894 |
-
msgid "
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: ../lib/tribe-view-helpers.class.php:
|
898 |
-
msgid "
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: ../lib/tribe-view-helpers.class.php:
|
902 |
-
msgid "
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: ../lib/tribe-view-helpers.class.php:
|
906 |
-
msgid "
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: ../lib/tribe-view-helpers.class.php:
|
910 |
-
msgid "
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: ../lib/tribe-view-helpers.class.php:
|
914 |
-
msgid "
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: ../lib/tribe-view-helpers.class.php:
|
918 |
-
msgid "
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: ../lib/tribe-view-helpers.class.php:
|
922 |
-
msgid "
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: ../lib/tribe-view-helpers.class.php:
|
926 |
-
msgid "
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: ../lib/tribe-view-helpers.class.php:
|
930 |
-
msgid "
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: ../lib/tribe-view-helpers.class.php:
|
934 |
-
msgid "
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: ../lib/tribe-view-helpers.class.php:
|
938 |
-
msgid "
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: ../lib/tribe-view-helpers.class.php:
|
942 |
-
msgid "
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: ../lib/tribe-view-helpers.class.php:
|
946 |
-
msgid "
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: ../lib/tribe-view-helpers.class.php:
|
950 |
-
msgid "
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: ../lib/tribe-view-helpers.class.php:
|
954 |
-
msgid "
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: ../lib/tribe-view-helpers.class.php:
|
958 |
-
msgid "
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: ../lib/tribe-view-helpers.class.php:
|
962 |
-
msgid "
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: ../lib/tribe-view-helpers.class.php:
|
966 |
-
msgid "
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: ../lib/tribe-view-helpers.class.php:
|
970 |
-
msgid "
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: ../lib/tribe-view-helpers.class.php:
|
974 |
-
msgid "
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: ../lib/tribe-view-helpers.class.php:
|
978 |
-
msgid "
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: ../lib/tribe-view-helpers.class.php:
|
982 |
-
msgid "
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: ../lib/tribe-view-helpers.class.php:
|
986 |
-
msgid "
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: ../lib/tribe-view-helpers.class.php:
|
990 |
-
msgid "
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: ../lib/tribe-view-helpers.class.php:
|
994 |
-
msgid "
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: ../lib/tribe-view-helpers.class.php:
|
998 |
-
msgid "
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1002 |
-
msgid "
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1006 |
-
msgid "
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1010 |
-
msgid "
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1014 |
-
msgid "
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1018 |
-
msgid "
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1022 |
-
msgid "
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1026 |
-
msgid "
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1030 |
-
msgid "
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1034 |
-
msgid "
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1038 |
-
msgid "
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1042 |
-
msgid "
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1046 |
-
msgid "
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1050 |
-
msgid "
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1054 |
-
msgid "
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1058 |
-
msgid "
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1062 |
-
msgid "
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1066 |
-
msgid "
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1070 |
-
msgid "
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1074 |
-
msgid "
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1078 |
-
|
|
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1082 |
-
msgid "
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1086 |
-
msgid "
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1090 |
-
msgid "
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1094 |
-
msgid "
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1098 |
-
msgid "
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1102 |
-
msgid "
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1106 |
-
msgid "
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1110 |
-
msgid "
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1114 |
-
msgid "
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1118 |
-
msgid "
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1122 |
-
msgid "
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1126 |
-
msgid "
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1130 |
-
msgid "
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1134 |
-
msgid "
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1138 |
-
msgid "
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1142 |
-
msgid "
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1146 |
-
msgid "
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1150 |
-
msgid "
|
1151 |
msgstr ""
|
1152 |
|
1153 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1154 |
-
msgid "
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1158 |
-
msgid "
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1162 |
-
msgid "
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1166 |
-
msgid "
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1170 |
-
msgid "
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1174 |
-
msgid "
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1178 |
-
msgid "
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1182 |
-
msgid "
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1186 |
-
msgid "
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1190 |
-
msgid "
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1194 |
-
msgid "
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1198 |
-
msgid "
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1202 |
-
msgid "
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1206 |
-
msgid "
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1210 |
-
msgid "
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1214 |
-
msgid "
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1218 |
-
msgid "
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1222 |
-
msgid "
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1226 |
-
msgid "
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1230 |
-
msgid "
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1234 |
-
msgid "
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1238 |
-
msgid "
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1242 |
-
msgid "
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1246 |
-
msgid "
|
1247 |
msgstr ""
|
1248 |
|
1249 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1250 |
-
msgid "
|
1251 |
msgstr ""
|
1252 |
|
1253 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1254 |
-
msgid "
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1258 |
-
msgid "
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1262 |
-
msgid "
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1266 |
-
msgid "
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1270 |
-
msgid "
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1274 |
-
msgid "
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1278 |
-
msgid "
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1282 |
-
msgid "
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1286 |
-
msgid "
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1290 |
-
msgid "
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1294 |
-
msgid "
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1298 |
-
msgid "
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1302 |
-
msgid "
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1306 |
-
msgid "
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1310 |
-
msgid "
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1314 |
-
msgid "
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1318 |
-
msgid "
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1322 |
-
msgid "
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1326 |
-
msgid "
|
1327 |
msgstr ""
|
1328 |
|
1329 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1330 |
-
msgid "
|
1331 |
msgstr ""
|
1332 |
|
1333 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1334 |
-
msgid "
|
1335 |
msgstr ""
|
1336 |
|
1337 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1338 |
-
msgid "
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1342 |
-
msgid "
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1346 |
-
msgid "
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1350 |
-
msgid "
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1354 |
-
msgid "
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1358 |
-
msgid "
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1362 |
-
msgid "
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1366 |
-
msgid "
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1370 |
-
msgid "
|
1371 |
msgstr ""
|
1372 |
|
1373 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1374 |
-
msgid "
|
1375 |
msgstr ""
|
1376 |
|
1377 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1378 |
-
msgid "
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1382 |
-
msgid "
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1386 |
-
msgid "
|
1387 |
msgstr ""
|
1388 |
|
1389 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1390 |
-
msgid "
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1394 |
-
msgid "
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1398 |
-
msgid "
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1402 |
-
msgid "
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1406 |
-
msgid "
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1410 |
-
msgid "
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1414 |
-
msgid "
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1418 |
-
msgid "
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1422 |
-
msgid "
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1426 |
-
msgid "
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1430 |
-
msgid "
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1434 |
-
msgid "
|
1435 |
msgstr ""
|
1436 |
|
1437 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1438 |
-
msgid "
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1442 |
-
msgid "
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1446 |
-
msgid "
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1450 |
-
msgid "
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1454 |
-
msgid "
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1458 |
-
msgid "
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1462 |
-
msgid "
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1466 |
-
msgid "
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1470 |
-
msgid "
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1474 |
-
msgid "
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1478 |
-
msgid "
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1482 |
-
msgid "
|
1483 |
msgstr ""
|
1484 |
|
1485 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1486 |
-
msgid "
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#: ../lib/tribe-
|
1490 |
-
msgid "
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#: ../lib/tribe-
|
1494 |
-
msgid "
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#: ../lib/tribe-
|
1498 |
-
msgid "
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: ../lib/tribe-
|
1502 |
-
msgid "
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: ../lib/tribe-
|
1506 |
-
|
1507 |
-
msgid "You successfully migrated (%d) entries."
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
#: ../lib/tribe-
|
1511 |
-
msgid "
|
1512 |
msgstr ""
|
1513 |
|
1514 |
-
#: ../lib/tribe-
|
1515 |
-
|
1516 |
-
msgid "View “%s”"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: ../lib/tribe-
|
1520 |
-
msgid "
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#: ../lib/tribe-
|
1524 |
-
|
1525 |
-
msgid "Event Categories"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: ../lib/tribe-
|
1529 |
-
msgid "
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#: ../lib/tribe-
|
1533 |
-
msgid "
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#: ../lib/tribe-
|
1537 |
-
msgid "
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: ../lib/tribe-
|
1541 |
-
msgid "
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: ../lib/tribe-
|
1545 |
-
msgid "
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#: ../lib/tribe-
|
1549 |
-
|
1550 |
-
msgid "All %s"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: ../lib/
|
1554 |
-
msgid "
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: ../lib/
|
1558 |
-
msgid "
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: ../lib/
|
1562 |
-
msgid "
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#: ../lib/
|
1566 |
-
msgid "
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: ../lib/
|
1570 |
-
msgid "
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: ../lib/
|
1574 |
-
msgid "
|
1575 |
msgstr ""
|
1576 |
|
1577 |
-
#: ../lib/
|
1578 |
-
|
1579 |
-
msgid "Initializing Tribe Events on %s"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: ../lib/
|
1583 |
-
|
1584 |
-
msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
|
1585 |
msgstr ""
|
1586 |
|
1587 |
-
#: ../lib/
|
1588 |
-
|
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/
|
1593 |
-
msgid "
|
1594 |
msgstr ""
|
1595 |
|
1596 |
-
#: ../lib/
|
1597 |
-
msgid "
|
1598 |
msgstr ""
|
1599 |
|
1600 |
-
#: ../lib/
|
1601 |
-
|
1602 |
-
#, php-format
|
1603 |
-
msgid "Events for %s"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#: ../lib/
|
1607 |
-
msgid "
|
1608 |
msgstr ""
|
1609 |
|
1610 |
-
#: ../lib/
|
1611 |
-
|
1612 |
-
msgid "Events at %s"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#: ../lib/
|
1616 |
-
msgid "
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: ../lib/
|
1620 |
-
msgid "
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: ../lib/
|
1624 |
-
msgid "
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#: ../lib/
|
1628 |
-
|
1629 |
-
#: ../lib/the-events-calendar.class.php:586
|
1630 |
-
msgid "Add New"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: ../lib/
|
1634 |
-
msgid "
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: ../lib/
|
1638 |
-
msgid "
|
1639 |
msgstr ""
|
1640 |
|
1641 |
-
#: ../lib/
|
1642 |
-
msgid "
|
1643 |
msgstr ""
|
1644 |
|
1645 |
-
#: ../lib/
|
1646 |
-
msgid "
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: ../lib/
|
1650 |
-
msgid "
|
1651 |
msgstr ""
|
1652 |
|
1653 |
-
#: ../lib/
|
1654 |
-
msgid "
|
1655 |
msgstr ""
|
1656 |
|
1657 |
-
#: ../lib/
|
1658 |
-
msgid "
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#: ../lib/
|
1662 |
-
msgid "
|
1663 |
msgstr ""
|
1664 |
|
1665 |
-
#: ../lib/
|
1666 |
-
msgid "
|
1667 |
msgstr ""
|
1668 |
|
1669 |
-
#: ../lib/
|
1670 |
-
msgid "
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#: ../lib/
|
1674 |
-
msgid "
|
1675 |
msgstr ""
|
1676 |
|
1677 |
-
#: ../lib/
|
1678 |
-
msgid "
|
1679 |
msgstr ""
|
1680 |
|
1681 |
-
#: ../lib/
|
1682 |
-
|
1683 |
-
msgid "View Venue"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
-
#: ../lib/
|
1687 |
-
msgid "
|
1688 |
msgstr ""
|
1689 |
|
1690 |
-
#: ../lib/
|
1691 |
-
msgid "
|
1692 |
msgstr ""
|
1693 |
|
1694 |
-
#: ../lib/
|
1695 |
-
msgid "
|
1696 |
msgstr ""
|
1697 |
|
1698 |
-
#: ../lib/
|
1699 |
-
msgid "
|
1700 |
msgstr ""
|
1701 |
|
1702 |
-
#: ../lib/
|
1703 |
-
msgid "
|
1704 |
msgstr ""
|
1705 |
|
1706 |
-
#: ../lib/
|
1707 |
-
msgid "
|
1708 |
msgstr ""
|
1709 |
|
1710 |
-
#: ../lib/
|
1711 |
-
msgid "
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: ../lib/
|
1715 |
-
msgid "
|
1716 |
msgstr ""
|
1717 |
|
1718 |
-
#: ../lib/
|
1719 |
-
msgid "
|
1720 |
msgstr ""
|
1721 |
|
1722 |
-
#: ../lib/
|
1723 |
-
msgid "
|
1724 |
msgstr ""
|
1725 |
|
1726 |
-
#: ../lib/
|
1727 |
-
msgid "
|
1728 |
msgstr ""
|
1729 |
|
1730 |
-
#: ../lib/
|
1731 |
-
msgid "
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: ../lib/
|
1735 |
-
msgid "
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: ../lib/
|
1739 |
-
msgid "
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#: ../lib/
|
1743 |
-
msgid "
|
1744 |
msgstr ""
|
1745 |
|
1746 |
-
#: ../lib/
|
1747 |
-
msgid "
|
1748 |
msgstr ""
|
1749 |
|
1750 |
-
#: ../lib/
|
1751 |
-
msgid "
|
1752 |
msgstr ""
|
1753 |
|
1754 |
-
#: ../lib/
|
1755 |
-
msgid "
|
1756 |
msgstr ""
|
1757 |
|
1758 |
-
#: ../lib/
|
1759 |
-
msgid "
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#: ../lib/
|
1763 |
-
msgid "
|
1764 |
msgstr ""
|
1765 |
|
1766 |
-
#: ../lib/
|
1767 |
-
|
1768 |
-
msgid "Event updated. <a href=\"%s\">View event</a>"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
-
#: ../lib/
|
1772 |
-
|
1773 |
-
#: ../lib/the-events-calendar.class.php:651
|
1774 |
-
msgid "Custom field updated."
|
1775 |
msgstr ""
|
1776 |
|
1777 |
-
#: ../lib/
|
1778 |
-
|
1779 |
-
#: ../lib/the-events-calendar.class.php:652
|
1780 |
-
msgid "Custom field deleted."
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#: ../lib/
|
1784 |
-
msgid "
|
1785 |
msgstr ""
|
1786 |
|
1787 |
-
#: ../lib/
|
1788 |
-
|
1789 |
-
msgid "Event restored to revision from %s"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: ../lib/
|
1793 |
-
|
1794 |
-
msgid "Event published. <a href=\"%s\">View event</a>"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
-
#: ../lib/
|
1798 |
-
msgid "
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: ../lib/
|
1802 |
-
|
1803 |
-
msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
-
#: ../lib/
|
1807 |
-
|
1808 |
-
msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
-
#: ../lib/
|
1812 |
-
|
1813 |
-
#: ../lib/the-events-calendar.class.php:661
|
1814 |
-
msgid "M j, Y @ G:i"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
-
#: ../lib/
|
1818 |
-
|
1819 |
-
msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#: ../lib/
|
1823 |
-
|
1824 |
-
msgid "Venue updated. <a href=\"%s\">View venue</a>"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#: ../lib/
|
1828 |
-
msgid "
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#: ../lib/
|
1832 |
-
|
1833 |
-
msgid "Venue restored to revision from %s"
|
1834 |
msgstr ""
|
1835 |
|
1836 |
-
#: ../lib/
|
1837 |
-
|
1838 |
-
msgid "Venue published. <a href=\"%s\">View venue</a>"
|
1839 |
msgstr ""
|
1840 |
|
1841 |
-
#: ../lib/
|
1842 |
-
msgid "
|
1843 |
msgstr ""
|
1844 |
|
1845 |
-
#: ../lib/
|
1846 |
-
|
1847 |
-
msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
-
#: ../lib/
|
1851 |
-
|
1852 |
-
msgid "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview venue</a>"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
-
#: ../lib/
|
1856 |
-
|
1857 |
-
msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
-
#: ../lib/
|
1861 |
-
|
1862 |
-
msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
-
#: ../lib/
|
1866 |
-
msgid "
|
1867 |
msgstr ""
|
1868 |
|
1869 |
-
#: ../lib/
|
1870 |
-
|
1871 |
-
msgid "Organizer restored to revision from %s"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: ../lib/
|
1875 |
-
|
1876 |
-
msgid "Organizer published. <a href=\"%s\">View organizer</a>"
|
1877 |
msgstr ""
|
1878 |
|
1879 |
-
#: ../lib/
|
1880 |
-
msgid "
|
1881 |
msgstr ""
|
1882 |
|
1883 |
-
#: ../lib/
|
1884 |
-
|
1885 |
-
msgid "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
-
#: ../lib/
|
1889 |
-
|
1890 |
-
msgid "Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview organizer</a>"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
-
#: ../lib/
|
1894 |
-
|
1895 |
-
msgid "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
-
#: ../lib/
|
1899 |
-
msgid "
|
1900 |
msgstr ""
|
1901 |
|
1902 |
-
#: ../lib/
|
1903 |
-
msgid "
|
1904 |
msgstr ""
|
1905 |
|
1906 |
-
#: ../lib/
|
1907 |
-
msgid "
|
1908 |
msgstr ""
|
1909 |
|
1910 |
-
#: ../lib/
|
1911 |
-
msgid "
|
1912 |
msgstr ""
|
1913 |
|
1914 |
-
#: ../lib/
|
1915 |
-
msgid "
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#: ../lib/
|
1919 |
-
msgid "
|
1920 |
msgstr ""
|
1921 |
|
1922 |
-
#: ../lib/
|
1923 |
-
msgid "
|
1924 |
msgstr ""
|
1925 |
|
1926 |
-
#: ../lib/
|
1927 |
-
msgid "
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#: ../lib/
|
1931 |
-
msgid "
|
1932 |
msgstr ""
|
1933 |
|
1934 |
-
#: ../lib/
|
1935 |
-
msgid "
|
1936 |
msgstr ""
|
1937 |
|
1938 |
-
#: ../lib/
|
1939 |
-
msgid "
|
1940 |
msgstr ""
|
1941 |
|
1942 |
-
#: ../lib/
|
1943 |
-
|
1944 |
-
msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
-
#: ../lib/
|
1948 |
-
|
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
|
@@ -1962,25 +1971,30 @@ msgstr ""
|
|
1962 |
msgid "There are no upcoming events at this time."
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#: ../
|
1966 |
-
msgid "
|
1967 |
msgstr ""
|
1968 |
|
1969 |
-
#: ../
|
1970 |
-
|
1971 |
-
msgid "Error"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
#: ../public/template-tags/loop.php:130
|
1975 |
msgid "Calendar of Events"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
-
#: ../
|
1979 |
-
msgid "
|
1980 |
msgstr ""
|
1981 |
|
1982 |
-
#: ../
|
1983 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
1984 |
msgstr ""
|
1985 |
|
1986 |
#: ../views/list.php:50
|
@@ -2043,24 +2057,6 @@ msgstr ""
|
|
2043 |
msgid "Next Events »"
|
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 »"
|
2062 |
-
msgstr ""
|
2063 |
-
|
2064 |
#: ../views/single.php:13
|
2065 |
msgid "« Back to Events"
|
2066 |
msgstr ""
|
@@ -2098,3 +2094,7 @@ msgstr ""
|
|
2098 |
msgid "+ Google Calendar"
|
2099 |
msgstr ""
|
2100 |
|
|
|
|
|
|
|
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: The Events Calendar 2.0\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
+
"POT-Creation-Date: 2012-01-09 11:28-0800\n"
|
9 |
+
"PO-Revision-Date: 2012-01-09 11:28-0800\n"
|
10 |
+
"Last-Translator: Joachim Kudish <info@jkudish.com>\n"
|
11 |
"Language-Team: Modern Tribe, Inc.\n"
|
|
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"Language: \n"
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e\n"
|
18 |
"X-Poedit-Basepath: ./\n"
|
24 |
msgid "Hide From Upcoming Events List"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: ../admin-views/events-meta-box.php:25
|
28 |
msgid "Event Time & Date"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: ../admin-views/events-meta-box.php:28
|
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:31
|
36 |
msgid "All day event?"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: ../admin-views/events-meta-box.php:35
|
40 |
msgid "Start Date / Time:"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: ../admin-views/events-meta-box.php:38
|
44 |
+
#: ../admin-views/events-meta-box.php:59
|
45 |
msgid "YYYY-MM-DD"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: ../admin-views/events-meta-box.php:40
|
49 |
+
#: ../admin-views/events-meta-box.php:61
|
50 |
msgid "@"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: ../admin-views/events-meta-box.php:56
|
54 |
msgid "End Date / Time:"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: ../admin-views/events-meta-box.php:78
|
58 |
msgid "Event Location Details"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: ../admin-views/events-meta-box.php:84
|
62 |
msgid "Show Google Maps Link:"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: ../admin-views/events-meta-box.php:91
|
66 |
msgid "Show Google Map:"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: ../admin-views/events-meta-box.php:100
|
70 |
msgid "Event Organizer Details"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: ../admin-views/events-meta-box.php:109
|
74 |
msgid "Event Cost"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: ../admin-views/events-meta-box.php:112
|
78 |
msgid "Cost:"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: ../admin-views/events-meta-box.php:117
|
82 |
msgid "Leave blank to hide the field. Enter a 0 for events that are free."
|
83 |
msgstr ""
|
84 |
|
251 |
msgid "Save Changes"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: ../admin-views/organizer-meta-box.php:11
|
255 |
+
msgid "Organizer Name:"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: ../admin-views/organizer-meta-box.php:17
|
259 |
+
#: ../admin-views/venue-meta-box.php:83
|
260 |
+
msgid "Phone:"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: ../admin-views/organizer-meta-box.php:21
|
264 |
+
msgid "Website:"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: ../admin-views/organizer-meta-box.php:25
|
268 |
+
msgid "Email:"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: ../admin-views/recurrence-dialog.php:11
|
272 |
+
msgid "Which events do you wish to update?"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: ../admin-views/recurrence-dialog.php:14
|
276 |
+
msgid "Select your desired action"
|
277 |
msgstr ""
|
278 |
|
279 |
#: ../admin-views/venue-meta-box.php:12
|
300 |
msgid "Select a State:"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: ../admin-views/venue-meta-box.php:79
|
304 |
msgid "Postal Code:"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: ../admin-views/widget-admin-list.php:11
|
308 |
+
msgid "Title:"
|
|
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: ../admin-views/widget-admin-list.php:16
|
312 |
+
msgid "Show:"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: ../admin-views/widget-admin-list.php:24
|
316 |
+
msgid "Show widget only if there are upcoming events:"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: ../admin-views/widget-admin-list.php:30
|
320 |
+
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."
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: ../lib/the-events-calendar.class.php:248
|
324 |
+
msgid "The Events Calendar"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: ../lib/the-events-calendar.class.php:251
|
328 |
+
msgid "category"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: ../lib/the-events-calendar.class.php:252
|
332 |
+
msgid "month"
|
|
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: ../lib/the-events-calendar.class.php:253
|
336 |
+
msgid "upcoming"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: ../lib/the-events-calendar.class.php:254
|
340 |
+
msgid "past"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: ../lib/the-events-calendar.class.php:256
|
344 |
+
msgid "venue"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: ../lib/the-events-calendar.class.php:266
|
348 |
+
#, php-format
|
349 |
+
msgid "Initializing Tribe Events on %s"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: ../lib/the-events-calendar.class.php:323
|
353 |
+
#, php-format
|
354 |
+
msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: ../lib/the-events-calendar.class.php:326
|
358 |
+
#, php-format
|
359 |
+
msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: ../lib/the-events-calendar.class.php:447
|
363 |
+
msgid "Upcoming Events"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: ../lib/the-events-calendar.class.php:449
|
367 |
+
msgid "Past Events"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: ../lib/the-events-calendar.class.php:453
|
371 |
+
#: ../lib/the-events-calendar.class.php:459
|
372 |
+
#, php-format
|
373 |
+
msgid "Events for %s"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: ../lib/the-events-calendar.class.php:455
|
377 |
+
msgid "Events this month"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: ../lib/the-events-calendar.class.php:465
|
381 |
+
#, php-format
|
382 |
+
msgid "Events at %s"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: ../lib/the-events-calendar.class.php:477
|
386 |
+
msgid "No description has been entered for this event."
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: ../lib/the-events-calendar.class.php:583
|
390 |
+
msgid "Events"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: ../lib/the-events-calendar.class.php:584
|
394 |
+
msgid "Event"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: ../lib/the-events-calendar.class.php:585
|
398 |
+
#: ../lib/the-events-calendar.class.php:598
|
399 |
+
#: ../lib/the-events-calendar.class.php:611
|
400 |
+
msgid "Add New"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: ../lib/the-events-calendar.class.php:586
|
404 |
+
msgid "Add New Event"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: ../lib/the-events-calendar.class.php:587
|
408 |
+
msgid "Edit Event"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: ../lib/the-events-calendar.class.php:588
|
412 |
+
msgid "New Event"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: ../lib/the-events-calendar.class.php:589
|
416 |
+
msgid "View Event"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: ../lib/the-events-calendar.class.php:590
|
420 |
+
msgid "Search Events"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: ../lib/the-events-calendar.class.php:591
|
424 |
+
msgid "No events found"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: ../lib/the-events-calendar.class.php:592
|
428 |
+
msgid "No events found in Trash"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: ../lib/the-events-calendar.class.php:596
|
432 |
+
msgid "Venues"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: ../lib/the-events-calendar.class.php:597
|
436 |
+
msgid "Venue"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: ../lib/the-events-calendar.class.php:599
|
440 |
+
msgid "Add New Venue"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: ../lib/the-events-calendar.class.php:600
|
444 |
+
msgid "Edit Venue"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: ../lib/the-events-calendar.class.php:601
|
448 |
+
msgid "New Venue"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: ../lib/the-events-calendar.class.php:602
|
452 |
+
#: ../lib/the-events-calendar.class.php:615
|
453 |
+
msgid "View Venue"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: ../lib/the-events-calendar.class.php:603
|
457 |
+
msgid "Search Venues"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: ../lib/the-events-calendar.class.php:604
|
461 |
+
msgid "No venue found"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: ../lib/the-events-calendar.class.php:605
|
465 |
+
msgid "No venues found in Trash"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: ../lib/the-events-calendar.class.php:609
|
469 |
+
msgid "Organizers"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: ../lib/the-events-calendar.class.php:610
|
473 |
+
msgid "Organizer"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: ../lib/the-events-calendar.class.php:612
|
477 |
+
msgid "Add New Organizer"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: ../lib/the-events-calendar.class.php:613
|
481 |
+
msgid "Edit Organizer"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: ../lib/the-events-calendar.class.php:614
|
485 |
+
msgid "New Organizer"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: ../lib/the-events-calendar.class.php:616
|
489 |
+
msgid "Search Organizers"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: ../lib/the-events-calendar.class.php:617
|
493 |
+
msgid "No organizer found"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: ../lib/the-events-calendar.class.php:618
|
497 |
+
msgid "No organizers found in Trash"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: ../lib/the-events-calendar.class.php:622
|
501 |
+
#: ../lib/tribe-admin-events-list.class.php:172
|
502 |
+
msgid "Event Categories"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: ../lib/the-events-calendar.class.php:623
|
506 |
+
msgid "Event Category"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: ../lib/the-events-calendar.class.php:624
|
510 |
+
msgid "Search Event Categories"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: ../lib/the-events-calendar.class.php:625
|
514 |
+
msgid "All Event Categories"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: ../lib/the-events-calendar.class.php:626
|
518 |
+
msgid "Parent Event Category"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: ../lib/the-events-calendar.class.php:627
|
522 |
+
msgid "Parent Event Category:"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: ../lib/the-events-calendar.class.php:628
|
526 |
+
msgid "Edit Event Category"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: ../lib/the-events-calendar.class.php:629
|
530 |
+
msgid "Update Event Category"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: ../lib/the-events-calendar.class.php:630
|
534 |
+
msgid "Add New Event Category"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: ../lib/the-events-calendar.class.php:631
|
538 |
+
msgid "New Event Category Name"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: ../lib/the-events-calendar.class.php:641
|
542 |
+
#, php-format
|
543 |
+
msgid "Event updated. <a href=\"%s\">View event</a>"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: ../lib/the-events-calendar.class.php:642
|
547 |
+
#: ../lib/the-events-calendar.class.php:659
|
548 |
+
#: ../lib/the-events-calendar.class.php:676
|
549 |
+
msgid "Custom field updated."
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: ../lib/the-events-calendar.class.php:643
|
553 |
+
#: ../lib/the-events-calendar.class.php:660
|
554 |
+
#: ../lib/the-events-calendar.class.php:677
|
555 |
+
msgid "Custom field deleted."
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: ../lib/the-events-calendar.class.php:644
|
559 |
+
msgid "Event updated."
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: ../lib/the-events-calendar.class.php:646
|
563 |
+
#, php-format
|
564 |
+
msgid "Event restored to revision from %s"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: ../lib/the-events-calendar.class.php:647
|
568 |
+
#, php-format
|
569 |
+
msgid "Event published. <a href=\"%s\">View event</a>"
|
570 |
+
msgstr ""
|
571 |
|
572 |
+
#: ../lib/the-events-calendar.class.php:648
|
573 |
+
msgid "Event saved."
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: ../lib/the-events-calendar.class.php:649
|
577 |
+
#, php-format
|
578 |
+
msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: ../lib/the-events-calendar.class.php:650
|
582 |
+
#, php-format
|
583 |
+
msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: ../lib/the-events-calendar.class.php:652
|
587 |
+
#: ../lib/the-events-calendar.class.php:669
|
588 |
+
#: ../lib/the-events-calendar.class.php:686
|
589 |
+
msgid "M j, Y @ G:i"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: ../lib/the-events-calendar.class.php:653
|
593 |
+
#, php-format
|
594 |
+
msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: ../lib/the-events-calendar.class.php:658
|
598 |
+
#, php-format
|
599 |
+
msgid "Venue updated. <a href=\"%s\">View venue</a>"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: ../lib/the-events-calendar.class.php:661
|
603 |
+
msgid "Venue updated."
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: ../lib/the-events-calendar.class.php:663
|
607 |
+
#, php-format
|
608 |
+
msgid "Venue restored to revision from %s"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: ../lib/the-events-calendar.class.php:664
|
612 |
+
#, php-format
|
613 |
+
msgid "Venue published. <a href=\"%s\">View venue</a>"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: ../lib/the-events-calendar.class.php:665
|
617 |
+
msgid "Venue saved."
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: ../lib/the-events-calendar.class.php:666
|
621 |
+
#, php-format
|
622 |
+
msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: ../lib/the-events-calendar.class.php:667
|
626 |
+
#, php-format
|
627 |
+
msgid "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview venue</a>"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: ../lib/the-events-calendar.class.php:670
|
631 |
+
#, php-format
|
632 |
+
msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: ../lib/the-events-calendar.class.php:675
|
636 |
+
#, php-format
|
637 |
+
msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: ../lib/the-events-calendar.class.php:678
|
641 |
+
msgid "Organizer updated."
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: ../lib/the-events-calendar.class.php:680
|
645 |
+
#, php-format
|
646 |
+
msgid "Organizer restored to revision from %s"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: ../lib/the-events-calendar.class.php:681
|
650 |
+
#, php-format
|
651 |
+
msgid "Organizer published. <a href=\"%s\">View organizer</a>"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: ../lib/the-events-calendar.class.php:682
|
655 |
+
msgid "Organizer saved."
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: ../lib/the-events-calendar.class.php:683
|
659 |
+
#, php-format
|
660 |
+
msgid "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: ../lib/the-events-calendar.class.php:684
|
664 |
+
#, php-format
|
665 |
+
msgid "Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview organizer</a>"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: ../lib/the-events-calendar.class.php:687
|
669 |
+
#, php-format
|
670 |
+
msgid "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: ../lib/the-events-calendar.class.php:742
|
674 |
+
msgid "Next"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: ../lib/the-events-calendar.class.php:743
|
678 |
+
msgid "Prev"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: ../lib/the-events-calendar.class.php:744
|
682 |
+
msgid "Today"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: ../lib/the-events-calendar.class.php:745
|
686 |
+
msgid "Done"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: ../lib/the-events-calendar.class.php:1878
|
690 |
+
msgid "Event Options"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: ../lib/the-events-calendar.class.php:1880
|
694 |
+
msgid "Venue Information"
|
|
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: ../lib/the-events-calendar.class.php:1881
|
698 |
+
msgid "Organizer Information"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: ../lib/the-events-calendar.class.php:1994
|
702 |
+
msgid "Support"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: ../lib/the-events-calendar.class.php:1997
|
706 |
+
msgid "View All Add-Ons"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: ../lib/the-events-calendar.class.php:2004
|
710 |
+
msgid "News from Modern Tribe"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: ../lib/the-events-calendar.class.php:2049
|
714 |
+
msgid "Additional Functionality"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: ../lib/the-events-calendar.class.php:2054
|
718 |
+
#: ../lib/the-events-calendar.class.php:2060
|
719 |
+
msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: ../lib/the-events-calendar.class.php:2054
|
723 |
+
#: ../lib/the-events-calendar.class.php:2061
|
724 |
+
#, php-format
|
725 |
+
msgid "Check out the <a href=\"%s\">available Add-Ons</a>."
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: ../lib/tribe-admin-events-list.class.php:40
|
729 |
+
#, php-format
|
730 |
+
msgid "View “%s”"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: ../lib/tribe-admin-events-list.class.php:40
|
734 |
+
msgid "View"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: ../lib/tribe-admin-events-list.class.php:177
|
738 |
+
msgid "Start Date"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: ../lib/tribe-admin-events-list.class.php:178
|
742 |
+
msgid "End Date"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: ../lib/tribe-admin-events-list.class.php:179
|
746 |
+
msgid "Recurring?"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: ../lib/tribe-admin-events-list.class.php:222
|
750 |
+
msgid "Yes"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: ../lib/tribe-admin-events-list.class.php:222
|
754 |
+
msgid "No"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: ../lib/tribe-admin-events-list.class.php:276
|
758 |
+
#, php-format
|
759 |
+
msgid "All %s"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: ../lib/tribe-debug-bar.class.php:18
|
763 |
+
msgid "Tribe"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: ../lib/tribe-event-exception.class.php:17
|
767 |
+
#: ../lib/tribe-event-exception.class.php:34
|
768 |
+
msgid "Error"
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: ../lib/tribe-the-events-calendar-import.class.php:44
|
772 |
+
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>. 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."
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: ../lib/tribe-the-events-calendar-import.class.php:54
|
776 |
+
msgid "Upgrade from The Events Calendar"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: ../lib/tribe-the-events-calendar-import.class.php:55
|
780 |
+
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."
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: ../lib/tribe-the-events-calendar-import.class.php:56
|
784 |
+
msgid "Migrate Data!"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: ../lib/tribe-the-events-calendar-import.class.php:128
|
788 |
+
#, php-format
|
789 |
+
msgid "You successfully migrated (%d) entries."
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: ../lib/tribe-the-events-calendar-import.class.php:199
|
793 |
+
msgid "Install has 1 or more legacy event!"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: ../lib/tribe-view-helpers.class.php:16
|
797 |
+
#: ../lib/tribe-view-helpers.class.php:33
|
798 |
+
msgid "Select a Country:"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: ../lib/tribe-view-helpers.class.php:34
|
802 |
+
msgid "United States"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: ../lib/tribe-view-helpers.class.php:35
|
806 |
+
msgid "Afghanistan"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: ../lib/tribe-view-helpers.class.php:36
|
810 |
+
msgid "Albania"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: ../lib/tribe-view-helpers.class.php:37
|
814 |
+
msgid "Algeria"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: ../lib/tribe-view-helpers.class.php:38
|
818 |
+
msgid "American Samoa"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: ../lib/tribe-view-helpers.class.php:39
|
822 |
+
msgid "Andorra"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: ../lib/tribe-view-helpers.class.php:40
|
826 |
+
msgid "Angola"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: ../lib/tribe-view-helpers.class.php:41
|
830 |
+
msgid "Anguilla"
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: ../lib/tribe-view-helpers.class.php:42
|
834 |
+
msgid "Antarctica"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: ../lib/tribe-view-helpers.class.php:43
|
838 |
+
msgid "Antigua And Barbuda"
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: ../lib/tribe-view-helpers.class.php:44
|
842 |
+
msgid "Argentina"
|
843 |
msgstr ""
|
844 |
|
845 |
+
#: ../lib/tribe-view-helpers.class.php:45
|
846 |
+
msgid "Armenia"
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: ../lib/tribe-view-helpers.class.php:46
|
850 |
+
msgid "Aruba"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: ../lib/tribe-view-helpers.class.php:47
|
854 |
+
msgid "Australia"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: ../lib/tribe-view-helpers.class.php:48
|
858 |
+
msgid "Austria"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: ../lib/tribe-view-helpers.class.php:49
|
862 |
+
msgid "Azerbaijan"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: ../lib/tribe-view-helpers.class.php:50
|
866 |
+
msgid "Bahamas"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: ../lib/tribe-view-helpers.class.php:51
|
870 |
+
msgid "Bahrain"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: ../lib/tribe-view-helpers.class.php:52
|
874 |
+
msgid "Bangladesh"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: ../lib/tribe-view-helpers.class.php:53
|
878 |
+
msgid "Barbados"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: ../lib/tribe-view-helpers.class.php:54
|
882 |
+
msgid "Belarus"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: ../lib/tribe-view-helpers.class.php:55
|
886 |
+
msgid "Belgium"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: ../lib/tribe-view-helpers.class.php:56
|
890 |
+
msgid "Belize"
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: ../lib/tribe-view-helpers.class.php:57
|
894 |
+
msgid "Benin"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: ../lib/tribe-view-helpers.class.php:58
|
898 |
+
msgid "Bermuda"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: ../lib/tribe-view-helpers.class.php:59
|
902 |
+
msgid "Bhutan"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: ../lib/tribe-view-helpers.class.php:60
|
906 |
+
msgid "Bolivia"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: ../lib/tribe-view-helpers.class.php:61
|
910 |
+
msgid "Bosnia And Herzegowina"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: ../lib/tribe-view-helpers.class.php:62
|
914 |
+
msgid "Botswana"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: ../lib/tribe-view-helpers.class.php:63
|
918 |
+
msgid "Bouvet Island"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: ../lib/tribe-view-helpers.class.php:64
|
922 |
+
msgid "Brazil"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: ../lib/tribe-view-helpers.class.php:65
|
926 |
+
msgid "British Indian Ocean Territory"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: ../lib/tribe-view-helpers.class.php:66
|
930 |
+
msgid "Brunei Darussalam"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: ../lib/tribe-view-helpers.class.php:67
|
934 |
+
msgid "Bulgaria"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: ../lib/tribe-view-helpers.class.php:68
|
938 |
+
msgid "Burkina Faso"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: ../lib/tribe-view-helpers.class.php:69
|
942 |
+
msgid "Burundi"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: ../lib/tribe-view-helpers.class.php:70
|
946 |
+
msgid "Cambodia"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: ../lib/tribe-view-helpers.class.php:71
|
950 |
+
msgid "Cameroon"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: ../lib/tribe-view-helpers.class.php:72
|
954 |
+
msgid "Canada"
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: ../lib/tribe-view-helpers.class.php:73
|
958 |
+
msgid "Cape Verde"
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: ../lib/tribe-view-helpers.class.php:74
|
962 |
+
msgid "Cayman Islands"
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: ../lib/tribe-view-helpers.class.php:75
|
966 |
+
msgid "Central African Republic"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: ../lib/tribe-view-helpers.class.php:76
|
970 |
+
msgid "Chad"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: ../lib/tribe-view-helpers.class.php:77
|
974 |
+
msgid "Chile"
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: ../lib/tribe-view-helpers.class.php:78
|
978 |
+
msgid "China"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: ../lib/tribe-view-helpers.class.php:79
|
982 |
+
msgid "Christmas Island"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: ../lib/tribe-view-helpers.class.php:80
|
986 |
+
msgid "Cocos (Keeling) Islands"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: ../lib/tribe-view-helpers.class.php:81
|
990 |
+
msgid "Colombia"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: ../lib/tribe-view-helpers.class.php:82
|
994 |
+
msgid "Comoros"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: ../lib/tribe-view-helpers.class.php:83
|
998 |
+
msgid "Congo"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: ../lib/tribe-view-helpers.class.php:84
|
1002 |
+
msgid "Congo, The Democratic Republic Of The"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: ../lib/tribe-view-helpers.class.php:85
|
1006 |
+
msgid "Cook Islands"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: ../lib/tribe-view-helpers.class.php:86
|
1010 |
+
msgid "Costa Rica"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: ../lib/tribe-view-helpers.class.php:87
|
1014 |
+
msgid "Cote D'Ivoire"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: ../lib/tribe-view-helpers.class.php:88
|
1018 |
+
msgid "Croatia (Local Name: Hrvatska)"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: ../lib/tribe-view-helpers.class.php:89
|
1022 |
+
msgid "Cuba"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: ../lib/tribe-view-helpers.class.php:90
|
1026 |
+
msgid "Cyprus"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: ../lib/tribe-view-helpers.class.php:91
|
1030 |
+
msgid "Czech Republic"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: ../lib/tribe-view-helpers.class.php:92
|
1034 |
+
msgid "Denmark"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: ../lib/tribe-view-helpers.class.php:93
|
1038 |
+
msgid "Djibouti"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: ../lib/tribe-view-helpers.class.php:94
|
1042 |
+
msgid "Dominica"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
+
#: ../lib/tribe-view-helpers.class.php:95
|
1046 |
+
msgid "Dominican Republic"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: ../lib/tribe-view-helpers.class.php:96
|
1050 |
+
msgid "East Timor"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: ../lib/tribe-view-helpers.class.php:97
|
1054 |
+
msgid "Ecuador"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: ../lib/tribe-view-helpers.class.php:98
|
1058 |
+
msgid "Egypt"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: ../lib/tribe-view-helpers.class.php:99
|
1062 |
+
msgid "El Salvador"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: ../lib/tribe-view-helpers.class.php:100
|
1066 |
+
msgid "Equatorial Guinea"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: ../lib/tribe-view-helpers.class.php:101
|
1070 |
+
msgid "Eritrea"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: ../lib/tribe-view-helpers.class.php:102
|
1074 |
+
msgid "Estonia"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: ../lib/tribe-view-helpers.class.php:103
|
1078 |
+
msgid "Ethiopia"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: ../lib/tribe-view-helpers.class.php:104
|
1082 |
+
msgid "Falkland Islands (Malvinas)"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: ../lib/tribe-view-helpers.class.php:105
|
1086 |
+
msgid "Faroe Islands"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: ../lib/tribe-view-helpers.class.php:106
|
1090 |
+
msgid "Fiji"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: ../lib/tribe-view-helpers.class.php:107
|
1094 |
+
msgid "Finland"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: ../lib/tribe-view-helpers.class.php:108
|
1098 |
+
msgid "France"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: ../lib/tribe-view-helpers.class.php:109
|
1102 |
+
msgid "France, Metropolitan"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: ../lib/tribe-view-helpers.class.php:110
|
1106 |
+
msgid "French Guiana"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: ../lib/tribe-view-helpers.class.php:111
|
1110 |
+
msgid "French Polynesia"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: ../lib/tribe-view-helpers.class.php:112
|
1114 |
+
msgid "French Southern Territories"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: ../lib/tribe-view-helpers.class.php:113
|
1118 |
+
msgid "Gabon"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: ../lib/tribe-view-helpers.class.php:114
|
1122 |
+
msgid "Gambia"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: ../lib/tribe-view-helpers.class.php:115
|
1126 |
+
#: ../lib/tribe-view-helpers.class.php:303
|
1127 |
+
msgid "Georgia"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: ../lib/tribe-view-helpers.class.php:116
|
1131 |
+
msgid "Germany"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: ../lib/tribe-view-helpers.class.php:117
|
1135 |
+
msgid "Ghana"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: ../lib/tribe-view-helpers.class.php:118
|
1139 |
+
msgid "Gibraltar"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: ../lib/tribe-view-helpers.class.php:119
|
1143 |
+
msgid "Greece"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: ../lib/tribe-view-helpers.class.php:120
|
1147 |
+
msgid "Greenland"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: ../lib/tribe-view-helpers.class.php:121
|
1151 |
+
msgid "Grenada"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: ../lib/tribe-view-helpers.class.php:122
|
1155 |
+
msgid "Guadeloupe"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: ../lib/tribe-view-helpers.class.php:123
|
1159 |
+
msgid "Guam"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: ../lib/tribe-view-helpers.class.php:124
|
1163 |
+
msgid "Guatemala"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: ../lib/tribe-view-helpers.class.php:125
|
1167 |
+
msgid "Guinea"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: ../lib/tribe-view-helpers.class.php:126
|
1171 |
+
msgid "Guinea-Bissau"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: ../lib/tribe-view-helpers.class.php:127
|
1175 |
+
msgid "Guyana"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: ../lib/tribe-view-helpers.class.php:128
|
1179 |
+
msgid "Haiti"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: ../lib/tribe-view-helpers.class.php:129
|
1183 |
+
msgid "Heard And Mc Donald Islands"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: ../lib/tribe-view-helpers.class.php:130
|
1187 |
+
msgid "Holy See (Vatican City State)"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: ../lib/tribe-view-helpers.class.php:131
|
1191 |
+
msgid "Honduras"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: ../lib/tribe-view-helpers.class.php:132
|
1195 |
+
msgid "Hong Kong"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: ../lib/tribe-view-helpers.class.php:133
|
1199 |
+
msgid "Hungary"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: ../lib/tribe-view-helpers.class.php:134
|
1203 |
+
msgid "Iceland"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: ../lib/tribe-view-helpers.class.php:135
|
1207 |
+
msgid "India"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: ../lib/tribe-view-helpers.class.php:136
|
1211 |
+
msgid "Indonesia"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: ../lib/tribe-view-helpers.class.php:137
|
1215 |
+
msgid "Iran (Islamic Republic Of)"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: ../lib/tribe-view-helpers.class.php:138
|
1219 |
+
msgid "Iraq"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: ../lib/tribe-view-helpers.class.php:139
|
1223 |
+
msgid "Ireland"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: ../lib/tribe-view-helpers.class.php:140
|
1227 |
+
msgid "Israel"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: ../lib/tribe-view-helpers.class.php:141
|
1231 |
+
msgid "Italy"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: ../lib/tribe-view-helpers.class.php:142
|
1235 |
+
msgid "Jamaica"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: ../lib/tribe-view-helpers.class.php:143
|
1239 |
+
msgid "Japan"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: ../lib/tribe-view-helpers.class.php:144
|
1243 |
+
msgid "Jordan"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: ../lib/tribe-view-helpers.class.php:145
|
1247 |
+
msgid "Kazakhstan"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: ../lib/tribe-view-helpers.class.php:146
|
1251 |
+
msgid "Kenya"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: ../lib/tribe-view-helpers.class.php:147
|
1255 |
+
msgid "Kiribati"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: ../lib/tribe-view-helpers.class.php:148
|
1259 |
+
msgid "Korea, Democratic People's Republic Of"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: ../lib/tribe-view-helpers.class.php:149
|
1263 |
+
msgid "Korea, Republic Of"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: ../lib/tribe-view-helpers.class.php:150
|
1267 |
+
msgid "Kuwait"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: ../lib/tribe-view-helpers.class.php:151
|
1271 |
+
msgid "Kyrgyzstan"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: ../lib/tribe-view-helpers.class.php:152
|
1275 |
+
msgid "Lao People's Democratic Republic"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
+
#: ../lib/tribe-view-helpers.class.php:153
|
1279 |
+
msgid "Latvia"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: ../lib/tribe-view-helpers.class.php:154
|
1283 |
+
msgid "Lebanon"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: ../lib/tribe-view-helpers.class.php:155
|
1287 |
+
msgid "Lesotho"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: ../lib/tribe-view-helpers.class.php:156
|
1291 |
+
msgid "Liberia"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: ../lib/tribe-view-helpers.class.php:157
|
1295 |
+
msgid "Libya"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: ../lib/tribe-view-helpers.class.php:158
|
1299 |
+
msgid "Liechtenstein"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: ../lib/tribe-view-helpers.class.php:159
|
1303 |
+
msgid "Lithuania"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: ../lib/tribe-view-helpers.class.php:160
|
1307 |
+
msgid "Luxembourg"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: ../lib/tribe-view-helpers.class.php:161
|
1311 |
+
msgid "Macau"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: ../lib/tribe-view-helpers.class.php:162
|
1315 |
+
msgid "Macedonia"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: ../lib/tribe-view-helpers.class.php:163
|
1319 |
+
msgid "Madagascar"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: ../lib/tribe-view-helpers.class.php:164
|
1323 |
+
msgid "Malawi"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: ../lib/tribe-view-helpers.class.php:165
|
1327 |
+
msgid "Malaysia"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: ../lib/tribe-view-helpers.class.php:166
|
1331 |
+
msgid "Maldives"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: ../lib/tribe-view-helpers.class.php:167
|
1335 |
+
msgid "Mali"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: ../lib/tribe-view-helpers.class.php:168
|
1339 |
+
msgid "Malta"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: ../lib/tribe-view-helpers.class.php:169
|
1343 |
+
msgid "Marshall Islands"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: ../lib/tribe-view-helpers.class.php:170
|
1347 |
+
msgid "Martinique"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: ../lib/tribe-view-helpers.class.php:171
|
1351 |
+
msgid "Mauritania"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: ../lib/tribe-view-helpers.class.php:172
|
1355 |
+
msgid "Mauritius"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: ../lib/tribe-view-helpers.class.php:173
|
1359 |
+
msgid "Mayotte"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: ../lib/tribe-view-helpers.class.php:174
|
1363 |
+
msgid "Mexico"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: ../lib/tribe-view-helpers.class.php:175
|
1367 |
+
msgid "Micronesia, Federated States Of"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: ../lib/tribe-view-helpers.class.php:176
|
1371 |
+
msgid "Moldova, Republic Of"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: ../lib/tribe-view-helpers.class.php:177
|
1375 |
+
msgid "Monaco"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: ../lib/tribe-view-helpers.class.php:178
|
1379 |
+
msgid "Mongolia"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: ../lib/tribe-view-helpers.class.php:179
|
1383 |
+
msgid "Montenegro"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: ../lib/tribe-view-helpers.class.php:180
|
1387 |
+
msgid "Montserrat"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: ../lib/tribe-view-helpers.class.php:181
|
1391 |
+
msgid "Morocco"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: ../lib/tribe-view-helpers.class.php:182
|
1395 |
+
msgid "Mozambique"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: ../lib/tribe-view-helpers.class.php:183
|
1399 |
+
msgid "Myanmar"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: ../lib/tribe-view-helpers.class.php:184
|
1403 |
+
msgid "Namibia"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
+
#: ../lib/tribe-view-helpers.class.php:185
|
1407 |
+
msgid "Nauru"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
+
#: ../lib/tribe-view-helpers.class.php:186
|
1411 |
+
msgid "Nepal"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: ../lib/tribe-view-helpers.class.php:187
|
1415 |
+
msgid "Netherlands"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
+
#: ../lib/tribe-view-helpers.class.php:188
|
1419 |
+
msgid "Netherlands Antilles"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
+
#: ../lib/tribe-view-helpers.class.php:189
|
1423 |
+
msgid "New Caledonia"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
+
#: ../lib/tribe-view-helpers.class.php:190
|
1427 |
+
msgid "New Zealand"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
+
#: ../lib/tribe-view-helpers.class.php:191
|
1431 |
+
msgid "Nicaragua"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: ../lib/tribe-view-helpers.class.php:192
|
1435 |
+
msgid "Niger"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: ../lib/tribe-view-helpers.class.php:193
|
1439 |
+
msgid "Nigeria"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: ../lib/tribe-view-helpers.class.php:194
|
1443 |
+
msgid "Niue"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: ../lib/tribe-view-helpers.class.php:195
|
1447 |
+
msgid "Norfolk Island"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: ../lib/tribe-view-helpers.class.php:196
|
1451 |
+
msgid "Northern Mariana Islands"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: ../lib/tribe-view-helpers.class.php:197
|
1455 |
+
msgid "Norway"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: ../lib/tribe-view-helpers.class.php:198
|
1459 |
+
msgid "Oman"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: ../lib/tribe-view-helpers.class.php:199
|
1463 |
+
msgid "Pakistan"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: ../lib/tribe-view-helpers.class.php:200
|
1467 |
+
msgid "Palau"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: ../lib/tribe-view-helpers.class.php:201
|
1471 |
+
msgid "Panama"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: ../lib/tribe-view-helpers.class.php:202
|
1475 |
+
msgid "Papua New Guinea"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: ../lib/tribe-view-helpers.class.php:203
|
1479 |
+
msgid "Paraguay"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: ../lib/tribe-view-helpers.class.php:204
|
1483 |
+
msgid "Peru"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: ../lib/tribe-view-helpers.class.php:205
|
1487 |
+
msgid "Philippines"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: ../lib/tribe-view-helpers.class.php:206
|
1491 |
+
msgid "Pitcairn"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: ../lib/tribe-view-helpers.class.php:207
|
1495 |
+
msgid "Poland"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: ../lib/tribe-view-helpers.class.php:208
|
1499 |
+
msgid "Portugal"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: ../lib/tribe-view-helpers.class.php:209
|
1503 |
+
msgid "Puerto Rico"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: ../lib/tribe-view-helpers.class.php:210
|
1507 |
+
msgid "Qatar"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: ../lib/tribe-view-helpers.class.php:211
|
1511 |
+
msgid "Reunion"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: ../lib/tribe-view-helpers.class.php:212
|
1515 |
+
msgid "Romania"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: ../lib/tribe-view-helpers.class.php:213
|
1519 |
+
msgid "Russian Federation"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: ../lib/tribe-view-helpers.class.php:214
|
1523 |
+
msgid "Rwanda"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: ../lib/tribe-view-helpers.class.php:215
|
1527 |
+
msgid "Saint Kitts And Nevis"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: ../lib/tribe-view-helpers.class.php:216
|
1531 |
+
msgid "Saint Lucia"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: ../lib/tribe-view-helpers.class.php:217
|
1535 |
+
msgid "Saint Vincent And The Grenadines"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: ../lib/tribe-view-helpers.class.php:218
|
1539 |
+
msgid "Samoa"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: ../lib/tribe-view-helpers.class.php:219
|
1543 |
+
msgid "San Marino"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: ../lib/tribe-view-helpers.class.php:220
|
1547 |
+
msgid "Sao Tome And Principe"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: ../lib/tribe-view-helpers.class.php:221
|
1551 |
+
msgid "Saudi Arabia"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: ../lib/tribe-view-helpers.class.php:222
|
1555 |
+
msgid "Senegal"
|
|
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: ../lib/tribe-view-helpers.class.php:223
|
1559 |
+
msgid "Serbia"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: ../lib/tribe-view-helpers.class.php:224
|
1563 |
+
msgid "Seychelles"
|
|
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: ../lib/tribe-view-helpers.class.php:225
|
1567 |
+
msgid "Sierra Leone"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: ../lib/tribe-view-helpers.class.php:226
|
1571 |
+
msgid "Singapore"
|
|
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: ../lib/tribe-view-helpers.class.php:227
|
1575 |
+
msgid "Slovakia (Slovak Republic)"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
#: ../lib/tribe-view-helpers.class.php:228
|
1579 |
+
msgid "Slovenia"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: ../lib/tribe-view-helpers.class.php:229
|
1583 |
+
msgid "Solomon Islands"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: ../lib/tribe-view-helpers.class.php:230
|
1587 |
+
msgid "Somalia"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: ../lib/tribe-view-helpers.class.php:231
|
1591 |
+
msgid "South Africa"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: ../lib/tribe-view-helpers.class.php:232
|
1595 |
+
msgid "South Georgia, South Sandwich Islands"
|
|
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: ../lib/tribe-view-helpers.class.php:233
|
1599 |
+
msgid "Spain"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: ../lib/tribe-view-helpers.class.php:234
|
1603 |
+
msgid "Sri Lanka"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
+
#: ../lib/tribe-view-helpers.class.php:235
|
1607 |
+
msgid "St. Helena"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: ../lib/tribe-view-helpers.class.php:236
|
1611 |
+
msgid "St. Pierre And Miquelon"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: ../lib/tribe-view-helpers.class.php:237
|
1615 |
+
msgid "Sudan"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: ../lib/tribe-view-helpers.class.php:238
|
1619 |
+
msgid "Suriname"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: ../lib/tribe-view-helpers.class.php:239
|
1623 |
+
msgid "Svalbard And Jan Mayen Islands"
|
|
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: ../lib/tribe-view-helpers.class.php:240
|
1627 |
+
msgid "Swaziland"
|
|
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: ../lib/tribe-view-helpers.class.php:241
|
1631 |
+
msgid "Sweden"
|
|
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: ../lib/tribe-view-helpers.class.php:242
|
1635 |
+
msgid "Switzerland"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: ../lib/tribe-view-helpers.class.php:243
|
1639 |
+
msgid "Syrian Arab Republic"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: ../lib/tribe-view-helpers.class.php:244
|
1643 |
+
msgid "Taiwan"
|
|
|
|
|
1644 |
msgstr ""
|
1645 |
|
1646 |
+
#: ../lib/tribe-view-helpers.class.php:245
|
1647 |
+
msgid "Tajikistan"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: ../lib/tribe-view-helpers.class.php:246
|
1651 |
+
msgid "Tanzania, United Republic Of"
|
|
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: ../lib/tribe-view-helpers.class.php:247
|
1655 |
+
msgid "Thailand"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: ../lib/tribe-view-helpers.class.php:248
|
1659 |
+
msgid "Togo"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: ../lib/tribe-view-helpers.class.php:249
|
1663 |
+
msgid "Tokelau"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
+
#: ../lib/tribe-view-helpers.class.php:250
|
1667 |
+
msgid "Tonga"
|
|
|
|
|
1668 |
msgstr ""
|
1669 |
|
1670 |
+
#: ../lib/tribe-view-helpers.class.php:251
|
1671 |
+
msgid "Trinidad And Tobago"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
+
#: ../lib/tribe-view-helpers.class.php:252
|
1675 |
+
msgid "Tunisia"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
+
#: ../lib/tribe-view-helpers.class.php:253
|
1679 |
+
msgid "Turkey"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
+
#: ../lib/tribe-view-helpers.class.php:254
|
1683 |
+
msgid "Turkmenistan"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
+
#: ../lib/tribe-view-helpers.class.php:255
|
1687 |
+
msgid "Turks And Caicos Islands"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: ../lib/tribe-view-helpers.class.php:256
|
1691 |
+
msgid "Tuvalu"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: ../lib/tribe-view-helpers.class.php:257
|
1695 |
+
msgid "Uganda"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
+
#: ../lib/tribe-view-helpers.class.php:258
|
1699 |
+
msgid "Ukraine"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: ../lib/tribe-view-helpers.class.php:259
|
1703 |
+
msgid "United Arab Emirates"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: ../lib/tribe-view-helpers.class.php:260
|
1707 |
+
msgid "United Kingdom"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: ../lib/tribe-view-helpers.class.php:261
|
1711 |
+
msgid "United States Minor Outlying Islands"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
+
#: ../lib/tribe-view-helpers.class.php:262
|
1715 |
+
msgid "Uruguay"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
+
#: ../lib/tribe-view-helpers.class.php:263
|
1719 |
+
msgid "Uzbekistan"
|
|
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: ../lib/tribe-view-helpers.class.php:264
|
1723 |
+
msgid "Vanuatu"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
+
#: ../lib/tribe-view-helpers.class.php:265
|
1727 |
+
msgid "Venezuela"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
+
#: ../lib/tribe-view-helpers.class.php:266
|
1731 |
+
msgid "Viet Nam"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: ../lib/tribe-view-helpers.class.php:267
|
1735 |
+
msgid "Virgin Islands (British)"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
+
#: ../lib/tribe-view-helpers.class.php:268
|
1739 |
+
msgid "Virgin Islands (U.S.)"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
+
#: ../lib/tribe-view-helpers.class.php:269
|
1743 |
+
msgid "Wallis And Futuna Islands"
|
1744 |
msgstr ""
|
1745 |
|
1746 |
+
#: ../lib/tribe-view-helpers.class.php:270
|
1747 |
+
msgid "Western Sahara"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
+
#: ../lib/tribe-view-helpers.class.php:271
|
1751 |
+
msgid "Yemen"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
+
#: ../lib/tribe-view-helpers.class.php:272
|
1755 |
+
msgid "Zambia"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
+
#: ../lib/tribe-view-helpers.class.php:273
|
1759 |
+
msgid "Zimbabwe"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
+
#: ../lib/tribe-view-helpers.class.php:293
|
1763 |
+
msgid "Alabama"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
+
#: ../lib/tribe-view-helpers.class.php:294
|
1767 |
+
msgid "Alaska"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
+
#: ../lib/tribe-view-helpers.class.php:295
|
1771 |
+
msgid "Arizona"
|
1772 |
msgstr ""
|
1773 |
|
1774 |
+
#: ../lib/tribe-view-helpers.class.php:296
|
1775 |
+
msgid "Arkansas"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
+
#: ../lib/tribe-view-helpers.class.php:297
|
1779 |
+
msgid "California"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: ../lib/tribe-view-helpers.class.php:298
|
1783 |
+
msgid "Colorado"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
+
#: ../lib/tribe-view-helpers.class.php:299
|
1787 |
+
msgid "Connecticut"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: ../lib/tribe-view-helpers.class.php:300
|
1791 |
+
msgid "Delaware"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
+
#: ../lib/tribe-view-helpers.class.php:301
|
1795 |
+
msgid "District of Columbia"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
+
#: ../lib/tribe-view-helpers.class.php:302
|
1799 |
+
msgid "Florida"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
+
#: ../lib/tribe-view-helpers.class.php:304
|
1803 |
+
msgid "Hawaii"
|
|
|
1804 |
msgstr ""
|
1805 |
|
1806 |
+
#: ../lib/tribe-view-helpers.class.php:305
|
1807 |
+
msgid "Idaho"
|
|
|
|
|
1808 |
msgstr ""
|
1809 |
|
1810 |
+
#: ../lib/tribe-view-helpers.class.php:306
|
1811 |
+
msgid "Illinois"
|
|
|
|
|
1812 |
msgstr ""
|
1813 |
|
1814 |
+
#: ../lib/tribe-view-helpers.class.php:307
|
1815 |
+
msgid "Indiana"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
+
#: ../lib/tribe-view-helpers.class.php:308
|
1819 |
+
msgid "Iowa"
|
|
|
1820 |
msgstr ""
|
1821 |
|
1822 |
+
#: ../lib/tribe-view-helpers.class.php:309
|
1823 |
+
msgid "Kansas"
|
|
|
1824 |
msgstr ""
|
1825 |
|
1826 |
+
#: ../lib/tribe-view-helpers.class.php:310
|
1827 |
+
msgid "Kentucky"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
+
#: ../lib/tribe-view-helpers.class.php:311
|
1831 |
+
msgid "Louisiana"
|
|
|
1832 |
msgstr ""
|
1833 |
|
1834 |
+
#: ../lib/tribe-view-helpers.class.php:312
|
1835 |
+
msgid "Maine"
|
|
|
1836 |
msgstr ""
|
1837 |
|
1838 |
+
#: ../lib/tribe-view-helpers.class.php:313
|
1839 |
+
msgid "Maryland"
|
|
|
|
|
1840 |
msgstr ""
|
1841 |
|
1842 |
+
#: ../lib/tribe-view-helpers.class.php:314
|
1843 |
+
msgid "Massachusetts"
|
|
|
1844 |
msgstr ""
|
1845 |
|
1846 |
+
#: ../lib/tribe-view-helpers.class.php:315
|
1847 |
+
msgid "Michigan"
|
|
|
1848 |
msgstr ""
|
1849 |
|
1850 |
+
#: ../lib/tribe-view-helpers.class.php:316
|
1851 |
+
msgid "Minnesota"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
+
#: ../lib/tribe-view-helpers.class.php:317
|
1855 |
+
msgid "Mississippi"
|
|
|
1856 |
msgstr ""
|
1857 |
|
1858 |
+
#: ../lib/tribe-view-helpers.class.php:318
|
1859 |
+
msgid "Missouri"
|
|
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: ../lib/tribe-view-helpers.class.php:319
|
1863 |
+
msgid "Montana"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: ../lib/tribe-view-helpers.class.php:320
|
1867 |
+
msgid "Nebraska"
|
|
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: ../lib/tribe-view-helpers.class.php:321
|
1871 |
+
msgid "Nevada"
|
|
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: ../lib/tribe-view-helpers.class.php:322
|
1875 |
+
msgid "New Hampshire"
|
|
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: ../lib/tribe-view-helpers.class.php:323
|
1879 |
+
msgid "New Jersey"
|
|
|
1880 |
msgstr ""
|
1881 |
|
1882 |
+
#: ../lib/tribe-view-helpers.class.php:324
|
1883 |
+
msgid "New Mexico"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
+
#: ../lib/tribe-view-helpers.class.php:325
|
1887 |
+
msgid "New York"
|
|
|
1888 |
msgstr ""
|
1889 |
|
1890 |
+
#: ../lib/tribe-view-helpers.class.php:326
|
1891 |
+
msgid "North Carolina"
|
|
|
1892 |
msgstr ""
|
1893 |
|
1894 |
+
#: ../lib/tribe-view-helpers.class.php:327
|
1895 |
+
msgid "North Dakota"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
+
#: ../lib/tribe-view-helpers.class.php:328
|
1899 |
+
msgid "Ohio"
|
|
|
1900 |
msgstr ""
|
1901 |
|
1902 |
+
#: ../lib/tribe-view-helpers.class.php:329
|
1903 |
+
msgid "Oklahoma"
|
|
|
1904 |
msgstr ""
|
1905 |
|
1906 |
+
#: ../lib/tribe-view-helpers.class.php:330
|
1907 |
+
msgid "Oregon"
|
|
|
1908 |
msgstr ""
|
1909 |
|
1910 |
+
#: ../lib/tribe-view-helpers.class.php:331
|
1911 |
+
msgid "Pennsylvania"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
+
#: ../lib/tribe-view-helpers.class.php:332
|
1915 |
+
msgid "Rhode Island"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
+
#: ../lib/tribe-view-helpers.class.php:333
|
1919 |
+
msgid "South Carolina"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
+
#: ../lib/tribe-view-helpers.class.php:334
|
1923 |
+
msgid "South Dakota"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
+
#: ../lib/tribe-view-helpers.class.php:335
|
1927 |
+
msgid "Tennessee"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
+
#: ../lib/tribe-view-helpers.class.php:336
|
1931 |
+
msgid "Texas"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
+
#: ../lib/tribe-view-helpers.class.php:337
|
1935 |
+
msgid "Utah"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
+
#: ../lib/tribe-view-helpers.class.php:338
|
1939 |
+
msgid "Vermont"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
+
#: ../lib/tribe-view-helpers.class.php:339
|
1943 |
+
msgid "Virginia"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
+
#: ../lib/tribe-view-helpers.class.php:340
|
1947 |
+
msgid "Washington"
|
1948 |
msgstr ""
|
1949 |
|
1950 |
+
#: ../lib/tribe-view-helpers.class.php:341
|
1951 |
+
msgid "West Virginia"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
+
#: ../lib/tribe-view-helpers.class.php:342
|
1955 |
+
msgid "Wisconsin"
|
|
|
1956 |
msgstr ""
|
1957 |
|
1958 |
+
#: ../lib/tribe-view-helpers.class.php:343
|
1959 |
+
msgid "Wyoming"
|
|
|
|
|
1960 |
msgstr ""
|
1961 |
|
1962 |
#: ../lib/widget-list.class.php:16
|
1971 |
msgid "There are no upcoming events at this time."
|
1972 |
msgstr ""
|
1973 |
|
1974 |
+
#: ../public/template-tags/general.php:118
|
1975 |
+
msgid "Category:"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
+
#: ../public/template-tags/general.php:235
|
1979 |
+
msgid "Free"
|
|
|
1980 |
msgstr ""
|
1981 |
|
1982 |
#: ../public/template-tags/loop.php:130
|
1983 |
msgid "Calendar of Events"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
+
#: ../views/ecp-single-template.php:24
|
1987 |
+
msgid "Edit"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
+
#: ../views/events-list-load-widget-display.php:52
|
1991 |
+
msgid "All Day"
|
1992 |
+
msgstr ""
|
1993 |
+
|
1994 |
+
#: ../views/gridview.php:42
|
1995 |
+
#: ../views/list.php:165
|
1996 |
+
#: ../views/single.php:101
|
1997 |
+
msgid "iCal Import"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
#: ../views/list.php:50
|
2057 |
msgid "Next Events »"
|
2058 |
msgstr ""
|
2059 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2060 |
#: ../views/single.php:13
|
2061 |
msgid "« Back to Events"
|
2062 |
msgstr ""
|
2094 |
msgid "+ Google Calendar"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
+
#: ../views/table-mini.php:24
|
2098 |
+
msgid "View all »"
|
2099 |
+
msgstr ""
|
2100 |
+
|
lib/template-tags-deprecated.php
CHANGED
@@ -28,7 +28,7 @@ if ( class_exists('TribeEvents') ) {
|
|
28 |
function tribe_get_recurrence_text( $postId = null ) {
|
29 |
$postId = TribeEvents::postIdHelper( $postId );
|
30 |
$tribe_ecp = TribeEvents::instance();
|
31 |
-
|
32 |
}
|
33 |
}
|
34 |
|
28 |
function tribe_get_recurrence_text( $postId = null ) {
|
29 |
$postId = TribeEvents::postIdHelper( $postId );
|
30 |
$tribe_ecp = TribeEvents::instance();
|
31 |
+
return (class_exists('TribeEventsRecurrenceMeta')) ? apply_filters( 'tribe_get_recurrence_text', TribeEventsRecurrenceMeta::recurrenceToText( $postId ) ) : '';
|
32 |
}
|
33 |
}
|
34 |
|
lib/the-events-calendar.class.php
CHANGED
@@ -16,7 +16,7 @@ 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.
|
20 |
const FEED_URL = 'http://tri.be/category/products/feed/';
|
21 |
|
22 |
protected $postTypeArgs = array(
|
@@ -129,7 +129,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
129 |
protected function __construct( ) {
|
130 |
$this->pluginPath = trailingslashit( dirname( dirname(__FILE__) ) );
|
131 |
$this->pluginDir = trailingslashit( basename( $this->pluginPath ) );
|
132 |
-
$this->pluginUrl =
|
133 |
if (self::supportedVersion('wordpress') && self::supportedVersion('php')) {
|
134 |
register_deactivation_hook( __FILE__, array( $this, 'on_deactivate' ) );
|
135 |
$this->addFilters();
|
@@ -187,7 +187,13 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
187 |
/* Add nav menu item - thanks to http://wordpress.org/extend/plugins/cpt-archives-in-nav-menus/ */
|
188 |
add_filter( 'nav_menu_items_' . TribeEvents::POSTTYPE, array( $this, 'add_events_checkbox_to_menu' ), null, 3 );
|
189 |
add_filter( 'wp_nav_menu_objects', array( $this, 'add_current_menu_item_class_to_events'), null, 2);
|
190 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
191 |
add_filter( 'generate_rewrite_rules', array( $this, 'filterRewriteRules' ) );
|
192 |
}
|
193 |
|
@@ -277,7 +283,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
277 |
|
278 |
// update taxonomy names
|
279 |
$wpdb->update($wpdb->term_taxonomy, array( 'taxonomy' => self::TAXONOMY ), array( 'taxonomy' => 'sp_events_cat') );
|
280 |
-
update_option('tribe_events_db_version', '2.0.
|
281 |
}
|
282 |
}
|
283 |
|
@@ -324,7 +330,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
324 |
public function add_current_menu_item_class_to_events( $items, $args ) {
|
325 |
foreach($items as $item) {
|
326 |
if($item->url == $this->getLink() ) {
|
327 |
-
if ( is_singular( TribeEvents::POSTTYPE
|
328 |
|| is_singular( TribeEvents::VENUE_POST_TYPE )
|
329 |
|| is_tax(TribeEvents::TAXONOMY)
|
330 |
|| ( ( tribe_is_upcoming()
|
@@ -436,7 +442,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
436 |
return null;
|
437 |
}
|
438 |
|
439 |
-
public function maybeAddEventTitle($title, $sep){
|
440 |
if(get_query_var('eventDisplay') == 'upcoming'){
|
441 |
$new_title = __("Upcoming Events", 'tribe-events-calendar'). ' '.$sep . ' ' . $title;
|
442 |
}elseif(get_query_var('eventDisplay') == 'past'){
|
@@ -467,7 +473,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
467 |
|
468 |
public function emptyEventContent( $content ) {
|
469 |
global $post;
|
470 |
-
if ( '' == $content && $post->post_type == self::POSTTYPE ) {
|
471 |
$content = __('No description has been entered for this event.', 'tribe-events-calendar');
|
472 |
}
|
473 |
return $content;
|
@@ -492,9 +498,25 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
492 |
return $c;
|
493 |
}
|
494 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
495 |
public function post_class( $c ) {
|
496 |
global $post;
|
497 |
-
if ( $post->post_type == self::POSTTYPE && $terms = get_the_terms( $post->ID , self::TAXONOMY ) ) {
|
498 |
foreach ($terms as $term) {
|
499 |
$c[] = 'cat_' . sanitize_html_class($term->slug, $term->term_taxonomy_id);
|
500 |
}
|
@@ -616,53 +638,53 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
616 |
|
617 |
$messages[self::POSTTYPE] = array(
|
618 |
0 => '', // Unused. Messages start at index 1.
|
619 |
-
1 => sprintf( __('Event updated. <a href="%s">View event</a>'), esc_url( get_permalink($post_ID) ) ),
|
620 |
-
2 => __('Custom field updated.'),
|
621 |
-
3 => __('Custom field deleted.'),
|
622 |
-
4 => __('Event updated.'),
|
623 |
/* translators: %s: date and time of the revision */
|
624 |
-
5 => isset($_GET['revision']) ? sprintf( __('Event restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
|
625 |
-
6 => sprintf( __('Event published. <a href="%s">View event</a>'), esc_url( get_permalink($post_ID) ) ),
|
626 |
-
7 => __('Event saved.'),
|
627 |
-
8 => sprintf( __('Event submitted. <a target="_blank" href="%s">Preview event</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
|
628 |
-
9 => sprintf( __('Event scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview event</a>'),
|
629 |
// translators: Publish box date format, see http://php.net/date
|
630 |
-
date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post->post_date ) ), esc_url( get_permalink($post_ID) ) ),
|
631 |
-
10 => sprintf( __('Event draft updated. <a target="_blank" href="%s">Preview event</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
|
632 |
);
|
633 |
|
634 |
$messages[self::VENUE_POST_TYPE] = array(
|
635 |
0 => '', // Unused. Messages start at index 1.
|
636 |
-
1 => sprintf( __('Venue updated. <a href="%s">View venue</a>'), esc_url( get_permalink($post_ID) ) ),
|
637 |
-
2 => __('Custom field updated.'),
|
638 |
-
3 => __('Custom field deleted.'),
|
639 |
-
4 => __('Venue updated.'),
|
640 |
/* translators: %s: date and time of the revision */
|
641 |
-
5 => isset($_GET['revision']) ? sprintf( __('Venue restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
|
642 |
-
6 => sprintf( __('Venue published. <a href="%s">View venue</a>'), esc_url( get_permalink($post_ID) ) ),
|
643 |
7 => __('Venue saved.'),
|
644 |
-
8 => sprintf( __('Venue submitted. <a target="_blank" href="%s">Preview venue</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
|
645 |
-
9 => sprintf( __('Venue scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview venue</a>'),
|
646 |
// translators: Publish box date format, see http://php.net/date
|
647 |
-
date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post->post_date ) ), esc_url( get_permalink($post_ID) ) ),
|
648 |
-
10 => sprintf( __('Venue draft updated. <a target="_blank" href="%s">Preview venue</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
|
649 |
);
|
650 |
|
651 |
$messages[self::ORGANIZER_POST_TYPE] = array(
|
652 |
0 => '', // Unused. Messages start at index 1.
|
653 |
-
1 => sprintf( __('Organizer updated. <a href="%s">View organizer</a>'), esc_url( get_permalink($post_ID) ) ),
|
654 |
-
2 => __('Custom field updated.'),
|
655 |
-
3 => __('Custom field deleted.'),
|
656 |
-
4 => __('Organizer updated.'),
|
657 |
/* translators: %s: date and time of the revision */
|
658 |
-
5 => isset($_GET['revision']) ? sprintf( __('Organizer restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
|
659 |
-
6 => sprintf( __('Organizer published. <a href="%s">View organizer</a>'), esc_url( get_permalink($post_ID) ) ),
|
660 |
7 => __('Organizer saved.'),
|
661 |
-
8 => sprintf( __('Organizer submitted. <a target="_blank" href="%s">Preview organizer</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
|
662 |
-
9 => sprintf( __('Organizer scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview organizer</a>'),
|
663 |
// translators: Publish box date format, see http://php.net/date
|
664 |
-
date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post->post_date ) ), esc_url( get_permalink($post_ID) ) ),
|
665 |
-
10 => sprintf( __('Organizer draft updated. <a target="_blank" href="%s">Preview organizer</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
|
666 |
);
|
667 |
|
668 |
return $messages;
|
@@ -803,6 +825,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
803 |
'showComments',
|
804 |
'displayEventsOnHomepage',
|
805 |
'debugEvents',
|
|
|
806 |
);
|
807 |
foreach ($boolean_opts as $opt) {
|
808 |
$options[$opt] = (isset($_POST[$opt])) ? true : false;
|
@@ -815,7 +838,6 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
815 |
'spEventsAfterHTML',
|
816 |
'spEventsBeforeHTML',
|
817 |
'spEventsCountries',
|
818 |
-
'defaultValueReplace',
|
819 |
'eventsDefaultVenueID',
|
820 |
'eventsDefaultOrganizerID',
|
821 |
'eventsDefaultState',
|
@@ -832,7 +854,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
832 |
$options[$opt] = $_POST[$opt];
|
833 |
}
|
834 |
|
835 |
-
$options['spEventsCountries'] = stripslashes($options['spEventsCountries']);
|
836 |
|
837 |
// events slug happiness
|
838 |
$slug = $options['eventsSlug'];
|
@@ -896,7 +918,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
896 |
}
|
897 |
if ( update_option( TribeEvents::OPTIONNAME, $options ) ) {
|
898 |
self::$options = apply_filters( 'tribe_get_options', $options );
|
899 |
-
if ( self::$options['eventsSlug'] != '' ) {
|
900 |
$this->flushRewriteRules();
|
901 |
}
|
902 |
} else {
|
@@ -964,7 +986,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
964 |
wp_enqueue_script('sp-events-calendar-script', $eventsURL.'events.js', array('jquery', 'sp-events-pjax') );
|
965 |
// is there an events.css file in the theme?
|
966 |
if ( $user_style = locate_template(array('events/events.css')) ) {
|
967 |
-
$styleUrl = str_replace(
|
968 |
}
|
969 |
else {
|
970 |
$styleUrl = $eventsURL.'events.css';
|
@@ -1002,7 +1024,8 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
1002 |
|
1003 |
public function setReccuringEventDates( $post ) {
|
1004 |
if( function_exists('tribe_is_recurring_event') &&
|
1005 |
-
is_singular(
|
|
|
1006 |
tribe_is_recurring_event() &&
|
1007 |
!tribe_is_showing_all() &&
|
1008 |
!tribe_is_upcoming() &&
|
@@ -1262,9 +1285,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
1262 |
case 'single':
|
1263 |
global $post;
|
1264 |
$post = $secondary ? $secondary : $post;
|
1265 |
-
remove_filter( 'post_type_link', array($this, 'addDateToRecurringEvents') );
|
1266 |
$link = trailingslashit(get_permalink($post));
|
1267 |
-
add_filter( 'post_type_link', array($this, 'addDateToRecurringEvents'), 10, 2 );
|
1268 |
return $link;
|
1269 |
case 'all':
|
1270 |
remove_filter( 'post_type_link', array($this, 'addDateToRecurringEvents') );
|
@@ -1444,6 +1465,8 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
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 |
|
@@ -1459,12 +1482,18 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
1459 |
$_POST['Organizer'] = stripslashes_deep($_POST['organizer']);
|
1460 |
$_POST['Venue'] = stripslashes_deep($_POST['venue']);
|
1461 |
|
1462 |
-
|
|
|
|
|
|
|
|
|
|
|
1463 |
$_POST['Venue'] = array('VenueID' => $_POST['Venue']['VenueID']);
|
1464 |
|
1465 |
-
if( !empty($_POST['Organizer']['OrganizerID']) )
|
1466 |
$_POST['Organizer'] = array('OrganizerID' => $_POST['Organizer']['OrganizerID']);
|
1467 |
-
|
|
|
1468 |
TribeEventsAPI::saveEventMeta($postId, $_POST, $post);
|
1469 |
}
|
1470 |
|
@@ -1491,7 +1520,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
1491 |
//That would be bad.
|
1492 |
remove_action( 'save_post', array( $this, 'save_venue_data' ), 16, 2 );
|
1493 |
|
1494 |
-
if( !$_POST['post_title'] ) { $_POST['post_title'] = "Unnamed Venue"; }
|
1495 |
$_POST['venue']['Venue'] = $_POST['post_title'];
|
1496 |
$data = stripslashes_deep($_POST['venue']);
|
1497 |
$venue_id = TribeEventsAPI::updateVenue($postID, $data);
|
@@ -1536,6 +1565,12 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
1536 |
|
1537 |
$organizer_id = TribeEventsAPI::updateOrganizer($postID, $data);
|
1538 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1539 |
return $organizer_id;
|
1540 |
}
|
1541 |
|
@@ -1602,19 +1637,19 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
1602 |
$$tag = class_exists('TribeEventsPro') ? tribe_get_option('eventsDefault'.$cleaned_tag) : "";
|
1603 |
}
|
1604 |
}
|
1605 |
-
|
1606 |
-
if( isset($_EventOrganizerID) && $_EventOrganizerID ) {
|
1607 |
foreach($this->organizerTags as $tag) {
|
1608 |
$$tag = get_post_meta($_EventOrganizerID, $tag, true );
|
1609 |
}
|
1610 |
}
|
1611 |
|
1612 |
-
if(isset($_EventVenueID) && $_EventVenueID){
|
1613 |
foreach($this->venueTags as $tag) {
|
1614 |
$$tag = get_post_meta($_EventVenueID, $tag, true );
|
1615 |
}
|
1616 |
|
1617 |
-
}
|
1618 |
$defaults = $this->venueTags;
|
1619 |
$defaults[] = '_VenueState';
|
1620 |
$defaults[] = '_VenueProvince';
|
@@ -1629,10 +1664,15 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
1629 |
${'_Venue'.$cleaned_tag} = class_exists('TribeEventsPro') ? tribe_get_option('eventsDefault'.$cleaned_tag) : "";
|
1630 |
}
|
1631 |
}
|
1632 |
-
|
1633 |
-
|
|
|
|
|
|
|
1634 |
}
|
1635 |
-
|
|
|
|
|
1636 |
$_EventAllDay = isset($_EventAllDay) ? $_EventAllDay : false;
|
1637 |
$isEventAllDay = ( $_EventAllDay == 'yes' || ! TribeDateUtils::dateOnly( $_EventStartDate ) ) ? 'checked="checked"' : ''; // default is all day for new posts
|
1638 |
$startMonthOptions = TribeEventsViewHelpers::getMonthOptions( $_EventStartDate );
|
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.3';
|
20 |
const FEED_URL = 'http://tri.be/category/products/feed/';
|
21 |
|
22 |
protected $postTypeArgs = array(
|
129 |
protected function __construct( ) {
|
130 |
$this->pluginPath = trailingslashit( dirname( dirname(__FILE__) ) );
|
131 |
$this->pluginDir = trailingslashit( basename( $this->pluginPath ) );
|
132 |
+
$this->pluginUrl = plugins_url().'/'.$this->pluginDir;
|
133 |
if (self::supportedVersion('wordpress') && self::supportedVersion('php')) {
|
134 |
register_deactivation_hook( __FILE__, array( $this, 'on_deactivate' ) );
|
135 |
$this->addFilters();
|
187 |
/* Add nav menu item - thanks to http://wordpress.org/extend/plugins/cpt-archives-in-nav-menus/ */
|
188 |
add_filter( 'nav_menu_items_' . TribeEvents::POSTTYPE, array( $this, 'add_events_checkbox_to_menu' ), null, 3 );
|
189 |
add_filter( 'wp_nav_menu_objects', array( $this, 'add_current_menu_item_class_to_events'), null, 2);
|
190 |
+
|
191 |
+
// a fix for Twenty Eleven specifically
|
192 |
+
if (function_exists('twentyeleven_body_classes')) {
|
193 |
+
remove_filter( 'body_class', 'twentyeleven_body_classes' );
|
194 |
+
add_filter( 'body_class', array( $this, 'twentyeleven_body_classes' ) );
|
195 |
+
}
|
196 |
+
|
197 |
add_filter( 'generate_rewrite_rules', array( $this, 'filterRewriteRules' ) );
|
198 |
}
|
199 |
|
283 |
|
284 |
// update taxonomy names
|
285 |
$wpdb->update($wpdb->term_taxonomy, array( 'taxonomy' => self::TAXONOMY ), array( 'taxonomy' => 'sp_events_cat') );
|
286 |
+
update_option('tribe_events_db_version', '2.0.3');
|
287 |
}
|
288 |
}
|
289 |
|
330 |
public function add_current_menu_item_class_to_events( $items, $args ) {
|
331 |
foreach($items as $item) {
|
332 |
if($item->url == $this->getLink() ) {
|
333 |
+
if ( (is_singular() && get_post_type() == TribeEvents::POSTTYPE)
|
334 |
|| is_singular( TribeEvents::VENUE_POST_TYPE )
|
335 |
|| is_tax(TribeEvents::TAXONOMY)
|
336 |
|| ( ( tribe_is_upcoming()
|
442 |
return null;
|
443 |
}
|
444 |
|
445 |
+
public function maybeAddEventTitle($title, $sep = null){
|
446 |
if(get_query_var('eventDisplay') == 'upcoming'){
|
447 |
$new_title = __("Upcoming Events", 'tribe-events-calendar'). ' '.$sep . ' ' . $title;
|
448 |
}elseif(get_query_var('eventDisplay') == 'past'){
|
473 |
|
474 |
public function emptyEventContent( $content ) {
|
475 |
global $post;
|
476 |
+
if ( '' == $content && isset($post->post_type) && $post->post_type == self::POSTTYPE ) {
|
477 |
$content = __('No description has been entered for this event.', 'tribe-events-calendar');
|
478 |
}
|
479 |
return $content;
|
498 |
return $c;
|
499 |
}
|
500 |
|
501 |
+
|
502 |
+
/**
|
503 |
+
* this funciton provides compatibility for twenty eleven body classes
|
504 |
+
* without this slight rewrite of the twentyeleven_body_classes, there is a persistent php notice
|
505 |
+
* on some event pages
|
506 |
+
*/
|
507 |
+
public function twentyeleven_body_classes( $c ) {
|
508 |
+
if ( function_exists( 'is_multi_author' ) && ! is_multi_author() )
|
509 |
+
$c[] = 'single-author';
|
510 |
+
|
511 |
+
if ( is_singular() && get_post_type() != self::POSTTYPE && ! is_home() && ! is_page_template( 'showcase.php' ) && ! is_page_template( 'sidebar-page.php' ) )
|
512 |
+
$c[] = 'singular';
|
513 |
+
|
514 |
+
return $c;
|
515 |
+
}
|
516 |
+
|
517 |
public function post_class( $c ) {
|
518 |
global $post;
|
519 |
+
if ( is_object($post) && isset($post->post_type) && $post->post_type == self::POSTTYPE && $terms = get_the_terms( $post->ID , self::TAXONOMY ) ) {
|
520 |
foreach ($terms as $term) {
|
521 |
$c[] = 'cat_' . sanitize_html_class($term->slug, $term->term_taxonomy_id);
|
522 |
}
|
638 |
|
639 |
$messages[self::POSTTYPE] = array(
|
640 |
0 => '', // Unused. Messages start at index 1.
|
641 |
+
1 => sprintf( __('Event updated. <a href="%s">View event</a>', 'tribe-events-calendar'), esc_url( get_permalink($post_ID) ) ),
|
642 |
+
2 => __('Custom field updated.', 'tribe-events-calendar'),
|
643 |
+
3 => __('Custom field deleted.', 'tribe-events-calendar'),
|
644 |
+
4 => __('Event updated.', 'tribe-events-calendar'),
|
645 |
/* translators: %s: date and time of the revision */
|
646 |
+
5 => isset($_GET['revision']) ? sprintf( __('Event restored to revision from %s', 'tribe-events-calendar'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
|
647 |
+
6 => sprintf( __('Event published. <a href="%s">View event</a>', 'tribe-events-calendar'), esc_url( get_permalink($post_ID) ) ),
|
648 |
+
7 => __('Event saved.', 'tribe-events-calendar'),
|
649 |
+
8 => sprintf( __('Event submitted. <a target="_blank" href="%s">Preview event</a>', 'tribe-events-calendar'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
|
650 |
+
9 => sprintf( __('Event scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview event</a>', 'tribe-events-calendar'),
|
651 |
// translators: Publish box date format, see http://php.net/date
|
652 |
+
date_i18n( __( 'M j, Y @ G:i' , 'tribe-events-calendar'), strtotime( $post->post_date ) ), esc_url( get_permalink($post_ID) ) ),
|
653 |
+
10 => sprintf( __('Event draft updated. <a target="_blank" href="%s">Preview event</a>', 'tribe-events-calendar'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
|
654 |
);
|
655 |
|
656 |
$messages[self::VENUE_POST_TYPE] = array(
|
657 |
0 => '', // Unused. Messages start at index 1.
|
658 |
+
1 => sprintf( __('Venue updated. <a href="%s">View venue</a>', 'tribe-events-calendar'), esc_url( get_permalink($post_ID) ) ),
|
659 |
+
2 => __('Custom field updated.', 'tribe-events-calendar'),
|
660 |
+
3 => __('Custom field deleted.', 'tribe-events-calendar'),
|
661 |
+
4 => __('Venue updated.', 'tribe-events-calendar'),
|
662 |
/* translators: %s: date and time of the revision */
|
663 |
+
5 => isset($_GET['revision']) ? sprintf( __('Venue restored to revision from %s', 'tribe-events-calendar'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
|
664 |
+
6 => sprintf( __('Venue published. <a href="%s">View venue</a>', 'tribe-events-calendar'), esc_url( get_permalink($post_ID) ) ),
|
665 |
7 => __('Venue saved.'),
|
666 |
+
8 => sprintf( __('Venue submitted. <a target="_blank" href="%s">Preview venue</a>', 'tribe-events-calendar'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
|
667 |
+
9 => sprintf( __('Venue scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview venue</a>', 'tribe-events-calendar'),
|
668 |
// translators: Publish box date format, see http://php.net/date
|
669 |
+
date_i18n( __( 'M j, Y @ G:i' , 'tribe-events-calendar'), strtotime( $post->post_date ) ), esc_url( get_permalink($post_ID) ) ),
|
670 |
+
10 => sprintf( __('Venue draft updated. <a target="_blank" href="%s">Preview venue</a>', 'tribe-events-calendar'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
|
671 |
);
|
672 |
|
673 |
$messages[self::ORGANIZER_POST_TYPE] = array(
|
674 |
0 => '', // Unused. Messages start at index 1.
|
675 |
+
1 => sprintf( __('Organizer updated. <a href="%s">View organizer</a>', 'tribe-events-calendar'), esc_url( get_permalink($post_ID) ) ),
|
676 |
+
2 => __('Custom field updated.', 'tribe-events-calendar'),
|
677 |
+
3 => __('Custom field deleted.', 'tribe-events-calendar'),
|
678 |
+
4 => __('Organizer updated.', 'tribe-events-calendar'),
|
679 |
/* translators: %s: date and time of the revision */
|
680 |
+
5 => isset($_GET['revision']) ? sprintf( __('Organizer restored to revision from %s', 'tribe-events-calendar'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
|
681 |
+
6 => sprintf( __('Organizer published. <a href="%s">View organizer</a>', 'tribe-events-calendar'), esc_url( get_permalink($post_ID) ) ),
|
682 |
7 => __('Organizer saved.'),
|
683 |
+
8 => sprintf( __('Organizer submitted. <a target="_blank" href="%s">Preview organizer</a>', 'tribe-events-calendar'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
|
684 |
+
9 => sprintf( __('Organizer scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview organizer</a>', 'tribe-events-calendar'),
|
685 |
// translators: Publish box date format, see http://php.net/date
|
686 |
+
date_i18n( __( 'M j, Y @ G:i' , 'tribe-events-calendar'), strtotime( $post->post_date ) ), esc_url( get_permalink($post_ID) ) ),
|
687 |
+
10 => sprintf( __('Organizer draft updated. <a target="_blank" href="%s">Preview organizer</a>', 'tribe-events-calendar'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
|
688 |
);
|
689 |
|
690 |
return $messages;
|
825 |
'showComments',
|
826 |
'displayEventsOnHomepage',
|
827 |
'debugEvents',
|
828 |
+
'defaultValueReplace',
|
829 |
);
|
830 |
foreach ($boolean_opts as $opt) {
|
831 |
$options[$opt] = (isset($_POST[$opt])) ? true : false;
|
838 |
'spEventsAfterHTML',
|
839 |
'spEventsBeforeHTML',
|
840 |
'spEventsCountries',
|
|
|
841 |
'eventsDefaultVenueID',
|
842 |
'eventsDefaultOrganizerID',
|
843 |
'eventsDefaultState',
|
854 |
$options[$opt] = $_POST[$opt];
|
855 |
}
|
856 |
|
857 |
+
$options['spEventsCountries'] = (isset($options['spEventsCountries'])) ? stripslashes($options['spEventsCountries']) : null;
|
858 |
|
859 |
// events slug happiness
|
860 |
$slug = $options['eventsSlug'];
|
918 |
}
|
919 |
if ( update_option( TribeEvents::OPTIONNAME, $options ) ) {
|
920 |
self::$options = apply_filters( 'tribe_get_options', $options );
|
921 |
+
if ( isset(self::$options['eventsSlug']) && self::$options['eventsSlug'] != '' ) {
|
922 |
$this->flushRewriteRules();
|
923 |
}
|
924 |
} else {
|
986 |
wp_enqueue_script('sp-events-calendar-script', $eventsURL.'events.js', array('jquery', 'sp-events-pjax') );
|
987 |
// is there an events.css file in the theme?
|
988 |
if ( $user_style = locate_template(array('events/events.css')) ) {
|
989 |
+
$styleUrl = str_replace( get_theme_root(), get_theme_root_uri(), $user_style );
|
990 |
}
|
991 |
else {
|
992 |
$styleUrl = $eventsURL.'events.css';
|
1024 |
|
1025 |
public function setReccuringEventDates( $post ) {
|
1026 |
if( function_exists('tribe_is_recurring_event') &&
|
1027 |
+
is_singular() &&
|
1028 |
+
get_post_type() == self::POSTTYPE &&
|
1029 |
tribe_is_recurring_event() &&
|
1030 |
!tribe_is_showing_all() &&
|
1031 |
!tribe_is_upcoming() &&
|
1285 |
case 'single':
|
1286 |
global $post;
|
1287 |
$post = $secondary ? $secondary : $post;
|
|
|
1288 |
$link = trailingslashit(get_permalink($post));
|
|
|
1289 |
return $link;
|
1290 |
case 'all':
|
1291 |
remove_filter( 'post_type_link', array($this, 'addDateToRecurringEvents') );
|
1465 |
}
|
1466 |
|
1467 |
// remove these actions even if nonce is not set
|
1468 |
+
// note: we're removing these because these actions are actually for PRO,
|
1469 |
+
// these functions are used when editing an existing venue or organizer
|
1470 |
remove_action( 'save_post', array( $this, 'save_venue_data' ), 16, 2 );
|
1471 |
remove_action( 'save_post', array( $this, 'save_organizer_data' ), 16, 2 );
|
1472 |
|
1482 |
$_POST['Organizer'] = stripslashes_deep($_POST['organizer']);
|
1483 |
$_POST['Venue'] = stripslashes_deep($_POST['venue']);
|
1484 |
|
1485 |
+
|
1486 |
+
/**
|
1487 |
+
* When using pro and we have a VenueID/OrganizerID, we just save the ID, because we're not
|
1488 |
+
* editing the venue/organizer from within the event.
|
1489 |
+
*/
|
1490 |
+
if( isset($_POST['Venue']['VenueID']) && !empty($_POST['Venue']['VenueID']) && class_exists('TribeEventsPro') )
|
1491 |
$_POST['Venue'] = array('VenueID' => $_POST['Venue']['VenueID']);
|
1492 |
|
1493 |
+
if( isset($_POST['Organizer']['OrganizerID']) && !empty($_POST['Organizer']['OrganizerID']) && class_exists('TribeEventsPro') )
|
1494 |
$_POST['Organizer'] = array('OrganizerID' => $_POST['Organizer']['OrganizerID']);
|
1495 |
+
|
1496 |
+
|
1497 |
TribeEventsAPI::saveEventMeta($postId, $_POST, $post);
|
1498 |
}
|
1499 |
|
1520 |
//That would be bad.
|
1521 |
remove_action( 'save_post', array( $this, 'save_venue_data' ), 16, 2 );
|
1522 |
|
1523 |
+
if( !isset($_POST['post_title']) || !$_POST['post_title'] ) { $_POST['post_title'] = "Unnamed Venue"; }
|
1524 |
$_POST['venue']['Venue'] = $_POST['post_title'];
|
1525 |
$data = stripslashes_deep($_POST['venue']);
|
1526 |
$venue_id = TribeEventsAPI::updateVenue($postID, $data);
|
1565 |
|
1566 |
$organizer_id = TribeEventsAPI::updateOrganizer($postID, $data);
|
1567 |
|
1568 |
+
/**
|
1569 |
+
* Put our hook back
|
1570 |
+
* @link http://codex.wordpress.org/Plugin_API/Action_Reference/save_post#Avoiding_infinite_loops
|
1571 |
+
*/
|
1572 |
+
add_action( 'save_post', array( $this, 'save_organizer_data' ), 16, 2 );
|
1573 |
+
|
1574 |
return $organizer_id;
|
1575 |
}
|
1576 |
|
1637 |
$$tag = class_exists('TribeEventsPro') ? tribe_get_option('eventsDefault'.$cleaned_tag) : "";
|
1638 |
}
|
1639 |
}
|
1640 |
+
|
1641 |
+
if( isset($_EventOrganizerID) && $_EventOrganizerID && tribe_get_option('defaultValueReplace') ) {
|
1642 |
foreach($this->organizerTags as $tag) {
|
1643 |
$$tag = get_post_meta($_EventOrganizerID, $tag, true );
|
1644 |
}
|
1645 |
}
|
1646 |
|
1647 |
+
if( isset($_EventVenueID) && $_EventVenueID && tribe_get_option('defaultValueReplace') ){
|
1648 |
foreach($this->venueTags as $tag) {
|
1649 |
$$tag = get_post_meta($_EventVenueID, $tag, true );
|
1650 |
}
|
1651 |
|
1652 |
+
}elseif ( tribe_get_option('defaultValueReplace') ){
|
1653 |
$defaults = $this->venueTags;
|
1654 |
$defaults[] = '_VenueState';
|
1655 |
$defaults[] = '_VenueProvince';
|
1664 |
${'_Venue'.$cleaned_tag} = class_exists('TribeEventsPro') ? tribe_get_option('eventsDefault'.$cleaned_tag) : "";
|
1665 |
}
|
1666 |
}
|
1667 |
+
if ( isset($_VenueState) ) {
|
1668 |
+
$_VenueStateProvince = $_VenueState; // we want to use default values here
|
1669 |
+
} else {
|
1670 |
+
$_VenueStateProvince = $_VenueProvince;
|
1671 |
+
}
|
1672 |
}
|
1673 |
+
|
1674 |
+
$_EventStartDate = (isset($_EventStartDate)) ? $_EventStartDate : null;
|
1675 |
+
$_EventEndDate = (isset($_EventEndDate)) ? $_EventEndDate : null;
|
1676 |
$_EventAllDay = isset($_EventAllDay) ? $_EventAllDay : false;
|
1677 |
$isEventAllDay = ( $_EventAllDay == 'yes' || ! TribeDateUtils::dateOnly( $_EventStartDate ) ) ? 'checked="checked"' : ''; // default is all day for new posts
|
1678 |
$startMonthOptions = TribeEventsViewHelpers::getMonthOptions( $_EventStartDate );
|
lib/tribe-admin-events-list.class.php
CHANGED
@@ -37,7 +37,7 @@ if (!class_exists('TribeEventsAdminList')) {
|
|
37 |
public static function add_recurring_event_view_link($actions) {
|
38 |
global $post;
|
39 |
if ( function_exists('tribe_is_recurring_event') && is_array(self::$events_list) && tribe_is_recurring_event(self::$events_list[0]->ID) && isset(self::$events_list[0]) ) {
|
40 |
-
$actions['view'] = '<a href="' . tribe_get_event_link(self::$events_list[0]) . '" title="' . esc_attr( sprintf( __( 'View “%s”' ), $post->post_title ) ) . '" rel="permalink">' . __( 'View' ) . '</a>';
|
41 |
}
|
42 |
|
43 |
return $actions;
|
37 |
public static function add_recurring_event_view_link($actions) {
|
38 |
global $post;
|
39 |
if ( function_exists('tribe_is_recurring_event') && is_array(self::$events_list) && tribe_is_recurring_event(self::$events_list[0]->ID) && isset(self::$events_list[0]) ) {
|
40 |
+
$actions['view'] = '<a href="' . tribe_get_event_link(self::$events_list[0]) . '" title="' . esc_attr( sprintf( __( 'View “%s”', 'tribe-events-calendar' ), $post->post_title ) ) . '" rel="permalink">' . __( 'View', 'tribe-events-calendar' ) . '</a>';
|
41 |
}
|
42 |
|
43 |
return $actions;
|
lib/tribe-event-api.class.php
CHANGED
@@ -9,7 +9,7 @@ if ( !defined('ABSPATH') ) { die('-1'); }
|
|
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(
|
@@ -153,6 +153,9 @@ if (!class_exists('TribeEventsAPI')) {
|
|
153 |
TribeEventsAPI::saveOrganizerMeta($organizerId, $data);
|
154 |
return $organizerId;
|
155 |
}
|
|
|
|
|
|
|
156 |
}
|
157 |
}
|
158 |
|
@@ -208,6 +211,9 @@ if (!class_exists('TribeEventsAPI')) {
|
|
208 |
TribeEventsAPI::saveVenueMeta($venueId, $data);
|
209 |
return $venueId;
|
210 |
}
|
|
|
|
|
|
|
211 |
}
|
212 |
}
|
213 |
|
@@ -242,10 +248,10 @@ if (!class_exists('TribeEventsAPI')) {
|
|
242 |
*/
|
243 |
private static function saveVenueMeta($venueId, $data) {
|
244 |
// TODO: We should probably do away with 'StateProvince' and stick to 'State' and 'Province'.
|
245 |
-
if (!isset($data['StateProvince'])) {
|
246 |
-
if (isset($data['State'])) {
|
247 |
$data['StateProvince'] = $data['State'];
|
248 |
-
} else if(isset($data['Province'])) {
|
249 |
$data['StateProvince'] = $data['Province'];
|
250 |
}
|
251 |
}
|
9 |
if (!class_exists('TribeEventsAPI')) {
|
10 |
class TribeEventsAPI {
|
11 |
public static $valid_venue_keys = array(
|
12 |
+
'Venue', 'Address', 'City', 'Province', 'State', 'StateProvince', 'Province', 'Zip', 'Phone'
|
13 |
);
|
14 |
|
15 |
public static $valid_organizer_keys = array(
|
153 |
TribeEventsAPI::saveOrganizerMeta($organizerId, $data);
|
154 |
return $organizerId;
|
155 |
}
|
156 |
+
} else {
|
157 |
+
// if the venue is blank, let's save the value as 0 instead
|
158 |
+
return 0;
|
159 |
}
|
160 |
}
|
161 |
|
211 |
TribeEventsAPI::saveVenueMeta($venueId, $data);
|
212 |
return $venueId;
|
213 |
}
|
214 |
+
} else {
|
215 |
+
// if the venue is blank, let's save the value as 0 instead
|
216 |
+
return 0;
|
217 |
}
|
218 |
}
|
219 |
|
248 |
*/
|
249 |
private static function saveVenueMeta($venueId, $data) {
|
250 |
// TODO: We should probably do away with 'StateProvince' and stick to 'State' and 'Province'.
|
251 |
+
if (!isset($data['StateProvince']) || $data['StateProvince'] == '') {
|
252 |
+
if (isset($data['State']) && $data['State'] != '') {
|
253 |
$data['StateProvince'] = $data['State'];
|
254 |
+
} else if(isset($data['Province']) && $data['Province'] != '') {
|
255 |
$data['StateProvince'] = $data['Province'];
|
256 |
}
|
257 |
}
|
lib/tribe-the-events-calendar-import.class.php
CHANGED
@@ -125,7 +125,7 @@ if (!class_exists('TribeEventsImport')) {
|
|
125 |
$num_upgraded++;
|
126 |
}
|
127 |
if ( $num_upgraded > 0 ) {
|
128 |
-
self::$upgradeMessage = sprintf( __( 'You successfully migrated (%d) entries.' ), $num_upgraded );
|
129 |
}
|
130 |
}
|
131 |
}
|
125 |
$num_upgraded++;
|
126 |
}
|
127 |
if ( $num_upgraded > 0 ) {
|
128 |
+
self::$upgradeMessage = sprintf( __( 'You successfully migrated (%d) entries.', 'tribe-events-calendar' ), $num_upgraded );
|
129 |
}
|
130 |
}
|
131 |
}
|
public/template-tags/date.php
CHANGED
@@ -33,8 +33,11 @@ if( class_exists( 'TribeEvents' ) ) {
|
|
33 |
if( tribe_get_all_day( $postId ) )
|
34 |
$displayTime = false;
|
35 |
|
|
|
|
|
|
|
36 |
if( isset($post->EventStartDate) ){
|
37 |
-
$date = strtotime( $post->EventStartDate
|
38 |
}else{
|
39 |
return; // '—';
|
40 |
}
|
@@ -65,8 +68,11 @@ if( class_exists( 'TribeEvents' ) ) {
|
|
65 |
if( tribe_get_all_day( $postId ) )
|
66 |
$displayTime = false;
|
67 |
|
|
|
|
|
|
|
68 |
if( isset($post->EventEndDate) ){
|
69 |
-
$date = strtotime( $post->EventEndDate
|
70 |
}else{
|
71 |
return; // '—';
|
72 |
}
|
33 |
if( tribe_get_all_day( $postId ) )
|
34 |
$displayTime = false;
|
35 |
|
36 |
+
if( empty($post->EventStartDate) )
|
37 |
+
$post->EventStartDate = tribe_get_event_meta( $postId, '_EventStartDate', true );
|
38 |
+
|
39 |
if( isset($post->EventStartDate) ){
|
40 |
+
$date = strtotime( $post->EventStartDate );
|
41 |
}else{
|
42 |
return; // '—';
|
43 |
}
|
68 |
if( tribe_get_all_day( $postId ) )
|
69 |
$displayTime = false;
|
70 |
|
71 |
+
if( empty($post->EventEndDate) )
|
72 |
+
$post->EventEndDate = tribe_get_event_meta( $postId, '_EventEndDate', true );
|
73 |
+
|
74 |
if( isset($post->EventEndDate) ){
|
75 |
+
$date = strtotime( $post->EventEndDate );
|
76 |
}else{
|
77 |
return; // '—';
|
78 |
}
|
public/template-tags/general.php
CHANGED
@@ -26,6 +26,21 @@ if( class_exists( 'TribeEvents' ) ) {
|
|
26 |
return $tribe_ecp->getOption($optionName, $default);
|
27 |
}
|
28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
/**
|
30 |
* Event Type Test
|
31 |
*
|
26 |
return $tribe_ecp->getOption($optionName, $default);
|
27 |
}
|
28 |
|
29 |
+
/**
|
30 |
+
* Update Option
|
31 |
+
*
|
32 |
+
* Set specific key from options array, optionally provide a default return value
|
33 |
+
*
|
34 |
+
* @param string $optionName Name of the option to retrieve.
|
35 |
+
* @param string $value Value to save
|
36 |
+
* @return void
|
37 |
+
* @since 2.0.3
|
38 |
+
*/
|
39 |
+
function tribe_update_option($optionName, $value) {
|
40 |
+
$tribe_ecp = TribeEvents::instance();
|
41 |
+
return $tribe_ecp->setOption($optionName, $value);
|
42 |
+
}
|
43 |
+
|
44 |
/**
|
45 |
* Event Type Test
|
46 |
*
|
public/template-tags/organizer.php
CHANGED
@@ -44,8 +44,12 @@ if( class_exists( 'TribeEvents' ) ) {
|
|
44 |
*/
|
45 |
function tribe_get_organizer( $postId = null) {
|
46 |
$postId = TribeEvents::postIdHelper( $postId );
|
47 |
-
$
|
48 |
-
|
|
|
|
|
|
|
|
|
49 |
}
|
50 |
|
51 |
/**
|
44 |
*/
|
45 |
function tribe_get_organizer( $postId = null) {
|
46 |
$postId = TribeEvents::postIdHelper( $postId );
|
47 |
+
$organizer_id = (int) tribe_get_organizer_id( $postId );
|
48 |
+
if ($organizer_id > 0) {
|
49 |
+
$output = esc_html(get_the_title( $organizer_id ));
|
50 |
+
return apply_filters( 'tribe_get_organizer', $output );
|
51 |
+
}
|
52 |
+
return null;
|
53 |
}
|
54 |
|
55 |
/**
|
readme.txt
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
=== The Events Calendar ===
|
2 |
|
3 |
-
Contributors:
|
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.
|
9 |
|
10 |
== Description ==
|
11 |
|
12 |
-
IMPORTANT NOTICE: If you are upgrading from a
|
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 |
|
@@ -45,11 +45,11 @@ Just getting started? Check out our <a href="http://tri.be/support/documentation
|
|
45 |
== Screenshots ==
|
46 |
|
47 |
1. Calendar View
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
|
54 |
== Installation ==
|
55 |
|
@@ -77,8 +77,36 @@ For template tags, you can view our template tag includes in the "public" folder
|
|
77 |
|
78 |
== Changelog ==
|
79 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
= 2.0.2 =
|
81 |
-
|
|
|
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.
|
@@ -88,7 +116,7 @@ Small features, UX and Content Tweaks:
|
|
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.
|
@@ -98,7 +126,7 @@ Bugs:
|
|
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
|
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.
|
@@ -116,7 +144,8 @@ Bugs:
|
|
116 |
* Fixed general PHP notices that appeared with debug turned on in your wp-config file.
|
117 |
|
118 |
= 2.0.1 =
|
119 |
-
|
|
|
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
|
@@ -126,7 +155,7 @@ Small features, UX and Content Tweeks:
|
|
126 |
* Added in line documentation to all template tags and moved them to separate files in the /public folder
|
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
|
@@ -143,9 +172,11 @@ Bugs:
|
|
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.
|
151 |
-
|
|
1 |
=== The Events Calendar ===
|
2 |
|
3 |
+
Contributors: [Current Contributors], shane.pearlman, peterchester, reid.peifer, roblagatta, jkudish, Nick Ciske, Paul Hughes, [Past Contributors], kelseydamas, mattwiebe, dancameron, jgadbois, Justin Endler, [Produced By Modern Tribe Inc], ModernTribe
|
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.3
|
9 |
|
10 |
== Description ==
|
11 |
|
12 |
+
IMPORTANT NOTICE: If you are upgrading from a pre 2.0 version of The Events Calendar, please BACK UP your data before upgrading! This is a significant update.
|
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 |
|
45 |
== Screenshots ==
|
46 |
|
47 |
1. Calendar View
|
48 |
+
2. List View
|
49 |
+
3. Single Post
|
50 |
+
4. Event Editor
|
51 |
+
5. Event List Admin
|
52 |
+
6. Settings Panel
|
53 |
|
54 |
== Installation ==
|
55 |
|
77 |
|
78 |
== Changelog ==
|
79 |
|
80 |
+
= 2.0.3 =
|
81 |
+
|
82 |
+
**Small features, UX and Content Tweaks:**
|
83 |
+
|
84 |
+
* Incorporated get_tribe_custom(ÔField labelÕ) to code base
|
85 |
+
* Code updated to account for additional translation strings
|
86 |
+
* Made the $sep param of TribeEvents::maybeAddEventTitle() optional
|
87 |
+
|
88 |
+
**Bug Fixes:**
|
89 |
+
|
90 |
+
* Organizer data can now be changed on an already-published entry in core
|
91 |
+
* tribe_get_start_date() fixed
|
92 |
+
* Future instances of custom recurrence no longer display inaccurate start/end times
|
93 |
+
* In views/single.php on lines 58, 60 & 62, changed tag to <? instead of <?php
|
94 |
+
* Required changes to WP_PLUGIN_URL (line 126) & WP_CONTENT_URL (line 930) in the.events.calendar.class.php
|
95 |
+
* Deleting a single instance of recurrence in PRO (whether from the list or from within an entry) now works correctly with appropriate prompts/dialogue boxes
|
96 |
+
* Attempting to change from a saved organizer/venue to no organizer/venue now works
|
97 |
+
* Venue no longer behaves bizarrely when no address data added
|
98 |
+
* Fixed issue where event links broke for recurring events whenever a site had permalinks set to default; also fixed general conflicts that occurred when URL rewriting was off
|
99 |
+
* Customized defaults can now be turned off after being enabled under Settings -> The Events Calendar
|
100 |
+
* Removed instances where organizer data displayed as event title for some users
|
101 |
+
* Changes made to custom fields under Settings -> The Events Calendar now take effect upon save
|
102 |
+
* Non-U.S. states and provinces now save correctly
|
103 |
+
* General fixes to improve how default venues/organizers function and are modified
|
104 |
+
* Addressed various PHP notices
|
105 |
+
|
106 |
+
|
107 |
= 2.0.2 =
|
108 |
+
|
109 |
+
**Small features, UX and Content Tweaks:**
|
110 |
|
111 |
* Added link to new user primer (http://tri.be/support/documentation/events-calendar-pro-new-user-primer?ref=tec-readme) to the activation message.
|
112 |
* Added tribe_is_event_in_category conditional to plugin code base.
|
116 |
* Danish translation files incorporated (PRO only) from Christian Andersen
|
117 |
* Italian translation files incorporated (free & PRO) from Stefano Castelli
|
118 |
|
119 |
+
**Bugs:**
|
120 |
|
121 |
* Months will now show appropriate day count, instead of 31 days as they were previously.
|
122 |
* Custom recurring events previously not showing start AND end time (just start time); now are showing both.
|
126 |
* General bugs with weekly recurrence have been squashed.
|
127 |
* Admin page should no longer hang when updating a recurring event.
|
128 |
* Breadcrumbs will now show the correct slug info on Thesis.
|
129 |
+
* Not entering a name for an organizer or venue doesn't stop it from publishing, as it did previously.
|
130 |
* Admin events list now appears with soonest event at the top, not the bottom.
|
131 |
* Deleting instances of recurrence now works within individual entries.
|
132 |
* Unnamed venue/organizer now created when no venue or organizer name added.
|
144 |
* Fixed general PHP notices that appeared with debug turned on in your wp-config file.
|
145 |
|
146 |
= 2.0.1 =
|
147 |
+
|
148 |
+
**Small features, UX and Content Tweeks:**
|
149 |
|
150 |
* Enabled method to turn off event upsell messages on your site in wp-config.php - define( 'TRIBE_HIDE_UPSELL', true );
|
151 |
* Updated migration message to help 1.6.5 users have an easier time when they upgrade to 2.0
|
155 |
* Added in line documentation to all template tags and moved them to separate files in the /public folder
|
156 |
* Added and updated documentation on http://tri.be/support/documentation/
|
157 |
|
158 |
+
**Bugs:**
|
159 |
|
160 |
* Added "00" in the time drop down when in 24 hour mode
|
161 |
* Updated default end time to "17" for 24 hour mode
|
172 |
* Venue / Organizer data not saving for certain cases of recurrence fixed.
|
173 |
|
174 |
= 2.0 =
|
175 |
+
|
176 |
This is such a major re-write that we are starting the change log over.
|
177 |
|
178 |
== Upgrade Notice ==
|
179 |
|
180 |
+
= 2.0.3 =
|
181 |
+
|
182 |
+
2.0.3 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.css
CHANGED
@@ -23,6 +23,12 @@
|
|
23 |
.ui-dialog .ui-dialog-content { border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
|
24 |
.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
|
25 |
.ui-dialog .ui-dialog-buttonpane button { float: right; margin: .5em .4em .5em 0; cursor: pointer; padding: .2em .6em .3em .6em; line-height: 1.4em; width:auto; overflow:visible; text-shadow:none; }
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
|
27 |
.ui-draggable .ui-dialog-titlebar { cursor: move; }
|
28 |
|
23 |
.ui-dialog .ui-dialog-content { border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
|
24 |
.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
|
25 |
.ui-dialog .ui-dialog-buttonpane button { float: right; margin: .5em .4em .5em 0; cursor: pointer; padding: .2em .6em .3em .6em; line-height: 1.4em; width:auto; overflow:visible; text-shadow:none; }
|
26 |
+
|
27 |
+
/* fixes for listing page */
|
28 |
+
.edit-php .ui-dialog .ui-dialog-buttonpane button {padding: 0;}
|
29 |
+
.edit-php .ui-button-text-only .ui-button-text {padding: 5px;}
|
30 |
+
|
31 |
+
|
32 |
.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
|
33 |
.ui-draggable .ui-dialog-titlebar { cursor: move; }
|
34 |
|
resources/events-admin.js
CHANGED
@@ -262,31 +262,7 @@ jQuery(document).ready(function($) {
|
|
262 |
function setupSubmitButton() {
|
263 |
//publishing-action
|
264 |
}
|
265 |
-
|
266 |
-
$('.wp-admin.events-cal .submitdelete').click(function(e) {
|
267 |
-
if(isExistingRecurringEvent()) {
|
268 |
-
var link = $(this);
|
269 |
-
e.preventDefault();
|
270 |
|
271 |
-
$('#deletion-dialog').dialog({
|
272 |
-
//submitdelete
|
273 |
-
modal: true,
|
274 |
-
buttons: [{
|
275 |
-
text: "Delete just this occurrence.",
|
276 |
-
click: function() {
|
277 |
-
document.location = link.attr('href') + '&event_start=' + $(this).data('start');
|
278 |
-
}
|
279 |
-
},
|
280 |
-
{
|
281 |
-
text: "Delete all occurrences of this event.",
|
282 |
-
click: function() {
|
283 |
-
document.location = link.attr('href');
|
284 |
-
}
|
285 |
-
}]
|
286 |
-
});
|
287 |
-
}
|
288 |
-
});
|
289 |
-
|
290 |
// recurrence ui
|
291 |
$('[name="recurrence[type]"]').change(function() {
|
292 |
var curOption = $(this).find("option:selected").val();
|
262 |
function setupSubmitButton() {
|
263 |
//publishing-action
|
264 |
}
|
|
|
|
|
|
|
|
|
|
|
265 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
266 |
// recurrence ui
|
267 |
$('[name="recurrence[type]"]').change(function() {
|
268 |
var curOption = $(this).find("option:selected").val();
|
screenshot-2.jpg
ADDED
Binary file
|
screenshot-3.jpg
ADDED
Binary file
|
screenshot-4.jpg
ADDED
Binary file
|
screenshot-5.jpg
ADDED
Binary file
|
screenshot-6.jpg
ADDED
Binary file
|
the-events-calendar.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: The Events Calendar
|
4 |
-
Description: The Events Calendar
|
5 |
-
Version: 2.0.
|
6 |
Author: Modern Tribe, Inc.
|
7 |
Author URI: http://tri.be?ref=tec-plugin
|
8 |
Text Domain: tribe-events-calendar
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: The Events Calendar
|
4 |
+
Description: The Events Calendar is a fully featured event management system with multiple views, 3rd party integrations, and a slew of premium add-ons.
|
5 |
+
Version: 2.0.3
|
6 |
Author: Modern Tribe, Inc.
|
7 |
Author URI: http://tri.be?ref=tec-plugin
|
8 |
Text Domain: tribe-events-calendar
|
views/ecp-page-template.php
CHANGED
@@ -12,10 +12,11 @@
|
|
12 |
|
13 |
// Don't load directly
|
14 |
if ( !defined('ABSPATH') ) { die('-1'); }
|
|
|
15 |
?>
|
16 |
<?php get_header(); ?>
|
17 |
<?php tribe_events_before_html() ?>
|
18 |
<h2 class="tribe-events-cal-title"><?php tribe_events_title(); ?></h2>
|
19 |
<?php include(tribe_get_current_template()); ?>
|
20 |
<?php tribe_events_after_html() ?>
|
21 |
-
<?php get_footer(); ?>
|
12 |
|
13 |
// Don't load directly
|
14 |
if ( !defined('ABSPATH') ) { die('-1'); }
|
15 |
+
|
16 |
?>
|
17 |
<?php get_header(); ?>
|
18 |
<?php tribe_events_before_html() ?>
|
19 |
<h2 class="tribe-events-cal-title"><?php tribe_events_title(); ?></h2>
|
20 |
<?php include(tribe_get_current_template()); ?>
|
21 |
<?php tribe_events_after_html() ?>
|
22 |
+
<?php get_footer(); ?>
|
views/gridview.php
CHANGED
@@ -9,11 +9,10 @@
|
|
9 |
|
10 |
// Don't load directly
|
11 |
if ( !defined('ABSPATH') ) { die('-1'); }
|
12 |
-
|
13 |
$tribe_ecp = TribeEvents::instance();
|
14 |
?>
|
15 |
<div id="tribe-events-content" class="grid">
|
16 |
-
<!-- This title is here for
|
17 |
<title><?php wp_title() ?></title>
|
18 |
<div id='tribe-events-calendar-header' class="clearfix">
|
19 |
<span class='tribe-events-month-nav'>
|
9 |
|
10 |
// Don't load directly
|
11 |
if ( !defined('ABSPATH') ) { die('-1'); }
|
|
|
12 |
$tribe_ecp = TribeEvents::instance();
|
13 |
?>
|
14 |
<div id="tribe-events-content" class="grid">
|
15 |
+
<!-- This title is here for ajax loading - do not remove if you wish to use ajax switching between month views -->
|
16 |
<title><?php wp_title() ?></title>
|
17 |
<div id='tribe-events-calendar-header' class="clearfix">
|
18 |
<span class='tribe-events-month-nav'>
|
views/single.php
CHANGED
@@ -33,7 +33,7 @@ if ( !defined('ABSPATH') ) { die('-1'); }
|
|
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
|
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; ?>
|
@@ -47,10 +47,10 @@ if ( !defined('ABSPATH') ) { die('-1'); }
|
|
47 |
<?php endif; ?>
|
48 |
<dt><?php _e('Updated:', 'tribe-events-calendar') ?></dt>
|
49 |
<dd><span class="date updated"><?php the_date(); ?></span></dd>
|
50 |
-
<?php if ( function_exists('tribe_get_recurrence_text') && tribe_is_recurring_event() ) : ?>
|
51 |
<dt><?php _e('Schedule:', 'tribe-events-calendar') ?></dt>
|
52 |
<dd><?php echo tribe_get_recurrence_text(); ?>
|
53 |
-
<?php if(function_exists('tribe_all_occurences_link')): ?>(<a href='<?php tribe_all_occurences_link() ?>'>See all</a>)<?php endif; ?>
|
54 |
</dd>
|
55 |
<?php endif; ?>
|
56 |
</dl>
|
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 elseif (tribe_get_organizer()): ?>
|
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; ?>
|
47 |
<?php endif; ?>
|
48 |
<dt><?php _e('Updated:', 'tribe-events-calendar') ?></dt>
|
49 |
<dd><span class="date updated"><?php the_date(); ?></span></dd>
|
50 |
+
<?php if ( class_exists('TribeEventsRecurrenceMeta') && function_exists('tribe_get_recurrence_text') && tribe_is_recurring_event() ) : ?>
|
51 |
<dt><?php _e('Schedule:', 'tribe-events-calendar') ?></dt>
|
52 |
<dd><?php echo tribe_get_recurrence_text(); ?>
|
53 |
+
<?php if( class_exists('TribeEventsRecurrenceMeta') && function_exists('tribe_all_occurences_link')): ?>(<a href='<?php tribe_all_occurences_link() ?>'>See all</a>)<?php endif; ?>
|
54 |
</dd>
|
55 |
<?php endif; ?>
|
56 |
</dl>
|