Version Description
Features
- Child Theme support
- iCal Feed of all events now accessible using http://
.com/?ical - Setting to include / exclude events form general loop
- Subcategories in events now behave properly! (and include some css for your creative endeavors)
- Get Events function no longer starts its own loop (significantly reduce conflicts with other plugins)
- Added class to current day
- PHP versions older than 5.1 will fail gracefully
- Uninstall file
- Calendar grid view now honors 'posts_per_page' wordpress setting.
- Calendar grid view now has "previous" and "next" month links
- Widget now has options to control behavior when there are no events to display
- Updates to widget layout (links to events and "read more")
- It is now possible to select no default country for events
- Added a setting to control "pretty urls" to the events vs using query args (reduce conflicts with other rewrite rules)
- Default times for new event updated (all day, starting tomorrow)
Translations
- German [Felix Bartels]
- Brazilian Portuguese [Thiago Abdalla]
- Dutch [Sjoerd Boerrigter]
- Spanish [Los Jethrov]
- Updates to Swedish Translation [Kaj Johansson]
- Updates to German Translation [Andre Schuhmann]
- Danish [Carsten Matzon]
Bugs
- Improvements to field validation
- Fixes Embedded Map HTML URL Encoding so its w3c compatible (Thanks azizur!)
- Usability issue: Is this post an event? Yes/No -- now you can click the text and it will select your choice. (Thanks azizur!)
- Fixes drag/drop issue (Thanks azizur!)
- State vs Province meta values were not mutually exclusive
- HTML was not properly escaped in the template
- Fixes PHP short tag issue in one of the templates
- in single.php, the Back to Events link no longer strictly goes to the grid view, but adheres to the default few option -pointed out by azzatron on the forum
- google map link is now produced with minimal information, complete address is no longer needed, W3C-compatible output ** tec_event_address() added for easy echoing of the event address ** thanks to AntonLargiader and azizur on forum
- improvement and debugging of entire error catching and displaying system
- Fixes upcoming/past sorting issue (Thanks Elliot Silver for the support!)
Download this release
Release Info
Developer | kelseydamas |
Plugin | The Events Calendar |
Version | 1.6 |
Comparing to | |
See all releases |
Code changes from version 1.5.6 to 1.6
- events-calendar-widget.class.php +60 -0
- events-list-widget.class.php +128 -0
- lang/the-events-calendar-da_DA.mo +0 -0
- lang/the-events-calendar-da_DA.po +1580 -0
- lang/the-events-calendar-de_DE.mo +0 -0
- lang/the-events-calendar-de_DE.po +1709 -0
- lang/the-events-calendar-es_ES.mo +0 -0
- lang/the-events-calendar-es_ES.po +1580 -0
- lang/the-events-calendar-fr_FR.po +116 -1
- lang/the-events-calendar-nl_NL.mo +0 -0
- lang/the-events-calendar-nl_NL.po +1586 -0
- lang/the-events-calendar-pt_BR.mo +0 -0
- lang/the-events-calendar-pt_BR.po +1615 -0
- lang/the-events-calendar-sp_SP.mo +0 -0
- lang/the-events-calendar-sp_SP.po +1618 -0
- lang/the-events-calendar-sv_SE.mo +0 -0
- lang/the-events-calendar-sv_SE.po +568 -464
- lang/the-events-calendar.pot +554 -445
- readme.txt +62 -11
- resources/events.css +27 -43
- resources/events.js +1 -2
- resources/images/eb_press_little.gif +0 -0
- resources/images/logo_eventbrite.png +0 -0
- template-tags.php +771 -0
- the-events-calendar-exception.class.php +34 -0
- the-events-calendar.class.php +1317 -0
- the-events-calendar.php +28 -2115
- uninstall.php +4 -0
- views/datepicker.php +11 -12
- views/events-list-load-widget-admin.php +5 -0
- views/events-list-load-widget-display.php +4 -5
- views/events-meta-box.php +185 -92
- views/events-options.php +93 -13
- views/gridview-day.php +0 -26
- views/gridview.php +19 -6
- views/list.php +10 -10
- views/single.php +25 -23
- views/table.php +84 -17
events-calendar-widget.class.php
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
if( !class_exists( 'Events_Calendar_Widget') ) {
|
3 |
+
|
4 |
+
/**
|
5 |
+
* Calendar widget class
|
6 |
+
*/
|
7 |
+
class Events_Calendar_Widget extends WP_Widget {
|
8 |
+
|
9 |
+
public $pluginDomain = 'the-events-calendar';
|
10 |
+
|
11 |
+
function Events_Calendar_Widget() {
|
12 |
+
$widget_ops = array('classname' => 'events_calendar_widget', 'description' => __( 'A calendar of your events') );
|
13 |
+
$this->WP_Widget('calendar', __('Events Calendar'), $widget_ops);
|
14 |
+
}
|
15 |
+
|
16 |
+
function widget( $args, $instance ) {
|
17 |
+
extract($args);
|
18 |
+
$title = apply_filters('widget_title', empty($instance['title']) ? ' ' : $instance['title']);
|
19 |
+
echo $before_widget;
|
20 |
+
if ( $title )
|
21 |
+
echo $before_title . $title . $after_title;
|
22 |
+
echo '<div id="calendar_wrap">';
|
23 |
+
//echo get_calendar_custom(); /* 5 is the category id I have for event */
|
24 |
+
echo '</div>';
|
25 |
+
echo $after_widget;
|
26 |
+
}
|
27 |
+
|
28 |
+
function update( $new_instance, $old_instance ) {
|
29 |
+
$instance = $old_instance;
|
30 |
+
$instance['title'] = strip_tags($new_instance['title']);
|
31 |
+
|
32 |
+
return $instance;
|
33 |
+
}
|
34 |
+
|
35 |
+
function form( $instance ) {
|
36 |
+
$instance = wp_parse_args( (array) $instance, array( 'title' => '' ) );
|
37 |
+
$title = strip_tags($instance['title']);
|
38 |
+
?>
|
39 |
+
<p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:'); ?></label>
|
40 |
+
<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></p>
|
41 |
+
<?php
|
42 |
+
}
|
43 |
+
|
44 |
+
}
|
45 |
+
|
46 |
+
/* Add function to the widgets_ hook. */
|
47 |
+
// hook is commented out until development is finished, allows WP's default calendar widget to work
|
48 |
+
//add_action( 'widgets_init', 'events_calendar_load_widgets' );
|
49 |
+
//add_action( 'widgets_init', 'get_calendar_custom' );
|
50 |
+
|
51 |
+
//function get_calendar_custom(){echo "hi";}
|
52 |
+
|
53 |
+
/* Function that registers widget. */
|
54 |
+
function events_calendar_load_widgets() {
|
55 |
+
global $pluginDomain;
|
56 |
+
register_widget( 'Events_Calendar_Widget' );
|
57 |
+
// load text domain after class registration
|
58 |
+
load_plugin_textdomain( $pluginDomain, false, basename(dirname(__FILE__)) . '/lang/');
|
59 |
+
}
|
60 |
+
}
|
events-list-widget.class.php
ADDED
@@ -0,0 +1,128 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
if( !class_exists( 'Events_List_Widget' ) ) {
|
3 |
+
/**
|
4 |
+
* Event List Widget
|
5 |
+
*
|
6 |
+
* Creates a widget that displays the next upcoming x events
|
7 |
+
*/
|
8 |
+
|
9 |
+
class Events_List_Widget extends WP_Widget {
|
10 |
+
|
11 |
+
public $pluginDomain = 'the-events-calendar';
|
12 |
+
|
13 |
+
function Events_List_Widget() {
|
14 |
+
/* Widget settings. */
|
15 |
+
$widget_ops = array( 'classname' => 'eventsListWidget', 'description' => __( 'A widget that displays the next upcoming x events.', $this->pluginDomain) );
|
16 |
+
|
17 |
+
/* Widget control settings. */
|
18 |
+
$control_ops = array( 'id_base' => 'events-list-widget' );
|
19 |
+
|
20 |
+
/* Create the widget. */
|
21 |
+
$this->WP_Widget( 'events-list-widget', 'Events List Widget', $widget_ops, $control_ops );
|
22 |
+
}
|
23 |
+
|
24 |
+
function widget( $args, $instance ) {
|
25 |
+
global $wp_query;
|
26 |
+
extract( $args );
|
27 |
+
|
28 |
+
/* User-selected settings. */
|
29 |
+
$title = apply_filters('widget_title', $instance['title'] );
|
30 |
+
$limit = $instance['limit'];
|
31 |
+
$noUpcomingEvents = $instance['no_upcoming_events'];
|
32 |
+
$start = $instance['start'];
|
33 |
+
$end = $instance['end'];
|
34 |
+
$venue = $instance['venue'];
|
35 |
+
$address = $instance['address'];
|
36 |
+
$city = $instance['city'];
|
37 |
+
$state = $instance['state'];
|
38 |
+
$province = $instance['province'];
|
39 |
+
$zip = $instance['zip'];
|
40 |
+
$country = $instance['country'];
|
41 |
+
$phone = $instance['phone'];
|
42 |
+
$cost = $instance['cost'];
|
43 |
+
|
44 |
+
if ( eventsGetOptionValue('viewOption') == 'upcoming') {
|
45 |
+
$event_url = events_get_listview_link();
|
46 |
+
} else {
|
47 |
+
$event_url = events_get_gridview_link();
|
48 |
+
}
|
49 |
+
|
50 |
+
/* Before widget (defined by themes). */
|
51 |
+
echo $before_widget;
|
52 |
+
|
53 |
+
if( function_exists( 'get_events' ) ) {
|
54 |
+
$old_display = $wp_query->get('eventDisplay');
|
55 |
+
$wp_query->set('eventDisplay', 'upcoming');
|
56 |
+
$posts = get_events($limit, The_Events_Calendar::CATEGORYNAME);
|
57 |
+
}
|
58 |
+
|
59 |
+
/* Title of widget (before and after defined by themes). */
|
60 |
+
if ( $title && !$noUpcomingEvents ) echo $before_title . $title . $after_title;
|
61 |
+
|
62 |
+
if( $posts ) {
|
63 |
+
/* Display list of events. */
|
64 |
+
if( function_exists( 'get_events' ) ) {
|
65 |
+
|
66 |
+
echo "<ul class='upcoming'>";
|
67 |
+
foreach( $posts as $post ) :
|
68 |
+
setup_postdata($post);
|
69 |
+
if (file_exists(TEMPLATEPATH.'/events/events-list-load-widget-display.php') ) {
|
70 |
+
include (TEMPLATEPATH.'/events/events-list-load-widget-display.php');
|
71 |
+
} else {
|
72 |
+
include( dirname( __FILE__ ) . '/views/events-list-load-widget-display.php' );
|
73 |
+
}
|
74 |
+
endforeach;
|
75 |
+
echo "</ul>";
|
76 |
+
|
77 |
+
$wp_query->set('eventDisplay', $old_display);
|
78 |
+
}
|
79 |
+
|
80 |
+
/* Display link to all events */
|
81 |
+
echo '<div class="dig-in"><a href="' . $event_url . '">' . __('View All Events', $this->pluginDomain ) . '</a></div>';
|
82 |
+
} else if( !$noUpcomingEvents ) _e('There are no upcoming events at this time.', $this->pluginDomain);
|
83 |
+
|
84 |
+
/* After widget (defined by themes). */
|
85 |
+
echo $after_widget;
|
86 |
+
}
|
87 |
+
|
88 |
+
function update( $new_instance, $old_instance ) {
|
89 |
+
$instance = $old_instance;
|
90 |
+
|
91 |
+
/* Strip tags (if needed) and update the widget settings. */
|
92 |
+
$instance['title'] = strip_tags( $new_instance['title'] );
|
93 |
+
$instance['limit'] = strip_tags( $new_instance['limit'] );
|
94 |
+
$instance['no_upcoming_events'] = strip_tags( $new_instance['no_upcoming_events'] );
|
95 |
+
$instance['start'] = strip_tags( $new_instance['start'] );
|
96 |
+
$instance['end'] = strip_tags( $new_instance['end'] );
|
97 |
+
$instance['venue'] = strip_tags( $new_instance['venue'] );
|
98 |
+
$instance['country'] = strip_tags( $new_instance['country'] );
|
99 |
+
$instance['address'] = strip_tags( $new_instance['address'] );
|
100 |
+
$instance['city'] = strip_tags( $new_instance['city'] );
|
101 |
+
$instance['state'] = strip_tags( $new_instance['state'] );
|
102 |
+
$instance['province'] = strip_tags( $new_instance['province'] );
|
103 |
+
$instance['zip'] = strip_tags( $new_instance['zip'] );
|
104 |
+
$instance['phone'] = strip_tags( $new_instance['phone'] );
|
105 |
+
$instance['cost'] = strip_tags( $new_instance['cost'] );
|
106 |
+
|
107 |
+
return $instance;
|
108 |
+
}
|
109 |
+
|
110 |
+
function form( $instance ) {
|
111 |
+
/* Set up default widget settings. */
|
112 |
+
$defaults = array( 'title' => 'Upcoming Events', 'limit' => '5', 'start' => true, 'end' => false, 'venue' => false, 'country' => true, 'address' => false, 'city' => true, 'state' => true, 'province' => true, 'zip' => false, 'phone' => false, 'cost' => false);
|
113 |
+
$instance = wp_parse_args( (array) $instance, $defaults );
|
114 |
+
include( dirname( __FILE__ ) . '/views/events-list-load-widget-admin.php' );
|
115 |
+
}
|
116 |
+
}
|
117 |
+
|
118 |
+
/* Add function to the widgets_ hook. */
|
119 |
+
add_action( 'widgets_init', 'events_list_load_widgets' );
|
120 |
+
|
121 |
+
/* Function that registers widget. */
|
122 |
+
function events_list_load_widgets() {
|
123 |
+
global $pluginDomain;
|
124 |
+
register_widget( 'Events_List_Widget' );
|
125 |
+
// load text domain after class registration
|
126 |
+
load_plugin_textdomain( $pluginDomain, false, basename(dirname(__FILE__)) . '/lang/');
|
127 |
+
}
|
128 |
+
}
|
lang/the-events-calendar-da_DA.mo
ADDED
Binary file
|
lang/the-events-calendar-da_DA.po
ADDED
@@ -0,0 +1,1580 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of the WordPress plugin The Events Calendar 1.5.4 by Shane & Peter, Inc..
|
2 |
+
# Copyright (C) 2010 Shane & Peter, Inc.
|
3 |
+
# This file is distributed under the same license as the The Events Calendar package.
|
4 |
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
5 |
+
#
|
6 |
+
msgid ""
|
7 |
+
msgstr ""
|
8 |
+
"Project-Id-Version: The Events Calendar 1.5.4\n"
|
9 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/the-events-calendar\n"
|
10 |
+
"POT-Creation-Date: 2010-01-31 01:16+0000\n"
|
11 |
+
"PO-Revision-Date: 2010-02-21 14:19+0100\n"
|
12 |
+
"Last-Translator: Carsten Matzon <carsten@matzon.dk>\n"
|
13 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
+
"MIME-Version: 1.0\n"
|
15 |
+
"Content-Type: text/plain; charset=utf-8\n"
|
16 |
+
"Content-Transfer-Encoding: 8bit\n"
|
17 |
+
|
18 |
+
#: the-events-calendar.php:54
|
19 |
+
msgid "United States"
|
20 |
+
msgstr "USA"
|
21 |
+
|
22 |
+
#: the-events-calendar.php:55
|
23 |
+
msgid "Afghanistan"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: the-events-calendar.php:56
|
27 |
+
msgid "Albania"
|
28 |
+
msgstr "Albanien"
|
29 |
+
|
30 |
+
#: the-events-calendar.php:57
|
31 |
+
msgid "Algeria"
|
32 |
+
msgstr "Algeriet"
|
33 |
+
|
34 |
+
#: the-events-calendar.php:58
|
35 |
+
msgid "American Samoa"
|
36 |
+
msgstr "Amerikansk Samoa"
|
37 |
+
|
38 |
+
#: the-events-calendar.php:59
|
39 |
+
msgid "Andorra"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: the-events-calendar.php:60
|
43 |
+
msgid "Angola"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: the-events-calendar.php:61
|
47 |
+
msgid "Anguilla"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: the-events-calendar.php:62
|
51 |
+
msgid "Antarctica"
|
52 |
+
msgstr "Antartika"
|
53 |
+
|
54 |
+
#: the-events-calendar.php:63
|
55 |
+
msgid "Antigua And Barbuda"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: the-events-calendar.php:64
|
59 |
+
msgid "Argentina"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: the-events-calendar.php:65
|
63 |
+
msgid "Armenia"
|
64 |
+
msgstr "Armenien"
|
65 |
+
|
66 |
+
#: the-events-calendar.php:66
|
67 |
+
msgid "Aruba"
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: the-events-calendar.php:67
|
71 |
+
msgid "Australia"
|
72 |
+
msgstr "Australien"
|
73 |
+
|
74 |
+
#: the-events-calendar.php:68
|
75 |
+
msgid "Austria"
|
76 |
+
msgstr "Østrig"
|
77 |
+
|
78 |
+
#: the-events-calendar.php:69
|
79 |
+
msgid "Azerbaijan"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: the-events-calendar.php:70
|
83 |
+
msgid "Bahamas"
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: the-events-calendar.php:71
|
87 |
+
msgid "Bahrain"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: the-events-calendar.php:72
|
91 |
+
msgid "Bangladesh"
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: the-events-calendar.php:73
|
95 |
+
msgid "Barbados"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: the-events-calendar.php:74
|
99 |
+
msgid "Belarus"
|
100 |
+
msgstr "Hviderusland"
|
101 |
+
|
102 |
+
#: the-events-calendar.php:75
|
103 |
+
msgid "Belgium"
|
104 |
+
msgstr "Belgien"
|
105 |
+
|
106 |
+
#: the-events-calendar.php:76
|
107 |
+
msgid "Belize"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: the-events-calendar.php:77
|
111 |
+
msgid "Benin"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: the-events-calendar.php:78
|
115 |
+
msgid "Bermuda"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: the-events-calendar.php:79
|
119 |
+
msgid "Bhutan"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: the-events-calendar.php:80
|
123 |
+
msgid "Bolivia"
|
124 |
+
msgstr "Bolivien"
|
125 |
+
|
126 |
+
#: the-events-calendar.php:81
|
127 |
+
msgid "Bosnia And Herzegowina"
|
128 |
+
msgstr "Bosnien og Hercegovina"
|
129 |
+
|
130 |
+
#: the-events-calendar.php:82
|
131 |
+
msgid "Botswana"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: the-events-calendar.php:83
|
135 |
+
msgid "Bouvet Island"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: the-events-calendar.php:84
|
139 |
+
msgid "Brazil"
|
140 |
+
msgstr "Brasilien"
|
141 |
+
|
142 |
+
#: the-events-calendar.php:85
|
143 |
+
msgid "British Indian Ocean Territory"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: the-events-calendar.php:86
|
147 |
+
msgid "Brunei Darussalam"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: the-events-calendar.php:87
|
151 |
+
msgid "Bulgaria"
|
152 |
+
msgstr "Bulgarien"
|
153 |
+
|
154 |
+
#: the-events-calendar.php:88
|
155 |
+
msgid "Burkina Faso"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: the-events-calendar.php:89
|
159 |
+
msgid "Burundi"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: the-events-calendar.php:90
|
163 |
+
msgid "Cambodia"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: the-events-calendar.php:91
|
167 |
+
msgid "Cameroon"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: the-events-calendar.php:92
|
171 |
+
msgid "Canada"
|
172 |
+
msgstr "Kanada"
|
173 |
+
|
174 |
+
#: the-events-calendar.php:93
|
175 |
+
msgid "Cape Verde"
|
176 |
+
msgstr "Kap Verde"
|
177 |
+
|
178 |
+
#: the-events-calendar.php:94
|
179 |
+
msgid "Cayman Islands"
|
180 |
+
msgstr "Cayman Øerne"
|
181 |
+
|
182 |
+
#: the-events-calendar.php:95
|
183 |
+
msgid "Central African Republic"
|
184 |
+
msgstr "Central Afrikanske republic"
|
185 |
+
|
186 |
+
#: the-events-calendar.php:96
|
187 |
+
msgid "Chad"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: the-events-calendar.php:97
|
191 |
+
msgid "Chile"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: the-events-calendar.php:98
|
195 |
+
msgid "China"
|
196 |
+
msgstr "Kina"
|
197 |
+
|
198 |
+
#: the-events-calendar.php:99
|
199 |
+
msgid "Christmas Island"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: the-events-calendar.php:100
|
203 |
+
msgid "Cocos (Keeling) Islands"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: the-events-calendar.php:101
|
207 |
+
msgid "Colombia"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: the-events-calendar.php:102
|
211 |
+
msgid "Comoros"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: the-events-calendar.php:103
|
215 |
+
msgid "Congo"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: the-events-calendar.php:104
|
219 |
+
msgid "Congo, The Democratic Republic Of The"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: the-events-calendar.php:105
|
223 |
+
msgid "Cook Islands"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: the-events-calendar.php:106
|
227 |
+
msgid "Costa Rica"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: the-events-calendar.php:107
|
231 |
+
msgid "Cote D'Ivoire"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: the-events-calendar.php:108
|
235 |
+
msgid "Croatia (Local Name: Hrvatska)"
|
236 |
+
msgstr "Kroatien"
|
237 |
+
|
238 |
+
#: the-events-calendar.php:109
|
239 |
+
msgid "Cuba"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: the-events-calendar.php:110
|
243 |
+
msgid "Cyprus"
|
244 |
+
msgstr "Grækenland"
|
245 |
+
|
246 |
+
#: the-events-calendar.php:111
|
247 |
+
msgid "Czech Republic"
|
248 |
+
msgstr "Tjekkiet"
|
249 |
+
|
250 |
+
#: the-events-calendar.php:112
|
251 |
+
msgid "Denmark"
|
252 |
+
msgstr "Danmark"
|
253 |
+
|
254 |
+
#: the-events-calendar.php:113
|
255 |
+
msgid "Djibouti"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: the-events-calendar.php:114
|
259 |
+
msgid "Dominica"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: the-events-calendar.php:115
|
263 |
+
msgid "Dominican Republic"
|
264 |
+
msgstr "Domikanske Republic"
|
265 |
+
|
266 |
+
#: the-events-calendar.php:116
|
267 |
+
msgid "East Timor"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: the-events-calendar.php:117
|
271 |
+
msgid "Ecuador"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: the-events-calendar.php:118
|
275 |
+
msgid "Egypt"
|
276 |
+
msgstr "Egypten"
|
277 |
+
|
278 |
+
#: the-events-calendar.php:119
|
279 |
+
msgid "El Salvador"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: the-events-calendar.php:120
|
283 |
+
msgid "Equatorial Guinea"
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: the-events-calendar.php:121
|
287 |
+
msgid "Eritrea"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: the-events-calendar.php:122
|
291 |
+
msgid "Estonia"
|
292 |
+
msgstr "Estland"
|
293 |
+
|
294 |
+
#: the-events-calendar.php:123
|
295 |
+
msgid "Ethiopia"
|
296 |
+
msgstr "Ethiopien"
|
297 |
+
|
298 |
+
#: the-events-calendar.php:124
|
299 |
+
msgid "Falkland Islands (Malvinas)"
|
300 |
+
msgstr "Falklands Øerne"
|
301 |
+
|
302 |
+
#: the-events-calendar.php:125
|
303 |
+
msgid "Faroe Islands"
|
304 |
+
msgstr "Færøerne"
|
305 |
+
|
306 |
+
#: the-events-calendar.php:126
|
307 |
+
msgid "Fiji"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: the-events-calendar.php:127
|
311 |
+
msgid "Finland"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: the-events-calendar.php:128
|
315 |
+
msgid "France"
|
316 |
+
msgstr "Frankrig"
|
317 |
+
|
318 |
+
#: the-events-calendar.php:129
|
319 |
+
msgid "France, Metropolitan"
|
320 |
+
msgstr "Frankrig, Metropolitan"
|
321 |
+
|
322 |
+
#: the-events-calendar.php:130
|
323 |
+
msgid "French Guiana"
|
324 |
+
msgstr "Fransk Guiana"
|
325 |
+
|
326 |
+
#: the-events-calendar.php:131
|
327 |
+
msgid "French Polynesia"
|
328 |
+
msgstr "Fransk Polynesia"
|
329 |
+
|
330 |
+
#: the-events-calendar.php:132
|
331 |
+
msgid "French Southern Territories"
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: the-events-calendar.php:133
|
335 |
+
msgid "Gabon"
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#: the-events-calendar.php:134
|
339 |
+
msgid "Gambia"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: the-events-calendar.php:135
|
343 |
+
#: views/events-meta-box.php:273
|
344 |
+
msgid "Georgia"
|
345 |
+
msgstr "Georgien"
|
346 |
+
|
347 |
+
#: the-events-calendar.php:136
|
348 |
+
msgid "Germany"
|
349 |
+
msgstr "Tyskland"
|
350 |
+
|
351 |
+
#: the-events-calendar.php:137
|
352 |
+
msgid "Ghana"
|
353 |
+
msgstr ""
|
354 |
+
|
355 |
+
#: the-events-calendar.php:138
|
356 |
+
msgid "Gibraltar"
|
357 |
+
msgstr ""
|
358 |
+
|
359 |
+
#: the-events-calendar.php:139
|
360 |
+
msgid "Greece"
|
361 |
+
msgstr ""
|
362 |
+
|
363 |
+
#: the-events-calendar.php:140
|
364 |
+
msgid "Greenland"
|
365 |
+
msgstr "Grønland"
|
366 |
+
|
367 |
+
#: the-events-calendar.php:141
|
368 |
+
msgid "Grenada"
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: the-events-calendar.php:142
|
372 |
+
msgid "Guadeloupe"
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: the-events-calendar.php:143
|
376 |
+
msgid "Guam"
|
377 |
+
msgstr ""
|
378 |
+
|
379 |
+
#: the-events-calendar.php:144
|
380 |
+
msgid "Guatemala"
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: the-events-calendar.php:145
|
384 |
+
msgid "Guinea"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: the-events-calendar.php:146
|
388 |
+
msgid "Guinea-Bissau"
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
#: the-events-calendar.php:147
|
392 |
+
msgid "Guyana"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: the-events-calendar.php:148
|
396 |
+
msgid "Haiti"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: the-events-calendar.php:149
|
400 |
+
msgid "Heard And Mc Donald Islands"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
#: the-events-calendar.php:150
|
404 |
+
msgid "Holy See (Vatican City State)"
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: the-events-calendar.php:151
|
408 |
+
msgid "Honduras"
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
#: the-events-calendar.php:152
|
412 |
+
msgid "Hong Kong"
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: the-events-calendar.php:153
|
416 |
+
msgid "Hungary"
|
417 |
+
msgstr "Ungarn"
|
418 |
+
|
419 |
+
#: the-events-calendar.php:154
|
420 |
+
msgid "Iceland"
|
421 |
+
msgstr "Island"
|
422 |
+
|
423 |
+
#: the-events-calendar.php:155
|
424 |
+
msgid "India"
|
425 |
+
msgstr "Indien"
|
426 |
+
|
427 |
+
#: the-events-calendar.php:156
|
428 |
+
msgid "Indonesia"
|
429 |
+
msgstr "Indonesien"
|
430 |
+
|
431 |
+
#: the-events-calendar.php:157
|
432 |
+
msgid "Iran (Islamic Republic Of)"
|
433 |
+
msgstr "Iran"
|
434 |
+
|
435 |
+
#: the-events-calendar.php:158
|
436 |
+
msgid "Iraq"
|
437 |
+
msgstr "Irak"
|
438 |
+
|
439 |
+
#: the-events-calendar.php:159
|
440 |
+
msgid "Ireland"
|
441 |
+
msgstr "Irland"
|
442 |
+
|
443 |
+
#: the-events-calendar.php:160
|
444 |
+
msgid "Israel"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: the-events-calendar.php:161
|
448 |
+
msgid "Italy"
|
449 |
+
msgstr "Italien"
|
450 |
+
|
451 |
+
#: the-events-calendar.php:162
|
452 |
+
msgid "Jamaica"
|
453 |
+
msgstr ""
|
454 |
+
|
455 |
+
#: the-events-calendar.php:163
|
456 |
+
msgid "Japan"
|
457 |
+
msgstr ""
|
458 |
+
|
459 |
+
#: the-events-calendar.php:164
|
460 |
+
msgid "Jordan"
|
461 |
+
msgstr ""
|
462 |
+
|
463 |
+
#: the-events-calendar.php:165
|
464 |
+
msgid "Kazakhstan"
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#: the-events-calendar.php:166
|
468 |
+
msgid "Kenya"
|
469 |
+
msgstr ""
|
470 |
+
|
471 |
+
#: the-events-calendar.php:167
|
472 |
+
msgid "Kiribati"
|
473 |
+
msgstr ""
|
474 |
+
|
475 |
+
#: the-events-calendar.php:168
|
476 |
+
msgid "Korea, Democratic People's Republic Of"
|
477 |
+
msgstr "Nordkorea"
|
478 |
+
|
479 |
+
#: the-events-calendar.php:169
|
480 |
+
msgid "Korea, Republic Of"
|
481 |
+
msgstr "Sydkorea"
|
482 |
+
|
483 |
+
#: the-events-calendar.php:170
|
484 |
+
msgid "Kuwait"
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: the-events-calendar.php:171
|
488 |
+
msgid "Kyrgyzstan"
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: the-events-calendar.php:172
|
492 |
+
msgid "Lao People's Democratic Republic"
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: the-events-calendar.php:173
|
496 |
+
msgid "Latvia"
|
497 |
+
msgstr "Letland"
|
498 |
+
|
499 |
+
#: the-events-calendar.php:174
|
500 |
+
msgid "Lebanon"
|
501 |
+
msgstr "Libanon"
|
502 |
+
|
503 |
+
#: the-events-calendar.php:175
|
504 |
+
msgid "Lesotho"
|
505 |
+
msgstr ""
|
506 |
+
|
507 |
+
#: the-events-calendar.php:176
|
508 |
+
msgid "Liberia"
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: the-events-calendar.php:177
|
512 |
+
msgid "Libyan Arab Jamahiriya"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: the-events-calendar.php:178
|
516 |
+
msgid "Liechtenstein"
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: the-events-calendar.php:179
|
520 |
+
msgid "Lithuania"
|
521 |
+
msgstr "Litauen"
|
522 |
+
|
523 |
+
#: the-events-calendar.php:180
|
524 |
+
msgid "Luxembourg"
|
525 |
+
msgstr ""
|
526 |
+
|
527 |
+
#: the-events-calendar.php:181
|
528 |
+
msgid "Macau"
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: the-events-calendar.php:182
|
532 |
+
msgid "Macedonia, Former Yugoslav Republic Of"
|
533 |
+
msgstr "Macedonien"
|
534 |
+
|
535 |
+
#: the-events-calendar.php:183
|
536 |
+
msgid "Madagascar"
|
537 |
+
msgstr ""
|
538 |
+
|
539 |
+
#: the-events-calendar.php:184
|
540 |
+
msgid "Malawi"
|
541 |
+
msgstr ""
|
542 |
+
|
543 |
+
#: the-events-calendar.php:185
|
544 |
+
msgid "Malaysia"
|
545 |
+
msgstr ""
|
546 |
+
|
547 |
+
#: the-events-calendar.php:186
|
548 |
+
msgid "Maldives"
|
549 |
+
msgstr "Maldiverne"
|
550 |
+
|
551 |
+
#: the-events-calendar.php:187
|
552 |
+
msgid "Mali"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: the-events-calendar.php:188
|
556 |
+
msgid "Malta"
|
557 |
+
msgstr ""
|
558 |
+
|
559 |
+
#: the-events-calendar.php:189
|
560 |
+
msgid "Marshall Islands"
|
561 |
+
msgstr ""
|
562 |
+
|
563 |
+
#: the-events-calendar.php:190
|
564 |
+
msgid "Martinique"
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
#: the-events-calendar.php:191
|
568 |
+
msgid "Mauritania"
|
569 |
+
msgstr ""
|
570 |
+
|
571 |
+
#: the-events-calendar.php:192
|
572 |
+
msgid "Mauritius"
|
573 |
+
msgstr ""
|
574 |
+
|
575 |
+
#: the-events-calendar.php:193
|
576 |
+
msgid "Mayotte"
|
577 |
+
msgstr ""
|
578 |
+
|
579 |
+
#: the-events-calendar.php:194
|
580 |
+
msgid "Mexico"
|
581 |
+
msgstr ""
|
582 |
+
|
583 |
+
#: the-events-calendar.php:195
|
584 |
+
msgid "Micronesia, Federated States Of"
|
585 |
+
msgstr ""
|
586 |
+
|
587 |
+
#: the-events-calendar.php:196
|
588 |
+
msgid "Moldova, Republic Of"
|
589 |
+
msgstr "Moldova"
|
590 |
+
|
591 |
+
#: the-events-calendar.php:197
|
592 |
+
msgid "Monaco"
|
593 |
+
msgstr ""
|
594 |
+
|
595 |
+
#: the-events-calendar.php:198
|
596 |
+
msgid "Mongolia"
|
597 |
+
msgstr "Mongoliet"
|
598 |
+
|
599 |
+
#: the-events-calendar.php:199
|
600 |
+
msgid "Montserrat"
|
601 |
+
msgstr ""
|
602 |
+
|
603 |
+
#: the-events-calendar.php:200
|
604 |
+
msgid "Morocco"
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: the-events-calendar.php:201
|
608 |
+
msgid "Mozambique"
|
609 |
+
msgstr ""
|
610 |
+
|
611 |
+
#: the-events-calendar.php:202
|
612 |
+
msgid "Myanmar"
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
#: the-events-calendar.php:203
|
616 |
+
msgid "Namibia"
|
617 |
+
msgstr ""
|
618 |
+
|
619 |
+
#: the-events-calendar.php:204
|
620 |
+
msgid "Nauru"
|
621 |
+
msgstr ""
|
622 |
+
|
623 |
+
#: the-events-calendar.php:205
|
624 |
+
msgid "Nepal"
|
625 |
+
msgstr ""
|
626 |
+
|
627 |
+
#: the-events-calendar.php:206
|
628 |
+
msgid "Netherlands"
|
629 |
+
msgstr "Holland"
|
630 |
+
|
631 |
+
#: the-events-calendar.php:207
|
632 |
+
msgid "Netherlands Antilles"
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: the-events-calendar.php:208
|
636 |
+
msgid "New Caledonia"
|
637 |
+
msgstr ""
|
638 |
+
|
639 |
+
#: the-events-calendar.php:209
|
640 |
+
msgid "New Zealand"
|
641 |
+
msgstr ""
|
642 |
+
|
643 |
+
#: the-events-calendar.php:210
|
644 |
+
msgid "Nicaragua"
|
645 |
+
msgstr ""
|
646 |
+
|
647 |
+
#: the-events-calendar.php:211
|
648 |
+
msgid "Niger"
|
649 |
+
msgstr ""
|
650 |
+
|
651 |
+
#: the-events-calendar.php:212
|
652 |
+
msgid "Nigeria"
|
653 |
+
msgstr ""
|
654 |
+
|
655 |
+
#: the-events-calendar.php:213
|
656 |
+
msgid "Niue"
|
657 |
+
msgstr ""
|
658 |
+
|
659 |
+
#: the-events-calendar.php:214
|
660 |
+
msgid "Norfolk Island"
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
#: the-events-calendar.php:215
|
664 |
+
msgid "Northern Mariana Islands"
|
665 |
+
msgstr ""
|
666 |
+
|
667 |
+
#: the-events-calendar.php:216
|
668 |
+
msgid "Norway"
|
669 |
+
msgstr "Norge"
|
670 |
+
|
671 |
+
#: the-events-calendar.php:217
|
672 |
+
msgid "Oman"
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: the-events-calendar.php:218
|
676 |
+
msgid "Pakistan"
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: the-events-calendar.php:219
|
680 |
+
msgid "Palau"
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: the-events-calendar.php:220
|
684 |
+
msgid "Panama"
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
#: the-events-calendar.php:221
|
688 |
+
msgid "Papua New Guinea"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: the-events-calendar.php:222
|
692 |
+
msgid "Paraguay"
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: the-events-calendar.php:223
|
696 |
+
msgid "Peru"
|
697 |
+
msgstr ""
|
698 |
+
|
699 |
+
#: the-events-calendar.php:224
|
700 |
+
msgid "Philippines"
|
701 |
+
msgstr "Filippinerne"
|
702 |
+
|
703 |
+
#: the-events-calendar.php:225
|
704 |
+
msgid "Pitcairn"
|
705 |
+
msgstr ""
|
706 |
+
|
707 |
+
#: the-events-calendar.php:226
|
708 |
+
msgid "Poland"
|
709 |
+
msgstr ""
|
710 |
+
|
711 |
+
#: the-events-calendar.php:227
|
712 |
+
msgid "Portugal"
|
713 |
+
msgstr ""
|
714 |
+
|
715 |
+
#: the-events-calendar.php:228
|
716 |
+
msgid "Puerto Rico"
|
717 |
+
msgstr ""
|
718 |
+
|
719 |
+
#: the-events-calendar.php:229
|
720 |
+
msgid "Qatar"
|
721 |
+
msgstr ""
|
722 |
+
|
723 |
+
#: the-events-calendar.php:230
|
724 |
+
msgid "Reunion"
|
725 |
+
msgstr ""
|
726 |
+
|
727 |
+
#: the-events-calendar.php:231
|
728 |
+
msgid "Romania"
|
729 |
+
msgstr "Rumænien"
|
730 |
+
|
731 |
+
#: the-events-calendar.php:232
|
732 |
+
msgid "Russian Federation"
|
733 |
+
msgstr ""
|
734 |
+
|
735 |
+
#: the-events-calendar.php:233
|
736 |
+
msgid "Rwanda"
|
737 |
+
msgstr ""
|
738 |
+
|
739 |
+
#: the-events-calendar.php:234
|
740 |
+
msgid "Saint Kitts And Nevis"
|
741 |
+
msgstr ""
|
742 |
+
|
743 |
+
#: the-events-calendar.php:235
|
744 |
+
msgid "Saint Lucia"
|
745 |
+
msgstr ""
|
746 |
+
|
747 |
+
#: the-events-calendar.php:236
|
748 |
+
msgid "Saint Vincent And The Grenadines"
|
749 |
+
msgstr ""
|
750 |
+
|
751 |
+
#: the-events-calendar.php:237
|
752 |
+
msgid "Samoa"
|
753 |
+
msgstr ""
|
754 |
+
|
755 |
+
#: the-events-calendar.php:238
|
756 |
+
msgid "San Marino"
|
757 |
+
msgstr ""
|
758 |
+
|
759 |
+
#: the-events-calendar.php:239
|
760 |
+
msgid "Sao Tome And Principe"
|
761 |
+
msgstr ""
|
762 |
+
|
763 |
+
#: the-events-calendar.php:240
|
764 |
+
msgid "Saudi Arabia"
|
765 |
+
msgstr "Saudi Arabien"
|
766 |
+
|
767 |
+
#: the-events-calendar.php:241
|
768 |
+
msgid "Senegal"
|
769 |
+
msgstr ""
|
770 |
+
|
771 |
+
#: the-events-calendar.php:242
|
772 |
+
msgid "Seychelles"
|
773 |
+
msgstr ""
|
774 |
+
|
775 |
+
#: the-events-calendar.php:243
|
776 |
+
msgid "Sierra Leone"
|
777 |
+
msgstr ""
|
778 |
+
|
779 |
+
#: the-events-calendar.php:244
|
780 |
+
msgid "Singapore"
|
781 |
+
msgstr ""
|
782 |
+
|
783 |
+
#: the-events-calendar.php:245
|
784 |
+
msgid "Slovakia (Slovak Republic)"
|
785 |
+
msgstr "Slovakiet"
|
786 |
+
|
787 |
+
#: the-events-calendar.php:246
|
788 |
+
msgid "Slovenia"
|
789 |
+
msgstr "Slovenien"
|
790 |
+
|
791 |
+
#: the-events-calendar.php:247
|
792 |
+
msgid "Solomon Islands"
|
793 |
+
msgstr ""
|
794 |
+
|
795 |
+
#: the-events-calendar.php:248
|
796 |
+
msgid "Somalia"
|
797 |
+
msgstr ""
|
798 |
+
|
799 |
+
#: the-events-calendar.php:249
|
800 |
+
msgid "South Africa"
|
801 |
+
msgstr "Sydafrika"
|
802 |
+
|
803 |
+
#: the-events-calendar.php:250
|
804 |
+
msgid "South Georgia, South Sandwich Islands"
|
805 |
+
msgstr ""
|
806 |
+
|
807 |
+
#: the-events-calendar.php:251
|
808 |
+
msgid "Spain"
|
809 |
+
msgstr "Spanien"
|
810 |
+
|
811 |
+
#: the-events-calendar.php:252
|
812 |
+
msgid "Sri Lanka"
|
813 |
+
msgstr ""
|
814 |
+
|
815 |
+
#: the-events-calendar.php:253
|
816 |
+
msgid "St. Helena"
|
817 |
+
msgstr ""
|
818 |
+
|
819 |
+
#: the-events-calendar.php:254
|
820 |
+
msgid "St. Pierre And Miquelon"
|
821 |
+
msgstr ""
|
822 |
+
|
823 |
+
#: the-events-calendar.php:255
|
824 |
+
msgid "Sudan"
|
825 |
+
msgstr ""
|
826 |
+
|
827 |
+
#: the-events-calendar.php:256
|
828 |
+
msgid "Suriname"
|
829 |
+
msgstr ""
|
830 |
+
|
831 |
+
#: the-events-calendar.php:257
|
832 |
+
msgid "Svalbard And Jan Mayen Islands"
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: the-events-calendar.php:258
|
836 |
+
msgid "Swaziland"
|
837 |
+
msgstr ""
|
838 |
+
|
839 |
+
#: the-events-calendar.php:259
|
840 |
+
msgid "Sweden"
|
841 |
+
msgstr "Sverige"
|
842 |
+
|
843 |
+
#: the-events-calendar.php:260
|
844 |
+
msgid "Switzerland"
|
845 |
+
msgstr "Schweiz"
|
846 |
+
|
847 |
+
#: the-events-calendar.php:261
|
848 |
+
msgid "Syrian Arab Republic"
|
849 |
+
msgstr "Syrien"
|
850 |
+
|
851 |
+
#: the-events-calendar.php:262
|
852 |
+
msgid "Taiwan"
|
853 |
+
msgstr ""
|
854 |
+
|
855 |
+
#: the-events-calendar.php:263
|
856 |
+
msgid "Tajikistan"
|
857 |
+
msgstr ""
|
858 |
+
|
859 |
+
#: the-events-calendar.php:264
|
860 |
+
msgid "Tanzania, United Republic Of"
|
861 |
+
msgstr "Tanzania"
|
862 |
+
|
863 |
+
#: the-events-calendar.php:265
|
864 |
+
msgid "Thailand"
|
865 |
+
msgstr ""
|
866 |
+
|
867 |
+
#: the-events-calendar.php:266
|
868 |
+
msgid "Togo"
|
869 |
+
msgstr ""
|
870 |
+
|
871 |
+
#: the-events-calendar.php:267
|
872 |
+
msgid "Tokelau"
|
873 |
+
msgstr ""
|
874 |
+
|
875 |
+
#: the-events-calendar.php:268
|
876 |
+
msgid "Tonga"
|
877 |
+
msgstr ""
|
878 |
+
|
879 |
+
#: the-events-calendar.php:269
|
880 |
+
msgid "Trinidad And Tobago"
|
881 |
+
msgstr ""
|
882 |
+
|
883 |
+
#: the-events-calendar.php:270
|
884 |
+
msgid "Tunisia"
|
885 |
+
msgstr "Tunesien"
|
886 |
+
|
887 |
+
#: the-events-calendar.php:271
|
888 |
+
msgid "Turkey"
|
889 |
+
msgstr "Tyrkiet"
|
890 |
+
|
891 |
+
#: the-events-calendar.php:272
|
892 |
+
msgid "Turkmenistan"
|
893 |
+
msgstr "Turkmenien"
|
894 |
+
|
895 |
+
#: the-events-calendar.php:273
|
896 |
+
msgid "Turks And Caicos Islands"
|
897 |
+
msgstr ""
|
898 |
+
|
899 |
+
#: the-events-calendar.php:274
|
900 |
+
msgid "Tuvalu"
|
901 |
+
msgstr ""
|
902 |
+
|
903 |
+
#: the-events-calendar.php:275
|
904 |
+
msgid "Uganda"
|
905 |
+
msgstr ""
|
906 |
+
|
907 |
+
#: the-events-calendar.php:276
|
908 |
+
msgid "Ukraine"
|
909 |
+
msgstr "Ukraine"
|
910 |
+
|
911 |
+
#: the-events-calendar.php:277
|
912 |
+
msgid "United Arab Emirates"
|
913 |
+
msgstr "Forenede Arabiske Emirater"
|
914 |
+
|
915 |
+
#: the-events-calendar.php:278
|
916 |
+
msgid "United Kingdom"
|
917 |
+
msgstr "England"
|
918 |
+
|
919 |
+
#: the-events-calendar.php:279
|
920 |
+
msgid "United States Minor Outlying Islands"
|
921 |
+
msgstr ""
|
922 |
+
|
923 |
+
#: the-events-calendar.php:280
|
924 |
+
msgid "Uruguay"
|
925 |
+
msgstr ""
|
926 |
+
|
927 |
+
#: the-events-calendar.php:281
|
928 |
+
msgid "Uzbekistan"
|
929 |
+
msgstr ""
|
930 |
+
|
931 |
+
#: the-events-calendar.php:282
|
932 |
+
msgid "Vanuatu"
|
933 |
+
msgstr ""
|
934 |
+
|
935 |
+
#: the-events-calendar.php:283
|
936 |
+
msgid "Venezuela"
|
937 |
+
msgstr ""
|
938 |
+
|
939 |
+
#: the-events-calendar.php:284
|
940 |
+
msgid "Viet Nam"
|
941 |
+
msgstr "Vietnam"
|
942 |
+
|
943 |
+
#: the-events-calendar.php:285
|
944 |
+
msgid "Virgin Islands (British)"
|
945 |
+
msgstr "Virgin Islands (Britiske)"
|
946 |
+
|
947 |
+
#: the-events-calendar.php:286
|
948 |
+
msgid "Virgin Islands (U.S.)"
|
949 |
+
msgstr "Virgin Islands (U.S.A.)"
|
950 |
+
|
951 |
+
#: the-events-calendar.php:287
|
952 |
+
msgid "Wallis And Futuna Islands"
|
953 |
+
msgstr ""
|
954 |
+
|
955 |
+
#: the-events-calendar.php:288
|
956 |
+
msgid "Western Sahara"
|
957 |
+
msgstr "Vestlige Sahara"
|
958 |
+
|
959 |
+
#: the-events-calendar.php:289
|
960 |
+
msgid "Yemen"
|
961 |
+
msgstr ""
|
962 |
+
|
963 |
+
#: the-events-calendar.php:290
|
964 |
+
msgid "Yugoslavia"
|
965 |
+
msgstr "Jugoslavien"
|
966 |
+
|
967 |
+
#: the-events-calendar.php:291
|
968 |
+
msgid "Zambia"
|
969 |
+
msgstr ""
|
970 |
+
|
971 |
+
#: the-events-calendar.php:292
|
972 |
+
msgid "Zimbabwe"
|
973 |
+
msgstr ""
|
974 |
+
|
975 |
+
#: the-events-calendar.php:942
|
976 |
+
msgid "Events"
|
977 |
+
msgstr "Events"
|
978 |
+
|
979 |
+
#: the-events-calendar.php:1438
|
980 |
+
msgid "Free"
|
981 |
+
msgstr "Gratis"
|
982 |
+
|
983 |
+
#: the-events-calendar.php:1903
|
984 |
+
msgid "A widget that displays the next upcoming x events."
|
985 |
+
msgstr "En widget der viser de næste x forekomne events."
|
986 |
+
|
987 |
+
#: the-events-calendar.php:2022
|
988 |
+
msgid "A calendar of your events"
|
989 |
+
msgstr "En Kalender for dine events"
|
990 |
+
|
991 |
+
#: the-events-calendar.php:2023
|
992 |
+
msgid "Events Calendar"
|
993 |
+
msgstr "Event Kalender"
|
994 |
+
|
995 |
+
#: the-events-calendar.php:2049
|
996 |
+
#: views/events-list-load-widget-admin.php:2
|
997 |
+
msgid "Title:"
|
998 |
+
msgstr "Titel:"
|
999 |
+
|
1000 |
+
#: views/events-list-load-widget-admin.php:7
|
1001 |
+
msgid "Show:"
|
1002 |
+
msgstr "Vis:"
|
1003 |
+
|
1004 |
+
#: views/events-list-load-widget-admin.php:19
|
1005 |
+
msgid "Start Date & Time"
|
1006 |
+
msgstr "Start dato & tidspunkt"
|
1007 |
+
|
1008 |
+
#: views/events-list-load-widget-admin.php:20
|
1009 |
+
msgid "End Date & Time"
|
1010 |
+
msgstr "Slut dato & tidspunkt"
|
1011 |
+
|
1012 |
+
#: views/events-list-load-widget-admin.php:21
|
1013 |
+
msgid "Venue"
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: views/events-list-load-widget-admin.php:22
|
1017 |
+
msgid "Address"
|
1018 |
+
msgstr "Adresse"
|
1019 |
+
|
1020 |
+
#: views/events-list-load-widget-admin.php:23
|
1021 |
+
msgid "City"
|
1022 |
+
msgstr "By"
|
1023 |
+
|
1024 |
+
#: views/events-list-load-widget-admin.php:24
|
1025 |
+
msgid "State (US)"
|
1026 |
+
msgstr "Stat (US)"
|
1027 |
+
|
1028 |
+
#: views/events-list-load-widget-admin.php:25
|
1029 |
+
msgid "Province (Int)"
|
1030 |
+
msgstr "Provins (Int)"
|
1031 |
+
|
1032 |
+
#: views/events-list-load-widget-admin.php:26
|
1033 |
+
msgid "Postal Code"
|
1034 |
+
msgstr "Postnummer"
|
1035 |
+
|
1036 |
+
#: views/events-list-load-widget-admin.php:27
|
1037 |
+
msgid "Country"
|
1038 |
+
msgstr "Land"
|
1039 |
+
|
1040 |
+
#: views/events-list-load-widget-admin.php:28
|
1041 |
+
msgid "Phone"
|
1042 |
+
msgstr "Telefon"
|
1043 |
+
|
1044 |
+
#: views/events-list-load-widget-admin.php:29
|
1045 |
+
msgid "Price"
|
1046 |
+
msgstr "Pris"
|
1047 |
+
|
1048 |
+
#: views/events-list-load-widget-display.php:50
|
1049 |
+
msgid "More Info"
|
1050 |
+
msgstr "Flere informationer"
|
1051 |
+
|
1052 |
+
#: views/events-meta-box.php:138
|
1053 |
+
msgid "Event Details:"
|
1054 |
+
msgstr "Event detaljer:"
|
1055 |
+
|
1056 |
+
#: views/events-meta-box.php:140
|
1057 |
+
msgid "Is this post an event?"
|
1058 |
+
msgstr "Er dette indlæg en event?"
|
1059 |
+
|
1060 |
+
#: views/events-meta-box.php:141
|
1061 |
+
#: views/events-options.php:135
|
1062 |
+
msgid "Yes"
|
1063 |
+
msgstr "Ja"
|
1064 |
+
|
1065 |
+
#: views/events-meta-box.php:142
|
1066 |
+
#: views/events-options.php:139
|
1067 |
+
msgid "No"
|
1068 |
+
msgstr "Nej"
|
1069 |
+
|
1070 |
+
#: views/events-meta-box.php:148
|
1071 |
+
msgid "Event Time & Date"
|
1072 |
+
msgstr "Event tid & dato"
|
1073 |
+
|
1074 |
+
#: views/events-meta-box.php:151
|
1075 |
+
msgid "All day event?"
|
1076 |
+
msgstr "Hel dags event?"
|
1077 |
+
|
1078 |
+
#: views/events-meta-box.php:155
|
1079 |
+
msgid "Time Format (site wide option):"
|
1080 |
+
msgstr "Tids format (site wide option)"
|
1081 |
+
|
1082 |
+
#: views/events-meta-box.php:158
|
1083 |
+
msgid "12 Hour"
|
1084 |
+
msgstr "12 Timers"
|
1085 |
+
|
1086 |
+
#: views/events-meta-box.php:160
|
1087 |
+
msgid "24 Hour"
|
1088 |
+
msgstr "24 Timers"
|
1089 |
+
|
1090 |
+
#: views/events-meta-box.php:164
|
1091 |
+
msgid "Start Date / Time:"
|
1092 |
+
msgstr "Start dato / tid:"
|
1093 |
+
|
1094 |
+
#: views/events-meta-box.php:178
|
1095 |
+
#: views/events-meta-box.php:206
|
1096 |
+
msgid "@"
|
1097 |
+
msgstr ""
|
1098 |
+
|
1099 |
+
#: views/events-meta-box.php:192
|
1100 |
+
msgid "End Date / Time:"
|
1101 |
+
msgstr "Slut dato / tid:"
|
1102 |
+
|
1103 |
+
#: views/events-meta-box.php:220
|
1104 |
+
msgid "Event Location Details"
|
1105 |
+
msgstr "Event lokations detaljer"
|
1106 |
+
|
1107 |
+
#: views/events-meta-box.php:223
|
1108 |
+
#: views/list.php:43
|
1109 |
+
#: views/single.php:24
|
1110 |
+
msgid "Venue:"
|
1111 |
+
msgstr ""
|
1112 |
+
|
1113 |
+
#: views/events-meta-box.php:229
|
1114 |
+
msgid "Country:"
|
1115 |
+
msgstr "Land:"
|
1116 |
+
|
1117 |
+
#: views/events-meta-box.php:246
|
1118 |
+
#: views/list.php:61
|
1119 |
+
#: views/single.php:28
|
1120 |
+
msgid "Address:"
|
1121 |
+
msgstr "Adresse:"
|
1122 |
+
|
1123 |
+
#: views/events-meta-box.php:250
|
1124 |
+
msgid "City:"
|
1125 |
+
msgstr "By:"
|
1126 |
+
|
1127 |
+
#: views/events-meta-box.php:254
|
1128 |
+
msgid "Province:"
|
1129 |
+
msgstr "Provins:"
|
1130 |
+
|
1131 |
+
#: views/events-meta-box.php:258
|
1132 |
+
msgid "State:"
|
1133 |
+
msgstr "Stat:"
|
1134 |
+
|
1135 |
+
#: views/events-meta-box.php:261
|
1136 |
+
msgid "Select a State:"
|
1137 |
+
msgstr "Vælg en Stat:"
|
1138 |
+
|
1139 |
+
#: views/events-meta-box.php:263
|
1140 |
+
msgid "Alabama"
|
1141 |
+
msgstr ""
|
1142 |
+
|
1143 |
+
#: views/events-meta-box.php:264
|
1144 |
+
msgid "Alaska"
|
1145 |
+
msgstr ""
|
1146 |
+
|
1147 |
+
#: views/events-meta-box.php:265
|
1148 |
+
msgid "Arizona"
|
1149 |
+
msgstr ""
|
1150 |
+
|
1151 |
+
#: views/events-meta-box.php:266
|
1152 |
+
msgid "Arkansas"
|
1153 |
+
msgstr ""
|
1154 |
+
|
1155 |
+
#: views/events-meta-box.php:267
|
1156 |
+
msgid "California"
|
1157 |
+
msgstr ""
|
1158 |
+
|
1159 |
+
#: views/events-meta-box.php:268
|
1160 |
+
msgid "Colorado"
|
1161 |
+
msgstr ""
|
1162 |
+
|
1163 |
+
#: views/events-meta-box.php:269
|
1164 |
+
msgid "Connecticut"
|
1165 |
+
msgstr ""
|
1166 |
+
|
1167 |
+
#: views/events-meta-box.php:270
|
1168 |
+
msgid "Delaware"
|
1169 |
+
msgstr ""
|
1170 |
+
|
1171 |
+
#: views/events-meta-box.php:271
|
1172 |
+
msgid "District of Columbia"
|
1173 |
+
msgstr ""
|
1174 |
+
|
1175 |
+
#: views/events-meta-box.php:272
|
1176 |
+
msgid "Florida"
|
1177 |
+
msgstr ""
|
1178 |
+
|
1179 |
+
#: views/events-meta-box.php:274
|
1180 |
+
msgid "Hawaii"
|
1181 |
+
msgstr ""
|
1182 |
+
|
1183 |
+
#: views/events-meta-box.php:275
|
1184 |
+
msgid "Idaho"
|
1185 |
+
msgstr ""
|
1186 |
+
|
1187 |
+
#: views/events-meta-box.php:276
|
1188 |
+
msgid "Illinois"
|
1189 |
+
msgstr ""
|
1190 |
+
|
1191 |
+
#: views/events-meta-box.php:277
|
1192 |
+
msgid "Indiana"
|
1193 |
+
msgstr ""
|
1194 |
+
|
1195 |
+
#: views/events-meta-box.php:278
|
1196 |
+
msgid "Iowa"
|
1197 |
+
msgstr ""
|
1198 |
+
|
1199 |
+
#: views/events-meta-box.php:279
|
1200 |
+
msgid "Kansas"
|
1201 |
+
msgstr ""
|
1202 |
+
|
1203 |
+
#: views/events-meta-box.php:280
|
1204 |
+
msgid "Kentucky"
|
1205 |
+
msgstr ""
|
1206 |
+
|
1207 |
+
#: views/events-meta-box.php:281
|
1208 |
+
msgid "Louisiana"
|
1209 |
+
msgstr ""
|
1210 |
+
|
1211 |
+
#: views/events-meta-box.php:282
|
1212 |
+
msgid "Maine"
|
1213 |
+
msgstr ""
|
1214 |
+
|
1215 |
+
#: views/events-meta-box.php:283
|
1216 |
+
msgid "Maryland"
|
1217 |
+
msgstr ""
|
1218 |
+
|
1219 |
+
#: views/events-meta-box.php:284
|
1220 |
+
msgid "Massachusetts"
|
1221 |
+
msgstr ""
|
1222 |
+
|
1223 |
+
#: views/events-meta-box.php:285
|
1224 |
+
msgid "Michigan"
|
1225 |
+
msgstr ""
|
1226 |
+
|
1227 |
+
#: views/events-meta-box.php:286
|
1228 |
+
msgid "Minnesota"
|
1229 |
+
msgstr ""
|
1230 |
+
|
1231 |
+
#: views/events-meta-box.php:287
|
1232 |
+
msgid "Mississippi"
|
1233 |
+
msgstr ""
|
1234 |
+
|
1235 |
+
#: views/events-meta-box.php:288
|
1236 |
+
msgid "Missouri"
|
1237 |
+
msgstr ""
|
1238 |
+
|
1239 |
+
#: views/events-meta-box.php:289
|
1240 |
+
msgid "Montana"
|
1241 |
+
msgstr ""
|
1242 |
+
|
1243 |
+
#: views/events-meta-box.php:290
|
1244 |
+
msgid "Nebraska"
|
1245 |
+
msgstr ""
|
1246 |
+
|
1247 |
+
#: views/events-meta-box.php:291
|
1248 |
+
msgid "Nevada"
|
1249 |
+
msgstr ""
|
1250 |
+
|
1251 |
+
#: views/events-meta-box.php:292
|
1252 |
+
msgid "New Hampshire"
|
1253 |
+
msgstr ""
|
1254 |
+
|
1255 |
+
#: views/events-meta-box.php:293
|
1256 |
+
msgid "New Jersey"
|
1257 |
+
msgstr ""
|
1258 |
+
|
1259 |
+
#: views/events-meta-box.php:294
|
1260 |
+
msgid "New Mexico"
|
1261 |
+
msgstr ""
|
1262 |
+
|
1263 |
+
#: views/events-meta-box.php:295
|
1264 |
+
msgid "New York"
|
1265 |
+
msgstr ""
|
1266 |
+
|
1267 |
+
#: views/events-meta-box.php:296
|
1268 |
+
msgid "North Carolina"
|
1269 |
+
msgstr ""
|
1270 |
+
|
1271 |
+
#: views/events-meta-box.php:297
|
1272 |
+
msgid "North Dakota"
|
1273 |
+
msgstr ""
|
1274 |
+
|
1275 |
+
#: views/events-meta-box.php:298
|
1276 |
+
msgid "Ohio"
|
1277 |
+
msgstr ""
|
1278 |
+
|
1279 |
+
#: views/events-meta-box.php:299
|
1280 |
+
msgid "Oklahoma"
|
1281 |
+
msgstr ""
|
1282 |
+
|
1283 |
+
#: views/events-meta-box.php:300
|
1284 |
+
msgid "Oregon"
|
1285 |
+
msgstr ""
|
1286 |
+
|
1287 |
+
#: views/events-meta-box.php:301
|
1288 |
+
msgid "Pennsylvania"
|
1289 |
+
msgstr ""
|
1290 |
+
|
1291 |
+
#: views/events-meta-box.php:302
|
1292 |
+
msgid "Rhode Island"
|
1293 |
+
msgstr ""
|
1294 |
+
|
1295 |
+
#: views/events-meta-box.php:303
|
1296 |
+
msgid "South Carolina"
|
1297 |
+
msgstr ""
|
1298 |
+
|
1299 |
+
#: views/events-meta-box.php:304
|
1300 |
+
msgid "South Dakota"
|
1301 |
+
msgstr ""
|
1302 |
+
|
1303 |
+
#: views/events-meta-box.php:305
|
1304 |
+
msgid "Tennessee"
|
1305 |
+
msgstr ""
|
1306 |
+
|
1307 |
+
#: views/events-meta-box.php:306
|
1308 |
+
msgid "Texas"
|
1309 |
+
msgstr ""
|
1310 |
+
|
1311 |
+
#: views/events-meta-box.php:307
|
1312 |
+
msgid "Utah"
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: views/events-meta-box.php:308
|
1316 |
+
msgid "Vermont"
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: views/events-meta-box.php:309
|
1320 |
+
msgid "Virginia"
|
1321 |
+
msgstr ""
|
1322 |
+
|
1323 |
+
#: views/events-meta-box.php:310
|
1324 |
+
msgid "Washington"
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: views/events-meta-box.php:311
|
1328 |
+
msgid "West Virginia"
|
1329 |
+
msgstr ""
|
1330 |
+
|
1331 |
+
#: views/events-meta-box.php:312
|
1332 |
+
msgid "Wisconsin"
|
1333 |
+
msgstr ""
|
1334 |
+
|
1335 |
+
#: views/events-meta-box.php:313
|
1336 |
+
msgid "Wyoming"
|
1337 |
+
msgstr ""
|
1338 |
+
|
1339 |
+
#: views/events-meta-box.php:327
|
1340 |
+
msgid "Postal Code:"
|
1341 |
+
msgstr "Postnummer:"
|
1342 |
+
|
1343 |
+
#: views/events-meta-box.php:331
|
1344 |
+
#: views/list.php:52
|
1345 |
+
msgid "Phone:"
|
1346 |
+
msgstr "Telefon:"
|
1347 |
+
|
1348 |
+
#: views/events-meta-box.php:335
|
1349 |
+
msgid "Event Cost"
|
1350 |
+
msgstr "Event pris"
|
1351 |
+
|
1352 |
+
#: views/events-meta-box.php:338
|
1353 |
+
#: views/list.php:70
|
1354 |
+
#: views/single.php:18
|
1355 |
+
msgid "Cost:"
|
1356 |
+
msgstr "Pris:"
|
1357 |
+
|
1358 |
+
#: views/events-meta-box.php:343
|
1359 |
+
msgid "Leave blank to hide the field. Enter a 0 for events that are free."
|
1360 |
+
msgstr "Efterlad blank for at gemme feltet. Indtast et 0 hvis events er gratis."
|
1361 |
+
|
1362 |
+
#: views/events-meta-box.php:347
|
1363 |
+
msgid "Sell Tickets & Track Registration"
|
1364 |
+
msgstr "Sælg billetter & Følg tilmeldinger"
|
1365 |
+
|
1366 |
+
#: views/events-meta-box.php:352
|
1367 |
+
msgid "Interested in selling tickets and tracking registrations? Now you can do it for free using our <a href=\"http://wordpress.org/extend/plugins/eventbrite-for-the-events-calendar/\">Eventbrite Integration Plugin</a>. Eventbrite is a feature rich easy-to-use event management tool. \"Wow, you're selling Eventbrite pretty hard. You must get a kickback.\" Well, now that you mention it... we do. We get a little something for everyone that registers an event using our referral link. It's how we're able to keep supporting and building plugins for the open source community. "
|
1368 |
+
msgstr ""
|
1369 |
+
|
1370 |
+
#: views/events-meta-box.php:352
|
1371 |
+
msgid "Check it out here."
|
1372 |
+
msgstr "Check det ud her."
|
1373 |
+
|
1374 |
+
#: views/events-meta-box.php:363
|
1375 |
+
msgid ""
|
1376 |
+
"<h4>If You Like This Plugin - Help Support It</h4>\r\n"
|
1377 |
+
"\t\t\t\t<p>We spend a lot of time and effort building robust plugins and we love to share them with the community. If you use this plugin consider making a donation to help support its' continued development. You may remove this message on the <a href=\"/wp-admin/options-general.php?page=the-events-calendar.php\">settings page</a>.</p>"
|
1378 |
+
msgstr ""
|
1379 |
+
"<h4>Hvis du kan lide dette Plugin - Så hjælp ved at donere</h4>\r\n"
|
1380 |
+
"\t\t\t\t<p>Vi bruger en masse tid og energi på at lave stabile plugins, og vi vil gerne dele dem med andre. Hvis du bruger dette plugin så overvej at donere penge til at hjælpe den fremtidige udvikling. Du kan fjerne denne besked på <a href=\"/wp-admin/options-general.php?page=the-events-calendar.php\">indstillings siden</a>.</p>"
|
1381 |
+
|
1382 |
+
#: views/events-meta-box.php:366
|
1383 |
+
msgid "Thanks"
|
1384 |
+
msgstr "Tak"
|
1385 |
+
|
1386 |
+
#: views/events-meta-box.php:367
|
1387 |
+
msgid "Shane & Peter"
|
1388 |
+
msgstr ""
|
1389 |
+
|
1390 |
+
#: views/events-meta-box.php:368
|
1391 |
+
msgid "www.shaneandpeter.com"
|
1392 |
+
msgstr ""
|
1393 |
+
|
1394 |
+
#: views/events-options.php:47
|
1395 |
+
msgid "The Events Calendar Settings"
|
1396 |
+
msgstr "Event Kalender indstillinger"
|
1397 |
+
|
1398 |
+
#: views/events-options.php:49
|
1399 |
+
msgid "Need a hand?"
|
1400 |
+
msgstr "Brug for hjælp?"
|
1401 |
+
|
1402 |
+
#: views/events-options.php:50
|
1403 |
+
msgid "If you're stuck on these options, please <a href=\"http://wordpress.org/extend/plugins/the-events-calendar/\">check out the documentation</a>. If you're still wondering what's going on, be sure to stop by the support <a href=\"http://wordpress.org/tags/the-events-calendar?forum_id=10\">forum</a> and ask for help. The open source community is full of kind folks who are happy to help."
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
+
#: views/events-options.php:53
|
1407 |
+
msgid "Donate"
|
1408 |
+
msgstr "Doner"
|
1409 |
+
|
1410 |
+
#: views/events-options.php:62
|
1411 |
+
msgid "If you find this plugin useful, please consider donating to the producer of it, Shane & Peter, Inc. Thank you!"
|
1412 |
+
msgstr ""
|
1413 |
+
|
1414 |
+
#: views/events-options.php:66
|
1415 |
+
msgid "I have already donated, so please hide this button!"
|
1416 |
+
msgstr "Jeg har allerede doneret, så fjern venligst denne knap!"
|
1417 |
+
|
1418 |
+
#: views/events-options.php:93
|
1419 |
+
#: views/events-options.php:97
|
1420 |
+
msgid "Default View for the Events"
|
1421 |
+
msgstr "Standard visning af Events"
|
1422 |
+
|
1423 |
+
#: views/events-options.php:109
|
1424 |
+
#: views/gridview.php:13
|
1425 |
+
#: views/list.php:10
|
1426 |
+
msgid "Calendar"
|
1427 |
+
msgstr "Kalender"
|
1428 |
+
|
1429 |
+
#: views/events-options.php:113
|
1430 |
+
#: views/gridview.php:12
|
1431 |
+
#: views/list.php:9
|
1432 |
+
msgid "Event List"
|
1433 |
+
msgstr "Event liste"
|
1434 |
+
|
1435 |
+
#: views/events-options.php:119
|
1436 |
+
#: views/events-options.php:123
|
1437 |
+
msgid "Show Comments"
|
1438 |
+
msgstr "Vis kommentarer"
|
1439 |
+
|
1440 |
+
#: views/events-options.php:145
|
1441 |
+
msgid "Default Country for Events"
|
1442 |
+
msgstr "Standard Land for events"
|
1443 |
+
|
1444 |
+
#: views/events-options.php:170
|
1445 |
+
#: views/events-options.php:174
|
1446 |
+
msgid "Embed Google Maps"
|
1447 |
+
msgstr ""
|
1448 |
+
|
1449 |
+
#: views/events-options.php:188
|
1450 |
+
msgid "Off"
|
1451 |
+
msgstr "Fra"
|
1452 |
+
|
1453 |
+
#: views/events-options.php:192
|
1454 |
+
msgid "On"
|
1455 |
+
msgstr "Til"
|
1456 |
+
|
1457 |
+
#: views/events-options.php:195
|
1458 |
+
msgid "Height"
|
1459 |
+
msgstr "Højde"
|
1460 |
+
|
1461 |
+
#: views/events-options.php:196
|
1462 |
+
msgid "Width"
|
1463 |
+
msgstr "Bredde"
|
1464 |
+
|
1465 |
+
#: views/events-options.php:196
|
1466 |
+
msgid "(number or %)"
|
1467 |
+
msgstr "(nummer eller %)"
|
1468 |
+
|
1469 |
+
#: views/gridview.php:7
|
1470 |
+
#: views/list.php:7
|
1471 |
+
msgid "Calendar of Events"
|
1472 |
+
msgstr "Event kalender"
|
1473 |
+
|
1474 |
+
#: views/list.php:31
|
1475 |
+
#: views/single.php:11
|
1476 |
+
msgid "Start:"
|
1477 |
+
msgstr "Start:"
|
1478 |
+
|
1479 |
+
#: views/list.php:35
|
1480 |
+
#: views/single.php:14
|
1481 |
+
msgid "End:"
|
1482 |
+
msgstr "Slut:"
|
1483 |
+
|
1484 |
+
#: views/list.php:61
|
1485 |
+
#: views/single.php:28
|
1486 |
+
msgid "Google Map"
|
1487 |
+
msgstr ""
|
1488 |
+
|
1489 |
+
#: views/list.php:92
|
1490 |
+
msgid "« Previous Events"
|
1491 |
+
msgstr "« Tideligere Events"
|
1492 |
+
|
1493 |
+
#: views/list.php:105
|
1494 |
+
msgid "Next Events »"
|
1495 |
+
msgstr "Næste Events »"
|
1496 |
+
|
1497 |
+
#: views/single.php:6
|
1498 |
+
msgid "« Back to Events"
|
1499 |
+
msgstr "« Tilbage til Events"
|
1500 |
+
|
1501 |
+
#: views/single.php:8
|
1502 |
+
msgid "This event has passed."
|
1503 |
+
msgstr "Dette event er overstået."
|
1504 |
+
|
1505 |
+
#: views/table.php:12
|
1506 |
+
msgid "Sunday"
|
1507 |
+
msgstr "Søndag"
|
1508 |
+
|
1509 |
+
#: views/table.php:12
|
1510 |
+
msgid "Sun"
|
1511 |
+
msgstr "Søn"
|
1512 |
+
|
1513 |
+
#: views/table.php:13
|
1514 |
+
msgid "Monday"
|
1515 |
+
msgstr "Mandag"
|
1516 |
+
|
1517 |
+
#: views/table.php:13
|
1518 |
+
msgid "Mon"
|
1519 |
+
msgstr "Man"
|
1520 |
+
|
1521 |
+
#: views/table.php:14
|
1522 |
+
msgid "Tuesday"
|
1523 |
+
msgstr "Tirsdag"
|
1524 |
+
|
1525 |
+
#: views/table.php:14
|
1526 |
+
msgid "Tue"
|
1527 |
+
msgstr "Tir"
|
1528 |
+
|
1529 |
+
#: views/table.php:15
|
1530 |
+
msgid "Wednesday"
|
1531 |
+
msgstr "Onsdag"
|
1532 |
+
|
1533 |
+
#: views/table.php:15
|
1534 |
+
msgid "Wed"
|
1535 |
+
msgstr "Ons"
|
1536 |
+
|
1537 |
+
#: views/table.php:16
|
1538 |
+
msgid "Thursday"
|
1539 |
+
msgstr "Torsdag"
|
1540 |
+
|
1541 |
+
#: views/table.php:16
|
1542 |
+
msgid "Thu"
|
1543 |
+
msgstr "Tor"
|
1544 |
+
|
1545 |
+
#: views/table.php:17
|
1546 |
+
msgid "Friday"
|
1547 |
+
msgstr "Fredag"
|
1548 |
+
|
1549 |
+
#: views/table.php:17
|
1550 |
+
msgid "Fri"
|
1551 |
+
msgstr "Fre"
|
1552 |
+
|
1553 |
+
#: views/table.php:18
|
1554 |
+
msgid "Saturday"
|
1555 |
+
msgstr "Lørdag"
|
1556 |
+
|
1557 |
+
#: views/table.php:18
|
1558 |
+
msgid "Sat"
|
1559 |
+
msgstr "Lør"
|
1560 |
+
|
1561 |
+
#. Plugin Name of an extension
|
1562 |
+
msgid "The Events Calendar"
|
1563 |
+
msgstr "Event kalenderen"
|
1564 |
+
|
1565 |
+
#. Plugin URI of an extension
|
1566 |
+
msgid "http://wordpress.org/extend/plugins/the-events-calendar/"
|
1567 |
+
msgstr ""
|
1568 |
+
|
1569 |
+
#. Description of an extension
|
1570 |
+
msgid "The Events Calendar plugin enables you to rapidly create and manage events using the post editor. Features include optional Eventbrite integration, Google Maps integration as well as default calendar grid and list templates for streamlined one click installation."
|
1571 |
+
msgstr ""
|
1572 |
+
|
1573 |
+
#. Author of an extension
|
1574 |
+
msgid "Shane & Peter, Inc."
|
1575 |
+
msgstr ""
|
1576 |
+
|
1577 |
+
#. Author URI of an extension
|
1578 |
+
msgid "http://www.shaneandpeter.com/"
|
1579 |
+
msgstr ""
|
1580 |
+
|
lang/the-events-calendar-de_DE.mo
ADDED
Binary file
|
lang/the-events-calendar-de_DE.po
ADDED
@@ -0,0 +1,1709 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of the WordPress plugin The Events Calendar 1.6 by Shane & Peter, Inc..
|
2 |
+
# Copyright (C) 2010 Shane & Peter, Inc.
|
3 |
+
# This file is distributed under the same license as the The Events Calendar package.
|
4 |
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
5 |
+
#
|
6 |
+
msgid ""
|
7 |
+
msgstr ""
|
8 |
+
"Project-Id-Version: The Events Calendar 1.6\n"
|
9 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/the-events-calendar\n"
|
10 |
+
"POT-Creation-Date: 2010-05-11 18:45+0000\n"
|
11 |
+
"PO-Revision-Date: 2010-05-12 00:13+0100\n"
|
12 |
+
"Last-Translator: André Schuhmann <Andre.Schuhmann@yahoo.de>\n"
|
13 |
+
"Language-Team: André Schuhmann <Andre.Schuhmann@yahoo.de>\n"
|
14 |
+
"MIME-Version: 1.0\n"
|
15 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
+
"Content-Transfer-Encoding: 8bit\n"
|
17 |
+
"X-Poedit-Language: German\n"
|
18 |
+
"X-Poedit-Country: GERMANY\n"
|
19 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
20 |
+
|
21 |
+
#: events-calendar-widget.class.php:12
|
22 |
+
msgid "A calendar of your events"
|
23 |
+
msgstr "Ein Kalender für Events"
|
24 |
+
|
25 |
+
#: events-calendar-widget.class.php:13
|
26 |
+
msgid "Events Calendar"
|
27 |
+
msgstr "Veranstaltungskalender"
|
28 |
+
|
29 |
+
#: events-calendar-widget.class.php:39
|
30 |
+
#: views/events-list-load-widget-admin.php:2
|
31 |
+
msgid "Title:"
|
32 |
+
msgstr "Titel:"
|
33 |
+
|
34 |
+
#: events-list-widget.class.php:15
|
35 |
+
msgid "A widget that displays the next upcoming x events."
|
36 |
+
msgstr "Ein Widget, das die nächsten x Events zeigt."
|
37 |
+
|
38 |
+
#: events-list-widget.class.php:57
|
39 |
+
msgid "View All Events"
|
40 |
+
msgstr "Alle Events zeigen"
|
41 |
+
|
42 |
+
#: the-events-calendar.class.php:47
|
43 |
+
msgid "Sun"
|
44 |
+
msgstr "So"
|
45 |
+
|
46 |
+
#: the-events-calendar.class.php:47
|
47 |
+
msgid "Mon"
|
48 |
+
msgstr "Mo"
|
49 |
+
|
50 |
+
#: the-events-calendar.class.php:47
|
51 |
+
msgid "Tue"
|
52 |
+
msgstr "Di"
|
53 |
+
|
54 |
+
#: the-events-calendar.class.php:47
|
55 |
+
msgid "Wed"
|
56 |
+
msgstr "Mi"
|
57 |
+
|
58 |
+
#: the-events-calendar.class.php:47
|
59 |
+
msgid "Thu"
|
60 |
+
msgstr "Do"
|
61 |
+
|
62 |
+
#: the-events-calendar.class.php:47
|
63 |
+
msgid "Fri"
|
64 |
+
msgstr "Fr"
|
65 |
+
|
66 |
+
#: the-events-calendar.class.php:47
|
67 |
+
msgid "Sat"
|
68 |
+
msgstr "Sa"
|
69 |
+
|
70 |
+
#: the-events-calendar.class.php:48
|
71 |
+
msgid "Sunday"
|
72 |
+
msgstr "Sonntag"
|
73 |
+
|
74 |
+
#: the-events-calendar.class.php:48
|
75 |
+
msgid "Monday"
|
76 |
+
msgstr "Montag"
|
77 |
+
|
78 |
+
#: the-events-calendar.class.php:48
|
79 |
+
msgid "Tuesday"
|
80 |
+
msgstr "Dienstag"
|
81 |
+
|
82 |
+
#: the-events-calendar.class.php:48
|
83 |
+
msgid "Wednesday"
|
84 |
+
msgstr "Mittwoch"
|
85 |
+
|
86 |
+
#: the-events-calendar.class.php:48
|
87 |
+
msgid "Thursday"
|
88 |
+
msgstr "Donnerstag"
|
89 |
+
|
90 |
+
#: the-events-calendar.class.php:48
|
91 |
+
msgid "Friday"
|
92 |
+
msgstr "Freitag"
|
93 |
+
|
94 |
+
#: the-events-calendar.class.php:48
|
95 |
+
msgid "Saturday"
|
96 |
+
msgstr "Samstag"
|
97 |
+
|
98 |
+
#: the-events-calendar.class.php:54
|
99 |
+
msgid "United States"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: the-events-calendar.class.php:55
|
103 |
+
msgid "Afghanistan"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: the-events-calendar.class.php:56
|
107 |
+
msgid "Albania"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: the-events-calendar.class.php:57
|
111 |
+
msgid "Algeria"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: the-events-calendar.class.php:58
|
115 |
+
msgid "American Samoa"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: the-events-calendar.class.php:59
|
119 |
+
msgid "Andorra"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: the-events-calendar.class.php:60
|
123 |
+
msgid "Angola"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: the-events-calendar.class.php:61
|
127 |
+
msgid "Anguilla"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: the-events-calendar.class.php:62
|
131 |
+
msgid "Antarctica"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: the-events-calendar.class.php:63
|
135 |
+
msgid "Antigua And Barbuda"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: the-events-calendar.class.php:64
|
139 |
+
msgid "Argentina"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: the-events-calendar.class.php:65
|
143 |
+
msgid "Armenia"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: the-events-calendar.class.php:66
|
147 |
+
msgid "Aruba"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: the-events-calendar.class.php:67
|
151 |
+
msgid "Australia"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: the-events-calendar.class.php:68
|
155 |
+
msgid "Austria"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: the-events-calendar.class.php:69
|
159 |
+
msgid "Azerbaijan"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: the-events-calendar.class.php:70
|
163 |
+
msgid "Bahamas"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: the-events-calendar.class.php:71
|
167 |
+
msgid "Bahrain"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: the-events-calendar.class.php:72
|
171 |
+
msgid "Bangladesh"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: the-events-calendar.class.php:73
|
175 |
+
msgid "Barbados"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: the-events-calendar.class.php:74
|
179 |
+
msgid "Belarus"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: the-events-calendar.class.php:75
|
183 |
+
msgid "Belgium"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: the-events-calendar.class.php:76
|
187 |
+
msgid "Belize"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: the-events-calendar.class.php:77
|
191 |
+
msgid "Benin"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: the-events-calendar.class.php:78
|
195 |
+
msgid "Bermuda"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: the-events-calendar.class.php:79
|
199 |
+
msgid "Bhutan"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: the-events-calendar.class.php:80
|
203 |
+
msgid "Bolivia"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: the-events-calendar.class.php:81
|
207 |
+
msgid "Bosnia And Herzegowina"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: the-events-calendar.class.php:82
|
211 |
+
msgid "Botswana"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: the-events-calendar.class.php:83
|
215 |
+
msgid "Bouvet Island"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: the-events-calendar.class.php:84
|
219 |
+
msgid "Brazil"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: the-events-calendar.class.php:85
|
223 |
+
msgid "British Indian Ocean Territory"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: the-events-calendar.class.php:86
|
227 |
+
msgid "Brunei Darussalam"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: the-events-calendar.class.php:87
|
231 |
+
msgid "Bulgaria"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: the-events-calendar.class.php:88
|
235 |
+
msgid "Burkina Faso"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: the-events-calendar.class.php:89
|
239 |
+
msgid "Burundi"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: the-events-calendar.class.php:90
|
243 |
+
msgid "Cambodia"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: the-events-calendar.class.php:91
|
247 |
+
msgid "Cameroon"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: the-events-calendar.class.php:92
|
251 |
+
msgid "Canada"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: the-events-calendar.class.php:93
|
255 |
+
msgid "Cape Verde"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: the-events-calendar.class.php:94
|
259 |
+
msgid "Cayman Islands"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: the-events-calendar.class.php:95
|
263 |
+
msgid "Central African Republic"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: the-events-calendar.class.php:96
|
267 |
+
msgid "Chad"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: the-events-calendar.class.php:97
|
271 |
+
msgid "Chile"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: the-events-calendar.class.php:98
|
275 |
+
msgid "China"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: the-events-calendar.class.php:99
|
279 |
+
msgid "Christmas Island"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: the-events-calendar.class.php:100
|
283 |
+
msgid "Cocos (Keeling) Islands"
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: the-events-calendar.class.php:101
|
287 |
+
msgid "Colombia"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: the-events-calendar.class.php:102
|
291 |
+
msgid "Comoros"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: the-events-calendar.class.php:103
|
295 |
+
msgid "Congo"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: the-events-calendar.class.php:104
|
299 |
+
msgid "Congo, The Democratic Republic Of The"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: the-events-calendar.class.php:105
|
303 |
+
msgid "Cook Islands"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: the-events-calendar.class.php:106
|
307 |
+
msgid "Costa Rica"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: the-events-calendar.class.php:107
|
311 |
+
msgid "Cote D'Ivoire"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: the-events-calendar.class.php:108
|
315 |
+
msgid "Croatia (Local Name: Hrvatska)"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: the-events-calendar.class.php:109
|
319 |
+
msgid "Cuba"
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: the-events-calendar.class.php:110
|
323 |
+
msgid "Cyprus"
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: the-events-calendar.class.php:111
|
327 |
+
msgid "Czech Republic"
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: the-events-calendar.class.php:112
|
331 |
+
msgid "Denmark"
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: the-events-calendar.class.php:113
|
335 |
+
msgid "Djibouti"
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#: the-events-calendar.class.php:114
|
339 |
+
msgid "Dominica"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: the-events-calendar.class.php:115
|
343 |
+
msgid "Dominican Republic"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: the-events-calendar.class.php:116
|
347 |
+
msgid "East Timor"
|
348 |
+
msgstr ""
|
349 |
+
|
350 |
+
#: the-events-calendar.class.php:117
|
351 |
+
msgid "Ecuador"
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: the-events-calendar.class.php:118
|
355 |
+
msgid "Egypt"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: the-events-calendar.class.php:119
|
359 |
+
msgid "El Salvador"
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: the-events-calendar.class.php:120
|
363 |
+
msgid "Equatorial Guinea"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: the-events-calendar.class.php:121
|
367 |
+
msgid "Eritrea"
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: the-events-calendar.class.php:122
|
371 |
+
msgid "Estonia"
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
#: the-events-calendar.class.php:123
|
375 |
+
msgid "Ethiopia"
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: the-events-calendar.class.php:124
|
379 |
+
msgid "Falkland Islands (Malvinas)"
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: the-events-calendar.class.php:125
|
383 |
+
msgid "Faroe Islands"
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#: the-events-calendar.class.php:126
|
387 |
+
msgid "Fiji"
|
388 |
+
msgstr ""
|
389 |
+
|
390 |
+
#: the-events-calendar.class.php:127
|
391 |
+
msgid "Finland"
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
#: the-events-calendar.class.php:128
|
395 |
+
msgid "France"
|
396 |
+
msgstr ""
|
397 |
+
|
398 |
+
#: the-events-calendar.class.php:129
|
399 |
+
msgid "France, Metropolitan"
|
400 |
+
msgstr ""
|
401 |
+
|
402 |
+
#: the-events-calendar.class.php:130
|
403 |
+
msgid "French Guiana"
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
#: the-events-calendar.class.php:131
|
407 |
+
msgid "French Polynesia"
|
408 |
+
msgstr ""
|
409 |
+
|
410 |
+
#: the-events-calendar.class.php:132
|
411 |
+
msgid "French Southern Territories"
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
+
#: the-events-calendar.class.php:133
|
415 |
+
msgid "Gabon"
|
416 |
+
msgstr ""
|
417 |
+
|
418 |
+
#: the-events-calendar.class.php:134
|
419 |
+
msgid "Gambia"
|
420 |
+
msgstr ""
|
421 |
+
|
422 |
+
#: the-events-calendar.class.php:135
|
423 |
+
#: views/events-meta-box.php:324
|
424 |
+
msgid "Georgia"
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: the-events-calendar.class.php:136
|
428 |
+
msgid "Germany"
|
429 |
+
msgstr "Deutschland"
|
430 |
+
|
431 |
+
#: the-events-calendar.class.php:137
|
432 |
+
msgid "Ghana"
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: the-events-calendar.class.php:138
|
436 |
+
msgid "Gibraltar"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: the-events-calendar.class.php:139
|
440 |
+
msgid "Greece"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: the-events-calendar.class.php:140
|
444 |
+
msgid "Greenland"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: the-events-calendar.class.php:141
|
448 |
+
msgid "Grenada"
|
449 |
+
msgstr ""
|
450 |
+
|
451 |
+
#: the-events-calendar.class.php:142
|
452 |
+
msgid "Guadeloupe"
|
453 |
+
msgstr ""
|
454 |
+
|
455 |
+
#: the-events-calendar.class.php:143
|
456 |
+
msgid "Guam"
|
457 |
+
msgstr ""
|
458 |
+
|
459 |
+
#: the-events-calendar.class.php:144
|
460 |
+
msgid "Guatemala"
|
461 |
+
msgstr ""
|
462 |
+
|
463 |
+
#: the-events-calendar.class.php:145
|
464 |
+
msgid "Guinea"
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#: the-events-calendar.class.php:146
|
468 |
+
msgid "Guinea-Bissau"
|
469 |
+
msgstr ""
|
470 |
+
|
471 |
+
#: the-events-calendar.class.php:147
|
472 |
+
msgid "Guyana"
|
473 |
+
msgstr ""
|
474 |
+
|
475 |
+
#: the-events-calendar.class.php:148
|
476 |
+
msgid "Haiti"
|
477 |
+
msgstr ""
|
478 |
+
|
479 |
+
#: the-events-calendar.class.php:149
|
480 |
+
msgid "Heard And Mc Donald Islands"
|
481 |
+
msgstr ""
|
482 |
+
|
483 |
+
#: the-events-calendar.class.php:150
|
484 |
+
msgid "Holy See (Vatican City State)"
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: the-events-calendar.class.php:151
|
488 |
+
msgid "Honduras"
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: the-events-calendar.class.php:152
|
492 |
+
msgid "Hong Kong"
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: the-events-calendar.class.php:153
|
496 |
+
msgid "Hungary"
|
497 |
+
msgstr ""
|
498 |
+
|
499 |
+
#: the-events-calendar.class.php:154
|
500 |
+
msgid "Iceland"
|
501 |
+
msgstr ""
|
502 |
+
|
503 |
+
#: the-events-calendar.class.php:155
|
504 |
+
msgid "India"
|
505 |
+
msgstr ""
|
506 |
+
|
507 |
+
#: the-events-calendar.class.php:156
|
508 |
+
msgid "Indonesia"
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: the-events-calendar.class.php:157
|
512 |
+
msgid "Iran (Islamic Republic Of)"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: the-events-calendar.class.php:158
|
516 |
+
msgid "Iraq"
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: the-events-calendar.class.php:159
|
520 |
+
msgid "Ireland"
|
521 |
+
msgstr ""
|
522 |
+
|
523 |
+
#: the-events-calendar.class.php:160
|
524 |
+
msgid "Israel"
|
525 |
+
msgstr ""
|
526 |
+
|
527 |
+
#: the-events-calendar.class.php:161
|
528 |
+
msgid "Italy"
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: the-events-calendar.class.php:162
|
532 |
+
msgid "Jamaica"
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: the-events-calendar.class.php:163
|
536 |
+
msgid "Japan"
|
537 |
+
msgstr ""
|
538 |
+
|
539 |
+
#: the-events-calendar.class.php:164
|
540 |
+
msgid "Jordan"
|
541 |
+
msgstr ""
|
542 |
+
|
543 |
+
#: the-events-calendar.class.php:165
|
544 |
+
msgid "Kazakhstan"
|
545 |
+
msgstr ""
|
546 |
+
|
547 |
+
#: the-events-calendar.class.php:166
|
548 |
+
msgid "Kenya"
|
549 |
+
msgstr ""
|
550 |
+
|
551 |
+
#: the-events-calendar.class.php:167
|
552 |
+
msgid "Kiribati"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: the-events-calendar.class.php:168
|
556 |
+
msgid "Korea, Democratic People's Republic Of"
|
557 |
+
msgstr ""
|
558 |
+
|
559 |
+
#: the-events-calendar.class.php:169
|
560 |
+
msgid "Korea, Republic Of"
|
561 |
+
msgstr ""
|
562 |
+
|
563 |
+
#: the-events-calendar.class.php:170
|
564 |
+
msgid "Kuwait"
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
#: the-events-calendar.class.php:171
|
568 |
+
msgid "Kyrgyzstan"
|
569 |
+
msgstr ""
|
570 |
+
|
571 |
+
#: the-events-calendar.class.php:172
|
572 |
+
msgid "Lao People's Democratic Republic"
|
573 |
+
msgstr ""
|
574 |
+
|
575 |
+
#: the-events-calendar.class.php:173
|
576 |
+
msgid "Latvia"
|
577 |
+
msgstr ""
|
578 |
+
|
579 |
+
#: the-events-calendar.class.php:174
|
580 |
+
msgid "Lebanon"
|
581 |
+
msgstr ""
|
582 |
+
|
583 |
+
#: the-events-calendar.class.php:175
|
584 |
+
msgid "Lesotho"
|
585 |
+
msgstr ""
|
586 |
+
|
587 |
+
#: the-events-calendar.class.php:176
|
588 |
+
msgid "Liberia"
|
589 |
+
msgstr ""
|
590 |
+
|
591 |
+
#: the-events-calendar.class.php:177
|
592 |
+
msgid "Libyan Arab Jamahiriya"
|
593 |
+
msgstr ""
|
594 |
+
|
595 |
+
#: the-events-calendar.class.php:178
|
596 |
+
msgid "Liechtenstein"
|
597 |
+
msgstr ""
|
598 |
+
|
599 |
+
#: the-events-calendar.class.php:179
|
600 |
+
msgid "Lithuania"
|
601 |
+
msgstr ""
|
602 |
+
|
603 |
+
#: the-events-calendar.class.php:180
|
604 |
+
msgid "Luxembourg"
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: the-events-calendar.class.php:181
|
608 |
+
msgid "Macau"
|
609 |
+
msgstr ""
|
610 |
+
|
611 |
+
#: the-events-calendar.class.php:182
|
612 |
+
msgid "Macedonia, Former Yugoslav Republic Of"
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
#: the-events-calendar.class.php:183
|
616 |
+
msgid "Madagascar"
|
617 |
+
msgstr ""
|
618 |
+
|
619 |
+
#: the-events-calendar.class.php:184
|
620 |
+
msgid "Malawi"
|
621 |
+
msgstr ""
|
622 |
+
|
623 |
+
#: the-events-calendar.class.php:185
|
624 |
+
msgid "Malaysia"
|
625 |
+
msgstr ""
|
626 |
+
|
627 |
+
#: the-events-calendar.class.php:186
|
628 |
+
msgid "Maldives"
|
629 |
+
msgstr ""
|
630 |
+
|
631 |
+
#: the-events-calendar.class.php:187
|
632 |
+
msgid "Mali"
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: the-events-calendar.class.php:188
|
636 |
+
msgid "Malta"
|
637 |
+
msgstr ""
|
638 |
+
|
639 |
+
#: the-events-calendar.class.php:189
|
640 |
+
msgid "Marshall Islands"
|
641 |
+
msgstr ""
|
642 |
+
|
643 |
+
#: the-events-calendar.class.php:190
|
644 |
+
msgid "Martinique"
|
645 |
+
msgstr ""
|
646 |
+
|
647 |
+
#: the-events-calendar.class.php:191
|
648 |
+
msgid "Mauritania"
|
649 |
+
msgstr ""
|
650 |
+
|
651 |
+
#: the-events-calendar.class.php:192
|
652 |
+
msgid "Mauritius"
|
653 |
+
msgstr ""
|
654 |
+
|
655 |
+
#: the-events-calendar.class.php:193
|
656 |
+
msgid "Mayotte"
|
657 |
+
msgstr ""
|
658 |
+
|
659 |
+
#: the-events-calendar.class.php:194
|
660 |
+
msgid "Mexico"
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
#: the-events-calendar.class.php:195
|
664 |
+
msgid "Micronesia, Federated States Of"
|
665 |
+
msgstr ""
|
666 |
+
|
667 |
+
#: the-events-calendar.class.php:196
|
668 |
+
msgid "Moldova, Republic Of"
|
669 |
+
msgstr ""
|
670 |
+
|
671 |
+
#: the-events-calendar.class.php:197
|
672 |
+
msgid "Monaco"
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: the-events-calendar.class.php:198
|
676 |
+
msgid "Mongolia"
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: the-events-calendar.class.php:199
|
680 |
+
msgid "Montserrat"
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: the-events-calendar.class.php:200
|
684 |
+
msgid "Morocco"
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
#: the-events-calendar.class.php:201
|
688 |
+
msgid "Mozambique"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: the-events-calendar.class.php:202
|
692 |
+
msgid "Myanmar"
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: the-events-calendar.class.php:203
|
696 |
+
msgid "Namibia"
|
697 |
+
msgstr ""
|
698 |
+
|
699 |
+
#: the-events-calendar.class.php:204
|
700 |
+
msgid "Nauru"
|
701 |
+
msgstr ""
|
702 |
+
|
703 |
+
#: the-events-calendar.class.php:205
|
704 |
+
msgid "Nepal"
|
705 |
+
msgstr ""
|
706 |
+
|
707 |
+
#: the-events-calendar.class.php:206
|
708 |
+
msgid "Netherlands"
|
709 |
+
msgstr ""
|
710 |
+
|
711 |
+
#: the-events-calendar.class.php:207
|
712 |
+
msgid "Netherlands Antilles"
|
713 |
+
msgstr ""
|
714 |
+
|
715 |
+
#: the-events-calendar.class.php:208
|
716 |
+
msgid "New Caledonia"
|
717 |
+
msgstr ""
|
718 |
+
|
719 |
+
#: the-events-calendar.class.php:209
|
720 |
+
msgid "New Zealand"
|
721 |
+
msgstr ""
|
722 |
+
|
723 |
+
#: the-events-calendar.class.php:210
|
724 |
+
msgid "Nicaragua"
|
725 |
+
msgstr ""
|
726 |
+
|
727 |
+
#: the-events-calendar.class.php:211
|
728 |
+
msgid "Niger"
|
729 |
+
msgstr ""
|
730 |
+
|
731 |
+
#: the-events-calendar.class.php:212
|
732 |
+
msgid "Nigeria"
|
733 |
+
msgstr ""
|
734 |
+
|
735 |
+
#: the-events-calendar.class.php:213
|
736 |
+
msgid "Niue"
|
737 |
+
msgstr ""
|
738 |
+
|
739 |
+
#: the-events-calendar.class.php:214
|
740 |
+
msgid "Norfolk Island"
|
741 |
+
msgstr ""
|
742 |
+
|
743 |
+
#: the-events-calendar.class.php:215
|
744 |
+
msgid "Northern Mariana Islands"
|
745 |
+
msgstr ""
|
746 |
+
|
747 |
+
#: the-events-calendar.class.php:216
|
748 |
+
msgid "Norway"
|
749 |
+
msgstr ""
|
750 |
+
|
751 |
+
#: the-events-calendar.class.php:217
|
752 |
+
msgid "Oman"
|
753 |
+
msgstr ""
|
754 |
+
|
755 |
+
#: the-events-calendar.class.php:218
|
756 |
+
msgid "Pakistan"
|
757 |
+
msgstr ""
|
758 |
+
|
759 |
+
#: the-events-calendar.class.php:219
|
760 |
+
msgid "Palau"
|
761 |
+
msgstr ""
|
762 |
+
|
763 |
+
#: the-events-calendar.class.php:220
|
764 |
+
msgid "Panama"
|
765 |
+
msgstr ""
|
766 |
+
|
767 |
+
#: the-events-calendar.class.php:221
|
768 |
+
msgid "Papua New Guinea"
|
769 |
+
msgstr ""
|
770 |
+
|
771 |
+
#: the-events-calendar.class.php:222
|
772 |
+
msgid "Paraguay"
|
773 |
+
msgstr ""
|
774 |
+
|
775 |
+
#: the-events-calendar.class.php:223
|
776 |
+
msgid "Peru"
|
777 |
+
msgstr ""
|
778 |
+
|
779 |
+
#: the-events-calendar.class.php:224
|
780 |
+
msgid "Philippines"
|
781 |
+
msgstr ""
|
782 |
+
|
783 |
+
#: the-events-calendar.class.php:225
|
784 |
+
msgid "Pitcairn"
|
785 |
+
msgstr ""
|
786 |
+
|
787 |
+
#: the-events-calendar.class.php:226
|
788 |
+
msgid "Poland"
|
789 |
+
msgstr ""
|
790 |
+
|
791 |
+
#: the-events-calendar.class.php:227
|
792 |
+
msgid "Portugal"
|
793 |
+
msgstr ""
|
794 |
+
|
795 |
+
#: the-events-calendar.class.php:228
|
796 |
+
msgid "Puerto Rico"
|
797 |
+
msgstr ""
|
798 |
+
|
799 |
+
#: the-events-calendar.class.php:229
|
800 |
+
msgid "Qatar"
|
801 |
+
msgstr ""
|
802 |
+
|
803 |
+
#: the-events-calendar.class.php:230
|
804 |
+
msgid "Reunion"
|
805 |
+
msgstr ""
|
806 |
+
|
807 |
+
#: the-events-calendar.class.php:231
|
808 |
+
msgid "Romania"
|
809 |
+
msgstr ""
|
810 |
+
|
811 |
+
#: the-events-calendar.class.php:232
|
812 |
+
msgid "Russian Federation"
|
813 |
+
msgstr ""
|
814 |
+
|
815 |
+
#: the-events-calendar.class.php:233
|
816 |
+
msgid "Rwanda"
|
817 |
+
msgstr ""
|
818 |
+
|
819 |
+
#: the-events-calendar.class.php:234
|
820 |
+
msgid "Saint Kitts And Nevis"
|
821 |
+
msgstr ""
|
822 |
+
|
823 |
+
#: the-events-calendar.class.php:235
|
824 |
+
msgid "Saint Lucia"
|
825 |
+
msgstr ""
|
826 |
+
|
827 |
+
#: the-events-calendar.class.php:236
|
828 |
+
msgid "Saint Vincent And The Grenadines"
|
829 |
+
msgstr ""
|
830 |
+
|
831 |
+
#: the-events-calendar.class.php:237
|
832 |
+
msgid "Samoa"
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: the-events-calendar.class.php:238
|
836 |
+
msgid "San Marino"
|
837 |
+
msgstr ""
|
838 |
+
|
839 |
+
#: the-events-calendar.class.php:239
|
840 |
+
msgid "Sao Tome And Principe"
|
841 |
+
msgstr ""
|
842 |
+
|
843 |
+
#: the-events-calendar.class.php:240
|
844 |
+
msgid "Saudi Arabia"
|
845 |
+
msgstr ""
|
846 |
+
|
847 |
+
#: the-events-calendar.class.php:241
|
848 |
+
msgid "Senegal"
|
849 |
+
msgstr ""
|
850 |
+
|
851 |
+
#: the-events-calendar.class.php:242
|
852 |
+
msgid "Seychelles"
|
853 |
+
msgstr ""
|
854 |
+
|
855 |
+
#: the-events-calendar.class.php:243
|
856 |
+
msgid "Sierra Leone"
|
857 |
+
msgstr ""
|
858 |
+
|
859 |
+
#: the-events-calendar.class.php:244
|
860 |
+
msgid "Singapore"
|
861 |
+
msgstr ""
|
862 |
+
|
863 |
+
#: the-events-calendar.class.php:245
|
864 |
+
msgid "Slovakia (Slovak Republic)"
|
865 |
+
msgstr ""
|
866 |
+
|
867 |
+
#: the-events-calendar.class.php:246
|
868 |
+
msgid "Slovenia"
|
869 |
+
msgstr ""
|
870 |
+
|
871 |
+
#: the-events-calendar.class.php:247
|
872 |
+
msgid "Solomon Islands"
|
873 |
+
msgstr ""
|
874 |
+
|
875 |
+
#: the-events-calendar.class.php:248
|
876 |
+
msgid "Somalia"
|
877 |
+
msgstr ""
|
878 |
+
|
879 |
+
#: the-events-calendar.class.php:249
|
880 |
+
msgid "South Africa"
|
881 |
+
msgstr ""
|
882 |
+
|
883 |
+
#: the-events-calendar.class.php:250
|
884 |
+
msgid "South Georgia, South Sandwich Islands"
|
885 |
+
msgstr ""
|
886 |
+
|
887 |
+
#: the-events-calendar.class.php:251
|
888 |
+
msgid "Spain"
|
889 |
+
msgstr ""
|
890 |
+
|
891 |
+
#: the-events-calendar.class.php:252
|
892 |
+
msgid "Sri Lanka"
|
893 |
+
msgstr ""
|
894 |
+
|
895 |
+
#: the-events-calendar.class.php:253
|
896 |
+
msgid "St. Helena"
|
897 |
+
msgstr ""
|
898 |
+
|
899 |
+
#: the-events-calendar.class.php:254
|
900 |
+
msgid "St. Pierre And Miquelon"
|
901 |
+
msgstr ""
|
902 |
+
|
903 |
+
#: the-events-calendar.class.php:255
|
904 |
+
msgid "Sudan"
|
905 |
+
msgstr ""
|
906 |
+
|
907 |
+
#: the-events-calendar.class.php:256
|
908 |
+
msgid "Suriname"
|
909 |
+
msgstr ""
|
910 |
+
|
911 |
+
#: the-events-calendar.class.php:257
|
912 |
+
msgid "Svalbard And Jan Mayen Islands"
|
913 |
+
msgstr ""
|
914 |
+
|
915 |
+
#: the-events-calendar.class.php:258
|
916 |
+
msgid "Swaziland"
|
917 |
+
msgstr ""
|
918 |
+
|
919 |
+
#: the-events-calendar.class.php:259
|
920 |
+
msgid "Sweden"
|
921 |
+
msgstr ""
|
922 |
+
|
923 |
+
#: the-events-calendar.class.php:260
|
924 |
+
msgid "Switzerland"
|
925 |
+
msgstr ""
|
926 |
+
|
927 |
+
#: the-events-calendar.class.php:261
|
928 |
+
msgid "Syrian Arab Republic"
|
929 |
+
msgstr ""
|
930 |
+
|
931 |
+
#: the-events-calendar.class.php:262
|
932 |
+
msgid "Taiwan"
|
933 |
+
msgstr ""
|
934 |
+
|
935 |
+
#: the-events-calendar.class.php:263
|
936 |
+
msgid "Tajikistan"
|
937 |
+
msgstr ""
|
938 |
+
|
939 |
+
#: the-events-calendar.class.php:264
|
940 |
+
msgid "Tanzania, United Republic Of"
|
941 |
+
msgstr ""
|
942 |
+
|
943 |
+
#: the-events-calendar.class.php:265
|
944 |
+
msgid "Thailand"
|
945 |
+
msgstr ""
|
946 |
+
|
947 |
+
#: the-events-calendar.class.php:266
|
948 |
+
msgid "Togo"
|
949 |
+
msgstr ""
|
950 |
+
|
951 |
+
#: the-events-calendar.class.php:267
|
952 |
+
msgid "Tokelau"
|
953 |
+
msgstr ""
|
954 |
+
|
955 |
+
#: the-events-calendar.class.php:268
|
956 |
+
msgid "Tonga"
|
957 |
+
msgstr ""
|
958 |
+
|
959 |
+
#: the-events-calendar.class.php:269
|
960 |
+
msgid "Trinidad And Tobago"
|
961 |
+
msgstr ""
|
962 |
+
|
963 |
+
#: the-events-calendar.class.php:270
|
964 |
+
msgid "Tunisia"
|
965 |
+
msgstr ""
|
966 |
+
|
967 |
+
#: the-events-calendar.class.php:271
|
968 |
+
msgid "Turkey"
|
969 |
+
msgstr ""
|
970 |
+
|
971 |
+
#: the-events-calendar.class.php:272
|
972 |
+
msgid "Turkmenistan"
|
973 |
+
msgstr ""
|
974 |
+
|
975 |
+
#: the-events-calendar.class.php:273
|
976 |
+
msgid "Turks And Caicos Islands"
|
977 |
+
msgstr ""
|
978 |
+
|
979 |
+
#: the-events-calendar.class.php:274
|
980 |
+
msgid "Tuvalu"
|
981 |
+
msgstr ""
|
982 |
+
|
983 |
+
#: the-events-calendar.class.php:275
|
984 |
+
msgid "Uganda"
|
985 |
+
msgstr ""
|
986 |
+
|
987 |
+
#: the-events-calendar.class.php:276
|
988 |
+
msgid "Ukraine"
|
989 |
+
msgstr ""
|
990 |
+
|
991 |
+
#: the-events-calendar.class.php:277
|
992 |
+
msgid "United Arab Emirates"
|
993 |
+
msgstr ""
|
994 |
+
|
995 |
+
#: the-events-calendar.class.php:278
|
996 |
+
msgid "United Kingdom"
|
997 |
+
msgstr ""
|
998 |
+
|
999 |
+
#: the-events-calendar.class.php:279
|
1000 |
+
msgid "United States Minor Outlying Islands"
|
1001 |
+
msgstr ""
|
1002 |
+
|
1003 |
+
#: the-events-calendar.class.php:280
|
1004 |
+
msgid "Uruguay"
|
1005 |
+
msgstr ""
|
1006 |
+
|
1007 |
+
#: the-events-calendar.class.php:281
|
1008 |
+
msgid "Uzbekistan"
|
1009 |
+
msgstr ""
|
1010 |
+
|
1011 |
+
#: the-events-calendar.class.php:282
|
1012 |
+
msgid "Vanuatu"
|
1013 |
+
msgstr ""
|
1014 |
+
|
1015 |
+
#: the-events-calendar.class.php:283
|
1016 |
+
msgid "Venezuela"
|
1017 |
+
msgstr ""
|
1018 |
+
|
1019 |
+
#: the-events-calendar.class.php:284
|
1020 |
+
msgid "Viet Nam"
|
1021 |
+
msgstr ""
|
1022 |
+
|
1023 |
+
#: the-events-calendar.class.php:285
|
1024 |
+
msgid "Virgin Islands (British)"
|
1025 |
+
msgstr ""
|
1026 |
+
|
1027 |
+
#: the-events-calendar.class.php:286
|
1028 |
+
msgid "Virgin Islands (U.S.)"
|
1029 |
+
msgstr ""
|
1030 |
+
|
1031 |
+
#: the-events-calendar.class.php:287
|
1032 |
+
msgid "Wallis And Futuna Islands"
|
1033 |
+
msgstr ""
|
1034 |
+
|
1035 |
+
#: the-events-calendar.class.php:288
|
1036 |
+
msgid "Western Sahara"
|
1037 |
+
msgstr ""
|
1038 |
+
|
1039 |
+
#: the-events-calendar.class.php:289
|
1040 |
+
msgid "Yemen"
|
1041 |
+
msgstr ""
|
1042 |
+
|
1043 |
+
#: the-events-calendar.class.php:290
|
1044 |
+
msgid "Yugoslavia"
|
1045 |
+
msgstr ""
|
1046 |
+
|
1047 |
+
#: the-events-calendar.class.php:291
|
1048 |
+
msgid "Zambia"
|
1049 |
+
msgstr ""
|
1050 |
+
|
1051 |
+
#: the-events-calendar.class.php:292
|
1052 |
+
msgid "Zimbabwe"
|
1053 |
+
msgstr ""
|
1054 |
+
|
1055 |
+
#: the-events-calendar.class.php:491
|
1056 |
+
msgid "Jan"
|
1057 |
+
msgstr "Jan"
|
1058 |
+
|
1059 |
+
#: the-events-calendar.class.php:492
|
1060 |
+
msgid "Feb"
|
1061 |
+
msgstr "Feb"
|
1062 |
+
|
1063 |
+
#: the-events-calendar.class.php:493
|
1064 |
+
msgid "Mar"
|
1065 |
+
msgstr "Mär"
|
1066 |
+
|
1067 |
+
#: the-events-calendar.class.php:494
|
1068 |
+
msgid "Apr"
|
1069 |
+
msgstr "Apr"
|
1070 |
+
|
1071 |
+
#: the-events-calendar.class.php:495
|
1072 |
+
#: the-events-calendar.class.php:509
|
1073 |
+
msgid "May"
|
1074 |
+
msgstr "Mai"
|
1075 |
+
|
1076 |
+
#: the-events-calendar.class.php:496
|
1077 |
+
msgid "Jun"
|
1078 |
+
msgstr "Jun"
|
1079 |
+
|
1080 |
+
#: the-events-calendar.class.php:497
|
1081 |
+
msgid "Jul"
|
1082 |
+
msgstr "Jul"
|
1083 |
+
|
1084 |
+
#: the-events-calendar.class.php:498
|
1085 |
+
msgid "Aug"
|
1086 |
+
msgstr "Aug"
|
1087 |
+
|
1088 |
+
#: the-events-calendar.class.php:499
|
1089 |
+
msgid "Sep"
|
1090 |
+
msgstr "Sep"
|
1091 |
+
|
1092 |
+
#: the-events-calendar.class.php:500
|
1093 |
+
msgid "Oct"
|
1094 |
+
msgstr "Okt"
|
1095 |
+
|
1096 |
+
#: the-events-calendar.class.php:501
|
1097 |
+
msgid "Nov"
|
1098 |
+
msgstr "Nov"
|
1099 |
+
|
1100 |
+
#: the-events-calendar.class.php:502
|
1101 |
+
msgid "Dec"
|
1102 |
+
msgstr "Dez"
|
1103 |
+
|
1104 |
+
#: the-events-calendar.class.php:505
|
1105 |
+
msgid "January"
|
1106 |
+
msgstr "Januar"
|
1107 |
+
|
1108 |
+
#: the-events-calendar.class.php:506
|
1109 |
+
msgid "February"
|
1110 |
+
msgstr "Februar"
|
1111 |
+
|
1112 |
+
#: the-events-calendar.class.php:507
|
1113 |
+
msgid "March"
|
1114 |
+
msgstr "März"
|
1115 |
+
|
1116 |
+
#: the-events-calendar.class.php:508
|
1117 |
+
msgid "April"
|
1118 |
+
msgstr "April"
|
1119 |
+
|
1120 |
+
#: the-events-calendar.class.php:510
|
1121 |
+
msgid "June"
|
1122 |
+
msgstr "Juni"
|
1123 |
+
|
1124 |
+
#: the-events-calendar.class.php:511
|
1125 |
+
msgid "July"
|
1126 |
+
msgstr "July"
|
1127 |
+
|
1128 |
+
#: the-events-calendar.class.php:512
|
1129 |
+
msgid "August"
|
1130 |
+
msgstr "August"
|
1131 |
+
|
1132 |
+
#: the-events-calendar.class.php:513
|
1133 |
+
msgid "September"
|
1134 |
+
msgstr "September"
|
1135 |
+
|
1136 |
+
#: the-events-calendar.class.php:514
|
1137 |
+
msgid "October"
|
1138 |
+
msgstr "Oktober"
|
1139 |
+
|
1140 |
+
#: the-events-calendar.class.php:515
|
1141 |
+
msgid "November"
|
1142 |
+
msgstr "November"
|
1143 |
+
|
1144 |
+
#: the-events-calendar.class.php:516
|
1145 |
+
msgid "December"
|
1146 |
+
msgstr "Dezember"
|
1147 |
+
|
1148 |
+
#. #-#-#-#-# plugin.pot (The Events Calendar 1.6) #-#-#-#-#
|
1149 |
+
#. Plugin Name of the plugin/theme
|
1150 |
+
#: the-events-calendar.class.php:1004
|
1151 |
+
msgid "The Events Calendar"
|
1152 |
+
msgstr "Der Eventkalender"
|
1153 |
+
|
1154 |
+
#: views/events-list-load-widget-admin.php:7
|
1155 |
+
msgid "Show:"
|
1156 |
+
msgstr "Zeigen:"
|
1157 |
+
|
1158 |
+
#: views/events-list-load-widget-admin.php:16
|
1159 |
+
msgid "Display:"
|
1160 |
+
msgstr "Anzeigen:"
|
1161 |
+
|
1162 |
+
#: views/events-list-load-widget-admin.php:19
|
1163 |
+
msgid "Start Date & Time"
|
1164 |
+
msgstr "Start Datum & Zeit"
|
1165 |
+
|
1166 |
+
#: views/events-list-load-widget-admin.php:20
|
1167 |
+
msgid "End Date & Time"
|
1168 |
+
msgstr "Ende Datum & Zeit"
|
1169 |
+
|
1170 |
+
#: views/events-list-load-widget-admin.php:21
|
1171 |
+
msgid "Venue"
|
1172 |
+
msgstr "Ort"
|
1173 |
+
|
1174 |
+
#: views/events-list-load-widget-admin.php:22
|
1175 |
+
msgid "Address"
|
1176 |
+
msgstr "Straße"
|
1177 |
+
|
1178 |
+
#: views/events-list-load-widget-admin.php:23
|
1179 |
+
msgid "City"
|
1180 |
+
msgstr "Stadt"
|
1181 |
+
|
1182 |
+
#: views/events-list-load-widget-admin.php:24
|
1183 |
+
msgid "State (US)"
|
1184 |
+
msgstr "Staat (US)"
|
1185 |
+
|
1186 |
+
#: views/events-list-load-widget-admin.php:25
|
1187 |
+
msgid "Province (Int)"
|
1188 |
+
msgstr "Bundesland"
|
1189 |
+
|
1190 |
+
#: views/events-list-load-widget-admin.php:26
|
1191 |
+
msgid "Postal Code"
|
1192 |
+
msgstr "PLZ"
|
1193 |
+
|
1194 |
+
#: views/events-list-load-widget-admin.php:27
|
1195 |
+
msgid "Country"
|
1196 |
+
msgstr "Land"
|
1197 |
+
|
1198 |
+
#: views/events-list-load-widget-admin.php:28
|
1199 |
+
#: views/events-meta-box.php:106
|
1200 |
+
msgid "Phone"
|
1201 |
+
msgstr "Telefon"
|
1202 |
+
|
1203 |
+
#: views/events-list-load-widget-admin.php:29
|
1204 |
+
msgid "Price"
|
1205 |
+
msgstr "Preis"
|
1206 |
+
|
1207 |
+
#: views/events-list-load-widget-display.php:48
|
1208 |
+
msgid "More Info"
|
1209 |
+
msgstr "Mehr Infos"
|
1210 |
+
|
1211 |
+
#: views/events-meta-box.php:106
|
1212 |
+
msgid "is not valid."
|
1213 |
+
msgstr "ist nich korrekt."
|
1214 |
+
|
1215 |
+
#: views/events-meta-box.php:106
|
1216 |
+
msgid "Valid values are local format (eg. 02 1234 5678 or 123 123 4567) or international format (eg. +61 (0) 2 1234 5678 or +1 123 123 4567). You may also use an optional extension of up to five digits prefixed by x or ext (eg. 123 123 4567 x89)"
|
1217 |
+
msgstr "Zulässige Eingabeformate sind (wie 02 1234 5678 or 123 123 4567) oder internationales Format (wie +61 (0) 2 1234 5678 oder +1 123 123 4567). Du kannst auch optional bis zu fünf Stellen Erweiterungen wie x oder ext verwenden (wie 123 123 4567 x89)"
|
1218 |
+
|
1219 |
+
#: views/events-meta-box.php:184
|
1220 |
+
msgid "Is this post an event?"
|
1221 |
+
msgstr "Ist der Artikel ein Event?"
|
1222 |
+
|
1223 |
+
#: views/events-meta-box.php:185
|
1224 |
+
#: views/events-options.php:181
|
1225 |
+
msgid "Yes"
|
1226 |
+
msgstr "Ja"
|
1227 |
+
|
1228 |
+
#: views/events-meta-box.php:186
|
1229 |
+
#: views/events-options.php:185
|
1230 |
+
msgid "No"
|
1231 |
+
msgstr "Nein"
|
1232 |
+
|
1233 |
+
#: views/events-meta-box.php:203
|
1234 |
+
msgid "Event Time & Date"
|
1235 |
+
msgstr "Event Zeit & Datum"
|
1236 |
+
|
1237 |
+
#: views/events-meta-box.php:206
|
1238 |
+
msgid "All day event?"
|
1239 |
+
msgstr "Ganztags?"
|
1240 |
+
|
1241 |
+
#: views/events-meta-box.php:210
|
1242 |
+
msgid "Start Date / Time:"
|
1243 |
+
msgstr "Start Datum / Zeit:"
|
1244 |
+
|
1245 |
+
#: views/events-meta-box.php:224
|
1246 |
+
#: views/events-meta-box.php:254
|
1247 |
+
msgid "@"
|
1248 |
+
msgstr "@"
|
1249 |
+
|
1250 |
+
#: views/events-meta-box.php:240
|
1251 |
+
msgid "End Date / Time:"
|
1252 |
+
msgstr "Ende Datum / Zeit:"
|
1253 |
+
|
1254 |
+
#: views/events-meta-box.php:270
|
1255 |
+
msgid "Event Location Details"
|
1256 |
+
msgstr "Eventort Beschreibung"
|
1257 |
+
|
1258 |
+
#: views/events-meta-box.php:273
|
1259 |
+
#: views/list.php:45
|
1260 |
+
#: views/single.php:27
|
1261 |
+
msgid "Venue:"
|
1262 |
+
msgstr "Eventort:"
|
1263 |
+
|
1264 |
+
#: views/events-meta-box.php:279
|
1265 |
+
msgid "Country:"
|
1266 |
+
msgstr "Land:"
|
1267 |
+
|
1268 |
+
#: views/events-meta-box.php:296
|
1269 |
+
#: views/list.php:60
|
1270 |
+
#: views/single.php:35
|
1271 |
+
msgid "Address:"
|
1272 |
+
msgstr "Straße:"
|
1273 |
+
|
1274 |
+
#: views/events-meta-box.php:300
|
1275 |
+
msgid "City:"
|
1276 |
+
msgstr "Stadt:"
|
1277 |
+
|
1278 |
+
#: views/events-meta-box.php:305
|
1279 |
+
msgid "Province:"
|
1280 |
+
msgstr "Bundesland:"
|
1281 |
+
|
1282 |
+
#: views/events-meta-box.php:309
|
1283 |
+
msgid "State:"
|
1284 |
+
msgstr "Staat:"
|
1285 |
+
|
1286 |
+
#: views/events-meta-box.php:312
|
1287 |
+
msgid "Select a State:"
|
1288 |
+
msgstr "Staat auswählen:"
|
1289 |
+
|
1290 |
+
#: views/events-meta-box.php:314
|
1291 |
+
msgid "Alabama"
|
1292 |
+
msgstr "Baden-Württemberg"
|
1293 |
+
|
1294 |
+
#: views/events-meta-box.php:315
|
1295 |
+
msgid "Alaska"
|
1296 |
+
msgstr "Bayern"
|
1297 |
+
|
1298 |
+
#: views/events-meta-box.php:316
|
1299 |
+
msgid "Arizona"
|
1300 |
+
msgstr "Berlin"
|
1301 |
+
|
1302 |
+
#: views/events-meta-box.php:317
|
1303 |
+
msgid "Arkansas"
|
1304 |
+
msgstr "Brandenburg"
|
1305 |
+
|
1306 |
+
#: views/events-meta-box.php:318
|
1307 |
+
msgid "California"
|
1308 |
+
msgstr "Bremen"
|
1309 |
+
|
1310 |
+
#: views/events-meta-box.php:319
|
1311 |
+
msgid "Colorado"
|
1312 |
+
msgstr "Hamburg"
|
1313 |
+
|
1314 |
+
#: views/events-meta-box.php:320
|
1315 |
+
msgid "Connecticut"
|
1316 |
+
msgstr "Hessen"
|
1317 |
+
|
1318 |
+
#: views/events-meta-box.php:321
|
1319 |
+
msgid "Delaware"
|
1320 |
+
msgstr "Mecklenburg-Vorpommern"
|
1321 |
+
|
1322 |
+
#: views/events-meta-box.php:322
|
1323 |
+
msgid "District of Columbia"
|
1324 |
+
msgstr "Niedersachsen"
|
1325 |
+
|
1326 |
+
#: views/events-meta-box.php:323
|
1327 |
+
msgid "Florida"
|
1328 |
+
msgstr "Nordrhein-Westfalen"
|
1329 |
+
|
1330 |
+
#: views/events-meta-box.php:325
|
1331 |
+
msgid "Hawaii"
|
1332 |
+
msgstr "Rheinland-Pfalz"
|
1333 |
+
|
1334 |
+
#: views/events-meta-box.php:326
|
1335 |
+
msgid "Idaho"
|
1336 |
+
msgstr "Saarland"
|
1337 |
+
|
1338 |
+
#: views/events-meta-box.php:327
|
1339 |
+
msgid "Illinois"
|
1340 |
+
msgstr "Sachsen"
|
1341 |
+
|
1342 |
+
#: views/events-meta-box.php:328
|
1343 |
+
msgid "Indiana"
|
1344 |
+
msgstr "Sachsen-Anhalt"
|
1345 |
+
|
1346 |
+
#: views/events-meta-box.php:329
|
1347 |
+
msgid "Iowa"
|
1348 |
+
msgstr "Schleswig-Holstein"
|
1349 |
+
|
1350 |
+
#: views/events-meta-box.php:330
|
1351 |
+
msgid "Kansas"
|
1352 |
+
msgstr "Thüringen"
|
1353 |
+
|
1354 |
+
#: views/events-meta-box.php:331
|
1355 |
+
msgid "Kentucky"
|
1356 |
+
msgstr " "
|
1357 |
+
|
1358 |
+
#: views/events-meta-box.php:332
|
1359 |
+
msgid "Louisiana"
|
1360 |
+
msgstr " "
|
1361 |
+
|
1362 |
+
#: views/events-meta-box.php:333
|
1363 |
+
msgid "Maine"
|
1364 |
+
msgstr " "
|
1365 |
+
|
1366 |
+
#: views/events-meta-box.php:334
|
1367 |
+
msgid "Maryland"
|
1368 |
+
msgstr " "
|
1369 |
+
|
1370 |
+
#: views/events-meta-box.php:335
|
1371 |
+
msgid "Massachusetts"
|
1372 |
+
msgstr " "
|
1373 |
+
|
1374 |
+
#: views/events-meta-box.php:336
|
1375 |
+
msgid "Michigan"
|
1376 |
+
msgstr " "
|
1377 |
+
|
1378 |
+
#: views/events-meta-box.php:337
|
1379 |
+
msgid "Minnesota"
|
1380 |
+
msgstr " "
|
1381 |
+
|
1382 |
+
#: views/events-meta-box.php:338
|
1383 |
+
msgid "Mississippi"
|
1384 |
+
msgstr " "
|
1385 |
+
|
1386 |
+
#: views/events-meta-box.php:339
|
1387 |
+
msgid "Missouri"
|
1388 |
+
msgstr " "
|
1389 |
+
|
1390 |
+
#: views/events-meta-box.php:340
|
1391 |
+
msgid "Montana"
|
1392 |
+
msgstr " "
|
1393 |
+
|
1394 |
+
#: views/events-meta-box.php:341
|
1395 |
+
msgid "Nebraska"
|
1396 |
+
msgstr " "
|
1397 |
+
|
1398 |
+
#: views/events-meta-box.php:342
|
1399 |
+
msgid "Nevada"
|
1400 |
+
msgstr " "
|
1401 |
+
|
1402 |
+
#: views/events-meta-box.php:343
|
1403 |
+
msgid "New Hampshire"
|
1404 |
+
msgstr " "
|
1405 |
+
|
1406 |
+
#: views/events-meta-box.php:344
|
1407 |
+
msgid "New Jersey"
|
1408 |
+
msgstr " "
|
1409 |
+
|
1410 |
+
#: views/events-meta-box.php:345
|
1411 |
+
msgid "New Mexico"
|
1412 |
+
msgstr " "
|
1413 |
+
|
1414 |
+
#: views/events-meta-box.php:346
|
1415 |
+
msgid "New York"
|
1416 |
+
msgstr " "
|
1417 |
+
|
1418 |
+
#: views/events-meta-box.php:347
|
1419 |
+
msgid "North Carolina"
|
1420 |
+
msgstr " "
|
1421 |
+
|
1422 |
+
#: views/events-meta-box.php:348
|
1423 |
+
msgid "North Dakota"
|
1424 |
+
msgstr " "
|
1425 |
+
|
1426 |
+
#: views/events-meta-box.php:349
|
1427 |
+
msgid "Ohio"
|
1428 |
+
msgstr " "
|
1429 |
+
|
1430 |
+
#: views/events-meta-box.php:350
|
1431 |
+
msgid "Oklahoma"
|
1432 |
+
msgstr " "
|
1433 |
+
|
1434 |
+
#: views/events-meta-box.php:351
|
1435 |
+
msgid "Oregon"
|
1436 |
+
msgstr " "
|
1437 |
+
|
1438 |
+
#: views/events-meta-box.php:352
|
1439 |
+
msgid "Pennsylvania"
|
1440 |
+
msgstr " "
|
1441 |
+
|
1442 |
+
#: views/events-meta-box.php:353
|
1443 |
+
msgid "Rhode Island"
|
1444 |
+
msgstr " "
|
1445 |
+
|
1446 |
+
#: views/events-meta-box.php:354
|
1447 |
+
msgid "South Carolina"
|
1448 |
+
msgstr " "
|
1449 |
+
|
1450 |
+
#: views/events-meta-box.php:355
|
1451 |
+
msgid "South Dakota"
|
1452 |
+
msgstr " "
|
1453 |
+
|
1454 |
+
#: views/events-meta-box.php:356
|
1455 |
+
msgid "Tennessee"
|
1456 |
+
msgstr " "
|
1457 |
+
|
1458 |
+
#: views/events-meta-box.php:357
|
1459 |
+
msgid "Texas"
|
1460 |
+
msgstr " "
|
1461 |
+
|
1462 |
+
#: views/events-meta-box.php:358
|
1463 |
+
msgid "Utah"
|
1464 |
+
msgstr " "
|
1465 |
+
|
1466 |
+
#: views/events-meta-box.php:359
|
1467 |
+
msgid "Vermont"
|
1468 |
+
msgstr " "
|
1469 |
+
|
1470 |
+
#: views/events-meta-box.php:360
|
1471 |
+
msgid "Virginia"
|
1472 |
+
msgstr " "
|
1473 |
+
|
1474 |
+
#: views/events-meta-box.php:361
|
1475 |
+
msgid "Washington"
|
1476 |
+
msgstr " "
|
1477 |
+
|
1478 |
+
#: views/events-meta-box.php:362
|
1479 |
+
msgid "West Virginia"
|
1480 |
+
msgstr " "
|
1481 |
+
|
1482 |
+
#: views/events-meta-box.php:363
|
1483 |
+
msgid "Wisconsin"
|
1484 |
+
msgstr " "
|
1485 |
+
|
1486 |
+
#: views/events-meta-box.php:364
|
1487 |
+
msgid "Wyoming"
|
1488 |
+
msgstr " "
|
1489 |
+
|
1490 |
+
#: views/events-meta-box.php:378
|
1491 |
+
msgid "Postal Code:"
|
1492 |
+
msgstr "PLZ:"
|
1493 |
+
|
1494 |
+
#: views/events-meta-box.php:382
|
1495 |
+
#: views/list.php:54
|
1496 |
+
#: views/single.php:31
|
1497 |
+
msgid "Phone:"
|
1498 |
+
msgstr "Telefon:"
|
1499 |
+
|
1500 |
+
#: views/events-meta-box.php:386
|
1501 |
+
msgid "Event Cost"
|
1502 |
+
msgstr "Event Kosten"
|
1503 |
+
|
1504 |
+
#: views/events-meta-box.php:389
|
1505 |
+
#: views/list.php:69
|
1506 |
+
#: views/single.php:21
|
1507 |
+
msgid "Cost:"
|
1508 |
+
msgstr "Preis:"
|
1509 |
+
|
1510 |
+
#: views/events-meta-box.php:394
|
1511 |
+
msgid "Leave blank to hide the field. Enter a 0 for events that are free."
|
1512 |
+
msgstr "Leeres Feld wird nicht angezeigt. 0 = kostenlose Veranstaltung."
|
1513 |
+
|
1514 |
+
#: views/events-meta-box.php:398
|
1515 |
+
msgid "Sell Tickets & Track Registration"
|
1516 |
+
msgstr "Ticketverkauf & Track Registrierung"
|
1517 |
+
|
1518 |
+
#: views/events-meta-box.php:403
|
1519 |
+
msgid "Interested in selling tickets and tracking registrations? Now you can do it for free using our <a href=\"http://wordpress.org/extend/plugins/eventbrite-for-the-events-calendar/\">Eventbrite Integration Plugin</a>. Eventbrite is a feature rich easy-to-use event management tool. \"Wow, you're selling Eventbrite pretty hard. You must get a kickback.\" Well, now that you mention it... we do. We get a little something for everyone that registers an event using our referral link. It's how we're able to keep supporting and building plugins for the open source community. "
|
1520 |
+
msgstr "Interessiert an Ticketverkauf und Nachverfolgung? Jetzt kannst du es tun mit unserem <a href=\"http://wordpress.org/extend/plugins/eventbrite-for-the-events-calendar/\">Eventbrite Integration Plugin</a>. Eventbrite ist ein leicht zu bedienendes Event Management Tool mit vielen Eigenschaften. \"Hey, ihr verkauft Eventbrite echt hart. Ihr müsst was zurück bekommen.\" Ok, wenn du es schon ansprichst... so ist es. Wir bekommen eine Kleinigkeit für jeden, der sich mit unserem Referenzlink anmeldet. Das macht es uns möglich den Support und die Entwicklung von Plugins für die Open Source Gemeinde zu machen."
|
1521 |
+
|
1522 |
+
#: views/events-meta-box.php:403
|
1523 |
+
msgid "Check it out here."
|
1524 |
+
msgstr "Hier ausprobieren."
|
1525 |
+
|
1526 |
+
#: views/events-meta-box.php:421
|
1527 |
+
msgid "<h4>If You Like This Plugin - Help Support It</h4><p>We spend a lot of time and effort building robust plugins and we love to share them with the community. If you use this plugin consider making a donation to help support its' continued development. You may remove this message on the <a href=\"/wp-admin/options-general.php?page=the-events-calendar.php\">settings page</a>.</p>"
|
1528 |
+
msgstr "<h4>Wenn Du dieses Plugin magst - Unterstütze es</h4><p>Wir verbringen viel Zeit und Anstrengung damit stabile Plugins zu entwickeln und teilen sie sehr gerne mit der Gemeinschaft. Wenn du dieses Plugin nutzt, überlege dir ob du mit einer Spende den Support und die weiterentwicklung unterstützen willst. Du kannst diese Nachricht auf der Seite <a href=\"/wp-admin/options-general.php?page=the-events-calendar.php\">Einstellungen</a> löschen.</p>"
|
1529 |
+
|
1530 |
+
#: views/events-meta-box.php:423
|
1531 |
+
msgid "Thanks"
|
1532 |
+
msgstr "Danke"
|
1533 |
+
|
1534 |
+
#: views/events-options.php:74
|
1535 |
+
msgid "The Events Calendar Settings"
|
1536 |
+
msgstr "Die Events Calendar Einstellungen"
|
1537 |
+
|
1538 |
+
#: views/events-options.php:94
|
1539 |
+
msgid "Need a hand?"
|
1540 |
+
msgstr "Brauchst du Hilfe?"
|
1541 |
+
|
1542 |
+
#: views/events-options.php:95
|
1543 |
+
msgid "If you're stuck on these options, please <a href=\"http://wordpress.org/extend/plugins/the-events-calendar/\">check out the documentation</a>. If you're still wondering what's going on, be sure to stop by the support <a href=\"http://wordpress.org/tags/the-events-calendar?forum_id=10\">forum</a> and ask for help. The open source community is full of kind folks who are happy to help."
|
1544 |
+
msgstr "Wenn du bei diese Option nicht weiterkommst, bitte <a href=\"http://wordpress.org/extend/plugins/the-events-calendar/\">probier die Dokumentation</a>. wenn du dich immer noch wunderst was da vor sich geht, versuch den Support im <a href=\"http://wordpress.org/tags/the-events-calendar?forum_id=10\">Forum</a> und frage nach Hilfe. Die Open Source Gemeinde ist sehr nett und wird dir weiterhelfen."
|
1545 |
+
|
1546 |
+
#: views/events-options.php:96
|
1547 |
+
msgid "Here is the iCal feed URL for your events: "
|
1548 |
+
msgstr "Hier ist die iCal Feed URL für deine Events:"
|
1549 |
+
|
1550 |
+
#: views/events-options.php:99
|
1551 |
+
msgid "Donate"
|
1552 |
+
msgstr "Spende"
|
1553 |
+
|
1554 |
+
#: views/events-options.php:108
|
1555 |
+
msgid "If you find this plugin useful, please consider donating to the producer of it, Shane & Peter, Inc. Thank you!"
|
1556 |
+
msgstr "Wenn du dieses Plugin nützlich findest, überlege dir bitte dem Prduzenten, Shane & Peter, Inc. eine Spende zukommen zu lassen. Vielen Dank!"
|
1557 |
+
|
1558 |
+
#: views/events-options.php:112
|
1559 |
+
msgid "I have already donated, so please hide this button!"
|
1560 |
+
msgstr "Ich habe schon gespendet, bitte lösche diesen Knopf!"
|
1561 |
+
|
1562 |
+
#: views/events-options.php:122
|
1563 |
+
msgid "Donate for this wonderful plugin"
|
1564 |
+
msgstr "Spende für dieses wunderbare Plugin"
|
1565 |
+
|
1566 |
+
#: views/events-options.php:136
|
1567 |
+
msgid "Settings"
|
1568 |
+
msgstr "Einstellungen"
|
1569 |
+
|
1570 |
+
#: views/events-options.php:139
|
1571 |
+
#: views/events-options.php:143
|
1572 |
+
msgid "Default View for the Events"
|
1573 |
+
msgstr "Vorgabeart der Eventanzeige"
|
1574 |
+
|
1575 |
+
#: views/events-options.php:155
|
1576 |
+
#: views/gridview.php:15
|
1577 |
+
#: views/list.php:12
|
1578 |
+
msgid "Calendar"
|
1579 |
+
msgstr "Kalender"
|
1580 |
+
|
1581 |
+
#: views/events-options.php:159
|
1582 |
+
#: views/gridview.php:14
|
1583 |
+
#: views/list.php:11
|
1584 |
+
msgid "Event List"
|
1585 |
+
msgstr "Veranstaltungsliste"
|
1586 |
+
|
1587 |
+
#: views/events-options.php:165
|
1588 |
+
#: views/events-options.php:169
|
1589 |
+
msgid "Show Comments"
|
1590 |
+
msgstr "Zeige Kommentare"
|
1591 |
+
|
1592 |
+
#: views/events-options.php:191
|
1593 |
+
msgid "Default Country for Events"
|
1594 |
+
msgstr "Vorgabeland der Events"
|
1595 |
+
|
1596 |
+
#: views/events-options.php:214
|
1597 |
+
#: views/events-options.php:218
|
1598 |
+
msgid "Display Events on Homepage"
|
1599 |
+
msgstr "Events auf der Homepage anzeigen"
|
1600 |
+
|
1601 |
+
#: views/events-options.php:225
|
1602 |
+
#: views/events-options.php:254
|
1603 |
+
#: views/events-options.php:281
|
1604 |
+
#: views/events-options.php:307
|
1605 |
+
msgid "Off"
|
1606 |
+
msgstr "Aus"
|
1607 |
+
|
1608 |
+
#: views/events-options.php:229
|
1609 |
+
#: views/events-options.php:258
|
1610 |
+
#: views/events-options.php:285
|
1611 |
+
#: views/events-options.php:311
|
1612 |
+
msgid "On"
|
1613 |
+
msgstr "An"
|
1614 |
+
|
1615 |
+
#: views/events-options.php:236
|
1616 |
+
#: views/events-options.php:240
|
1617 |
+
msgid "Embed Google Maps"
|
1618 |
+
msgstr "Eingebettete Google Maps"
|
1619 |
+
|
1620 |
+
#: views/events-options.php:261
|
1621 |
+
msgid "Height"
|
1622 |
+
msgstr "Höhe"
|
1623 |
+
|
1624 |
+
#: views/events-options.php:262
|
1625 |
+
msgid "Width"
|
1626 |
+
msgstr "Breite"
|
1627 |
+
|
1628 |
+
#: views/events-options.php:262
|
1629 |
+
msgid "(number or %)"
|
1630 |
+
msgstr "(Nummer oder %)"
|
1631 |
+
|
1632 |
+
#: views/events-options.php:270
|
1633 |
+
#: views/events-options.php:274
|
1634 |
+
msgid "Feature on Event Date"
|
1635 |
+
msgstr "Merkmal am Eventdatum"
|
1636 |
+
|
1637 |
+
#: views/events-options.php:288
|
1638 |
+
msgid "This option will bump an event to the top of the homepage loop on the day of the event."
|
1639 |
+
msgstr "Diese Option bringt einen Event an den Anfang der Startseite an dem Tag an dem er stattfindet."
|
1640 |
+
|
1641 |
+
#: views/events-options.php:296
|
1642 |
+
#: views/events-options.php:300
|
1643 |
+
msgid "Use Pretty URLs"
|
1644 |
+
msgstr "Benutze saubere URLs"
|
1645 |
+
|
1646 |
+
#: views/events-options.php:314
|
1647 |
+
msgid "Pretty URLs (ie, http://site/category/events/upcoming) may interfere with custom themes or plugins."
|
1648 |
+
msgstr "Saubere URLs (wie, http://site/category/events/upcoming) könnten sich mit eigenen Themes oder Plugins nicht vertragen."
|
1649 |
+
|
1650 |
+
#: views/events-options.php:340
|
1651 |
+
msgid "Save Changes"
|
1652 |
+
msgstr "Änderungen speichern"
|
1653 |
+
|
1654 |
+
#: views/gridview.php:9
|
1655 |
+
#: views/list.php:9
|
1656 |
+
msgid "Calendar of Events"
|
1657 |
+
msgstr "Veranstaltungskalender"
|
1658 |
+
|
1659 |
+
#: views/list.php:33
|
1660 |
+
#: views/single.php:14
|
1661 |
+
msgid "Start:"
|
1662 |
+
msgstr "Start:"
|
1663 |
+
|
1664 |
+
#: views/list.php:37
|
1665 |
+
#: views/single.php:17
|
1666 |
+
msgid "End:"
|
1667 |
+
msgstr "Ende:"
|
1668 |
+
|
1669 |
+
#: views/list.php:60
|
1670 |
+
#: views/single.php:35
|
1671 |
+
msgid "Google Map"
|
1672 |
+
msgstr "Google Map"
|
1673 |
+
|
1674 |
+
#: views/list.php:91
|
1675 |
+
msgid "« Previous Events"
|
1676 |
+
msgstr "« Vorige Events"
|
1677 |
+
|
1678 |
+
#: views/list.php:104
|
1679 |
+
msgid "Next Events »"
|
1680 |
+
msgstr "Nächste Events »"
|
1681 |
+
|
1682 |
+
#: views/single.php:9
|
1683 |
+
msgid "« Back to Events"
|
1684 |
+
msgstr "« Zurück zu Events"
|
1685 |
+
|
1686 |
+
#: views/single.php:11
|
1687 |
+
msgid "This event has passed."
|
1688 |
+
msgstr "Dieses Event ist vorbei."
|
1689 |
+
|
1690 |
+
#: views/single.php:35
|
1691 |
+
msgid "Click to view a Google Map"
|
1692 |
+
msgstr "Klick um Google Map anzusehen"
|
1693 |
+
|
1694 |
+
#. Plugin URI of the plugin/theme
|
1695 |
+
msgid "http://wordpress.org/extend/plugins/the-events-calendar/"
|
1696 |
+
msgstr "http://wordpress.org/extend/plugins/the-events-calendar/"
|
1697 |
+
|
1698 |
+
#. Description of the plugin/theme
|
1699 |
+
msgid "The Events Calendar plugin enables you to rapidly create and manage events using the post editor. Features include optional Eventbrite integration, Google Maps integration as well as default calendar grid and list templates for streamlined one click installation."
|
1700 |
+
msgstr "Der Events Calendar Plugin gibt dir die Möglichkeit schnell Events zu erstellen und zu organisieren über den integrierten Editor. Optional kann Eventbrite integriert werden. Google Maps Integration, vorgegebene Kalendergrafik und gestaffelte Listen-Templates mit Ein-Klick-Installation."
|
1701 |
+
|
1702 |
+
#. Author of the plugin/theme
|
1703 |
+
msgid "Shane & Peter, Inc."
|
1704 |
+
msgstr "Shane & Peter, Inc."
|
1705 |
+
|
1706 |
+
#. Author URI of the plugin/theme
|
1707 |
+
msgid "http://www.shaneandpeter.com/"
|
1708 |
+
msgstr "http://www.shaneandpeter.com/"
|
1709 |
+
|
lang/the-events-calendar-es_ES.mo
ADDED
Binary file
|
lang/the-events-calendar-es_ES.po
ADDED
@@ -0,0 +1,1580 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of the WordPress plugin The Events Calendar 1.5.4 by Shane & Peter, Inc..
|
2 |
+
# Copyright (C) 2010 Shane & Peter, Inc.
|
3 |
+
# This file is distributed under the same license as the The Events Calendar package.
|
4 |
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
5 |
+
#
|
6 |
+
msgid ""
|
7 |
+
msgstr ""
|
8 |
+
"Project-Id-Version: The Events Calendar 1.5.4\n"
|
9 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/the-events-calendar\n"
|
10 |
+
"POT-Creation-Date: 2010-01-31 01:16+0000\n"
|
11 |
+
"PO-Revision-Date: 2010-03-28 16:19+0100\n"
|
12 |
+
"Last-Translator: jethrov <jethrov@gmail.com>\n"
|
13 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
+
"MIME-Version: 1.0\n"
|
15 |
+
"Content-Type: text/plain; charset=utf-8\n"
|
16 |
+
"Content-Transfer-Encoding: 8bit\n"
|
17 |
+
|
18 |
+
#: the-events-calendar.php:54
|
19 |
+
msgid "United States"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: the-events-calendar.php:55
|
23 |
+
msgid "Afghanistan"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: the-events-calendar.php:56
|
27 |
+
msgid "Albania"
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: the-events-calendar.php:57
|
31 |
+
msgid "Algeria"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: the-events-calendar.php:58
|
35 |
+
msgid "American Samoa"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: the-events-calendar.php:59
|
39 |
+
msgid "Andorra"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: the-events-calendar.php:60
|
43 |
+
msgid "Angola"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: the-events-calendar.php:61
|
47 |
+
msgid "Anguilla"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: the-events-calendar.php:62
|
51 |
+
msgid "Antarctica"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: the-events-calendar.php:63
|
55 |
+
msgid "Antigua And Barbuda"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: the-events-calendar.php:64
|
59 |
+
msgid "Argentina"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: the-events-calendar.php:65
|
63 |
+
msgid "Armenia"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: the-events-calendar.php:66
|
67 |
+
msgid "Aruba"
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: the-events-calendar.php:67
|
71 |
+
msgid "Australia"
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: the-events-calendar.php:68
|
75 |
+
msgid "Austria"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: the-events-calendar.php:69
|
79 |
+
msgid "Azerbaijan"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: the-events-calendar.php:70
|
83 |
+
msgid "Bahamas"
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: the-events-calendar.php:71
|
87 |
+
msgid "Bahrain"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: the-events-calendar.php:72
|
91 |
+
msgid "Bangladesh"
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: the-events-calendar.php:73
|
95 |
+
msgid "Barbados"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: the-events-calendar.php:74
|
99 |
+
msgid "Belarus"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: the-events-calendar.php:75
|
103 |
+
msgid "Belgium"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: the-events-calendar.php:76
|
107 |
+
msgid "Belize"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: the-events-calendar.php:77
|
111 |
+
msgid "Benin"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: the-events-calendar.php:78
|
115 |
+
msgid "Bermuda"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: the-events-calendar.php:79
|
119 |
+
msgid "Bhutan"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: the-events-calendar.php:80
|
123 |
+
msgid "Bolivia"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: the-events-calendar.php:81
|
127 |
+
msgid "Bosnia And Herzegowina"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: the-events-calendar.php:82
|
131 |
+
msgid "Botswana"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: the-events-calendar.php:83
|
135 |
+
msgid "Bouvet Island"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: the-events-calendar.php:84
|
139 |
+
msgid "Brazil"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: the-events-calendar.php:85
|
143 |
+
msgid "British Indian Ocean Territory"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: the-events-calendar.php:86
|
147 |
+
msgid "Brunei Darussalam"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: the-events-calendar.php:87
|
151 |
+
msgid "Bulgaria"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: the-events-calendar.php:88
|
155 |
+
msgid "Burkina Faso"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: the-events-calendar.php:89
|
159 |
+
msgid "Burundi"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: the-events-calendar.php:90
|
163 |
+
msgid "Cambodia"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: the-events-calendar.php:91
|
167 |
+
msgid "Cameroon"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: the-events-calendar.php:92
|
171 |
+
msgid "Canada"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: the-events-calendar.php:93
|
175 |
+
msgid "Cape Verde"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: the-events-calendar.php:94
|
179 |
+
msgid "Cayman Islands"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: the-events-calendar.php:95
|
183 |
+
msgid "Central African Republic"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: the-events-calendar.php:96
|
187 |
+
msgid "Chad"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: the-events-calendar.php:97
|
191 |
+
msgid "Chile"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: the-events-calendar.php:98
|
195 |
+
msgid "China"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: the-events-calendar.php:99
|
199 |
+
msgid "Christmas Island"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: the-events-calendar.php:100
|
203 |
+
msgid "Cocos (Keeling) Islands"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: the-events-calendar.php:101
|
207 |
+
msgid "Colombia"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: the-events-calendar.php:102
|
211 |
+
msgid "Comoros"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: the-events-calendar.php:103
|
215 |
+
msgid "Congo"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: the-events-calendar.php:104
|
219 |
+
msgid "Congo, The Democratic Republic Of The"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: the-events-calendar.php:105
|
223 |
+
msgid "Cook Islands"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: the-events-calendar.php:106
|
227 |
+
msgid "Costa Rica"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: the-events-calendar.php:107
|
231 |
+
msgid "Cote D'Ivoire"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: the-events-calendar.php:108
|
235 |
+
msgid "Croatia (Local Name: Hrvatska)"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: the-events-calendar.php:109
|
239 |
+
msgid "Cuba"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: the-events-calendar.php:110
|
243 |
+
msgid "Cyprus"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: the-events-calendar.php:111
|
247 |
+
msgid "Czech Republic"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: the-events-calendar.php:112
|
251 |
+
msgid "Denmark"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: the-events-calendar.php:113
|
255 |
+
msgid "Djibouti"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: the-events-calendar.php:114
|
259 |
+
msgid "Dominica"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: the-events-calendar.php:115
|
263 |
+
msgid "Dominican Republic"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: the-events-calendar.php:116
|
267 |
+
msgid "East Timor"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: the-events-calendar.php:117
|
271 |
+
msgid "Ecuador"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: the-events-calendar.php:118
|
275 |
+
msgid "Egypt"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: the-events-calendar.php:119
|
279 |
+
msgid "El Salvador"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: the-events-calendar.php:120
|
283 |
+
msgid "Equatorial Guinea"
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: the-events-calendar.php:121
|
287 |
+
msgid "Eritrea"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: the-events-calendar.php:122
|
291 |
+
msgid "Estonia"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: the-events-calendar.php:123
|
295 |
+
msgid "Ethiopia"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: the-events-calendar.php:124
|
299 |
+
msgid "Falkland Islands (Malvinas)"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: the-events-calendar.php:125
|
303 |
+
msgid "Faroe Islands"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: the-events-calendar.php:126
|
307 |
+
msgid "Fiji"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: the-events-calendar.php:127
|
311 |
+
msgid "Finland"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: the-events-calendar.php:128
|
315 |
+
msgid "France"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: the-events-calendar.php:129
|
319 |
+
msgid "France, Metropolitan"
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: the-events-calendar.php:130
|
323 |
+
msgid "French Guiana"
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: the-events-calendar.php:131
|
327 |
+
msgid "French Polynesia"
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: the-events-calendar.php:132
|
331 |
+
msgid "French Southern Territories"
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: the-events-calendar.php:133
|
335 |
+
msgid "Gabon"
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#: the-events-calendar.php:134
|
339 |
+
msgid "Gambia"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: the-events-calendar.php:135
|
343 |
+
#: views/events-meta-box.php:273
|
344 |
+
msgid "Georgia"
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
+
#: the-events-calendar.php:136
|
348 |
+
msgid "Germany"
|
349 |
+
msgstr ""
|
350 |
+
|
351 |
+
#: the-events-calendar.php:137
|
352 |
+
msgid "Ghana"
|
353 |
+
msgstr ""
|
354 |
+
|
355 |
+
#: the-events-calendar.php:138
|
356 |
+
msgid "Gibraltar"
|
357 |
+
msgstr ""
|
358 |
+
|
359 |
+
#: the-events-calendar.php:139
|
360 |
+
msgid "Greece"
|
361 |
+
msgstr ""
|
362 |
+
|
363 |
+
#: the-events-calendar.php:140
|
364 |
+
msgid "Greenland"
|
365 |
+
msgstr ""
|
366 |
+
|
367 |
+
#: the-events-calendar.php:141
|
368 |
+
msgid "Grenada"
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: the-events-calendar.php:142
|
372 |
+
msgid "Guadeloupe"
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: the-events-calendar.php:143
|
376 |
+
msgid "Guam"
|
377 |
+
msgstr ""
|
378 |
+
|
379 |
+
#: the-events-calendar.php:144
|
380 |
+
msgid "Guatemala"
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: the-events-calendar.php:145
|
384 |
+
msgid "Guinea"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: the-events-calendar.php:146
|
388 |
+
msgid "Guinea-Bissau"
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
#: the-events-calendar.php:147
|
392 |
+
msgid "Guyana"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: the-events-calendar.php:148
|
396 |
+
msgid "Haiti"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: the-events-calendar.php:149
|
400 |
+
msgid "Heard And Mc Donald Islands"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
#: the-events-calendar.php:150
|
404 |
+
msgid "Holy See (Vatican City State)"
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: the-events-calendar.php:151
|
408 |
+
msgid "Honduras"
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
#: the-events-calendar.php:152
|
412 |
+
msgid "Hong Kong"
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: the-events-calendar.php:153
|
416 |
+
msgid "Hungary"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: the-events-calendar.php:154
|
420 |
+
msgid "Iceland"
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: the-events-calendar.php:155
|
424 |
+
msgid "India"
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: the-events-calendar.php:156
|
428 |
+
msgid "Indonesia"
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: the-events-calendar.php:157
|
432 |
+
msgid "Iran (Islamic Republic Of)"
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: the-events-calendar.php:158
|
436 |
+
msgid "Iraq"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: the-events-calendar.php:159
|
440 |
+
msgid "Ireland"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: the-events-calendar.php:160
|
444 |
+
msgid "Israel"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: the-events-calendar.php:161
|
448 |
+
msgid "Italy"
|
449 |
+
msgstr ""
|
450 |
+
|
451 |
+
#: the-events-calendar.php:162
|
452 |
+
msgid "Jamaica"
|
453 |
+
msgstr ""
|
454 |
+
|
455 |
+
#: the-events-calendar.php:163
|
456 |
+
msgid "Japan"
|
457 |
+
msgstr ""
|
458 |
+
|
459 |
+
#: the-events-calendar.php:164
|
460 |
+
msgid "Jordan"
|
461 |
+
msgstr ""
|
462 |
+
|
463 |
+
#: the-events-calendar.php:165
|
464 |
+
msgid "Kazakhstan"
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#: the-events-calendar.php:166
|
468 |
+
msgid "Kenya"
|
469 |
+
msgstr ""
|
470 |
+
|
471 |
+
#: the-events-calendar.php:167
|
472 |
+
msgid "Kiribati"
|
473 |
+
msgstr ""
|
474 |
+
|
475 |
+
#: the-events-calendar.php:168
|
476 |
+
msgid "Korea, Democratic People's Republic Of"
|
477 |
+
msgstr ""
|
478 |
+
|
479 |
+
#: the-events-calendar.php:169
|
480 |
+
msgid "Korea, Republic Of"
|
481 |
+
msgstr ""
|
482 |
+
|
483 |
+
#: the-events-calendar.php:170
|
484 |
+
msgid "Kuwait"
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: the-events-calendar.php:171
|
488 |
+
msgid "Kyrgyzstan"
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: the-events-calendar.php:172
|
492 |
+
msgid "Lao People's Democratic Republic"
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: the-events-calendar.php:173
|
496 |
+
msgid "Latvia"
|
497 |
+
msgstr ""
|
498 |
+
|
499 |
+
#: the-events-calendar.php:174
|
500 |
+
msgid "Lebanon"
|
501 |
+
msgstr ""
|
502 |
+
|
503 |
+
#: the-events-calendar.php:175
|
504 |
+
msgid "Lesotho"
|
505 |
+
msgstr ""
|
506 |
+
|
507 |
+
#: the-events-calendar.php:176
|
508 |
+
msgid "Liberia"
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: the-events-calendar.php:177
|
512 |
+
msgid "Libyan Arab Jamahiriya"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: the-events-calendar.php:178
|
516 |
+
msgid "Liechtenstein"
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: the-events-calendar.php:179
|
520 |
+
msgid "Lithuania"
|
521 |
+
msgstr ""
|
522 |
+
|
523 |
+
#: the-events-calendar.php:180
|
524 |
+
msgid "Luxembourg"
|
525 |
+
msgstr ""
|
526 |
+
|
527 |
+
#: the-events-calendar.php:181
|
528 |
+
msgid "Macau"
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: the-events-calendar.php:182
|
532 |
+
msgid "Macedonia, Former Yugoslav Republic Of"
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: the-events-calendar.php:183
|
536 |
+
msgid "Madagascar"
|
537 |
+
msgstr ""
|
538 |
+
|
539 |
+
#: the-events-calendar.php:184
|
540 |
+
msgid "Malawi"
|
541 |
+
msgstr ""
|
542 |
+
|
543 |
+
#: the-events-calendar.php:185
|
544 |
+
msgid "Malaysia"
|
545 |
+
msgstr ""
|
546 |
+
|
547 |
+
#: the-events-calendar.php:186
|
548 |
+
msgid "Maldives"
|
549 |
+
msgstr ""
|
550 |
+
|
551 |
+
#: the-events-calendar.php:187
|
552 |
+
msgid "Mali"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: the-events-calendar.php:188
|
556 |
+
msgid "Malta"
|
557 |
+
msgstr ""
|
558 |
+
|
559 |
+
#: the-events-calendar.php:189
|
560 |
+
msgid "Marshall Islands"
|
561 |
+
msgstr ""
|
562 |
+
|
563 |
+
#: the-events-calendar.php:190
|
564 |
+
msgid "Martinique"
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
#: the-events-calendar.php:191
|
568 |
+
msgid "Mauritania"
|
569 |
+
msgstr ""
|
570 |
+
|
571 |
+
#: the-events-calendar.php:192
|
572 |
+
msgid "Mauritius"
|
573 |
+
msgstr ""
|
574 |
+
|
575 |
+
#: the-events-calendar.php:193
|
576 |
+
msgid "Mayotte"
|
577 |
+
msgstr ""
|
578 |
+
|
579 |
+
#: the-events-calendar.php:194
|
580 |
+
msgid "Mexico"
|
581 |
+
msgstr ""
|
582 |
+
|
583 |
+
#: the-events-calendar.php:195
|
584 |
+
msgid "Micronesia, Federated States Of"
|
585 |
+
msgstr ""
|
586 |
+
|
587 |
+
#: the-events-calendar.php:196
|
588 |
+
msgid "Moldova, Republic Of"
|
589 |
+
msgstr ""
|
590 |
+
|
591 |
+
#: the-events-calendar.php:197
|
592 |
+
msgid "Monaco"
|
593 |
+
msgstr ""
|
594 |
+
|
595 |
+
#: the-events-calendar.php:198
|
596 |
+
msgid "Mongolia"
|
597 |
+
msgstr ""
|
598 |
+
|
599 |
+
#: the-events-calendar.php:199
|
600 |
+
msgid "Montserrat"
|
601 |
+
msgstr ""
|
602 |
+
|
603 |
+
#: the-events-calendar.php:200
|
604 |
+
msgid "Morocco"
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: the-events-calendar.php:201
|
608 |
+
msgid "Mozambique"
|
609 |
+
msgstr ""
|
610 |
+
|
611 |
+
#: the-events-calendar.php:202
|
612 |
+
msgid "Myanmar"
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
#: the-events-calendar.php:203
|
616 |
+
msgid "Namibia"
|
617 |
+
msgstr ""
|
618 |
+
|
619 |
+
#: the-events-calendar.php:204
|
620 |
+
msgid "Nauru"
|
621 |
+
msgstr ""
|
622 |
+
|
623 |
+
#: the-events-calendar.php:205
|
624 |
+
msgid "Nepal"
|
625 |
+
msgstr ""
|
626 |
+
|
627 |
+
#: the-events-calendar.php:206
|
628 |
+
msgid "Netherlands"
|
629 |
+
msgstr ""
|
630 |
+
|
631 |
+
#: the-events-calendar.php:207
|
632 |
+
msgid "Netherlands Antilles"
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: the-events-calendar.php:208
|
636 |
+
msgid "New Caledonia"
|
637 |
+
msgstr ""
|
638 |
+
|
639 |
+
#: the-events-calendar.php:209
|
640 |
+
msgid "New Zealand"
|
641 |
+
msgstr ""
|
642 |
+
|
643 |
+
#: the-events-calendar.php:210
|
644 |
+
msgid "Nicaragua"
|
645 |
+
msgstr ""
|
646 |
+
|
647 |
+
#: the-events-calendar.php:211
|
648 |
+
msgid "Niger"
|
649 |
+
msgstr ""
|
650 |
+
|
651 |
+
#: the-events-calendar.php:212
|
652 |
+
msgid "Nigeria"
|
653 |
+
msgstr ""
|
654 |
+
|
655 |
+
#: the-events-calendar.php:213
|
656 |
+
msgid "Niue"
|
657 |
+
msgstr ""
|
658 |
+
|
659 |
+
#: the-events-calendar.php:214
|
660 |
+
msgid "Norfolk Island"
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
#: the-events-calendar.php:215
|
664 |
+
msgid "Northern Mariana Islands"
|
665 |
+
msgstr ""
|
666 |
+
|
667 |
+
#: the-events-calendar.php:216
|
668 |
+
msgid "Norway"
|
669 |
+
msgstr ""
|
670 |
+
|
671 |
+
#: the-events-calendar.php:217
|
672 |
+
msgid "Oman"
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: the-events-calendar.php:218
|
676 |
+
msgid "Pakistan"
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: the-events-calendar.php:219
|
680 |
+
msgid "Palau"
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: the-events-calendar.php:220
|
684 |
+
msgid "Panama"
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
#: the-events-calendar.php:221
|
688 |
+
msgid "Papua New Guinea"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: the-events-calendar.php:222
|
692 |
+
msgid "Paraguay"
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: the-events-calendar.php:223
|
696 |
+
msgid "Peru"
|
697 |
+
msgstr ""
|
698 |
+
|
699 |
+
#: the-events-calendar.php:224
|
700 |
+
msgid "Philippines"
|
701 |
+
msgstr ""
|
702 |
+
|
703 |
+
#: the-events-calendar.php:225
|
704 |
+
msgid "Pitcairn"
|
705 |
+
msgstr ""
|
706 |
+
|
707 |
+
#: the-events-calendar.php:226
|
708 |
+
msgid "Poland"
|
709 |
+
msgstr ""
|
710 |
+
|
711 |
+
#: the-events-calendar.php:227
|
712 |
+
msgid "Portugal"
|
713 |
+
msgstr ""
|
714 |
+
|
715 |
+
#: the-events-calendar.php:228
|
716 |
+
msgid "Puerto Rico"
|
717 |
+
msgstr ""
|
718 |
+
|
719 |
+
#: the-events-calendar.php:229
|
720 |
+
msgid "Qatar"
|
721 |
+
msgstr ""
|
722 |
+
|
723 |
+
#: the-events-calendar.php:230
|
724 |
+
msgid "Reunion"
|
725 |
+
msgstr ""
|
726 |
+
|
727 |
+
#: the-events-calendar.php:231
|
728 |
+
msgid "Romania"
|
729 |
+
msgstr ""
|
730 |
+
|
731 |
+
#: the-events-calendar.php:232
|
732 |
+
msgid "Russian Federation"
|
733 |
+
msgstr ""
|
734 |
+
|
735 |
+
#: the-events-calendar.php:233
|
736 |
+
msgid "Rwanda"
|
737 |
+
msgstr ""
|
738 |
+
|
739 |
+
#: the-events-calendar.php:234
|
740 |
+
msgid "Saint Kitts And Nevis"
|
741 |
+
msgstr ""
|
742 |
+
|
743 |
+
#: the-events-calendar.php:235
|
744 |
+
msgid "Saint Lucia"
|
745 |
+
msgstr ""
|
746 |
+
|
747 |
+
#: the-events-calendar.php:236
|
748 |
+
msgid "Saint Vincent And The Grenadines"
|
749 |
+
msgstr ""
|
750 |
+
|
751 |
+
#: the-events-calendar.php:237
|
752 |
+
msgid "Samoa"
|
753 |
+
msgstr ""
|
754 |
+
|
755 |
+
#: the-events-calendar.php:238
|
756 |
+
msgid "San Marino"
|
757 |
+
msgstr ""
|
758 |
+
|
759 |
+
#: the-events-calendar.php:239
|
760 |
+
msgid "Sao Tome And Principe"
|
761 |
+
msgstr ""
|
762 |
+
|
763 |
+
#: the-events-calendar.php:240
|
764 |
+
msgid "Saudi Arabia"
|
765 |
+
msgstr ""
|
766 |
+
|
767 |
+
#: the-events-calendar.php:241
|
768 |
+
msgid "Senegal"
|
769 |
+
msgstr ""
|
770 |
+
|
771 |
+
#: the-events-calendar.php:242
|
772 |
+
msgid "Seychelles"
|
773 |
+
msgstr ""
|
774 |
+
|
775 |
+
#: the-events-calendar.php:243
|
776 |
+
msgid "Sierra Leone"
|
777 |
+
msgstr ""
|
778 |
+
|
779 |
+
#: the-events-calendar.php:244
|
780 |
+
msgid "Singapore"
|
781 |
+
msgstr ""
|
782 |
+
|
783 |
+
#: the-events-calendar.php:245
|
784 |
+
msgid "Slovakia (Slovak Republic)"
|
785 |
+
msgstr ""
|
786 |
+
|
787 |
+
#: the-events-calendar.php:246
|
788 |
+
msgid "Slovenia"
|
789 |
+
msgstr ""
|
790 |
+
|
791 |
+
#: the-events-calendar.php:247
|
792 |
+
msgid "Solomon Islands"
|
793 |
+
msgstr ""
|
794 |
+
|
795 |
+
#: the-events-calendar.php:248
|
796 |
+
msgid "Somalia"
|
797 |
+
msgstr ""
|
798 |
+
|
799 |
+
#: the-events-calendar.php:249
|
800 |
+
msgid "South Africa"
|
801 |
+
msgstr ""
|
802 |
+
|
803 |
+
#: the-events-calendar.php:250
|
804 |
+
msgid "South Georgia, South Sandwich Islands"
|
805 |
+
msgstr ""
|
806 |
+
|
807 |
+
#: the-events-calendar.php:251
|
808 |
+
msgid "Spain"
|
809 |
+
msgstr "España"
|
810 |
+
|
811 |
+
#: the-events-calendar.php:252
|
812 |
+
msgid "Sri Lanka"
|
813 |
+
msgstr ""
|
814 |
+
|
815 |
+
#: the-events-calendar.php:253
|
816 |
+
msgid "St. Helena"
|
817 |
+
msgstr ""
|
818 |
+
|
819 |
+
#: the-events-calendar.php:254
|
820 |
+
msgid "St. Pierre And Miquelon"
|
821 |
+
msgstr ""
|
822 |
+
|
823 |
+
#: the-events-calendar.php:255
|
824 |
+
msgid "Sudan"
|
825 |
+
msgstr ""
|
826 |
+
|
827 |
+
#: the-events-calendar.php:256
|
828 |
+
msgid "Suriname"
|
829 |
+
msgstr ""
|
830 |
+
|
831 |
+
#: the-events-calendar.php:257
|
832 |
+
msgid "Svalbard And Jan Mayen Islands"
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: the-events-calendar.php:258
|
836 |
+
msgid "Swaziland"
|
837 |
+
msgstr ""
|
838 |
+
|
839 |
+
#: the-events-calendar.php:259
|
840 |
+
msgid "Sweden"
|
841 |
+
msgstr ""
|
842 |
+
|
843 |
+
#: the-events-calendar.php:260
|
844 |
+
msgid "Switzerland"
|
845 |
+
msgstr ""
|
846 |
+
|
847 |
+
#: the-events-calendar.php:261
|
848 |
+
msgid "Syrian Arab Republic"
|
849 |
+
msgstr ""
|
850 |
+
|
851 |
+
#: the-events-calendar.php:262
|
852 |
+
msgid "Taiwan"
|
853 |
+
msgstr ""
|
854 |
+
|
855 |
+
#: the-events-calendar.php:263
|
856 |
+
msgid "Tajikistan"
|
857 |
+
msgstr ""
|
858 |
+
|
859 |
+
#: the-events-calendar.php:264
|
860 |
+
msgid "Tanzania, United Republic Of"
|
861 |
+
msgstr ""
|
862 |
+
|
863 |
+
#: the-events-calendar.php:265
|
864 |
+
msgid "Thailand"
|
865 |
+
msgstr ""
|
866 |
+
|
867 |
+
#: the-events-calendar.php:266
|
868 |
+
msgid "Togo"
|
869 |
+
msgstr ""
|
870 |
+
|
871 |
+
#: the-events-calendar.php:267
|
872 |
+
msgid "Tokelau"
|
873 |
+
msgstr ""
|
874 |
+
|
875 |
+
#: the-events-calendar.php:268
|
876 |
+
msgid "Tonga"
|
877 |
+
msgstr ""
|
878 |
+
|
879 |
+
#: the-events-calendar.php:269
|
880 |
+
msgid "Trinidad And Tobago"
|
881 |
+
msgstr ""
|
882 |
+
|
883 |
+
#: the-events-calendar.php:270
|
884 |
+
msgid "Tunisia"
|
885 |
+
msgstr ""
|
886 |
+
|
887 |
+
#: the-events-calendar.php:271
|
888 |
+
msgid "Turkey"
|
889 |
+
msgstr ""
|
890 |
+
|
891 |
+
#: the-events-calendar.php:272
|
892 |
+
msgid "Turkmenistan"
|
893 |
+
msgstr ""
|
894 |
+
|
895 |
+
#: the-events-calendar.php:273
|
896 |
+
msgid "Turks And Caicos Islands"
|
897 |
+
msgstr ""
|
898 |
+
|
899 |
+
#: the-events-calendar.php:274
|
900 |
+
msgid "Tuvalu"
|
901 |
+
msgstr ""
|
902 |
+
|
903 |
+
#: the-events-calendar.php:275
|
904 |
+
msgid "Uganda"
|
905 |
+
msgstr ""
|
906 |
+
|
907 |
+
#: the-events-calendar.php:276
|
908 |
+
msgid "Ukraine"
|
909 |
+
msgstr ""
|
910 |
+
|
911 |
+
#: the-events-calendar.php:277
|
912 |
+
msgid "United Arab Emirates"
|
913 |
+
msgstr ""
|
914 |
+
|
915 |
+
#: the-events-calendar.php:278
|
916 |
+
msgid "United Kingdom"
|
917 |
+
msgstr ""
|
918 |
+
|
919 |
+
#: the-events-calendar.php:279
|
920 |
+
msgid "United States Minor Outlying Islands"
|
921 |
+
msgstr ""
|
922 |
+
|
923 |
+
#: the-events-calendar.php:280
|
924 |
+
msgid "Uruguay"
|
925 |
+
msgstr ""
|
926 |
+
|
927 |
+
#: the-events-calendar.php:281
|
928 |
+
msgid "Uzbekistan"
|
929 |
+
msgstr ""
|
930 |
+
|
931 |
+
#: the-events-calendar.php:282
|
932 |
+
msgid "Vanuatu"
|
933 |
+
msgstr ""
|
934 |
+
|
935 |
+
#: the-events-calendar.php:283
|
936 |
+
msgid "Venezuela"
|
937 |
+
msgstr ""
|
938 |
+
|
939 |
+
#: the-events-calendar.php:284
|
940 |
+
msgid "Viet Nam"
|
941 |
+
msgstr ""
|
942 |
+
|
943 |
+
#: the-events-calendar.php:285
|
944 |
+
msgid "Virgin Islands (British)"
|
945 |
+
msgstr ""
|
946 |
+
|
947 |
+
#: the-events-calendar.php:286
|
948 |
+
msgid "Virgin Islands (U.S.)"
|
949 |
+
msgstr ""
|
950 |
+
|
951 |
+
#: the-events-calendar.php:287
|
952 |
+
msgid "Wallis And Futuna Islands"
|
953 |
+
msgstr ""
|
954 |
+
|
955 |
+
#: the-events-calendar.php:288
|
956 |
+
msgid "Western Sahara"
|
957 |
+
msgstr ""
|
958 |
+
|
959 |
+
#: the-events-calendar.php:289
|
960 |
+
msgid "Yemen"
|
961 |
+
msgstr ""
|
962 |
+
|
963 |
+
#: the-events-calendar.php:290
|
964 |
+
msgid "Yugoslavia"
|
965 |
+
msgstr ""
|
966 |
+
|
967 |
+
#: the-events-calendar.php:291
|
968 |
+
msgid "Zambia"
|
969 |
+
msgstr ""
|
970 |
+
|
971 |
+
#: the-events-calendar.php:292
|
972 |
+
msgid "Zimbabwe"
|
973 |
+
msgstr ""
|
974 |
+
|
975 |
+
#: the-events-calendar.php:942
|
976 |
+
msgid "Events"
|
977 |
+
msgstr "Eventos"
|
978 |
+
|
979 |
+
#: the-events-calendar.php:1438
|
980 |
+
msgid "Free"
|
981 |
+
msgstr "Gratis"
|
982 |
+
|
983 |
+
#: the-events-calendar.php:1903
|
984 |
+
msgid "A widget that displays the next upcoming x events."
|
985 |
+
msgstr ""
|
986 |
+
|
987 |
+
#: the-events-calendar.php:2022
|
988 |
+
msgid "A calendar of your events"
|
989 |
+
msgstr ""
|
990 |
+
|
991 |
+
#: the-events-calendar.php:2023
|
992 |
+
msgid "Events Calendar"
|
993 |
+
msgstr ""
|
994 |
+
|
995 |
+
#: the-events-calendar.php:2049
|
996 |
+
#: views/events-list-load-widget-admin.php:2
|
997 |
+
msgid "Title:"
|
998 |
+
msgstr "Titulo:"
|
999 |
+
|
1000 |
+
#: views/events-list-load-widget-admin.php:7
|
1001 |
+
msgid "Show:"
|
1002 |
+
msgstr "Mostrar:"
|
1003 |
+
|
1004 |
+
#: views/events-list-load-widget-admin.php:19
|
1005 |
+
msgid "Start Date & Time"
|
1006 |
+
msgstr "Inicio (fecha/hora)"
|
1007 |
+
|
1008 |
+
#: views/events-list-load-widget-admin.php:20
|
1009 |
+
msgid "End Date & Time"
|
1010 |
+
msgstr "Final (fecha/hora)"
|
1011 |
+
|
1012 |
+
#: views/events-list-load-widget-admin.php:21
|
1013 |
+
msgid "Venue"
|
1014 |
+
msgstr "Lugar"
|
1015 |
+
|
1016 |
+
#: views/events-list-load-widget-admin.php:22
|
1017 |
+
msgid "Address"
|
1018 |
+
msgstr "Dirección"
|
1019 |
+
|
1020 |
+
#: views/events-list-load-widget-admin.php:23
|
1021 |
+
msgid "City"
|
1022 |
+
msgstr "Ciudad"
|
1023 |
+
|
1024 |
+
#: views/events-list-load-widget-admin.php:24
|
1025 |
+
msgid "State (US)"
|
1026 |
+
msgstr "Provincia"
|
1027 |
+
|
1028 |
+
#: views/events-list-load-widget-admin.php:25
|
1029 |
+
msgid "Province (Int)"
|
1030 |
+
msgstr "Provincia"
|
1031 |
+
|
1032 |
+
#: views/events-list-load-widget-admin.php:26
|
1033 |
+
msgid "Postal Code"
|
1034 |
+
msgstr "Codigo postal"
|
1035 |
+
|
1036 |
+
#: views/events-list-load-widget-admin.php:27
|
1037 |
+
msgid "Country"
|
1038 |
+
msgstr "Pais"
|
1039 |
+
|
1040 |
+
#: views/events-list-load-widget-admin.php:28
|
1041 |
+
msgid "Phone"
|
1042 |
+
msgstr "tel:"
|
1043 |
+
|
1044 |
+
#: views/events-list-load-widget-admin.php:29
|
1045 |
+
msgid "Price"
|
1046 |
+
msgstr "Precio"
|
1047 |
+
|
1048 |
+
#: views/events-list-load-widget-display.php:50
|
1049 |
+
msgid "More Info"
|
1050 |
+
msgstr "Más info"
|
1051 |
+
|
1052 |
+
#: views/events-meta-box.php:138
|
1053 |
+
msgid "Event Details:"
|
1054 |
+
msgstr "Detalles:"
|
1055 |
+
|
1056 |
+
#: views/events-meta-box.php:140
|
1057 |
+
msgid "Is this post an event?"
|
1058 |
+
msgstr "Es un evento?"
|
1059 |
+
|
1060 |
+
#: views/events-meta-box.php:141
|
1061 |
+
#: views/events-options.php:135
|
1062 |
+
msgid "Yes"
|
1063 |
+
msgstr "Si"
|
1064 |
+
|
1065 |
+
#: views/events-meta-box.php:142
|
1066 |
+
#: views/events-options.php:139
|
1067 |
+
msgid "No"
|
1068 |
+
msgstr "No"
|
1069 |
+
|
1070 |
+
#: views/events-meta-box.php:148
|
1071 |
+
msgid "Event Time & Date"
|
1072 |
+
msgstr "Hora y fecha"
|
1073 |
+
|
1074 |
+
#: views/events-meta-box.php:151
|
1075 |
+
msgid "All day event?"
|
1076 |
+
msgstr "Evento de todo el dia?"
|
1077 |
+
|
1078 |
+
#: views/events-meta-box.php:155
|
1079 |
+
msgid "Time Format (site wide option):"
|
1080 |
+
msgstr ""
|
1081 |
+
|
1082 |
+
#: views/events-meta-box.php:158
|
1083 |
+
msgid "12 Hour"
|
1084 |
+
msgstr "12 horas"
|
1085 |
+
|
1086 |
+
#: views/events-meta-box.php:160
|
1087 |
+
msgid "24 Hour"
|
1088 |
+
msgstr "24 horas"
|
1089 |
+
|
1090 |
+
#: views/events-meta-box.php:164
|
1091 |
+
msgid "Start Date / Time:"
|
1092 |
+
msgstr "Hora/fecha de inicio"
|
1093 |
+
|
1094 |
+
#: views/events-meta-box.php:178
|
1095 |
+
#: views/events-meta-box.php:206
|
1096 |
+
msgid "@"
|
1097 |
+
msgstr ""
|
1098 |
+
|
1099 |
+
#: views/events-meta-box.php:192
|
1100 |
+
msgid "End Date / Time:"
|
1101 |
+
msgstr "Final fecha/hora"
|
1102 |
+
|
1103 |
+
#: views/events-meta-box.php:220
|
1104 |
+
msgid "Event Location Details"
|
1105 |
+
msgstr "Detalles del lugar del evento"
|
1106 |
+
|
1107 |
+
#: views/events-meta-box.php:223
|
1108 |
+
#: views/list.php:43
|
1109 |
+
#: views/single.php:24
|
1110 |
+
msgid "Venue:"
|
1111 |
+
msgstr "Lugar:"
|
1112 |
+
|
1113 |
+
#: views/events-meta-box.php:229
|
1114 |
+
msgid "Country:"
|
1115 |
+
msgstr "País:"
|
1116 |
+
|
1117 |
+
#: views/events-meta-box.php:246
|
1118 |
+
#: views/list.php:61
|
1119 |
+
#: views/single.php:28
|
1120 |
+
msgid "Address:"
|
1121 |
+
msgstr "Dirección:"
|
1122 |
+
|
1123 |
+
#: views/events-meta-box.php:250
|
1124 |
+
msgid "City:"
|
1125 |
+
msgstr "Ciudad:"
|
1126 |
+
|
1127 |
+
#: views/events-meta-box.php:254
|
1128 |
+
msgid "Province:"
|
1129 |
+
msgstr "Provincia:"
|
1130 |
+
|
1131 |
+
#: views/events-meta-box.php:258
|
1132 |
+
msgid "State:"
|
1133 |
+
msgstr "Provincia:"
|
1134 |
+
|
1135 |
+
#: views/events-meta-box.php:261
|
1136 |
+
msgid "Select a State:"
|
1137 |
+
msgstr "Elige una provincia:"
|
1138 |
+
|
1139 |
+
#: views/events-meta-box.php:263
|
1140 |
+
msgid "Alabama"
|
1141 |
+
msgstr ""
|
1142 |
+
|
1143 |
+
#: views/events-meta-box.php:264
|
1144 |
+
msgid "Alaska"
|
1145 |
+
msgstr ""
|
1146 |
+
|
1147 |
+
#: views/events-meta-box.php:265
|
1148 |
+
msgid "Arizona"
|
1149 |
+
msgstr ""
|
1150 |
+
|
1151 |
+
#: views/events-meta-box.php:266
|
1152 |
+
msgid "Arkansas"
|
1153 |
+
msgstr ""
|
1154 |
+
|
1155 |
+
#: views/events-meta-box.php:267
|
1156 |
+
msgid "California"
|
1157 |
+
msgstr ""
|
1158 |
+
|
1159 |
+
#: views/events-meta-box.php:268
|
1160 |
+
msgid "Colorado"
|
1161 |
+
msgstr ""
|
1162 |
+
|
1163 |
+
#: views/events-meta-box.php:269
|
1164 |
+
msgid "Connecticut"
|
1165 |
+
msgstr ""
|
1166 |
+
|
1167 |
+
#: views/events-meta-box.php:270
|
1168 |
+
msgid "Delaware"
|
1169 |
+
msgstr ""
|
1170 |
+
|
1171 |
+
#: views/events-meta-box.php:271
|
1172 |
+
msgid "District of Columbia"
|
1173 |
+
msgstr ""
|
1174 |
+
|
1175 |
+
#: views/events-meta-box.php:272
|
1176 |
+
msgid "Florida"
|
1177 |
+
msgstr ""
|
1178 |
+
|
1179 |
+
#: views/events-meta-box.php:274
|
1180 |
+
msgid "Hawaii"
|
1181 |
+
msgstr ""
|
1182 |
+
|
1183 |
+
#: views/events-meta-box.php:275
|
1184 |
+
msgid "Idaho"
|
1185 |
+
msgstr ""
|
1186 |
+
|
1187 |
+
#: views/events-meta-box.php:276
|
1188 |
+
msgid "Illinois"
|
1189 |
+
msgstr ""
|
1190 |
+
|
1191 |
+
#: views/events-meta-box.php:277
|
1192 |
+
msgid "Indiana"
|
1193 |
+
msgstr ""
|
1194 |
+
|
1195 |
+
#: views/events-meta-box.php:278
|
1196 |
+
msgid "Iowa"
|
1197 |
+
msgstr ""
|
1198 |
+
|
1199 |
+
#: views/events-meta-box.php:279
|
1200 |
+
msgid "Kansas"
|
1201 |
+
msgstr ""
|
1202 |
+
|
1203 |
+
#: views/events-meta-box.php:280
|
1204 |
+
msgid "Kentucky"
|
1205 |
+
msgstr ""
|
1206 |
+
|
1207 |
+
#: views/events-meta-box.php:281
|
1208 |
+
msgid "Louisiana"
|
1209 |
+
msgstr ""
|
1210 |
+
|
1211 |
+
#: views/events-meta-box.php:282
|
1212 |
+
msgid "Maine"
|
1213 |
+
msgstr ""
|
1214 |
+
|
1215 |
+
#: views/events-meta-box.php:283
|
1216 |
+
msgid "Maryland"
|
1217 |
+
msgstr ""
|
1218 |
+
|
1219 |
+
#: views/events-meta-box.php:284
|
1220 |
+
msgid "Massachusetts"
|
1221 |
+
msgstr ""
|
1222 |
+
|
1223 |
+
#: views/events-meta-box.php:285
|
1224 |
+
msgid "Michigan"
|
1225 |
+
msgstr ""
|
1226 |
+
|
1227 |
+
#: views/events-meta-box.php:286
|
1228 |
+
msgid "Minnesota"
|
1229 |
+
msgstr ""
|
1230 |
+
|
1231 |
+
#: views/events-meta-box.php:287
|
1232 |
+
msgid "Mississippi"
|
1233 |
+
msgstr ""
|
1234 |
+
|
1235 |
+
#: views/events-meta-box.php:288
|
1236 |
+
msgid "Missouri"
|
1237 |
+
msgstr ""
|
1238 |
+
|
1239 |
+
#: views/events-meta-box.php:289
|
1240 |
+
msgid "Montana"
|
1241 |
+
msgstr ""
|
1242 |
+
|
1243 |
+
#: views/events-meta-box.php:290
|
1244 |
+
msgid "Nebraska"
|
1245 |
+
msgstr ""
|
1246 |
+
|
1247 |
+
#: views/events-meta-box.php:291
|
1248 |
+
msgid "Nevada"
|
1249 |
+
msgstr ""
|
1250 |
+
|
1251 |
+
#: views/events-meta-box.php:292
|
1252 |
+
msgid "New Hampshire"
|
1253 |
+
msgstr ""
|
1254 |
+
|
1255 |
+
#: views/events-meta-box.php:293
|
1256 |
+
msgid "New Jersey"
|
1257 |
+
msgstr ""
|
1258 |
+
|
1259 |
+
#: views/events-meta-box.php:294
|
1260 |
+
msgid "New Mexico"
|
1261 |
+
msgstr ""
|
1262 |
+
|
1263 |
+
#: views/events-meta-box.php:295
|
1264 |
+
msgid "New York"
|
1265 |
+
msgstr ""
|
1266 |
+
|
1267 |
+
#: views/events-meta-box.php:296
|
1268 |
+
msgid "North Carolina"
|
1269 |
+
msgstr ""
|
1270 |
+
|
1271 |
+
#: views/events-meta-box.php:297
|
1272 |
+
msgid "North Dakota"
|
1273 |
+
msgstr ""
|
1274 |
+
|
1275 |
+
#: views/events-meta-box.php:298
|
1276 |
+
msgid "Ohio"
|
1277 |
+
msgstr ""
|
1278 |
+
|
1279 |
+
#: views/events-meta-box.php:299
|
1280 |
+
msgid "Oklahoma"
|
1281 |
+
msgstr ""
|
1282 |
+
|
1283 |
+
#: views/events-meta-box.php:300
|
1284 |
+
msgid "Oregon"
|
1285 |
+
msgstr ""
|
1286 |
+
|
1287 |
+
#: views/events-meta-box.php:301
|
1288 |
+
msgid "Pennsylvania"
|
1289 |
+
msgstr ""
|
1290 |
+
|
1291 |
+
#: views/events-meta-box.php:302
|
1292 |
+
msgid "Rhode Island"
|
1293 |
+
msgstr ""
|
1294 |
+
|
1295 |
+
#: views/events-meta-box.php:303
|
1296 |
+
msgid "South Carolina"
|
1297 |
+
msgstr ""
|
1298 |
+
|
1299 |
+
#: views/events-meta-box.php:304
|
1300 |
+
msgid "South Dakota"
|
1301 |
+
msgstr ""
|
1302 |
+
|
1303 |
+
#: views/events-meta-box.php:305
|
1304 |
+
msgid "Tennessee"
|
1305 |
+
msgstr ""
|
1306 |
+
|
1307 |
+
#: views/events-meta-box.php:306
|
1308 |
+
msgid "Texas"
|
1309 |
+
msgstr ""
|
1310 |
+
|
1311 |
+
#: views/events-meta-box.php:307
|
1312 |
+
msgid "Utah"
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: views/events-meta-box.php:308
|
1316 |
+
msgid "Vermont"
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: views/events-meta-box.php:309
|
1320 |
+
msgid "Virginia"
|
1321 |
+
msgstr ""
|
1322 |
+
|
1323 |
+
#: views/events-meta-box.php:310
|
1324 |
+
msgid "Washington"
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: views/events-meta-box.php:311
|
1328 |
+
msgid "West Virginia"
|
1329 |
+
msgstr ""
|
1330 |
+
|
1331 |
+
#: views/events-meta-box.php:312
|
1332 |
+
msgid "Wisconsin"
|
1333 |
+
msgstr ""
|
1334 |
+
|
1335 |
+
#: views/events-meta-box.php:313
|
1336 |
+
msgid "Wyoming"
|
1337 |
+
msgstr ""
|
1338 |
+
|
1339 |
+
#: views/events-meta-box.php:327
|
1340 |
+
msgid "Postal Code:"
|
1341 |
+
msgstr "Código postal:"
|
1342 |
+
|
1343 |
+
#: views/events-meta-box.php:331
|
1344 |
+
#: views/list.php:52
|
1345 |
+
msgid "Phone:"
|
1346 |
+
msgstr "tel:"
|
1347 |
+
|
1348 |
+
#: views/events-meta-box.php:335
|
1349 |
+
msgid "Event Cost"
|
1350 |
+
msgstr "Coste del evento:"
|
1351 |
+
|
1352 |
+
#: views/events-meta-box.php:338
|
1353 |
+
#: views/list.php:70
|
1354 |
+
#: views/single.php:18
|
1355 |
+
msgid "Cost:"
|
1356 |
+
msgstr "Coste:"
|
1357 |
+
|
1358 |
+
#: views/events-meta-box.php:343
|
1359 |
+
msgid "Leave blank to hide the field. Enter a 0 for events that are free."
|
1360 |
+
msgstr "Dejelo en blanco si no quiere que aparezca algo sobre el pago, o`ponga 0, si quiere subrayar que es gratuito."
|
1361 |
+
|
1362 |
+
#: views/events-meta-box.php:347
|
1363 |
+
msgid "Sell Tickets & Track Registration"
|
1364 |
+
msgstr "Vende tickets y registros"
|
1365 |
+
|
1366 |
+
#: views/events-meta-box.php:352
|
1367 |
+
msgid "Interested in selling tickets and tracking registrations? Now you can do it for free using our <a href=\"http://wordpress.org/extend/plugins/eventbrite-for-the-events-calendar/\">Eventbrite Integration Plugin</a>. Eventbrite is a feature rich easy-to-use event management tool. \"Wow, you're selling Eventbrite pretty hard. You must get a kickback.\" Well, now that you mention it... we do. We get a little something for everyone that registers an event using our referral link. It's how we're able to keep supporting and building plugins for the open source community. "
|
1368 |
+
msgstr ""
|
1369 |
+
|
1370 |
+
#: views/events-meta-box.php:352
|
1371 |
+
msgid "Check it out here."
|
1372 |
+
msgstr "Mirelo aqui."
|
1373 |
+
|
1374 |
+
#: views/events-meta-box.php:363
|
1375 |
+
msgid ""
|
1376 |
+
"<h4>If You Like This Plugin - Help Support It</h4>\r\n"
|
1377 |
+
"\t\t\t\t<p>We spend a lot of time and effort building robust plugins and we love to share them with the community. If you use this plugin consider making a donation to help support its' continued development. You may remove this message on the <a href=\"/wp-admin/options-general.php?page=the-events-calendar.php\">settings page</a>.</p>"
|
1378 |
+
msgstr ""
|
1379 |
+
"<h4>Si le gustó el plugin - Ayude para soportar su desarollo</h4>\r\n"
|
1380 |
+
"\t\t\t\t<p>Hemos gastado un montón de tiempo e esfuerzo para crear este plugin robusto y nos encanta compartirlo con la comunidad. Si lo usa, considere hacer una donación para facilitar el desarollo sostenible del plugin.Podría quitar este mensaje en<a href=\"/wp-admin/options-general.php?page=the-events-calendar.php\">la pagina de opciones</a>.</p>"
|
1381 |
+
|
1382 |
+
#: views/events-meta-box.php:366
|
1383 |
+
msgid "Thanks"
|
1384 |
+
msgstr "Gracias!"
|
1385 |
+
|
1386 |
+
#: views/events-meta-box.php:367
|
1387 |
+
msgid "Shane & Peter"
|
1388 |
+
msgstr ""
|
1389 |
+
|
1390 |
+
#: views/events-meta-box.php:368
|
1391 |
+
msgid "www.shaneandpeter.com"
|
1392 |
+
msgstr ""
|
1393 |
+
|
1394 |
+
#: views/events-options.php:47
|
1395 |
+
msgid "The Events Calendar Settings"
|
1396 |
+
msgstr "Las opciones del calendario de eventos"
|
1397 |
+
|
1398 |
+
#: views/events-options.php:49
|
1399 |
+
msgid "Need a hand?"
|
1400 |
+
msgstr "Necesita ayuda?"
|
1401 |
+
|
1402 |
+
#: views/events-options.php:50
|
1403 |
+
msgid "If you're stuck on these options, please <a href=\"http://wordpress.org/extend/plugins/the-events-calendar/\">check out the documentation</a>. If you're still wondering what's going on, be sure to stop by the support <a href=\"http://wordpress.org/tags/the-events-calendar?forum_id=10\">forum</a> and ask for help. The open source community is full of kind folks who are happy to help."
|
1404 |
+
msgstr "<a href=\"http://wordpress.org/extend/plugins/the-events-calendar/\">Aqui</a> puede encontrar la documentación. Si aún leyendo la documentación no consigue solucionar sus problemas, Puede preguntarlo en <a href=\"http://wordpress.org/tags/the-events-calendar?forum_id=10\">los foros</a>. Ya que hay mucha gente amable de la comunidad de código abierto ansiosa por ayudar."
|
1405 |
+
|
1406 |
+
#: views/events-options.php:53
|
1407 |
+
msgid "Donate"
|
1408 |
+
msgstr "Dona"
|
1409 |
+
|
1410 |
+
#: views/events-options.php:62
|
1411 |
+
msgid "If you find this plugin useful, please consider donating to the producer of it, Shane & Peter, Inc. Thank you!"
|
1412 |
+
msgstr "Si le ha servido nuestro plugin, y quiere agradecer nuestro trabajo (Shane & Peter, Inc.) haga una donación. Gracias!"
|
1413 |
+
|
1414 |
+
#: views/events-options.php:66
|
1415 |
+
msgid "I have already donated, so please hide this button!"
|
1416 |
+
msgstr "Ya he donado, por favor quiten el botón"
|
1417 |
+
|
1418 |
+
#: views/events-options.php:93
|
1419 |
+
#: views/events-options.php:97
|
1420 |
+
msgid "Default View for the Events"
|
1421 |
+
msgstr "Vista predeterminada para las actividades"
|
1422 |
+
|
1423 |
+
#: views/events-options.php:109
|
1424 |
+
#: views/gridview.php:13
|
1425 |
+
#: views/list.php:10
|
1426 |
+
msgid "Calendar"
|
1427 |
+
msgstr "Calendario"
|
1428 |
+
|
1429 |
+
#: views/events-options.php:113
|
1430 |
+
#: views/gridview.php:12
|
1431 |
+
#: views/list.php:9
|
1432 |
+
msgid "Event List"
|
1433 |
+
msgstr "Lista de eventos"
|
1434 |
+
|
1435 |
+
#: views/events-options.php:119
|
1436 |
+
#: views/events-options.php:123
|
1437 |
+
msgid "Show Comments"
|
1438 |
+
msgstr "Mostrar los comentarios"
|
1439 |
+
|
1440 |
+
#: views/events-options.php:145
|
1441 |
+
msgid "Default Country for Events"
|
1442 |
+
msgstr "País por defecto de los eventos"
|
1443 |
+
|
1444 |
+
#: views/events-options.php:170
|
1445 |
+
#: views/events-options.php:174
|
1446 |
+
msgid "Embed Google Maps"
|
1447 |
+
msgstr "incorporar Google Maps"
|
1448 |
+
|
1449 |
+
#: views/events-options.php:188
|
1450 |
+
msgid "Off"
|
1451 |
+
msgstr "deshabilitado"
|
1452 |
+
|
1453 |
+
#: views/events-options.php:192
|
1454 |
+
msgid "On"
|
1455 |
+
msgstr "habilitado"
|
1456 |
+
|
1457 |
+
#: views/events-options.php:195
|
1458 |
+
msgid "Height"
|
1459 |
+
msgstr "altura"
|
1460 |
+
|
1461 |
+
#: views/events-options.php:196
|
1462 |
+
msgid "Width"
|
1463 |
+
msgstr "ancho"
|
1464 |
+
|
1465 |
+
#: views/events-options.php:196
|
1466 |
+
msgid "(number or %)"
|
1467 |
+
msgstr "(numero o %)"
|
1468 |
+
|
1469 |
+
#: views/gridview.php:7
|
1470 |
+
#: views/list.php:7
|
1471 |
+
msgid "Calendar of Events"
|
1472 |
+
msgstr "Calendario De Eventos"
|
1473 |
+
|
1474 |
+
#: views/list.php:31
|
1475 |
+
#: views/single.php:11
|
1476 |
+
msgid "Start:"
|
1477 |
+
msgstr "Inicio:"
|
1478 |
+
|
1479 |
+
#: views/list.php:35
|
1480 |
+
#: views/single.php:14
|
1481 |
+
msgid "End:"
|
1482 |
+
msgstr "Final:"
|
1483 |
+
|
1484 |
+
#: views/list.php:61
|
1485 |
+
#: views/single.php:28
|
1486 |
+
msgid "Google Map"
|
1487 |
+
msgstr "Google Map"
|
1488 |
+
|
1489 |
+
#: views/list.php:92
|
1490 |
+
msgid "« Previous Events"
|
1491 |
+
msgstr "« Previous Events"
|
1492 |
+
|
1493 |
+
#: views/list.php:105
|
1494 |
+
msgid "Next Events »"
|
1495 |
+
msgstr "Próximo evento »"
|
1496 |
+
|
1497 |
+
#: views/single.php:6
|
1498 |
+
msgid "« Back to Events"
|
1499 |
+
msgstr "« Volver a los eventos"
|
1500 |
+
|
1501 |
+
#: views/single.php:8
|
1502 |
+
msgid "This event has passed."
|
1503 |
+
msgstr "Este evento ya ha pasado."
|
1504 |
+
|
1505 |
+
#: views/table.php:12
|
1506 |
+
msgid "Sunday"
|
1507 |
+
msgstr "Domingo"
|
1508 |
+
|
1509 |
+
#: views/table.php:12
|
1510 |
+
msgid "Sun"
|
1511 |
+
msgstr "Dom"
|
1512 |
+
|
1513 |
+
#: views/table.php:13
|
1514 |
+
msgid "Monday"
|
1515 |
+
msgstr "Lunes"
|
1516 |
+
|
1517 |
+
#: views/table.php:13
|
1518 |
+
msgid "Mon"
|
1519 |
+
msgstr "Lun"
|
1520 |
+
|
1521 |
+
#: views/table.php:14
|
1522 |
+
msgid "Tuesday"
|
1523 |
+
msgstr "Martes"
|
1524 |
+
|
1525 |
+
#: views/table.php:14
|
1526 |
+
msgid "Tue"
|
1527 |
+
msgstr "Mar"
|
1528 |
+
|
1529 |
+
#: views/table.php:15
|
1530 |
+
msgid "Wednesday"
|
1531 |
+
msgstr "Miercoles"
|
1532 |
+
|
1533 |
+
#: views/table.php:15
|
1534 |
+
msgid "Wed"
|
1535 |
+
msgstr "Mie"
|
1536 |
+
|
1537 |
+
#: views/table.php:16
|
1538 |
+
msgid "Thursday"
|
1539 |
+
msgstr "Jueves"
|
1540 |
+
|
1541 |
+
#: views/table.php:16
|
1542 |
+
msgid "Thu"
|
1543 |
+
msgstr "Jue"
|
1544 |
+
|
1545 |
+
#: views/table.php:17
|
1546 |
+
msgid "Friday"
|
1547 |
+
msgstr "Viernes"
|
1548 |
+
|
1549 |
+
#: views/table.php:17
|
1550 |
+
msgid "Fri"
|
1551 |
+
msgstr "Vie"
|
1552 |
+
|
1553 |
+
#: views/table.php:18
|
1554 |
+
msgid "Saturday"
|
1555 |
+
msgstr "Sabado"
|
1556 |
+
|
1557 |
+
#: views/table.php:18
|
1558 |
+
msgid "Sat"
|
1559 |
+
msgstr "Sab"
|
1560 |
+
|
1561 |
+
#. Plugin Name of an extension
|
1562 |
+
msgid "The Events Calendar"
|
1563 |
+
msgstr "El Calendar de Eventos"
|
1564 |
+
|
1565 |
+
#. Plugin URI of an extension
|
1566 |
+
msgid "http://wordpress.org/extend/plugins/the-events-calendar/"
|
1567 |
+
msgstr "http://wordpress.org/extend/plugins/the-events-calendar/"
|
1568 |
+
|
1569 |
+
#. Description of an extension
|
1570 |
+
msgid "The Events Calendar plugin enables you to rapidly create and manage events using the post editor. Features include optional Eventbrite integration, Google Maps integration as well as default calendar grid and list templates for streamlined one click installation."
|
1571 |
+
msgstr "The Events Calendar plugin enables you to rapidly create and manage events using the post editor. Features include optional Eventbrite integration, Google Maps integration as well as default calendar grid and list templates for streamlined one click installation.El Calendario De Eventos te permite publicar eventos rapidamente a traves del Editor de Entradas. Entre su sextras incluyen Integración opcional de Eventrbrite, Google Maps y los diseños de calendario o lista de eventos que vienen incluidos para una instalación instantanea."
|
1572 |
+
|
1573 |
+
#. Author of an extension
|
1574 |
+
msgid "Shane & Peter, Inc."
|
1575 |
+
msgstr "Shane & Peter, Inc."
|
1576 |
+
|
1577 |
+
#. Author URI of an extension
|
1578 |
+
msgid "http://www.shaneandpeter.com/"
|
1579 |
+
msgstr "http://www.shaneandpeter.com/"
|
1580 |
+
|
lang/the-events-calendar-fr_FR.po
CHANGED
@@ -973,6 +973,98 @@ msgstr ""
|
|
973 |
msgid "Zimbabwe"
|
974 |
msgstr ""
|
975 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
976 |
#: the-events-calendar.php:937
|
977 |
msgid "Events"
|
978 |
msgstr "Evénements"
|
@@ -1002,6 +1094,10 @@ msgstr "Titre"
|
|
1002 |
msgid "Show:"
|
1003 |
msgstr "Afficher"
|
1004 |
|
|
|
|
|
|
|
|
|
1005 |
#: views/events-list-load-widget-admin.php:19
|
1006 |
msgid "Start Date & Time"
|
1007 |
msgstr "Date & Heure de début"
|
@@ -1046,6 +1142,10 @@ msgstr "Téléphone"
|
|
1046 |
msgid "Price"
|
1047 |
msgstr "Prix"
|
1048 |
|
|
|
|
|
|
|
|
|
1049 |
#: views/events-meta-box.php:84
|
1050 |
msgid "Event Details:"
|
1051 |
msgstr "Détails de l'évènement"
|
@@ -1066,6 +1166,18 @@ msgstr "Format de l'heure (option générale)"
|
|
1066 |
msgid "12 Hour"
|
1067 |
msgstr "12 heures"
|
1068 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1069 |
#: views/events-meta-box.php:106
|
1070 |
msgid "24 Hour"
|
1071 |
msgstr "24 heures"
|
@@ -1111,6 +1223,10 @@ msgstr "Province :"
|
|
1111 |
msgid "State:"
|
1112 |
msgstr "Etat :"
|
1113 |
|
|
|
|
|
|
|
|
|
1114 |
#: views/events-meta-box.php:203
|
1115 |
msgid "Select a State:"
|
1116 |
msgstr "Sélectionnez un Etat :"
|
@@ -1513,4 +1629,3 @@ msgstr "Sam"
|
|
1513 |
#: views/user-profile.php:15
|
1514 |
msgid "The Events Calendar"
|
1515 |
msgstr "Le Calendrier des Evènements"
|
1516 |
-
|
973 |
msgid "Zimbabwe"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: the-events-calendar.class.php:491
|
977 |
+
msgid "Jan"
|
978 |
+
msgstr ""
|
979 |
+
|
980 |
+
#: the-events-calendar.class.php:492
|
981 |
+
msgid "Feb"
|
982 |
+
msgstr ""
|
983 |
+
|
984 |
+
#: the-events-calendar.class.php:493
|
985 |
+
msgid "Mar"
|
986 |
+
msgstr ""
|
987 |
+
|
988 |
+
#: the-events-calendar.class.php:494
|
989 |
+
msgid "Apr"
|
990 |
+
msgstr ""
|
991 |
+
|
992 |
+
#: the-events-calendar.class.php:495 the-events-calendar.class.php:509
|
993 |
+
msgid "May"
|
994 |
+
msgstr ""
|
995 |
+
|
996 |
+
#: the-events-calendar.class.php:496
|
997 |
+
msgid "Jun"
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
#: the-events-calendar.class.php:497
|
1001 |
+
msgid "Jul"
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: the-events-calendar.class.php:498
|
1005 |
+
msgid "Aug"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: the-events-calendar.class.php:499
|
1009 |
+
msgid "Sep"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: the-events-calendar.class.php:500
|
1013 |
+
msgid "Oct"
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: the-events-calendar.class.php:501
|
1017 |
+
msgid "Nov"
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: the-events-calendar.class.php:502
|
1021 |
+
msgid "Dec"
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: the-events-calendar.class.php:505
|
1025 |
+
msgid "January"
|
1026 |
+
msgstr ""
|
1027 |
+
|
1028 |
+
#: the-events-calendar.class.php:506
|
1029 |
+
msgid "February"
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
#: the-events-calendar.class.php:507
|
1033 |
+
msgid "March"
|
1034 |
+
msgstr ""
|
1035 |
+
|
1036 |
+
#: the-events-calendar.class.php:508
|
1037 |
+
msgid "April"
|
1038 |
+
msgstr ""
|
1039 |
+
|
1040 |
+
#: the-events-calendar.class.php:510
|
1041 |
+
msgid "June"
|
1042 |
+
msgstr ""
|
1043 |
+
|
1044 |
+
#: the-events-calendar.class.php:511
|
1045 |
+
msgid "July"
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: the-events-calendar.class.php:512
|
1049 |
+
msgid "August"
|
1050 |
+
msgstr ""
|
1051 |
+
|
1052 |
+
#: the-events-calendar.class.php:513
|
1053 |
+
msgid "September"
|
1054 |
+
msgstr ""
|
1055 |
+
|
1056 |
+
#: the-events-calendar.class.php:514
|
1057 |
+
msgid "October"
|
1058 |
+
msgstr ""
|
1059 |
+
|
1060 |
+
#: the-events-calendar.class.php:515
|
1061 |
+
msgid "November"
|
1062 |
+
msgstr ""
|
1063 |
+
|
1064 |
+
#: the-events-calendar.class.php:516
|
1065 |
+
msgid "December"
|
1066 |
+
msgstr ""
|
1067 |
+
|
1068 |
#: the-events-calendar.php:937
|
1069 |
msgid "Events"
|
1070 |
msgstr "Evénements"
|
1094 |
msgid "Show:"
|
1095 |
msgstr "Afficher"
|
1096 |
|
1097 |
+
#: views/events-list-load-widget-admin.php:16
|
1098 |
+
msgid "Display:"
|
1099 |
+
msgstr ""
|
1100 |
+
|
1101 |
#: views/events-list-load-widget-admin.php:19
|
1102 |
msgid "Start Date & Time"
|
1103 |
msgstr "Date & Heure de début"
|
1142 |
msgid "Price"
|
1143 |
msgstr "Prix"
|
1144 |
|
1145 |
+
#: views/events-list-load-widget-display.php:48
|
1146 |
+
msgid "More Info"
|
1147 |
+
msgstr ""
|
1148 |
+
|
1149 |
#: views/events-meta-box.php:84
|
1150 |
msgid "Event Details:"
|
1151 |
msgstr "Détails de l'évènement"
|
1166 |
msgid "12 Hour"
|
1167 |
msgstr "12 heures"
|
1168 |
|
1169 |
+
#: views/events-meta-box.php:105
|
1170 |
+
msgid "is not valid."
|
1171 |
+
msgstr ""
|
1172 |
+
|
1173 |
+
#: views/events-meta-box.php:105
|
1174 |
+
msgid ""
|
1175 |
+
"Valid values are local format (eg. 02 1234 5678 or 123 123 4567) or "
|
1176 |
+
"international format (eg. +61 (0) 2 1234 5678 or +1 123 123 4567). You may "
|
1177 |
+
"also use an optional extension of up to five digits prefixed by x or ext "
|
1178 |
+
"(eg. 123 123 4567 x89)"
|
1179 |
+
msgstr ""
|
1180 |
+
|
1181 |
#: views/events-meta-box.php:106
|
1182 |
msgid "24 Hour"
|
1183 |
msgstr "24 heures"
|
1223 |
msgid "State:"
|
1224 |
msgstr "Etat :"
|
1225 |
|
1226 |
+
#: views/events-meta-box.php:202
|
1227 |
+
msgid "Event Time & Date"
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
#: views/events-meta-box.php:203
|
1231 |
msgid "Select a State:"
|
1232 |
msgstr "Sélectionnez un Etat :"
|
1629 |
#: views/user-profile.php:15
|
1630 |
msgid "The Events Calendar"
|
1631 |
msgstr "Le Calendrier des Evènements"
|
|
lang/the-events-calendar-nl_NL.mo
ADDED
Binary file
|
lang/the-events-calendar-nl_NL.po
ADDED
@@ -0,0 +1,1586 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of the WordPress plugin The Events Calendar 1.5.4 by Shane & Peter, Inc..
|
2 |
+
# Copyright (C) 2010 Shane & Peter, Inc.
|
3 |
+
# This file is distributed under the same license as the The Events Calendar package.
|
4 |
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
5 |
+
#
|
6 |
+
msgid ""
|
7 |
+
msgstr ""
|
8 |
+
"Project-Id-Version: The Events Calendar 1.5.4\n"
|
9 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/the-events-calendar\n"
|
10 |
+
"POT-Creation-Date: 2010-01-31 01:16+0000\n"
|
11 |
+
"PO-Revision-Date: 2010-03-14 00:49+0100\n"
|
12 |
+
"Last-Translator: Ontwerpstudio Trendwerk <info@trendwerk.nl>\n"
|
13 |
+
"Language-Team: Ontwerpstudio Trendwerk <info@trendwerk.nl>\n"
|
14 |
+
"MIME-Version: 1.0\n"
|
15 |
+
"Content-Type: text/plain; charset=utf-8\n"
|
16 |
+
"Content-Transfer-Encoding: 8bit\n"
|
17 |
+
"X-Poedit-Language: Dutch\n"
|
18 |
+
"X-Poedit-Country: NETHERLANDS\n"
|
19 |
+
|
20 |
+
#: the-events-calendar.php:54
|
21 |
+
msgid "United States"
|
22 |
+
msgstr "Verenigde Staten"
|
23 |
+
|
24 |
+
#: the-events-calendar.php:55
|
25 |
+
msgid "Afghanistan"
|
26 |
+
msgstr "Afghanistan"
|
27 |
+
|
28 |
+
#: the-events-calendar.php:56
|
29 |
+
msgid "Albania"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: the-events-calendar.php:57
|
33 |
+
msgid "Algeria"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: the-events-calendar.php:58
|
37 |
+
msgid "American Samoa"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: the-events-calendar.php:59
|
41 |
+
msgid "Andorra"
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: the-events-calendar.php:60
|
45 |
+
msgid "Angola"
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: the-events-calendar.php:61
|
49 |
+
msgid "Anguilla"
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: the-events-calendar.php:62
|
53 |
+
msgid "Antarctica"
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: the-events-calendar.php:63
|
57 |
+
msgid "Antigua And Barbuda"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: the-events-calendar.php:64
|
61 |
+
msgid "Argentina"
|
62 |
+
msgstr "Argentinië"
|
63 |
+
|
64 |
+
#: the-events-calendar.php:65
|
65 |
+
msgid "Armenia"
|
66 |
+
msgstr ""
|
67 |
+
|
68 |
+
#: the-events-calendar.php:66
|
69 |
+
msgid "Aruba"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: the-events-calendar.php:67
|
73 |
+
msgid "Australia"
|
74 |
+
msgstr "Australië"
|
75 |
+
|
76 |
+
#: the-events-calendar.php:68
|
77 |
+
msgid "Austria"
|
78 |
+
msgstr "Oostenrijk"
|
79 |
+
|
80 |
+
#: the-events-calendar.php:69
|
81 |
+
msgid "Azerbaijan"
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: the-events-calendar.php:70
|
85 |
+
msgid "Bahamas"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: the-events-calendar.php:71
|
89 |
+
msgid "Bahrain"
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: the-events-calendar.php:72
|
93 |
+
msgid "Bangladesh"
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: the-events-calendar.php:73
|
97 |
+
msgid "Barbados"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: the-events-calendar.php:74
|
101 |
+
msgid "Belarus"
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: the-events-calendar.php:75
|
105 |
+
msgid "Belgium"
|
106 |
+
msgstr "België"
|
107 |
+
|
108 |
+
#: the-events-calendar.php:76
|
109 |
+
msgid "Belize"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: the-events-calendar.php:77
|
113 |
+
msgid "Benin"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: the-events-calendar.php:78
|
117 |
+
msgid "Bermuda"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: the-events-calendar.php:79
|
121 |
+
msgid "Bhutan"
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: the-events-calendar.php:80
|
125 |
+
msgid "Bolivia"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: the-events-calendar.php:81
|
129 |
+
msgid "Bosnia And Herzegowina"
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: the-events-calendar.php:82
|
133 |
+
msgid "Botswana"
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: the-events-calendar.php:83
|
137 |
+
msgid "Bouvet Island"
|
138 |
+
msgstr ""
|
139 |
+
|
140 |
+
#: the-events-calendar.php:84
|
141 |
+
msgid "Brazil"
|
142 |
+
msgstr "Brazilië"
|
143 |
+
|
144 |
+
#: the-events-calendar.php:85
|
145 |
+
msgid "British Indian Ocean Territory"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: the-events-calendar.php:86
|
149 |
+
msgid "Brunei Darussalam"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: the-events-calendar.php:87
|
153 |
+
msgid "Bulgaria"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: the-events-calendar.php:88
|
157 |
+
msgid "Burkina Faso"
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: the-events-calendar.php:89
|
161 |
+
msgid "Burundi"
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: the-events-calendar.php:90
|
165 |
+
msgid "Cambodia"
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: the-events-calendar.php:91
|
169 |
+
msgid "Cameroon"
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: the-events-calendar.php:92
|
173 |
+
msgid "Canada"
|
174 |
+
msgstr "Canada"
|
175 |
+
|
176 |
+
#: the-events-calendar.php:93
|
177 |
+
msgid "Cape Verde"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: the-events-calendar.php:94
|
181 |
+
msgid "Cayman Islands"
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: the-events-calendar.php:95
|
185 |
+
msgid "Central African Republic"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: the-events-calendar.php:96
|
189 |
+
msgid "Chad"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: the-events-calendar.php:97
|
193 |
+
msgid "Chile"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: the-events-calendar.php:98
|
197 |
+
msgid "China"
|
198 |
+
msgstr "China"
|
199 |
+
|
200 |
+
#: the-events-calendar.php:99
|
201 |
+
msgid "Christmas Island"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: the-events-calendar.php:100
|
205 |
+
msgid "Cocos (Keeling) Islands"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: the-events-calendar.php:101
|
209 |
+
msgid "Colombia"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: the-events-calendar.php:102
|
213 |
+
msgid "Comoros"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: the-events-calendar.php:103
|
217 |
+
msgid "Congo"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: the-events-calendar.php:104
|
221 |
+
msgid "Congo, The Democratic Republic Of The"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: the-events-calendar.php:105
|
225 |
+
msgid "Cook Islands"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: the-events-calendar.php:106
|
229 |
+
msgid "Costa Rica"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: the-events-calendar.php:107
|
233 |
+
msgid "Cote D'Ivoire"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: the-events-calendar.php:108
|
237 |
+
msgid "Croatia (Local Name: Hrvatska)"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: the-events-calendar.php:109
|
241 |
+
msgid "Cuba"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: the-events-calendar.php:110
|
245 |
+
msgid "Cyprus"
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: the-events-calendar.php:111
|
249 |
+
msgid "Czech Republic"
|
250 |
+
msgstr "Tchechië"
|
251 |
+
|
252 |
+
#: the-events-calendar.php:112
|
253 |
+
msgid "Denmark"
|
254 |
+
msgstr "Denemarken"
|
255 |
+
|
256 |
+
#: the-events-calendar.php:113
|
257 |
+
msgid "Djibouti"
|
258 |
+
msgstr ""
|
259 |
+
|
260 |
+
#: the-events-calendar.php:114
|
261 |
+
msgid "Dominica"
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
#: the-events-calendar.php:115
|
265 |
+
msgid "Dominican Republic"
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: the-events-calendar.php:116
|
269 |
+
msgid "East Timor"
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: the-events-calendar.php:117
|
273 |
+
msgid "Ecuador"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
#: the-events-calendar.php:118
|
277 |
+
msgid "Egypt"
|
278 |
+
msgstr ""
|
279 |
+
|
280 |
+
#: the-events-calendar.php:119
|
281 |
+
msgid "El Salvador"
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
#: the-events-calendar.php:120
|
285 |
+
msgid "Equatorial Guinea"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: the-events-calendar.php:121
|
289 |
+
msgid "Eritrea"
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
#: the-events-calendar.php:122
|
293 |
+
msgid "Estonia"
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
+
#: the-events-calendar.php:123
|
297 |
+
msgid "Ethiopia"
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: the-events-calendar.php:124
|
301 |
+
msgid "Falkland Islands (Malvinas)"
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: the-events-calendar.php:125
|
305 |
+
msgid "Faroe Islands"
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: the-events-calendar.php:126
|
309 |
+
msgid "Fiji"
|
310 |
+
msgstr ""
|
311 |
+
|
312 |
+
#: the-events-calendar.php:127
|
313 |
+
msgid "Finland"
|
314 |
+
msgstr "Finland"
|
315 |
+
|
316 |
+
#: the-events-calendar.php:128
|
317 |
+
msgid "France"
|
318 |
+
msgstr "Frankrijk"
|
319 |
+
|
320 |
+
#: the-events-calendar.php:129
|
321 |
+
msgid "France, Metropolitan"
|
322 |
+
msgstr ""
|
323 |
+
|
324 |
+
#: the-events-calendar.php:130
|
325 |
+
msgid "French Guiana"
|
326 |
+
msgstr ""
|
327 |
+
|
328 |
+
#: the-events-calendar.php:131
|
329 |
+
msgid "French Polynesia"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: the-events-calendar.php:132
|
333 |
+
msgid "French Southern Territories"
|
334 |
+
msgstr ""
|
335 |
+
|
336 |
+
#: the-events-calendar.php:133
|
337 |
+
msgid "Gabon"
|
338 |
+
msgstr ""
|
339 |
+
|
340 |
+
#: the-events-calendar.php:134
|
341 |
+
msgid "Gambia"
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: the-events-calendar.php:135
|
345 |
+
#: views/events-meta-box.php:273
|
346 |
+
msgid "Georgia"
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: the-events-calendar.php:136
|
350 |
+
msgid "Germany"
|
351 |
+
msgstr "Duitsland"
|
352 |
+
|
353 |
+
#: the-events-calendar.php:137
|
354 |
+
msgid "Ghana"
|
355 |
+
msgstr ""
|
356 |
+
|
357 |
+
#: the-events-calendar.php:138
|
358 |
+
msgid "Gibraltar"
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
+
#: the-events-calendar.php:139
|
362 |
+
msgid "Greece"
|
363 |
+
msgstr "Griekenland"
|
364 |
+
|
365 |
+
#: the-events-calendar.php:140
|
366 |
+
msgid "Greenland"
|
367 |
+
msgstr "Groenland"
|
368 |
+
|
369 |
+
#: the-events-calendar.php:141
|
370 |
+
msgid "Grenada"
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: the-events-calendar.php:142
|
374 |
+
msgid "Guadeloupe"
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: the-events-calendar.php:143
|
378 |
+
msgid "Guam"
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: the-events-calendar.php:144
|
382 |
+
msgid "Guatemala"
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: the-events-calendar.php:145
|
386 |
+
msgid "Guinea"
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: the-events-calendar.php:146
|
390 |
+
msgid "Guinea-Bissau"
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
#: the-events-calendar.php:147
|
394 |
+
msgid "Guyana"
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
+
#: the-events-calendar.php:148
|
398 |
+
msgid "Haiti"
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
+
#: the-events-calendar.php:149
|
402 |
+
msgid "Heard And Mc Donald Islands"
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: the-events-calendar.php:150
|
406 |
+
msgid "Holy See (Vatican City State)"
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
#: the-events-calendar.php:151
|
410 |
+
msgid "Honduras"
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: the-events-calendar.php:152
|
414 |
+
msgid "Hong Kong"
|
415 |
+
msgstr "Hong Kong"
|
416 |
+
|
417 |
+
#: the-events-calendar.php:153
|
418 |
+
msgid "Hungary"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: the-events-calendar.php:154
|
422 |
+
msgid "Iceland"
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: the-events-calendar.php:155
|
426 |
+
msgid "India"
|
427 |
+
msgstr "India"
|
428 |
+
|
429 |
+
#: the-events-calendar.php:156
|
430 |
+
msgid "Indonesia"
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: the-events-calendar.php:157
|
434 |
+
msgid "Iran (Islamic Republic Of)"
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: the-events-calendar.php:158
|
438 |
+
msgid "Iraq"
|
439 |
+
msgstr ""
|
440 |
+
|
441 |
+
#: the-events-calendar.php:159
|
442 |
+
msgid "Ireland"
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
#: the-events-calendar.php:160
|
446 |
+
msgid "Israel"
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: the-events-calendar.php:161
|
450 |
+
msgid "Italy"
|
451 |
+
msgstr "Italië"
|
452 |
+
|
453 |
+
#: the-events-calendar.php:162
|
454 |
+
msgid "Jamaica"
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: the-events-calendar.php:163
|
458 |
+
msgid "Japan"
|
459 |
+
msgstr "Japan"
|
460 |
+
|
461 |
+
#: the-events-calendar.php:164
|
462 |
+
msgid "Jordan"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: the-events-calendar.php:165
|
466 |
+
msgid "Kazakhstan"
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: the-events-calendar.php:166
|
470 |
+
msgid "Kenya"
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
+
#: the-events-calendar.php:167
|
474 |
+
msgid "Kiribati"
|
475 |
+
msgstr ""
|
476 |
+
|
477 |
+
#: the-events-calendar.php:168
|
478 |
+
msgid "Korea, Democratic People's Republic Of"
|
479 |
+
msgstr ""
|
480 |
+
|
481 |
+
#: the-events-calendar.php:169
|
482 |
+
msgid "Korea, Republic Of"
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: the-events-calendar.php:170
|
486 |
+
msgid "Kuwait"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: the-events-calendar.php:171
|
490 |
+
msgid "Kyrgyzstan"
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: the-events-calendar.php:172
|
494 |
+
msgid "Lao People's Democratic Republic"
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: the-events-calendar.php:173
|
498 |
+
msgid "Latvia"
|
499 |
+
msgstr "Letland"
|
500 |
+
|
501 |
+
#: the-events-calendar.php:174
|
502 |
+
msgid "Lebanon"
|
503 |
+
msgstr ""
|
504 |
+
|
505 |
+
#: the-events-calendar.php:175
|
506 |
+
msgid "Lesotho"
|
507 |
+
msgstr ""
|
508 |
+
|
509 |
+
#: the-events-calendar.php:176
|
510 |
+
msgid "Liberia"
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: the-events-calendar.php:177
|
514 |
+
msgid "Libyan Arab Jamahiriya"
|
515 |
+
msgstr ""
|
516 |
+
|
517 |
+
#: the-events-calendar.php:178
|
518 |
+
msgid "Liechtenstein"
|
519 |
+
msgstr ""
|
520 |
+
|
521 |
+
#: the-events-calendar.php:179
|
522 |
+
msgid "Lithuania"
|
523 |
+
msgstr ""
|
524 |
+
|
525 |
+
#: the-events-calendar.php:180
|
526 |
+
msgid "Luxembourg"
|
527 |
+
msgstr "Luxemburg"
|
528 |
+
|
529 |
+
#: the-events-calendar.php:181
|
530 |
+
msgid "Macau"
|
531 |
+
msgstr ""
|
532 |
+
|
533 |
+
#: the-events-calendar.php:182
|
534 |
+
msgid "Macedonia, Former Yugoslav Republic Of"
|
535 |
+
msgstr ""
|
536 |
+
|
537 |
+
#: the-events-calendar.php:183
|
538 |
+
msgid "Madagascar"
|
539 |
+
msgstr ""
|
540 |
+
|
541 |
+
#: the-events-calendar.php:184
|
542 |
+
msgid "Malawi"
|
543 |
+
msgstr ""
|
544 |
+
|
545 |
+
#: the-events-calendar.php:185
|
546 |
+
msgid "Malaysia"
|
547 |
+
msgstr ""
|
548 |
+
|
549 |
+
#: the-events-calendar.php:186
|
550 |
+
msgid "Maldives"
|
551 |
+
msgstr ""
|
552 |
+
|
553 |
+
#: the-events-calendar.php:187
|
554 |
+
msgid "Mali"
|
555 |
+
msgstr ""
|
556 |
+
|
557 |
+
#: the-events-calendar.php:188
|
558 |
+
msgid "Malta"
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: the-events-calendar.php:189
|
562 |
+
msgid "Marshall Islands"
|
563 |
+
msgstr ""
|
564 |
+
|
565 |
+
#: the-events-calendar.php:190
|
566 |
+
msgid "Martinique"
|
567 |
+
msgstr ""
|
568 |
+
|
569 |
+
#: the-events-calendar.php:191
|
570 |
+
msgid "Mauritania"
|
571 |
+
msgstr ""
|
572 |
+
|
573 |
+
#: the-events-calendar.php:192
|
574 |
+
msgid "Mauritius"
|
575 |
+
msgstr ""
|
576 |
+
|
577 |
+
#: the-events-calendar.php:193
|
578 |
+
msgid "Mayotte"
|
579 |
+
msgstr ""
|
580 |
+
|
581 |
+
#: the-events-calendar.php:194
|
582 |
+
msgid "Mexico"
|
583 |
+
msgstr "Mexico"
|
584 |
+
|
585 |
+
#: the-events-calendar.php:195
|
586 |
+
msgid "Micronesia, Federated States Of"
|
587 |
+
msgstr ""
|
588 |
+
|
589 |
+
#: the-events-calendar.php:196
|
590 |
+
msgid "Moldova, Republic Of"
|
591 |
+
msgstr ""
|
592 |
+
|
593 |
+
#: the-events-calendar.php:197
|
594 |
+
msgid "Monaco"
|
595 |
+
msgstr ""
|
596 |
+
|
597 |
+
#: the-events-calendar.php:198
|
598 |
+
msgid "Mongolia"
|
599 |
+
msgstr ""
|
600 |
+
|
601 |
+
#: the-events-calendar.php:199
|
602 |
+
msgid "Montserrat"
|
603 |
+
msgstr ""
|
604 |
+
|
605 |
+
#: the-events-calendar.php:200
|
606 |
+
msgid "Morocco"
|
607 |
+
msgstr ""
|
608 |
+
|
609 |
+
#: the-events-calendar.php:201
|
610 |
+
msgid "Mozambique"
|
611 |
+
msgstr ""
|
612 |
+
|
613 |
+
#: the-events-calendar.php:202
|
614 |
+
msgid "Myanmar"
|
615 |
+
msgstr ""
|
616 |
+
|
617 |
+
#: the-events-calendar.php:203
|
618 |
+
msgid "Namibia"
|
619 |
+
msgstr ""
|
620 |
+
|
621 |
+
#: the-events-calendar.php:204
|
622 |
+
msgid "Nauru"
|
623 |
+
msgstr ""
|
624 |
+
|
625 |
+
#: the-events-calendar.php:205
|
626 |
+
msgid "Nepal"
|
627 |
+
msgstr ""
|
628 |
+
|
629 |
+
#: the-events-calendar.php:206
|
630 |
+
msgid "Netherlands"
|
631 |
+
msgstr "Nederland"
|
632 |
+
|
633 |
+
#: the-events-calendar.php:207
|
634 |
+
msgid "Netherlands Antilles"
|
635 |
+
msgstr "Nederlandse Antillen"
|
636 |
+
|
637 |
+
#: the-events-calendar.php:208
|
638 |
+
msgid "New Caledonia"
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: the-events-calendar.php:209
|
642 |
+
msgid "New Zealand"
|
643 |
+
msgstr "Nieuw Zeeland"
|
644 |
+
|
645 |
+
#: the-events-calendar.php:210
|
646 |
+
msgid "Nicaragua"
|
647 |
+
msgstr ""
|
648 |
+
|
649 |
+
#: the-events-calendar.php:211
|
650 |
+
msgid "Niger"
|
651 |
+
msgstr ""
|
652 |
+
|
653 |
+
#: the-events-calendar.php:212
|
654 |
+
msgid "Nigeria"
|
655 |
+
msgstr ""
|
656 |
+
|
657 |
+
#: the-events-calendar.php:213
|
658 |
+
msgid "Niue"
|
659 |
+
msgstr ""
|
660 |
+
|
661 |
+
#: the-events-calendar.php:214
|
662 |
+
msgid "Norfolk Island"
|
663 |
+
msgstr ""
|
664 |
+
|
665 |
+
#: the-events-calendar.php:215
|
666 |
+
msgid "Northern Mariana Islands"
|
667 |
+
msgstr ""
|
668 |
+
|
669 |
+
#: the-events-calendar.php:216
|
670 |
+
msgid "Norway"
|
671 |
+
msgstr ""
|
672 |
+
|
673 |
+
#: the-events-calendar.php:217
|
674 |
+
msgid "Oman"
|
675 |
+
msgstr ""
|
676 |
+
|
677 |
+
#: the-events-calendar.php:218
|
678 |
+
msgid "Pakistan"
|
679 |
+
msgstr ""
|
680 |
+
|
681 |
+
#: the-events-calendar.php:219
|
682 |
+
msgid "Palau"
|
683 |
+
msgstr ""
|
684 |
+
|
685 |
+
#: the-events-calendar.php:220
|
686 |
+
msgid "Panama"
|
687 |
+
msgstr ""
|
688 |
+
|
689 |
+
#: the-events-calendar.php:221
|
690 |
+
msgid "Papua New Guinea"
|
691 |
+
msgstr ""
|
692 |
+
|
693 |
+
#: the-events-calendar.php:222
|
694 |
+
msgid "Paraguay"
|
695 |
+
msgstr ""
|
696 |
+
|
697 |
+
#: the-events-calendar.php:223
|
698 |
+
msgid "Peru"
|
699 |
+
msgstr "Peru"
|
700 |
+
|
701 |
+
#: the-events-calendar.php:224
|
702 |
+
msgid "Philippines"
|
703 |
+
msgstr ""
|
704 |
+
|
705 |
+
#: the-events-calendar.php:225
|
706 |
+
msgid "Pitcairn"
|
707 |
+
msgstr ""
|
708 |
+
|
709 |
+
#: the-events-calendar.php:226
|
710 |
+
msgid "Poland"
|
711 |
+
msgstr "Polen"
|
712 |
+
|
713 |
+
#: the-events-calendar.php:227
|
714 |
+
msgid "Portugal"
|
715 |
+
msgstr "Portugal"
|
716 |
+
|
717 |
+
#: the-events-calendar.php:228
|
718 |
+
msgid "Puerto Rico"
|
719 |
+
msgstr ""
|
720 |
+
|
721 |
+
#: the-events-calendar.php:229
|
722 |
+
msgid "Qatar"
|
723 |
+
msgstr ""
|
724 |
+
|
725 |
+
#: the-events-calendar.php:230
|
726 |
+
msgid "Reunion"
|
727 |
+
msgstr ""
|
728 |
+
|
729 |
+
#: the-events-calendar.php:231
|
730 |
+
msgid "Romania"
|
731 |
+
msgstr "Romenië"
|
732 |
+
|
733 |
+
#: the-events-calendar.php:232
|
734 |
+
msgid "Russian Federation"
|
735 |
+
msgstr "Rusland"
|
736 |
+
|
737 |
+
#: the-events-calendar.php:233
|
738 |
+
msgid "Rwanda"
|
739 |
+
msgstr ""
|
740 |
+
|
741 |
+
#: the-events-calendar.php:234
|
742 |
+
msgid "Saint Kitts And Nevis"
|
743 |
+
msgstr ""
|
744 |
+
|
745 |
+
#: the-events-calendar.php:235
|
746 |
+
msgid "Saint Lucia"
|
747 |
+
msgstr ""
|
748 |
+
|
749 |
+
#: the-events-calendar.php:236
|
750 |
+
msgid "Saint Vincent And The Grenadines"
|
751 |
+
msgstr ""
|
752 |
+
|
753 |
+
#: the-events-calendar.php:237
|
754 |
+
msgid "Samoa"
|
755 |
+
msgstr ""
|
756 |
+
|
757 |
+
#: the-events-calendar.php:238
|
758 |
+
msgid "San Marino"
|
759 |
+
msgstr ""
|
760 |
+
|
761 |
+
#: the-events-calendar.php:239
|
762 |
+
msgid "Sao Tome And Principe"
|
763 |
+
msgstr ""
|
764 |
+
|
765 |
+
#: the-events-calendar.php:240
|
766 |
+
msgid "Saudi Arabia"
|
767 |
+
msgstr ""
|
768 |
+
|
769 |
+
#: the-events-calendar.php:241
|
770 |
+
msgid "Senegal"
|
771 |
+
msgstr ""
|
772 |
+
|
773 |
+
#: the-events-calendar.php:242
|
774 |
+
msgid "Seychelles"
|
775 |
+
msgstr ""
|
776 |
+
|
777 |
+
#: the-events-calendar.php:243
|
778 |
+
msgid "Sierra Leone"
|
779 |
+
msgstr ""
|
780 |
+
|
781 |
+
#: the-events-calendar.php:244
|
782 |
+
msgid "Singapore"
|
783 |
+
msgstr ""
|
784 |
+
|
785 |
+
#: the-events-calendar.php:245
|
786 |
+
msgid "Slovakia (Slovak Republic)"
|
787 |
+
msgstr ""
|
788 |
+
|
789 |
+
#: the-events-calendar.php:246
|
790 |
+
msgid "Slovenia"
|
791 |
+
msgstr ""
|
792 |
+
|
793 |
+
#: the-events-calendar.php:247
|
794 |
+
msgid "Solomon Islands"
|
795 |
+
msgstr ""
|
796 |
+
|
797 |
+
#: the-events-calendar.php:248
|
798 |
+
msgid "Somalia"
|
799 |
+
msgstr ""
|
800 |
+
|
801 |
+
#: the-events-calendar.php:249
|
802 |
+
msgid "South Africa"
|
803 |
+
msgstr ""
|
804 |
+
|
805 |
+
#: the-events-calendar.php:250
|
806 |
+
msgid "South Georgia, South Sandwich Islands"
|
807 |
+
msgstr ""
|
808 |
+
|
809 |
+
#: the-events-calendar.php:251
|
810 |
+
msgid "Spain"
|
811 |
+
msgstr "Spanje"
|
812 |
+
|
813 |
+
#: the-events-calendar.php:252
|
814 |
+
msgid "Sri Lanka"
|
815 |
+
msgstr ""
|
816 |
+
|
817 |
+
#: the-events-calendar.php:253
|
818 |
+
msgid "St. Helena"
|
819 |
+
msgstr ""
|
820 |
+
|
821 |
+
#: the-events-calendar.php:254
|
822 |
+
msgid "St. Pierre And Miquelon"
|
823 |
+
msgstr ""
|
824 |
+
|
825 |
+
#: the-events-calendar.php:255
|
826 |
+
msgid "Sudan"
|
827 |
+
msgstr ""
|
828 |
+
|
829 |
+
#: the-events-calendar.php:256
|
830 |
+
msgid "Suriname"
|
831 |
+
msgstr ""
|
832 |
+
|
833 |
+
#: the-events-calendar.php:257
|
834 |
+
msgid "Svalbard And Jan Mayen Islands"
|
835 |
+
msgstr ""
|
836 |
+
|
837 |
+
#: the-events-calendar.php:258
|
838 |
+
msgid "Swaziland"
|
839 |
+
msgstr ""
|
840 |
+
|
841 |
+
#: the-events-calendar.php:259
|
842 |
+
msgid "Sweden"
|
843 |
+
msgstr "Zweden"
|
844 |
+
|
845 |
+
#: the-events-calendar.php:260
|
846 |
+
msgid "Switzerland"
|
847 |
+
msgstr "Switzerland"
|
848 |
+
|
849 |
+
#: the-events-calendar.php:261
|
850 |
+
msgid "Syrian Arab Republic"
|
851 |
+
msgstr ""
|
852 |
+
|
853 |
+
#: the-events-calendar.php:262
|
854 |
+
msgid "Taiwan"
|
855 |
+
msgstr "Taiwan"
|
856 |
+
|
857 |
+
#: the-events-calendar.php:263
|
858 |
+
msgid "Tajikistan"
|
859 |
+
msgstr ""
|
860 |
+
|
861 |
+
#: the-events-calendar.php:264
|
862 |
+
msgid "Tanzania, United Republic Of"
|
863 |
+
msgstr ""
|
864 |
+
|
865 |
+
#: the-events-calendar.php:265
|
866 |
+
msgid "Thailand"
|
867 |
+
msgstr "Thailand"
|
868 |
+
|
869 |
+
#: the-events-calendar.php:266
|
870 |
+
msgid "Togo"
|
871 |
+
msgstr ""
|
872 |
+
|
873 |
+
#: the-events-calendar.php:267
|
874 |
+
msgid "Tokelau"
|
875 |
+
msgstr ""
|
876 |
+
|
877 |
+
#: the-events-calendar.php:268
|
878 |
+
msgid "Tonga"
|
879 |
+
msgstr ""
|
880 |
+
|
881 |
+
#: the-events-calendar.php:269
|
882 |
+
msgid "Trinidad And Tobago"
|
883 |
+
msgstr ""
|
884 |
+
|
885 |
+
#: the-events-calendar.php:270
|
886 |
+
msgid "Tunisia"
|
887 |
+
msgstr ""
|
888 |
+
|
889 |
+
#: the-events-calendar.php:271
|
890 |
+
msgid "Turkey"
|
891 |
+
msgstr "Turkije"
|
892 |
+
|
893 |
+
#: the-events-calendar.php:272
|
894 |
+
msgid "Turkmenistan"
|
895 |
+
msgstr ""
|
896 |
+
|
897 |
+
#: the-events-calendar.php:273
|
898 |
+
msgid "Turks And Caicos Islands"
|
899 |
+
msgstr ""
|
900 |
+
|
901 |
+
#: the-events-calendar.php:274
|
902 |
+
msgid "Tuvalu"
|
903 |
+
msgstr ""
|
904 |
+
|
905 |
+
#: the-events-calendar.php:275
|
906 |
+
msgid "Uganda"
|
907 |
+
msgstr ""
|
908 |
+
|
909 |
+
#: the-events-calendar.php:276
|
910 |
+
msgid "Ukraine"
|
911 |
+
msgstr "Oekraïne"
|
912 |
+
|
913 |
+
#: the-events-calendar.php:277
|
914 |
+
msgid "United Arab Emirates"
|
915 |
+
msgstr ""
|
916 |
+
|
917 |
+
#: the-events-calendar.php:278
|
918 |
+
msgid "United Kingdom"
|
919 |
+
msgstr "Verenigd Koninkrijk"
|
920 |
+
|
921 |
+
#: the-events-calendar.php:279
|
922 |
+
msgid "United States Minor Outlying Islands"
|
923 |
+
msgstr ""
|
924 |
+
|
925 |
+
#: the-events-calendar.php:280
|
926 |
+
msgid "Uruguay"
|
927 |
+
msgstr ""
|
928 |
+
|
929 |
+
#: the-events-calendar.php:281
|
930 |
+
msgid "Uzbekistan"
|
931 |
+
msgstr ""
|
932 |
+
|
933 |
+
#: the-events-calendar.php:282
|
934 |
+
msgid "Vanuatu"
|
935 |
+
msgstr ""
|
936 |
+
|
937 |
+
#: the-events-calendar.php:283
|
938 |
+
msgid "Venezuela"
|
939 |
+
msgstr ""
|
940 |
+
|
941 |
+
#: the-events-calendar.php:284
|
942 |
+
msgid "Viet Nam"
|
943 |
+
msgstr ""
|
944 |
+
|
945 |
+
#: the-events-calendar.php:285
|
946 |
+
msgid "Virgin Islands (British)"
|
947 |
+
msgstr ""
|
948 |
+
|
949 |
+
#: the-events-calendar.php:286
|
950 |
+
msgid "Virgin Islands (U.S.)"
|
951 |
+
msgstr ""
|
952 |
+
|
953 |
+
#: the-events-calendar.php:287
|
954 |
+
msgid "Wallis And Futuna Islands"
|
955 |
+
msgstr ""
|
956 |
+
|
957 |
+
#: the-events-calendar.php:288
|
958 |
+
msgid "Western Sahara"
|
959 |
+
msgstr ""
|
960 |
+
|
961 |
+
#: the-events-calendar.php:289
|
962 |
+
msgid "Yemen"
|
963 |
+
msgstr ""
|
964 |
+
|
965 |
+
#: the-events-calendar.php:290
|
966 |
+
msgid "Yugoslavia"
|
967 |
+
msgstr ""
|
968 |
+
|
969 |
+
#: the-events-calendar.php:291
|
970 |
+
msgid "Zambia"
|
971 |
+
msgstr "Zambia"
|
972 |
+
|
973 |
+
#: the-events-calendar.php:292
|
974 |
+
msgid "Zimbabwe"
|
975 |
+
msgstr "Zimbabwe"
|
976 |
+
|
977 |
+
#: the-events-calendar.php:942
|
978 |
+
msgid "Events"
|
979 |
+
msgstr "Evenementen"
|
980 |
+
|
981 |
+
#: the-events-calendar.php:1438
|
982 |
+
msgid "Free"
|
983 |
+
msgstr "Gratis"
|
984 |
+
|
985 |
+
#: the-events-calendar.php:1903
|
986 |
+
msgid "A widget that displays the next upcoming x events."
|
987 |
+
msgstr "Een widget die de eerstvolgende x evenementen weergeeft."
|
988 |
+
|
989 |
+
#: the-events-calendar.php:2022
|
990 |
+
msgid "A calendar of your events"
|
991 |
+
msgstr "Een kalender voor de evenementen."
|
992 |
+
|
993 |
+
#: the-events-calendar.php:2023
|
994 |
+
msgid "Events Calendar"
|
995 |
+
msgstr "Evenementen kalender"
|
996 |
+
|
997 |
+
#: the-events-calendar.php:2049
|
998 |
+
#: views/events-list-load-widget-admin.php:2
|
999 |
+
msgid "Title:"
|
1000 |
+
msgstr "Titel:"
|
1001 |
+
|
1002 |
+
#: views/events-list-load-widget-admin.php:7
|
1003 |
+
msgid "Show:"
|
1004 |
+
msgstr "Weergeven:"
|
1005 |
+
|
1006 |
+
#: views/events-list-load-widget-admin.php:19
|
1007 |
+
msgid "Start Date & Time"
|
1008 |
+
msgstr "Start datum & tijd"
|
1009 |
+
|
1010 |
+
#: views/events-list-load-widget-admin.php:20
|
1011 |
+
msgid "End Date & Time"
|
1012 |
+
msgstr "Eind datum & tijd"
|
1013 |
+
|
1014 |
+
#: views/events-list-load-widget-admin.php:21
|
1015 |
+
#, fuzzy
|
1016 |
+
msgid "Venue"
|
1017 |
+
msgstr "Locatie"
|
1018 |
+
|
1019 |
+
#: views/events-list-load-widget-admin.php:22
|
1020 |
+
msgid "Address"
|
1021 |
+
msgstr "Adres"
|
1022 |
+
|
1023 |
+
#: views/events-list-load-widget-admin.php:23
|
1024 |
+
msgid "City"
|
1025 |
+
msgstr "Stad"
|
1026 |
+
|
1027 |
+
#: views/events-list-load-widget-admin.php:24
|
1028 |
+
msgid "State (US)"
|
1029 |
+
msgstr "Staat (US)"
|
1030 |
+
|
1031 |
+
#: views/events-list-load-widget-admin.php:25
|
1032 |
+
msgid "Province (Int)"
|
1033 |
+
msgstr "Provincie"
|
1034 |
+
|
1035 |
+
#: views/events-list-load-widget-admin.php:26
|
1036 |
+
msgid "Postal Code"
|
1037 |
+
msgstr "Postcode"
|
1038 |
+
|
1039 |
+
#: views/events-list-load-widget-admin.php:27
|
1040 |
+
msgid "Country"
|
1041 |
+
msgstr "Land"
|
1042 |
+
|
1043 |
+
#: views/events-list-load-widget-admin.php:28
|
1044 |
+
msgid "Phone"
|
1045 |
+
msgstr "Telefoon"
|
1046 |
+
|
1047 |
+
#: views/events-list-load-widget-admin.php:29
|
1048 |
+
msgid "Price"
|
1049 |
+
msgstr "Prijs"
|
1050 |
+
|
1051 |
+
#: views/events-list-load-widget-display.php:50
|
1052 |
+
msgid "More Info"
|
1053 |
+
msgstr "Meer informatie"
|
1054 |
+
|
1055 |
+
#: views/events-meta-box.php:138
|
1056 |
+
msgid "Event Details:"
|
1057 |
+
msgstr "Evenement details:"
|
1058 |
+
|
1059 |
+
#: views/events-meta-box.php:140
|
1060 |
+
msgid "Is this post an event?"
|
1061 |
+
msgstr "Is dit bericht een evenement?"
|
1062 |
+
|
1063 |
+
#: views/events-meta-box.php:141
|
1064 |
+
#: views/events-options.php:135
|
1065 |
+
msgid "Yes"
|
1066 |
+
msgstr "Ja"
|
1067 |
+
|
1068 |
+
#: views/events-meta-box.php:142
|
1069 |
+
#: views/events-options.php:139
|
1070 |
+
msgid "No"
|
1071 |
+
msgstr "Nee"
|
1072 |
+
|
1073 |
+
#: views/events-meta-box.php:148
|
1074 |
+
msgid "Event Time & Date"
|
1075 |
+
msgstr "Evenement tijd & datum"
|
1076 |
+
|
1077 |
+
#: views/events-meta-box.php:151
|
1078 |
+
msgid "All day event?"
|
1079 |
+
msgstr "Hele dag?"
|
1080 |
+
|
1081 |
+
#: views/events-meta-box.php:155
|
1082 |
+
#, fuzzy
|
1083 |
+
msgid "Time Format (site wide option):"
|
1084 |
+
msgstr "Tijdnotatie (over de gehele site):"
|
1085 |
+
|
1086 |
+
#: views/events-meta-box.php:158
|
1087 |
+
msgid "12 Hour"
|
1088 |
+
msgstr "12 uur"
|
1089 |
+
|
1090 |
+
#: views/events-meta-box.php:160
|
1091 |
+
msgid "24 Hour"
|
1092 |
+
msgstr "24 uur"
|
1093 |
+
|
1094 |
+
#: views/events-meta-box.php:164
|
1095 |
+
msgid "Start Date / Time:"
|
1096 |
+
msgstr "Start datum/tijd:"
|
1097 |
+
|
1098 |
+
#: views/events-meta-box.php:178
|
1099 |
+
#: views/events-meta-box.php:206
|
1100 |
+
msgid "@"
|
1101 |
+
msgstr "@"
|
1102 |
+
|
1103 |
+
#: views/events-meta-box.php:192
|
1104 |
+
msgid "End Date / Time:"
|
1105 |
+
msgstr "Eind datum/tijd:"
|
1106 |
+
|
1107 |
+
#: views/events-meta-box.php:220
|
1108 |
+
msgid "Event Location Details"
|
1109 |
+
msgstr "Evenement locatie details"
|
1110 |
+
|
1111 |
+
#: views/events-meta-box.php:223
|
1112 |
+
#: views/list.php:43
|
1113 |
+
#: views/single.php:24
|
1114 |
+
#, fuzzy
|
1115 |
+
msgid "Venue:"
|
1116 |
+
msgstr "Locatie:"
|
1117 |
+
|
1118 |
+
#: views/events-meta-box.php:229
|
1119 |
+
msgid "Country:"
|
1120 |
+
msgstr "Land:"
|
1121 |
+
|
1122 |
+
#: views/events-meta-box.php:246
|
1123 |
+
#: views/list.php:61
|
1124 |
+
#: views/single.php:28
|
1125 |
+
msgid "Address:"
|
1126 |
+
msgstr "Adres:"
|
1127 |
+
|
1128 |
+
#: views/events-meta-box.php:250
|
1129 |
+
msgid "City:"
|
1130 |
+
msgstr "Stad:"
|
1131 |
+
|
1132 |
+
#: views/events-meta-box.php:254
|
1133 |
+
msgid "Province:"
|
1134 |
+
msgstr "Provincie:"
|
1135 |
+
|
1136 |
+
#: views/events-meta-box.php:258
|
1137 |
+
msgid "State:"
|
1138 |
+
msgstr "Staat:"
|
1139 |
+
|
1140 |
+
#: views/events-meta-box.php:261
|
1141 |
+
msgid "Select a State:"
|
1142 |
+
msgstr "Selecteer een staat:"
|
1143 |
+
|
1144 |
+
#: views/events-meta-box.php:263
|
1145 |
+
msgid "Alabama"
|
1146 |
+
msgstr ""
|
1147 |
+
|
1148 |
+
#: views/events-meta-box.php:264
|
1149 |
+
msgid "Alaska"
|
1150 |
+
msgstr ""
|
1151 |
+
|
1152 |
+
#: views/events-meta-box.php:265
|
1153 |
+
msgid "Arizona"
|
1154 |
+
msgstr ""
|
1155 |
+
|
1156 |
+
#: views/events-meta-box.php:266
|
1157 |
+
msgid "Arkansas"
|
1158 |
+
msgstr ""
|
1159 |
+
|
1160 |
+
#: views/events-meta-box.php:267
|
1161 |
+
msgid "California"
|
1162 |
+
msgstr ""
|
1163 |
+
|
1164 |
+
#: views/events-meta-box.php:268
|
1165 |
+
msgid "Colorado"
|
1166 |
+
msgstr ""
|
1167 |
+
|
1168 |
+
#: views/events-meta-box.php:269
|
1169 |
+
msgid "Connecticut"
|
1170 |
+
msgstr ""
|
1171 |
+
|
1172 |
+
#: views/events-meta-box.php:270
|
1173 |
+
msgid "Delaware"
|
1174 |
+
msgstr ""
|
1175 |
+
|
1176 |
+
#: views/events-meta-box.php:271
|
1177 |
+
msgid "District of Columbia"
|
1178 |
+
msgstr ""
|
1179 |
+
|
1180 |
+
#: views/events-meta-box.php:272
|
1181 |
+
msgid "Florida"
|
1182 |
+
msgstr ""
|
1183 |
+
|
1184 |
+
#: views/events-meta-box.php:274
|
1185 |
+
msgid "Hawaii"
|
1186 |
+
msgstr ""
|
1187 |
+
|
1188 |
+
#: views/events-meta-box.php:275
|
1189 |
+
msgid "Idaho"
|
1190 |
+
msgstr ""
|
1191 |
+
|
1192 |
+
#: views/events-meta-box.php:276
|
1193 |
+
msgid "Illinois"
|
1194 |
+
msgstr ""
|
1195 |
+
|
1196 |
+
#: views/events-meta-box.php:277
|
1197 |
+
msgid "Indiana"
|
1198 |
+
msgstr ""
|
1199 |
+
|
1200 |
+
#: views/events-meta-box.php:278
|
1201 |
+
msgid "Iowa"
|
1202 |
+
msgstr ""
|
1203 |
+
|
1204 |
+
#: views/events-meta-box.php:279
|
1205 |
+
msgid "Kansas"
|
1206 |
+
msgstr ""
|
1207 |
+
|
1208 |
+
#: views/events-meta-box.php:280
|
1209 |
+
msgid "Kentucky"
|
1210 |
+
msgstr ""
|
1211 |
+
|
1212 |
+
#: views/events-meta-box.php:281
|
1213 |
+
msgid "Louisiana"
|
1214 |
+
msgstr ""
|
1215 |
+
|
1216 |
+
#: views/events-meta-box.php:282
|
1217 |
+
msgid "Maine"
|
1218 |
+
msgstr ""
|
1219 |
+
|
1220 |
+
#: views/events-meta-box.php:283
|
1221 |
+
msgid "Maryland"
|
1222 |
+
msgstr ""
|
1223 |
+
|
1224 |
+
#: views/events-meta-box.php:284
|
1225 |
+
msgid "Massachusetts"
|
1226 |
+
msgstr ""
|
1227 |
+
|
1228 |
+
#: views/events-meta-box.php:285
|
1229 |
+
msgid "Michigan"
|
1230 |
+
msgstr ""
|
1231 |
+
|
1232 |
+
#: views/events-meta-box.php:286
|
1233 |
+
msgid "Minnesota"
|
1234 |
+
msgstr ""
|
1235 |
+
|
1236 |
+
#: views/events-meta-box.php:287
|
1237 |
+
msgid "Mississippi"
|
1238 |
+
msgstr ""
|
1239 |
+
|
1240 |
+
#: views/events-meta-box.php:288
|
1241 |
+
msgid "Missouri"
|
1242 |
+
msgstr ""
|
1243 |
+
|
1244 |
+
#: views/events-meta-box.php:289
|
1245 |
+
msgid "Montana"
|
1246 |
+
msgstr ""
|
1247 |
+
|
1248 |
+
#: views/events-meta-box.php:290
|
1249 |
+
msgid "Nebraska"
|
1250 |
+
msgstr ""
|
1251 |
+
|
1252 |
+
#: views/events-meta-box.php:291
|
1253 |
+
msgid "Nevada"
|
1254 |
+
msgstr ""
|
1255 |
+
|
1256 |
+
#: views/events-meta-box.php:292
|
1257 |
+
msgid "New Hampshire"
|
1258 |
+
msgstr ""
|
1259 |
+
|
1260 |
+
#: views/events-meta-box.php:293
|
1261 |
+
msgid "New Jersey"
|
1262 |
+
msgstr ""
|
1263 |
+
|
1264 |
+
#: views/events-meta-box.php:294
|
1265 |
+
msgid "New Mexico"
|
1266 |
+
msgstr ""
|
1267 |
+
|
1268 |
+
#: views/events-meta-box.php:295
|
1269 |
+
msgid "New York"
|
1270 |
+
msgstr ""
|
1271 |
+
|
1272 |
+
#: views/events-meta-box.php:296
|
1273 |
+
msgid "North Carolina"
|
1274 |
+
msgstr ""
|
1275 |
+
|
1276 |
+
#: views/events-meta-box.php:297
|
1277 |
+
msgid "North Dakota"
|
1278 |
+
msgstr ""
|
1279 |
+
|
1280 |
+
#: views/events-meta-box.php:298
|
1281 |
+
msgid "Ohio"
|
1282 |
+
msgstr ""
|
1283 |
+
|
1284 |
+
#: views/events-meta-box.php:299
|
1285 |
+
msgid "Oklahoma"
|
1286 |
+
msgstr ""
|
1287 |
+
|
1288 |
+
#: views/events-meta-box.php:300
|
1289 |
+
msgid "Oregon"
|
1290 |
+
msgstr ""
|
1291 |
+
|
1292 |
+
#: views/events-meta-box.php:301
|
1293 |
+
msgid "Pennsylvania"
|
1294 |
+
msgstr ""
|
1295 |
+
|
1296 |
+
#: views/events-meta-box.php:302
|
1297 |
+
msgid "Rhode Island"
|
1298 |
+
msgstr ""
|
1299 |
+
|
1300 |
+
#: views/events-meta-box.php:303
|
1301 |
+
msgid "South Carolina"
|
1302 |
+
msgstr ""
|
1303 |
+
|
1304 |
+
#: views/events-meta-box.php:304
|
1305 |
+
msgid "South Dakota"
|
1306 |
+
msgstr ""
|
1307 |
+
|
1308 |
+
#: views/events-meta-box.php:305
|
1309 |
+
msgid "Tennessee"
|
1310 |
+
msgstr ""
|
1311 |
+
|
1312 |
+
#: views/events-meta-box.php:306
|
1313 |
+
msgid "Texas"
|
1314 |
+
msgstr ""
|
1315 |
+
|
1316 |
+
#: views/events-meta-box.php:307
|
1317 |
+
msgid "Utah"
|
1318 |
+
msgstr ""
|
1319 |
+
|
1320 |
+
#: views/events-meta-box.php:308
|
1321 |
+
msgid "Vermont"
|
1322 |
+
msgstr ""
|
1323 |
+
|
1324 |
+
#: views/events-meta-box.php:309
|
1325 |
+
msgid "Virginia"
|
1326 |
+
msgstr ""
|
1327 |
+
|
1328 |
+
#: views/events-meta-box.php:310
|
1329 |
+
msgid "Washington"
|
1330 |
+
msgstr ""
|
1331 |
+
|
1332 |
+
#: views/events-meta-box.php:311
|
1333 |
+
msgid "West Virginia"
|
1334 |
+
msgstr ""
|
1335 |
+
|
1336 |
+
#: views/events-meta-box.php:312
|
1337 |
+
msgid "Wisconsin"
|
1338 |
+
msgstr ""
|
1339 |
+
|
1340 |
+
#: views/events-meta-box.php:313
|
1341 |
+
msgid "Wyoming"
|
1342 |
+
msgstr ""
|
1343 |
+
|
1344 |
+
#: views/events-meta-box.php:327
|
1345 |
+
msgid "Postal Code:"
|
1346 |
+
msgstr "Postcode:"
|
1347 |
+
|
1348 |
+
#: views/events-meta-box.php:331
|
1349 |
+
#: views/list.php:52
|
1350 |
+
msgid "Phone:"
|
1351 |
+
msgstr "Telefoon:"
|
1352 |
+
|
1353 |
+
#: views/events-meta-box.php:335
|
1354 |
+
msgid "Event Cost"
|
1355 |
+
msgstr "Evenement kosten"
|
1356 |
+
|
1357 |
+
#: views/events-meta-box.php:338
|
1358 |
+
#: views/list.php:70
|
1359 |
+
#: views/single.php:18
|
1360 |
+
msgid "Cost:"
|
1361 |
+
msgstr "Kosten:"
|
1362 |
+
|
1363 |
+
#: views/events-meta-box.php:343
|
1364 |
+
msgid "Leave blank to hide the field. Enter a 0 for events that are free."
|
1365 |
+
msgstr "Leeg laten om veld te verbergen. Vul 0 in voor gratis evenementen."
|
1366 |
+
|
1367 |
+
#: views/events-meta-box.php:347
|
1368 |
+
msgid "Sell Tickets & Track Registration"
|
1369 |
+
msgstr ""
|
1370 |
+
|
1371 |
+
#: views/events-meta-box.php:352
|
1372 |
+
msgid "Interested in selling tickets and tracking registrations? Now you can do it for free using our <a href=\"http://wordpress.org/extend/plugins/eventbrite-for-the-events-calendar/\">Eventbrite Integration Plugin</a>. Eventbrite is a feature rich easy-to-use event management tool. \"Wow, you're selling Eventbrite pretty hard. You must get a kickback.\" Well, now that you mention it... we do. We get a little something for everyone that registers an event using our referral link. It's how we're able to keep supporting and building plugins for the open source community. "
|
1373 |
+
msgstr ""
|
1374 |
+
|
1375 |
+
#: views/events-meta-box.php:352
|
1376 |
+
msgid "Check it out here."
|
1377 |
+
msgstr ""
|
1378 |
+
|
1379 |
+
#: views/events-meta-box.php:363
|
1380 |
+
msgid ""
|
1381 |
+
"<h4>If You Like This Plugin - Help Support It</h4>\r\n"
|
1382 |
+
"\t\t\t\t<p>We spend a lot of time and effort building robust plugins and we love to share them with the community. If you use this plugin consider making a donation to help support its' continued development. You may remove this message on the <a href=\"/wp-admin/options-general.php?page=the-events-calendar.php\">settings page</a>.</p>"
|
1383 |
+
msgstr ""
|
1384 |
+
|
1385 |
+
#: views/events-meta-box.php:366
|
1386 |
+
msgid "Thanks"
|
1387 |
+
msgstr ""
|
1388 |
+
|
1389 |
+
#: views/events-meta-box.php:367
|
1390 |
+
msgid "Shane & Peter"
|
1391 |
+
msgstr ""
|
1392 |
+
|
1393 |
+
#: views/events-meta-box.php:368
|
1394 |
+
msgid "www.shaneandpeter.com"
|
1395 |
+
msgstr ""
|
1396 |
+
|
1397 |
+
#: views/events-options.php:47
|
1398 |
+
msgid "The Events Calendar Settings"
|
1399 |
+
msgstr ""
|
1400 |
+
|
1401 |
+
#: views/events-options.php:49
|
1402 |
+
msgid "Need a hand?"
|
1403 |
+
msgstr ""
|
1404 |
+
|
1405 |
+
#: views/events-options.php:50
|
1406 |
+
msgid "If you're stuck on these options, please <a href=\"http://wordpress.org/extend/plugins/the-events-calendar/\">check out the documentation</a>. If you're still wondering what's going on, be sure to stop by the support <a href=\"http://wordpress.org/tags/the-events-calendar?forum_id=10\">forum</a> and ask for help. The open source community is full of kind folks who are happy to help."
|
1407 |
+
msgstr ""
|
1408 |
+
|
1409 |
+
#: views/events-options.php:53
|
1410 |
+
msgid "Donate"
|
1411 |
+
msgstr ""
|
1412 |
+
|
1413 |
+
#: views/events-options.php:62
|
1414 |
+
msgid "If you find this plugin useful, please consider donating to the producer of it, Shane & Peter, Inc. Thank you!"
|
1415 |
+
msgstr ""
|
1416 |
+
|
1417 |
+
#: views/events-options.php:66
|
1418 |
+
msgid "I have already donated, so please hide this button!"
|
1419 |
+
msgstr ""
|
1420 |
+
|
1421 |
+
#: views/events-options.php:93
|
1422 |
+
#: views/events-options.php:97
|
1423 |
+
msgid "Default View for the Events"
|
1424 |
+
msgstr "Standaardweergave voor evenementen"
|
1425 |
+
|
1426 |
+
#: views/events-options.php:109
|
1427 |
+
#: views/gridview.php:13
|
1428 |
+
#: views/list.php:10
|
1429 |
+
msgid "Calendar"
|
1430 |
+
msgstr "Kalender"
|
1431 |
+
|
1432 |
+
#: views/events-options.php:113
|
1433 |
+
#: views/gridview.php:12
|
1434 |
+
#: views/list.php:9
|
1435 |
+
msgid "Event List"
|
1436 |
+
msgstr "Evenementen lijst"
|
1437 |
+
|
1438 |
+
#: views/events-options.php:119
|
1439 |
+
#: views/events-options.php:123
|
1440 |
+
msgid "Show Comments"
|
1441 |
+
msgstr "Commentaren weergeven"
|
1442 |
+
|
1443 |
+
#: views/events-options.php:145
|
1444 |
+
msgid "Default Country for Events"
|
1445 |
+
msgstr "Standaard land voor evenementen"
|
1446 |
+
|
1447 |
+
#: views/events-options.php:170
|
1448 |
+
#: views/events-options.php:174
|
1449 |
+
msgid "Embed Google Maps"
|
1450 |
+
msgstr "Google Maps embedden"
|
1451 |
+
|
1452 |
+
#: views/events-options.php:188
|
1453 |
+
msgid "Off"
|
1454 |
+
msgstr "Uit"
|
1455 |
+
|
1456 |
+
#: views/events-options.php:192
|
1457 |
+
msgid "On"
|
1458 |
+
msgstr "Aan"
|
1459 |
+
|
1460 |
+
#: views/events-options.php:195
|
1461 |
+
msgid "Height"
|
1462 |
+
msgstr "Hoogte"
|
1463 |
+
|
1464 |
+
#: views/events-options.php:196
|
1465 |
+
msgid "Width"
|
1466 |
+
msgstr "Breedte"
|
1467 |
+
|
1468 |
+
#: views/events-options.php:196
|
1469 |
+
#, fuzzy
|
1470 |
+
msgid "(number or %)"
|
1471 |
+
msgstr "(aantal of %)"
|
1472 |
+
|
1473 |
+
#: views/gridview.php:7
|
1474 |
+
#: views/list.php:7
|
1475 |
+
#, fuzzy
|
1476 |
+
msgid "Calendar of Events"
|
1477 |
+
msgstr "Kalender met evenementen"
|
1478 |
+
|
1479 |
+
#: views/list.php:31
|
1480 |
+
#: views/single.php:11
|
1481 |
+
msgid "Start:"
|
1482 |
+
msgstr "Start:"
|
1483 |
+
|
1484 |
+
#: views/list.php:35
|
1485 |
+
#: views/single.php:14
|
1486 |
+
msgid "End:"
|
1487 |
+
msgstr "Einde:"
|
1488 |
+
|
1489 |
+
#: views/list.php:61
|
1490 |
+
#: views/single.php:28
|
1491 |
+
msgid "Google Map"
|
1492 |
+
msgstr "Google Map"
|
1493 |
+
|
1494 |
+
#: views/list.php:92
|
1495 |
+
msgid "« Previous Events"
|
1496 |
+
msgstr "« Vorige evenementen"
|
1497 |
+
|
1498 |
+
#: views/list.php:105
|
1499 |
+
msgid "Next Events »"
|
1500 |
+
msgstr "Volgende evenementen »"
|
1501 |
+
|
1502 |
+
#: views/single.php:6
|
1503 |
+
msgid "« Back to Events"
|
1504 |
+
msgstr "« Terug naar evenementen"
|
1505 |
+
|
1506 |
+
#: views/single.php:8
|
1507 |
+
#, fuzzy
|
1508 |
+
msgid "This event has passed."
|
1509 |
+
msgstr "Dit evenement is al geweest."
|
1510 |
+
|
1511 |
+
#: views/table.php:12
|
1512 |
+
msgid "Sunday"
|
1513 |
+
msgstr "Zondag"
|
1514 |
+
|
1515 |
+
#: views/table.php:12
|
1516 |
+
msgid "Sun"
|
1517 |
+
msgstr "Zo"
|
1518 |
+
|
1519 |
+
#: views/table.php:13
|
1520 |
+
msgid "Monday"
|
1521 |
+
msgstr "Maandag"
|
1522 |
+
|
1523 |
+
#: views/table.php:13
|
1524 |
+
msgid "Mon"
|
1525 |
+
msgstr "Ma"
|
1526 |
+
|
1527 |
+
#: views/table.php:14
|
1528 |
+
msgid "Tuesday"
|
1529 |
+
msgstr "Dinsdag"
|
1530 |
+
|
1531 |
+
#: views/table.php:14
|
1532 |
+
msgid "Tue"
|
1533 |
+
msgstr "Di"
|
1534 |
+
|
1535 |
+
#: views/table.php:15
|
1536 |
+
msgid "Wednesday"
|
1537 |
+
msgstr "Woensdag"
|
1538 |
+
|
1539 |
+
#: views/table.php:15
|
1540 |
+
msgid "Wed"
|
1541 |
+
msgstr "Wo"
|
1542 |
+
|
1543 |
+
#: views/table.php:16
|
1544 |
+
msgid "Thursday"
|
1545 |
+
msgstr "Donderdag"
|
1546 |
+
|
1547 |
+
#: views/table.php:16
|
1548 |
+
msgid "Thu"
|
1549 |
+
msgstr "Do"
|
1550 |
+
|
1551 |
+
#: views/table.php:17
|
1552 |
+
msgid "Friday"
|
1553 |
+
msgstr "Vrijdag"
|
1554 |
+
|
1555 |
+
#: views/table.php:17
|
1556 |
+
msgid "Fri"
|
1557 |
+
msgstr "Vr"
|
1558 |
+
|
1559 |
+
#: views/table.php:18
|
1560 |
+
msgid "Saturday"
|
1561 |
+
msgstr "Zaterdag"
|
1562 |
+
|
1563 |
+
#: views/table.php:18
|
1564 |
+
msgid "Sat"
|
1565 |
+
msgstr "Za"
|
1566 |
+
|
1567 |
+
#. Plugin Name of an extension
|
1568 |
+
msgid "The Events Calendar"
|
1569 |
+
msgstr "The Events Calendar"
|
1570 |
+
|
1571 |
+
#. Plugin URI of an extension
|
1572 |
+
msgid "http://wordpress.org/extend/plugins/the-events-calendar/"
|
1573 |
+
msgstr "http://wordpress.org/extend/plugins/the-events-calendar/"
|
1574 |
+
|
1575 |
+
#. Description of an extension
|
1576 |
+
msgid "The Events Calendar plugin enables you to rapidly create and manage events using the post editor. Features include optional Eventbrite integration, Google Maps integration as well as default calendar grid and list templates for streamlined one click installation."
|
1577 |
+
msgstr ""
|
1578 |
+
|
1579 |
+
#. Author of an extension
|
1580 |
+
msgid "Shane & Peter, Inc."
|
1581 |
+
msgstr "Shane & Peter, Inc."
|
1582 |
+
|
1583 |
+
#. Author URI of an extension
|
1584 |
+
msgid "http://www.shaneandpeter.com/"
|
1585 |
+
msgstr "http://www.shaneandpeter.com/"
|
1586 |
+
|
lang/the-events-calendar-pt_BR.mo
ADDED
Binary file
|
lang/the-events-calendar-pt_BR.po
ADDED
@@ -0,0 +1,1615 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: The Events Calendar 1.5.4\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/the-events-calendar\n"
|
5 |
+
"POT-Creation-Date: 2010-02-16 02:03+0000\n"
|
6 |
+
"PO-Revision-Date: 2010-03-02 22:04-0300\n"
|
7 |
+
"Last-Translator: Thiago <thiago_abdalla@hotmail.com>\n"
|
8 |
+
"Language-Team: Thiago Abdalla <thiago_abdalla@hotmail.com>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-Language: Portuguese\n"
|
13 |
+
"X-Poedit-Country: BRAZIL\n"
|
14 |
+
|
15 |
+
#: the-events-calendar.php:54
|
16 |
+
msgid "United States"
|
17 |
+
msgstr ""
|
18 |
+
|
19 |
+
#: the-events-calendar.php:55
|
20 |
+
msgid "Afghanistan"
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: the-events-calendar.php:56
|
24 |
+
msgid "Albania"
|
25 |
+
msgstr ""
|
26 |
+
|
27 |
+
#: the-events-calendar.php:57
|
28 |
+
msgid "Algeria"
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: the-events-calendar.php:58
|
32 |
+
msgid "American Samoa"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: the-events-calendar.php:59
|
36 |
+
msgid "Andorra"
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: the-events-calendar.php:60
|
40 |
+
msgid "Angola"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: the-events-calendar.php:61
|
44 |
+
msgid "Anguilla"
|
45 |
+
msgstr ""
|
46 |
+
|
47 |
+
#: the-events-calendar.php:62
|
48 |
+
msgid "Antarctica"
|
49 |
+
msgstr ""
|
50 |
+
|
51 |
+
#: the-events-calendar.php:63
|
52 |
+
msgid "Antigua And Barbuda"
|
53 |
+
msgstr ""
|
54 |
+
|
55 |
+
#: the-events-calendar.php:64
|
56 |
+
msgid "Argentina"
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: the-events-calendar.php:65
|
60 |
+
msgid "Armenia"
|
61 |
+
msgstr ""
|
62 |
+
|
63 |
+
#: the-events-calendar.php:66
|
64 |
+
msgid "Aruba"
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: the-events-calendar.php:67
|
68 |
+
msgid "Australia"
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: the-events-calendar.php:68
|
72 |
+
msgid "Austria"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: the-events-calendar.php:69
|
76 |
+
msgid "Azerbaijan"
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: the-events-calendar.php:70
|
80 |
+
msgid "Bahamas"
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: the-events-calendar.php:71
|
84 |
+
msgid "Bahrain"
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: the-events-calendar.php:72
|
88 |
+
msgid "Bangladesh"
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: the-events-calendar.php:73
|
92 |
+
msgid "Barbados"
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: the-events-calendar.php:74
|
96 |
+
msgid "Belarus"
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: the-events-calendar.php:75
|
100 |
+
msgid "Belgium"
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: the-events-calendar.php:76
|
104 |
+
msgid "Belize"
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: the-events-calendar.php:77
|
108 |
+
msgid "Benin"
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: the-events-calendar.php:78
|
112 |
+
msgid "Bermuda"
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: the-events-calendar.php:79
|
116 |
+
msgid "Bhutan"
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: the-events-calendar.php:80
|
120 |
+
msgid "Bolivia"
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: the-events-calendar.php:81
|
124 |
+
msgid "Bosnia And Herzegowina"
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: the-events-calendar.php:82
|
128 |
+
msgid "Botswana"
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: the-events-calendar.php:83
|
132 |
+
msgid "Bouvet Island"
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: the-events-calendar.php:84
|
136 |
+
msgid "Brazil"
|
137 |
+
msgstr "Brasil"
|
138 |
+
|
139 |
+
#: the-events-calendar.php:85
|
140 |
+
msgid "British Indian Ocean Territory"
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: the-events-calendar.php:86
|
144 |
+
msgid "Brunei Darussalam"
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: the-events-calendar.php:87
|
148 |
+
msgid "Bulgaria"
|
149 |
+
msgstr ""
|
150 |
+
|
151 |
+
#: the-events-calendar.php:88
|
152 |
+
msgid "Burkina Faso"
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: the-events-calendar.php:89
|
156 |
+
msgid "Burundi"
|
157 |
+
msgstr ""
|
158 |
+
|
159 |
+
#: the-events-calendar.php:90
|
160 |
+
msgid "Cambodia"
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: the-events-calendar.php:91
|
164 |
+
msgid "Cameroon"
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: the-events-calendar.php:92
|
168 |
+
msgid "Canada"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: the-events-calendar.php:93
|
172 |
+
msgid "Cape Verde"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: the-events-calendar.php:94
|
176 |
+
msgid "Cayman Islands"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: the-events-calendar.php:95
|
180 |
+
msgid "Central African Republic"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: the-events-calendar.php:96
|
184 |
+
msgid "Chad"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: the-events-calendar.php:97
|
188 |
+
msgid "Chile"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: the-events-calendar.php:98
|
192 |
+
msgid "China"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: the-events-calendar.php:99
|
196 |
+
msgid "Christmas Island"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: the-events-calendar.php:100
|
200 |
+
msgid "Cocos (Keeling) Islands"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: the-events-calendar.php:101
|
204 |
+
msgid "Colombia"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: the-events-calendar.php:102
|
208 |
+
msgid "Comoros"
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: the-events-calendar.php:103
|
212 |
+
msgid "Congo"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: the-events-calendar.php:104
|
216 |
+
msgid "Congo, The Democratic Republic Of The"
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: the-events-calendar.php:105
|
220 |
+
msgid "Cook Islands"
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: the-events-calendar.php:106
|
224 |
+
msgid "Costa Rica"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: the-events-calendar.php:107
|
228 |
+
msgid "Cote D'Ivoire"
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: the-events-calendar.php:108
|
232 |
+
msgid "Croatia (Local Name: Hrvatska)"
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: the-events-calendar.php:109
|
236 |
+
msgid "Cuba"
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
#: the-events-calendar.php:110
|
240 |
+
msgid "Cyprus"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: the-events-calendar.php:111
|
244 |
+
msgid "Czech Republic"
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
+
#: the-events-calendar.php:112
|
248 |
+
msgid "Denmark"
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#: the-events-calendar.php:113
|
252 |
+
msgid "Djibouti"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: the-events-calendar.php:114
|
256 |
+
msgid "Dominica"
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: the-events-calendar.php:115
|
260 |
+
msgid "Dominican Republic"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: the-events-calendar.php:116
|
264 |
+
msgid "East Timor"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: the-events-calendar.php:117
|
268 |
+
msgid "Ecuador"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: the-events-calendar.php:118
|
272 |
+
msgid "Egypt"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: the-events-calendar.php:119
|
276 |
+
msgid "El Salvador"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: the-events-calendar.php:120
|
280 |
+
msgid "Equatorial Guinea"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: the-events-calendar.php:121
|
284 |
+
msgid "Eritrea"
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: the-events-calendar.php:122
|
288 |
+
msgid "Estonia"
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: the-events-calendar.php:123
|
292 |
+
msgid "Ethiopia"
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: the-events-calendar.php:124
|
296 |
+
msgid "Falkland Islands (Malvinas)"
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: the-events-calendar.php:125
|
300 |
+
msgid "Faroe Islands"
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: the-events-calendar.php:126
|
304 |
+
msgid "Fiji"
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: the-events-calendar.php:127
|
308 |
+
msgid "Finland"
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: the-events-calendar.php:128
|
312 |
+
msgid "France"
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
#: the-events-calendar.php:129
|
316 |
+
msgid "France, Metropolitan"
|
317 |
+
msgstr ""
|
318 |
+
|
319 |
+
#: the-events-calendar.php:130
|
320 |
+
msgid "French Guiana"
|
321 |
+
msgstr ""
|
322 |
+
|
323 |
+
#: the-events-calendar.php:131
|
324 |
+
msgid "French Polynesia"
|
325 |
+
msgstr ""
|
326 |
+
|
327 |
+
#: the-events-calendar.php:132
|
328 |
+
msgid "French Southern Territories"
|
329 |
+
msgstr ""
|
330 |
+
|
331 |
+
#: the-events-calendar.php:133
|
332 |
+
msgid "Gabon"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
+
#: the-events-calendar.php:134
|
336 |
+
msgid "Gambia"
|
337 |
+
msgstr ""
|
338 |
+
|
339 |
+
#: the-events-calendar.php:135
|
340 |
+
#: views/events-meta-box.php:282
|
341 |
+
msgid "Georgia"
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: the-events-calendar.php:136
|
345 |
+
msgid "Germany"
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
#: the-events-calendar.php:137
|
349 |
+
msgid "Ghana"
|
350 |
+
msgstr ""
|
351 |
+
|
352 |
+
#: the-events-calendar.php:138
|
353 |
+
msgid "Gibraltar"
|
354 |
+
msgstr ""
|
355 |
+
|
356 |
+
#: the-events-calendar.php:139
|
357 |
+
msgid "Greece"
|
358 |
+
msgstr ""
|
359 |
+
|
360 |
+
#: the-events-calendar.php:140
|
361 |
+
msgid "Greenland"
|
362 |
+
msgstr ""
|
363 |
+
|
364 |
+
#: the-events-calendar.php:141
|
365 |
+
msgid "Grenada"
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
#: the-events-calendar.php:142
|
369 |
+
msgid "Guadeloupe"
|
370 |
+
msgstr ""
|
371 |
+
|
372 |
+
#: the-events-calendar.php:143
|
373 |
+
msgid "Guam"
|
374 |
+
msgstr ""
|
375 |
+
|
376 |
+
#: the-events-calendar.php:144
|
377 |
+
msgid "Guatemala"
|
378 |
+
msgstr ""
|
379 |
+
|
380 |
+
#: the-events-calendar.php:145
|
381 |
+
msgid "Guinea"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: the-events-calendar.php:146
|
385 |
+
msgid "Guinea-Bissau"
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: the-events-calendar.php:147
|
389 |
+
msgid "Guyana"
|
390 |
+
msgstr ""
|
391 |
+
|
392 |
+
#: the-events-calendar.php:148
|
393 |
+
msgid "Haiti"
|
394 |
+
msgstr ""
|
395 |
+
|
396 |
+
#: the-events-calendar.php:149
|
397 |
+
msgid "Heard And Mc Donald Islands"
|
398 |
+
msgstr ""
|
399 |
+
|
400 |
+
#: the-events-calendar.php:150
|
401 |
+
msgid "Holy See (Vatican City State)"
|
402 |
+
msgstr ""
|
403 |
+
|
404 |
+
#: the-events-calendar.php:151
|
405 |
+
msgid "Honduras"
|
406 |
+
msgstr ""
|
407 |
+
|
408 |
+
#: the-events-calendar.php:152
|
409 |
+
msgid "Hong Kong"
|
410 |
+
msgstr ""
|
411 |
+
|
412 |
+
#: the-events-calendar.php:153
|
413 |
+
msgid "Hungary"
|
414 |
+
msgstr ""
|
415 |
+
|
416 |
+
#: the-events-calendar.php:154
|
417 |
+
msgid "Iceland"
|
418 |
+
msgstr ""
|
419 |
+
|
420 |
+
#: the-events-calendar.php:155
|
421 |
+
msgid "India"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
#: the-events-calendar.php:156
|
425 |
+
msgid "Indonesia"
|
426 |
+
msgstr ""
|
427 |
+
|
428 |
+
#: the-events-calendar.php:157
|
429 |
+
msgid "Iran (Islamic Republic Of)"
|
430 |
+
msgstr ""
|
431 |
+
|
432 |
+
#: the-events-calendar.php:158
|
433 |
+
msgid "Iraq"
|
434 |
+
msgstr ""
|
435 |
+
|
436 |
+
#: the-events-calendar.php:159
|
437 |
+
msgid "Ireland"
|
438 |
+
msgstr ""
|
439 |
+
|
440 |
+
#: the-events-calendar.php:160
|
441 |
+
msgid "Israel"
|
442 |
+
msgstr ""
|
443 |
+
|
444 |
+
#: the-events-calendar.php:161
|
445 |
+
msgid "Italy"
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: the-events-calendar.php:162
|
449 |
+
msgid "Jamaica"
|
450 |
+
msgstr ""
|
451 |
+
|
452 |
+
#: the-events-calendar.php:163
|
453 |
+
msgid "Japan"
|
454 |
+
msgstr ""
|
455 |
+
|
456 |
+
#: the-events-calendar.php:164
|
457 |
+
msgid "Jordan"
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: the-events-calendar.php:165
|
461 |
+
msgid "Kazakhstan"
|
462 |
+
msgstr ""
|
463 |
+
|
464 |
+
#: the-events-calendar.php:166
|
465 |
+
msgid "Kenya"
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: the-events-calendar.php:167
|
469 |
+
msgid "Kiribati"
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: the-events-calendar.php:168
|
473 |
+
msgid "Korea, Democratic People's Republic Of"
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: the-events-calendar.php:169
|
477 |
+
msgid "Korea, Republic Of"
|
478 |
+
msgstr ""
|
479 |
+
|
480 |
+
#: the-events-calendar.php:170
|
481 |
+
msgid "Kuwait"
|
482 |
+
msgstr ""
|
483 |
+
|
484 |
+
#: the-events-calendar.php:171
|
485 |
+
msgid "Kyrgyzstan"
|
486 |
+
msgstr ""
|
487 |
+
|
488 |
+
#: the-events-calendar.php:172
|
489 |
+
msgid "Lao People's Democratic Republic"
|
490 |
+
msgstr ""
|
491 |
+
|
492 |
+
#: the-events-calendar.php:173
|
493 |
+
msgid "Latvia"
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: the-events-calendar.php:174
|
497 |
+
msgid "Lebanon"
|
498 |
+
msgstr ""
|
499 |
+
|
500 |
+
#: the-events-calendar.php:175
|
501 |
+
msgid "Lesotho"
|
502 |
+
msgstr ""
|
503 |
+
|
504 |
+
#: the-events-calendar.php:176
|
505 |
+
msgid "Liberia"
|
506 |
+
msgstr ""
|
507 |
+
|
508 |
+
#: the-events-calendar.php:177
|
509 |
+
msgid "Libyan Arab Jamahiriya"
|
510 |
+
msgstr ""
|
511 |
+
|
512 |
+
#: the-events-calendar.php:178
|
513 |
+
msgid "Liechtenstein"
|
514 |
+
msgstr ""
|
515 |
+
|
516 |
+
#: the-events-calendar.php:179
|
517 |
+
msgid "Lithuania"
|
518 |
+
msgstr ""
|
519 |
+
|
520 |
+
#: the-events-calendar.php:180
|
521 |
+
msgid "Luxembourg"
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#: the-events-calendar.php:181
|
525 |
+
msgid "Macau"
|
526 |
+
msgstr ""
|
527 |
+
|
528 |
+
#: the-events-calendar.php:182
|
529 |
+
msgid "Macedonia, Former Yugoslav Republic Of"
|
530 |
+
msgstr ""
|
531 |
+
|
532 |
+
#: the-events-calendar.php:183
|
533 |
+
msgid "Madagascar"
|
534 |
+
msgstr ""
|
535 |
+
|
536 |
+
#: the-events-calendar.php:184
|
537 |
+
msgid "Malawi"
|
538 |
+
msgstr ""
|
539 |
+
|
540 |
+
#: the-events-calendar.php:185
|
541 |
+
msgid "Malaysia"
|
542 |
+
msgstr ""
|
543 |
+
|
544 |
+
#: the-events-calendar.php:186
|
545 |
+
msgid "Maldives"
|
546 |
+
msgstr ""
|
547 |
+
|
548 |
+
#: the-events-calendar.php:187
|
549 |
+
msgid "Mali"
|
550 |
+
msgstr ""
|
551 |
+
|
552 |
+
#: the-events-calendar.php:188
|
553 |
+
msgid "Malta"
|
554 |
+
msgstr ""
|
555 |
+
|
556 |
+
#: the-events-calendar.php:189
|
557 |
+
msgid "Marshall Islands"
|
558 |
+
msgstr ""
|
559 |
+
|
560 |
+
#: the-events-calendar.php:190
|
561 |
+
msgid "Martinique"
|
562 |
+
msgstr ""
|
563 |
+
|
564 |
+
#: the-events-calendar.php:191
|
565 |
+
msgid "Mauritania"
|
566 |
+
msgstr ""
|
567 |
+
|
568 |
+
#: the-events-calendar.php:192
|
569 |
+
msgid "Mauritius"
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: the-events-calendar.php:193
|
573 |
+
msgid "Mayotte"
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
#: the-events-calendar.php:194
|
577 |
+
msgid "Mexico"
|
578 |
+
msgstr ""
|
579 |
+
|
580 |
+
#: the-events-calendar.php:195
|
581 |
+
msgid "Micronesia, Federated States Of"
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
+
#: the-events-calendar.php:196
|
585 |
+
msgid "Moldova, Republic Of"
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: the-events-calendar.php:197
|
589 |
+
msgid "Monaco"
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#: the-events-calendar.php:198
|
593 |
+
msgid "Mongolia"
|
594 |
+
msgstr ""
|
595 |
+
|
596 |
+
#: the-events-calendar.php:199
|
597 |
+
msgid "Montserrat"
|
598 |
+
msgstr ""
|
599 |
+
|
600 |
+
#: the-events-calendar.php:200
|
601 |
+
msgid "Morocco"
|
602 |
+
msgstr ""
|
603 |
+
|
604 |
+
#: the-events-calendar.php:201
|
605 |
+
msgid "Mozambique"
|
606 |
+
msgstr ""
|
607 |
+
|
608 |
+
#: the-events-calendar.php:202
|
609 |
+
msgid "Myanmar"
|
610 |
+
msgstr ""
|
611 |
+
|
612 |
+
#: the-events-calendar.php:203
|
613 |
+
msgid "Namibia"
|
614 |
+
msgstr ""
|
615 |
+
|
616 |
+
#: the-events-calendar.php:204
|
617 |
+
msgid "Nauru"
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: the-events-calendar.php:205
|
621 |
+
msgid "Nepal"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: the-events-calendar.php:206
|
625 |
+
msgid "Netherlands"
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: the-events-calendar.php:207
|
629 |
+
msgid "Netherlands Antilles"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: the-events-calendar.php:208
|
633 |
+
msgid "New Caledonia"
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: the-events-calendar.php:209
|
637 |
+
msgid "New Zealand"
|
638 |
+
msgstr ""
|
639 |
+
|
640 |
+
#: the-events-calendar.php:210
|
641 |
+
msgid "Nicaragua"
|
642 |
+
msgstr ""
|
643 |
+
|
644 |
+
#: the-events-calendar.php:211
|
645 |
+
msgid "Niger"
|
646 |
+
msgstr ""
|
647 |
+
|
648 |
+
#: the-events-calendar.php:212
|
649 |
+
msgid "Nigeria"
|
650 |
+
msgstr ""
|
651 |
+
|
652 |
+
#: the-events-calendar.php:213
|
653 |
+
msgid "Niue"
|
654 |
+
msgstr ""
|
655 |
+
|
656 |
+
#: the-events-calendar.php:214
|
657 |
+
msgid "Norfolk Island"
|
658 |
+
msgstr ""
|
659 |
+
|
660 |
+
#: the-events-calendar.php:215
|
661 |
+
msgid "Northern Mariana Islands"
|
662 |
+
msgstr ""
|
663 |
+
|
664 |
+
#: the-events-calendar.php:216
|
665 |
+
msgid "Norway"
|
666 |
+
msgstr ""
|
667 |
+
|
668 |
+
#: the-events-calendar.php:217
|
669 |
+
msgid "Oman"
|
670 |
+
msgstr ""
|
671 |
+
|
672 |
+
#: the-events-calendar.php:218
|
673 |
+
msgid "Pakistan"
|
674 |
+
msgstr ""
|
675 |
+
|
676 |
+
#: the-events-calendar.php:219
|
677 |
+
msgid "Palau"
|
678 |
+
msgstr ""
|
679 |
+
|
680 |
+
#: the-events-calendar.php:220
|
681 |
+
msgid "Panama"
|
682 |
+
msgstr ""
|
683 |
+
|
684 |
+
#: the-events-calendar.php:221
|
685 |
+
msgid "Papua New Guinea"
|
686 |
+
msgstr ""
|
687 |
+
|
688 |
+
#: the-events-calendar.php:222
|
689 |
+
msgid "Paraguay"
|
690 |
+
msgstr ""
|
691 |
+
|
692 |
+
#: the-events-calendar.php:223
|
693 |
+
msgid "Peru"
|
694 |
+
msgstr ""
|
695 |
+
|
696 |
+
#: the-events-calendar.php:224
|
697 |
+
msgid "Philippines"
|
698 |
+
msgstr ""
|
699 |
+
|
700 |
+
#: the-events-calendar.php:225
|
701 |
+
msgid "Pitcairn"
|
702 |
+
msgstr ""
|
703 |
+
|
704 |
+
#: the-events-calendar.php:226
|
705 |
+
msgid "Poland"
|
706 |
+
msgstr ""
|
707 |
+
|
708 |
+
#: the-events-calendar.php:227
|
709 |
+
msgid "Portugal"
|
710 |
+
msgstr ""
|
711 |
+
|
712 |
+
#: the-events-calendar.php:228
|
713 |
+
msgid "Puerto Rico"
|
714 |
+
msgstr ""
|
715 |
+
|
716 |
+
#: the-events-calendar.php:229
|
717 |
+
msgid "Qatar"
|
718 |
+
msgstr ""
|
719 |
+
|
720 |
+
#: the-events-calendar.php:230
|
721 |
+
msgid "Reunion"
|
722 |
+
msgstr ""
|
723 |
+
|
724 |
+
#: the-events-calendar.php:231
|
725 |
+
msgid "Romania"
|
726 |
+
msgstr ""
|
727 |
+
|
728 |
+
#: the-events-calendar.php:232
|
729 |
+
msgid "Russian Federation"
|
730 |
+
msgstr ""
|
731 |
+
|
732 |
+
#: the-events-calendar.php:233
|
733 |
+
msgid "Rwanda"
|
734 |
+
msgstr ""
|
735 |
+
|
736 |
+
#: the-events-calendar.php:234
|
737 |
+
msgid "Saint Kitts And Nevis"
|
738 |
+
msgstr ""
|
739 |
+
|
740 |
+
#: the-events-calendar.php:235
|
741 |
+
msgid "Saint Lucia"
|
742 |
+
msgstr ""
|
743 |
+
|
744 |
+
#: the-events-calendar.php:236
|
745 |
+
msgid "Saint Vincent And The Grenadines"
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
#: the-events-calendar.php:237
|
749 |
+
msgid "Samoa"
|
750 |
+
msgstr ""
|
751 |
+
|
752 |
+
#: the-events-calendar.php:238
|
753 |
+
msgid "San Marino"
|
754 |
+
msgstr ""
|
755 |
+
|
756 |
+
#: the-events-calendar.php:239
|
757 |
+
msgid "Sao Tome And Principe"
|
758 |
+
msgstr ""
|
759 |
+
|
760 |
+
#: the-events-calendar.php:240
|
761 |
+
msgid "Saudi Arabia"
|
762 |
+
msgstr ""
|
763 |
+
|
764 |
+
#: the-events-calendar.php:241
|
765 |
+
msgid "Senegal"
|
766 |
+
msgstr ""
|
767 |
+
|
768 |
+
#: the-events-calendar.php:242
|
769 |
+
msgid "Seychelles"
|
770 |
+
msgstr ""
|
771 |
+
|
772 |
+
#: the-events-calendar.php:243
|
773 |
+
msgid "Sierra Leone"
|
774 |
+
msgstr ""
|
775 |
+
|
776 |
+
#: the-events-calendar.php:244
|
777 |
+
msgid "Singapore"
|
778 |
+
msgstr ""
|
779 |
+
|
780 |
+
#: the-events-calendar.php:245
|
781 |
+
msgid "Slovakia (Slovak Republic)"
|
782 |
+
msgstr ""
|
783 |
+
|
784 |
+
#: the-events-calendar.php:246
|
785 |
+
msgid "Slovenia"
|
786 |
+
msgstr ""
|
787 |
+
|
788 |
+
#: the-events-calendar.php:247
|
789 |
+
msgid "Solomon Islands"
|
790 |
+
msgstr ""
|
791 |
+
|
792 |
+
#: the-events-calendar.php:248
|
793 |
+
msgid "Somalia"
|
794 |
+
msgstr ""
|
795 |
+
|
796 |
+
#: the-events-calendar.php:249
|
797 |
+
msgid "South Africa"
|
798 |
+
msgstr ""
|
799 |
+
|
800 |
+
#: the-events-calendar.php:250
|
801 |
+
msgid "South Georgia, South Sandwich Islands"
|
802 |
+
msgstr ""
|
803 |
+
|
804 |
+
#: the-events-calendar.php:251
|
805 |
+
msgid "Spain"
|
806 |
+
msgstr ""
|
807 |
+
|
808 |
+
#: the-events-calendar.php:252
|
809 |
+
msgid "Sri Lanka"
|
810 |
+
msgstr ""
|
811 |
+
|
812 |
+
#: the-events-calendar.php:253
|
813 |
+
msgid "St. Helena"
|
814 |
+
msgstr ""
|
815 |
+
|
816 |
+
#: the-events-calendar.php:254
|
817 |
+
msgid "St. Pierre And Miquelon"
|
818 |
+
msgstr ""
|
819 |
+
|
820 |
+
#: the-events-calendar.php:255
|
821 |
+
msgid "Sudan"
|
822 |
+
msgstr ""
|
823 |
+
|
824 |
+
#: the-events-calendar.php:256
|
825 |
+
msgid "Suriname"
|
826 |
+
msgstr ""
|
827 |
+
|
828 |
+
#: the-events-calendar.php:257
|
829 |
+
msgid "Svalbard And Jan Mayen Islands"
|
830 |
+
msgstr ""
|
831 |
+
|
832 |
+
#: the-events-calendar.php:258
|
833 |
+
msgid "Swaziland"
|
834 |
+
msgstr ""
|
835 |
+
|
836 |
+
#: the-events-calendar.php:259
|
837 |
+
msgid "Sweden"
|
838 |
+
msgstr ""
|
839 |
+
|
840 |
+
#: the-events-calendar.php:260
|
841 |
+
msgid "Switzerland"
|
842 |
+
msgstr ""
|
843 |
+
|
844 |
+
#: the-events-calendar.php:261
|
845 |
+
msgid "Syrian Arab Republic"
|
846 |
+
msgstr ""
|
847 |
+
|
848 |
+
#: the-events-calendar.php:262
|
849 |
+
msgid "Taiwan"
|
850 |
+
msgstr ""
|
851 |
+
|
852 |
+
#: the-events-calendar.php:263
|
853 |
+
msgid "Tajikistan"
|
854 |
+
msgstr ""
|
855 |
+
|
856 |
+
#: the-events-calendar.php:264
|
857 |
+
msgid "Tanzania, United Republic Of"
|
858 |
+
msgstr ""
|
859 |
+
|
860 |
+
#: the-events-calendar.php:265
|
861 |
+
msgid "Thailand"
|
862 |
+
msgstr ""
|
863 |
+
|
864 |
+
#: the-events-calendar.php:266
|
865 |
+
msgid "Togo"
|
866 |
+
msgstr ""
|
867 |
+
|
868 |
+
#: the-events-calendar.php:267
|
869 |
+
msgid "Tokelau"
|
870 |
+
msgstr ""
|
871 |
+
|
872 |
+
#: the-events-calendar.php:268
|
873 |
+
msgid "Tonga"
|
874 |
+
msgstr ""
|
875 |
+
|
876 |
+
#: the-events-calendar.php:269
|
877 |
+
msgid "Trinidad And Tobago"
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#: the-events-calendar.php:270
|
881 |
+
msgid "Tunisia"
|
882 |
+
msgstr ""
|
883 |
+
|
884 |
+
#: the-events-calendar.php:271
|
885 |
+
msgid "Turkey"
|
886 |
+
msgstr ""
|
887 |
+
|
888 |
+
#: the-events-calendar.php:272
|
889 |
+
msgid "Turkmenistan"
|
890 |
+
msgstr ""
|
891 |
+
|
892 |
+
#: the-events-calendar.php:273
|
893 |
+
msgid "Turks And Caicos Islands"
|
894 |
+
msgstr ""
|
895 |
+
|
896 |
+
#: the-events-calendar.php:274
|
897 |
+
msgid "Tuvalu"
|
898 |
+
msgstr ""
|
899 |
+
|
900 |
+
#: the-events-calendar.php:275
|
901 |
+
msgid "Uganda"
|
902 |
+
msgstr ""
|
903 |
+
|
904 |
+
#: the-events-calendar.php:276
|
905 |
+
msgid "Ukraine"
|
906 |
+
msgstr ""
|
907 |
+
|
908 |
+
#: the-events-calendar.php:277
|
909 |
+
msgid "United Arab Emirates"
|
910 |
+
msgstr ""
|
911 |
+
|
912 |
+
#: the-events-calendar.php:278
|
913 |
+
msgid "United Kingdom"
|
914 |
+
msgstr ""
|
915 |
+
|
916 |
+
#: the-events-calendar.php:279
|
917 |
+
msgid "United States Minor Outlying Islands"
|
918 |
+
msgstr ""
|
919 |
+
|
920 |
+
#: the-events-calendar.php:280
|
921 |
+
msgid "Uruguay"
|
922 |
+
msgstr ""
|
923 |
+
|
924 |
+
#: the-events-calendar.php:281
|
925 |
+
msgid "Uzbekistan"
|
926 |
+
msgstr ""
|
927 |
+
|
928 |
+
#: the-events-calendar.php:282
|
929 |
+
msgid "Vanuatu"
|
930 |
+
msgstr ""
|
931 |
+
|
932 |
+
#: the-events-calendar.php:283
|
933 |
+
msgid "Venezuela"
|
934 |
+
msgstr ""
|
935 |
+
|
936 |
+
#: the-events-calendar.php:284
|
937 |
+
msgid "Viet Nam"
|
938 |
+
msgstr ""
|
939 |
+
|
940 |
+
#: the-events-calendar.php:285
|
941 |
+
msgid "Virgin Islands (British)"
|
942 |
+
msgstr ""
|
943 |
+
|
944 |
+
#: the-events-calendar.php:286
|
945 |
+
msgid "Virgin Islands (U.S.)"
|
946 |
+
msgstr ""
|
947 |
+
|
948 |
+
#: the-events-calendar.php:287
|
949 |
+
msgid "Wallis And Futuna Islands"
|
950 |
+
msgstr ""
|
951 |
+
|
952 |
+
#: the-events-calendar.php:288
|
953 |
+
msgid "Western Sahara"
|
954 |
+
msgstr ""
|
955 |
+
|
956 |
+
#: the-events-calendar.php:289
|
957 |
+
msgid "Yemen"
|
958 |
+
msgstr ""
|
959 |
+
|
960 |
+
#: the-events-calendar.php:290
|
961 |
+
msgid "Yugoslavia"
|
962 |
+
msgstr ""
|
963 |
+
|
964 |
+
#: the-events-calendar.php:291
|
965 |
+
msgid "Zambia"
|
966 |
+
msgstr ""
|
967 |
+
|
968 |
+
#: the-events-calendar.php:292
|
969 |
+
msgid "Zimbabwe"
|
970 |
+
msgstr ""
|
971 |
+
|
972 |
+
#: the-events-calendar.php:496
|
973 |
+
msgid "January"
|
974 |
+
msgstr "Janeiro"
|
975 |
+
|
976 |
+
#: the-events-calendar.php:497
|
977 |
+
msgid "February"
|
978 |
+
msgstr "Fevereiro"
|
979 |
+
|
980 |
+
#: the-events-calendar.php:498
|
981 |
+
msgid "March"
|
982 |
+
msgstr "Março"
|
983 |
+
|
984 |
+
#: the-events-calendar.php:499
|
985 |
+
msgid "April"
|
986 |
+
msgstr "Abril"
|
987 |
+
|
988 |
+
#: the-events-calendar.php:500
|
989 |
+
msgid "May"
|
990 |
+
msgstr "Maio"
|
991 |
+
|
992 |
+
#: the-events-calendar.php:501
|
993 |
+
msgid "June"
|
994 |
+
msgstr "Junho"
|
995 |
+
|
996 |
+
#: the-events-calendar.php:502
|
997 |
+
msgid "July"
|
998 |
+
msgstr "Julho"
|
999 |
+
|
1000 |
+
#: the-events-calendar.php:503
|
1001 |
+
msgid "August"
|
1002 |
+
msgstr "Agosto"
|
1003 |
+
|
1004 |
+
#: the-events-calendar.php:504
|
1005 |
+
msgid "September"
|
1006 |
+
msgstr "Setembro"
|
1007 |
+
|
1008 |
+
#: the-events-calendar.php:505
|
1009 |
+
msgid "October"
|
1010 |
+
msgstr "Outubro"
|
1011 |
+
|
1012 |
+
#: the-events-calendar.php:506
|
1013 |
+
msgid "November"
|
1014 |
+
msgstr "Novembro"
|
1015 |
+
|
1016 |
+
#: the-events-calendar.php:507
|
1017 |
+
msgid "December"
|
1018 |
+
msgstr "Dezembro"
|
1019 |
+
|
1020 |
+
#. #-#-#-#-# plugin.pot (The Events Calendar 1.5.4) #-#-#-#-#
|
1021 |
+
#. Plugin Name of an extension
|
1022 |
+
#: the-events-calendar.php:939
|
1023 |
+
msgid "The Events Calendar"
|
1024 |
+
msgstr "O Calendário de Eventos"
|
1025 |
+
|
1026 |
+
#: the-events-calendar.php:1214
|
1027 |
+
msgid "Sun"
|
1028 |
+
msgstr "Dom"
|
1029 |
+
|
1030 |
+
#: the-events-calendar.php:1214
|
1031 |
+
msgid "Mon"
|
1032 |
+
msgstr "Seg"
|
1033 |
+
|
1034 |
+
#: the-events-calendar.php:1214
|
1035 |
+
msgid "Tue"
|
1036 |
+
msgstr "Ter"
|
1037 |
+
|
1038 |
+
#: the-events-calendar.php:1214
|
1039 |
+
msgid "Wed"
|
1040 |
+
msgstr "Qua"
|
1041 |
+
|
1042 |
+
#: the-events-calendar.php:1214
|
1043 |
+
msgid "Thu"
|
1044 |
+
msgstr "Qui"
|
1045 |
+
|
1046 |
+
#: the-events-calendar.php:1214
|
1047 |
+
msgid "Fri"
|
1048 |
+
msgstr "Sex"
|
1049 |
+
|
1050 |
+
#: the-events-calendar.php:1214
|
1051 |
+
msgid "Sat"
|
1052 |
+
msgstr "Sab"
|
1053 |
+
|
1054 |
+
#: the-events-calendar.php:1215
|
1055 |
+
msgid "Sunday"
|
1056 |
+
msgstr "Domingo"
|
1057 |
+
|
1058 |
+
#: the-events-calendar.php:1215
|
1059 |
+
msgid "Monday"
|
1060 |
+
msgstr "Segunda-feira"
|
1061 |
+
|
1062 |
+
#: the-events-calendar.php:1215
|
1063 |
+
msgid "Tuesday"
|
1064 |
+
msgstr "Terça-feira"
|
1065 |
+
|
1066 |
+
#: the-events-calendar.php:1215
|
1067 |
+
msgid "Wednesday"
|
1068 |
+
msgstr "Quarta-feira"
|
1069 |
+
|
1070 |
+
#: the-events-calendar.php:1215
|
1071 |
+
msgid "Thursday"
|
1072 |
+
msgstr "Quinta-feira"
|
1073 |
+
|
1074 |
+
#: the-events-calendar.php:1215
|
1075 |
+
msgid "Friday"
|
1076 |
+
msgstr "Sexta-feira"
|
1077 |
+
|
1078 |
+
#: the-events-calendar.php:1215
|
1079 |
+
msgid "Saturday"
|
1080 |
+
msgstr "Sábado"
|
1081 |
+
|
1082 |
+
#: the-events-calendar.php:1926
|
1083 |
+
msgid "A widget that displays the next upcoming x events."
|
1084 |
+
msgstr "Um widget que mostra os eventos futuros."
|
1085 |
+
|
1086 |
+
#: the-events-calendar.php:1968
|
1087 |
+
msgid "View All Events"
|
1088 |
+
msgstr "Ver todos os Eventos"
|
1089 |
+
|
1090 |
+
#: the-events-calendar.php:2049
|
1091 |
+
msgid "A calendar of your events"
|
1092 |
+
msgstr "Um calendário com seus eventos"
|
1093 |
+
|
1094 |
+
#: the-events-calendar.php:2050
|
1095 |
+
msgid "Events Calendar"
|
1096 |
+
msgstr "Calendário de Eventos"
|
1097 |
+
|
1098 |
+
#: the-events-calendar.php:2076
|
1099 |
+
#: views/events-list-load-widget-admin.php:2
|
1100 |
+
msgid "Title:"
|
1101 |
+
msgstr "Título:"
|
1102 |
+
|
1103 |
+
#: views/events-list-load-widget-admin.php:7
|
1104 |
+
msgid "Show:"
|
1105 |
+
msgstr "Número de eventos:"
|
1106 |
+
|
1107 |
+
#: views/events-list-load-widget-admin.php:16
|
1108 |
+
msgid "Display:"
|
1109 |
+
msgstr "Mostrar:"
|
1110 |
+
|
1111 |
+
#: views/events-list-load-widget-admin.php:19
|
1112 |
+
msgid "Start Date & Time"
|
1113 |
+
msgstr "Data e Hora de Início"
|
1114 |
+
|
1115 |
+
#: views/events-list-load-widget-admin.php:20
|
1116 |
+
msgid "End Date & Time"
|
1117 |
+
msgstr "Data e Hora de Término"
|
1118 |
+
|
1119 |
+
#: views/events-list-load-widget-admin.php:21
|
1120 |
+
msgid "Venue"
|
1121 |
+
msgstr "Local"
|
1122 |
+
|
1123 |
+
#: views/events-list-load-widget-admin.php:22
|
1124 |
+
msgid "Address"
|
1125 |
+
msgstr "Endereço"
|
1126 |
+
|
1127 |
+
#: views/events-list-load-widget-admin.php:23
|
1128 |
+
msgid "City"
|
1129 |
+
msgstr "Cidade"
|
1130 |
+
|
1131 |
+
#: views/events-list-load-widget-admin.php:24
|
1132 |
+
msgid "State (US)"
|
1133 |
+
msgstr "Estado (EUA)"
|
1134 |
+
|
1135 |
+
#: views/events-list-load-widget-admin.php:25
|
1136 |
+
msgid "Province (Int)"
|
1137 |
+
msgstr "Estado"
|
1138 |
+
|
1139 |
+
#: views/events-list-load-widget-admin.php:26
|
1140 |
+
msgid "Postal Code"
|
1141 |
+
msgstr "CEP"
|
1142 |
+
|
1143 |
+
#: views/events-list-load-widget-admin.php:27
|
1144 |
+
msgid "Country"
|
1145 |
+
msgstr "País"
|
1146 |
+
|
1147 |
+
#: views/events-list-load-widget-admin.php:28
|
1148 |
+
msgid "Phone"
|
1149 |
+
msgstr "Telefone"
|
1150 |
+
|
1151 |
+
#: views/events-list-load-widget-admin.php:29
|
1152 |
+
msgid "Price"
|
1153 |
+
msgstr "Preço"
|
1154 |
+
|
1155 |
+
#: views/events-list-load-widget-display.php:48
|
1156 |
+
msgid "More Info"
|
1157 |
+
msgstr "Mais Informações"
|
1158 |
+
|
1159 |
+
#: views/events-meta-box.php:153
|
1160 |
+
msgid "Is this post an event?"
|
1161 |
+
msgstr "Este post é um evento?"
|
1162 |
+
|
1163 |
+
#: views/events-meta-box.php:154
|
1164 |
+
#: views/events-options.php:157
|
1165 |
+
msgid "Yes"
|
1166 |
+
msgstr "Sim"
|
1167 |
+
|
1168 |
+
#: views/events-meta-box.php:155
|
1169 |
+
#: views/events-options.php:161
|
1170 |
+
msgid "No"
|
1171 |
+
msgstr "Não"
|
1172 |
+
|
1173 |
+
#: views/events-meta-box.php:162
|
1174 |
+
msgid "Event Time & Date"
|
1175 |
+
msgstr "Data & Hora do Evento"
|
1176 |
+
|
1177 |
+
#: views/events-meta-box.php:165
|
1178 |
+
msgid "All day event?"
|
1179 |
+
msgstr "Dia inteiro?"
|
1180 |
+
|
1181 |
+
#: views/events-meta-box.php:169
|
1182 |
+
msgid "Start Date / Time:"
|
1183 |
+
msgstr "Data e Hora de Início:"
|
1184 |
+
|
1185 |
+
#: views/events-meta-box.php:183
|
1186 |
+
#: views/events-meta-box.php:213
|
1187 |
+
msgid "@"
|
1188 |
+
msgstr "@"
|
1189 |
+
|
1190 |
+
#: views/events-meta-box.php:199
|
1191 |
+
msgid "End Date / Time:"
|
1192 |
+
msgstr "Data e Hora do Término:"
|
1193 |
+
|
1194 |
+
#: views/events-meta-box.php:229
|
1195 |
+
msgid "Event Location Details"
|
1196 |
+
msgstr "Detalhes do Local do Evento"
|
1197 |
+
|
1198 |
+
#: views/events-meta-box.php:232
|
1199 |
+
#: views/list.php:45
|
1200 |
+
#: views/single.php:26
|
1201 |
+
msgid "Venue:"
|
1202 |
+
msgstr "Local:"
|
1203 |
+
|
1204 |
+
#: views/events-meta-box.php:238
|
1205 |
+
msgid "Country:"
|
1206 |
+
msgstr "País:"
|
1207 |
+
|
1208 |
+
#: views/events-meta-box.php:255
|
1209 |
+
#: views/list.php:63
|
1210 |
+
#: views/single.php:30
|
1211 |
+
msgid "Address:"
|
1212 |
+
msgstr "Endereço:"
|
1213 |
+
|
1214 |
+
#: views/events-meta-box.php:259
|
1215 |
+
msgid "City:"
|
1216 |
+
msgstr "Cidade:"
|
1217 |
+
|
1218 |
+
#: views/events-meta-box.php:263
|
1219 |
+
msgid "Province:"
|
1220 |
+
msgstr "Estado"
|
1221 |
+
|
1222 |
+
#: views/events-meta-box.php:267
|
1223 |
+
msgid "State:"
|
1224 |
+
msgstr "Estado:"
|
1225 |
+
|
1226 |
+
#: views/events-meta-box.php:270
|
1227 |
+
msgid "Select a State:"
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
+
#: views/events-meta-box.php:272
|
1231 |
+
msgid "Alabama"
|
1232 |
+
msgstr ""
|
1233 |
+
|
1234 |
+
#: views/events-meta-box.php:273
|
1235 |
+
msgid "Alaska"
|
1236 |
+
msgstr ""
|
1237 |
+
|
1238 |
+
#: views/events-meta-box.php:274
|
1239 |
+
msgid "Arizona"
|
1240 |
+
msgstr ""
|
1241 |
+
|
1242 |
+
#: views/events-meta-box.php:275
|
1243 |
+
msgid "Arkansas"
|
1244 |
+
msgstr ""
|
1245 |
+
|
1246 |
+
#: views/events-meta-box.php:276
|
1247 |
+
msgid "California"
|
1248 |
+
msgstr ""
|
1249 |
+
|
1250 |
+
#: views/events-meta-box.php:277
|
1251 |
+
msgid "Colorado"
|
1252 |
+
msgstr ""
|
1253 |
+
|
1254 |
+
#: views/events-meta-box.php:278
|
1255 |
+
msgid "Connecticut"
|
1256 |
+
msgstr ""
|
1257 |
+
|
1258 |
+
#: views/events-meta-box.php:279
|
1259 |
+
msgid "Delaware"
|
1260 |
+
msgstr ""
|
1261 |
+
|
1262 |
+
#: views/events-meta-box.php:280
|
1263 |
+
msgid "District of Columbia"
|
1264 |
+
msgstr ""
|
1265 |
+
|
1266 |
+
#: views/events-meta-box.php:281
|
1267 |
+
msgid "Florida"
|
1268 |
+
msgstr ""
|
1269 |
+
|
1270 |
+
#: views/events-meta-box.php:283
|
1271 |
+
msgid "Hawaii"
|
1272 |
+
msgstr ""
|
1273 |
+
|
1274 |
+
#: views/events-meta-box.php:284
|
1275 |
+
msgid "Idaho"
|
1276 |
+
msgstr ""
|
1277 |
+
|
1278 |
+
#: views/events-meta-box.php:285
|
1279 |
+
msgid "Illinois"
|
1280 |
+
msgstr ""
|
1281 |
+
|
1282 |
+
#: views/events-meta-box.php:286
|
1283 |
+
msgid "Indiana"
|
1284 |
+
msgstr ""
|
1285 |
+
|
1286 |
+
#: views/events-meta-box.php:287
|
1287 |
+
msgid "Iowa"
|
1288 |
+
msgstr ""
|
1289 |
+
|
1290 |
+
#: views/events-meta-box.php:288
|
1291 |
+
msgid "Kansas"
|
1292 |
+
msgstr ""
|
1293 |
+
|
1294 |
+
#: views/events-meta-box.php:289
|
1295 |
+
msgid "Kentucky"
|
1296 |
+
msgstr ""
|
1297 |
+
|
1298 |
+
#: views/events-meta-box.php:290
|
1299 |
+
msgid "Louisiana"
|
1300 |
+
msgstr ""
|
1301 |
+
|
1302 |
+
#: views/events-meta-box.php:291
|
1303 |
+
msgid "Maine"
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: views/events-meta-box.php:292
|
1307 |
+
msgid "Maryland"
|
1308 |
+
msgstr ""
|
1309 |
+
|
1310 |
+
#: views/events-meta-box.php:293
|
1311 |
+
msgid "Massachusetts"
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: views/events-meta-box.php:294
|
1315 |
+
msgid "Michigan"
|
1316 |
+
msgstr ""
|
1317 |
+
|
1318 |
+
#: views/events-meta-box.php:295
|
1319 |
+
msgid "Minnesota"
|
1320 |
+
msgstr ""
|
1321 |
+
|
1322 |
+
#: views/events-meta-box.php:296
|
1323 |
+
msgid "Mississippi"
|
1324 |
+
msgstr ""
|
1325 |
+
|
1326 |
+
#: views/events-meta-box.php:297
|
1327 |
+
msgid "Missouri"
|
1328 |
+
msgstr ""
|
1329 |
+
|
1330 |
+
#: views/events-meta-box.php:298
|
1331 |
+
msgid "Montana"
|
1332 |
+
msgstr ""
|
1333 |
+
|
1334 |
+
#: views/events-meta-box.php:299
|
1335 |
+
msgid "Nebraska"
|
1336 |
+
msgstr ""
|
1337 |
+
|
1338 |
+
#: views/events-meta-box.php:300
|
1339 |
+
msgid "Nevada"
|
1340 |
+
msgstr ""
|
1341 |
+
|
1342 |
+
#: views/events-meta-box.php:301
|
1343 |
+
msgid "New Hampshire"
|
1344 |
+
msgstr ""
|
1345 |
+
|
1346 |
+
#: views/events-meta-box.php:302
|
1347 |
+
msgid "New Jersey"
|
1348 |
+
msgstr ""
|
1349 |
+
|
1350 |
+
#: views/events-meta-box.php:303
|
1351 |
+
msgid "New Mexico"
|
1352 |
+
msgstr ""
|
1353 |
+
|
1354 |
+
#: views/events-meta-box.php:304
|
1355 |
+
msgid "New York"
|
1356 |
+
msgstr ""
|
1357 |
+
|
1358 |
+
#: views/events-meta-box.php:305
|
1359 |
+
msgid "North Carolina"
|
1360 |
+
msgstr ""
|
1361 |
+
|
1362 |
+
#: views/events-meta-box.php:306
|
1363 |
+
msgid "North Dakota"
|
1364 |
+
msgstr ""
|
1365 |
+
|
1366 |
+
#: views/events-meta-box.php:307
|
1367 |
+
msgid "Ohio"
|
1368 |
+
msgstr ""
|
1369 |
+
|
1370 |
+
#: views/events-meta-box.php:308
|
1371 |
+
msgid "Oklahoma"
|
1372 |
+
msgstr ""
|
1373 |
+
|
1374 |
+
#: views/events-meta-box.php:309
|
1375 |
+
msgid "Oregon"
|
1376 |
+
msgstr ""
|
1377 |
+
|
1378 |
+
#: views/events-meta-box.php:310
|
1379 |
+
msgid "Pennsylvania"
|
1380 |
+
msgstr ""
|
1381 |
+
|
1382 |
+
#: views/events-meta-box.php:311
|
1383 |
+
msgid "Rhode Island"
|
1384 |
+
msgstr ""
|
1385 |
+
|
1386 |
+
#: views/events-meta-box.php:312
|
1387 |
+
msgid "South Carolina"
|
1388 |
+
msgstr ""
|
1389 |
+
|
1390 |
+
#: views/events-meta-box.php:313
|
1391 |
+
msgid "South Dakota"
|
1392 |
+
msgstr ""
|
1393 |
+
|
1394 |
+
#: views/events-meta-box.php:314
|
1395 |
+
msgid "Tennessee"
|
1396 |
+
msgstr ""
|
1397 |
+
|
1398 |
+
#: views/events-meta-box.php:315
|
1399 |
+
msgid "Texas"
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: views/events-meta-box.php:316
|
1403 |
+
msgid "Utah"
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
+
#: views/events-meta-box.php:317
|
1407 |
+
msgid "Vermont"
|
1408 |
+
msgstr ""
|
1409 |
+
|
1410 |
+
#: views/events-meta-box.php:318
|
1411 |
+
msgid "Virginia"
|
1412 |
+
msgstr ""
|
1413 |
+
|
1414 |
+
#: views/events-meta-box.php:319
|
1415 |
+
msgid "Washington"
|
1416 |
+
msgstr ""
|
1417 |
+
|
1418 |
+
#: views/events-meta-box.php:320
|
1419 |
+
msgid "West Virginia"
|
1420 |
+
msgstr ""
|
1421 |
+
|
1422 |
+
#: views/events-meta-box.php:321
|
1423 |
+
msgid "Wisconsin"
|
1424 |
+
msgstr ""
|
1425 |
+
|
1426 |
+
#: views/events-meta-box.php:322
|
1427 |
+
msgid "Wyoming"
|
1428 |
+
msgstr ""
|
1429 |
+
|
1430 |
+
#: views/events-meta-box.php:336
|
1431 |
+
msgid "Postal Code:"
|
1432 |
+
msgstr "CEP:"
|
1433 |
+
|
1434 |
+
#: views/events-meta-box.php:340
|
1435 |
+
#: views/list.php:54
|
1436 |
+
msgid "Phone:"
|
1437 |
+
msgstr "Telefone:"
|
1438 |
+
|
1439 |
+
#: views/events-meta-box.php:344
|
1440 |
+
msgid "Event Cost"
|
1441 |
+
msgstr "Ingresso"
|
1442 |
+
|
1443 |
+
#: views/events-meta-box.php:347
|
1444 |
+
#: views/list.php:72
|
1445 |
+
#: views/single.php:20
|
1446 |
+
msgid "Cost:"
|
1447 |
+
msgstr "Preço"
|
1448 |
+
|
1449 |
+
#: views/events-meta-box.php:352
|
1450 |
+
msgid "Leave blank to hide the field. Enter a 0 for events that are free."
|
1451 |
+
msgstr "Deixe em branco para esconder o campo. Entre com 0 para eventos gratúitos."
|
1452 |
+
|
1453 |
+
#: views/events-meta-box.php:356
|
1454 |
+
msgid "Sell Tickets & Track Registration"
|
1455 |
+
msgstr "Venda Tickets & Confira o registro"
|
1456 |
+
|
1457 |
+
#: views/events-meta-box.php:361
|
1458 |
+
msgid "Interested in selling tickets and tracking registrations? Now you can do it for free using our <a href=\"http://wordpress.org/extend/plugins/eventbrite-for-the-events-calendar/\">Eventbrite Integration Plugin</a>. Eventbrite is a feature rich easy-to-use event management tool. \"Wow, you're selling Eventbrite pretty hard. You must get a kickback.\" Well, now that you mention it... we do. We get a little something for everyone that registers an event using our referral link. It's how we're able to keep supporting and building plugins for the open source community. "
|
1459 |
+
msgstr "Interessado em vender tickets e acompanhar os registros? Agora você pode de graça usando <a href=\"http://wordpress.org/extend/plugins/eventbrite-for-the-events-calendar/\">Eventbrite Integration Plugin</a>. Eventbrite é uma ferramenta fácil de usar para gestão de eventos. \"Uau, você está vendendo Eventbrite... Você deve receber uma gorjeta...\". Bem, agora que você mencionou ... é o que fazemos. Ganhamos um pouco para todos que registram um evento utilizando o nosso link de referência. É assim que somos capazes de manter o apoio e construção de plugins para a comunidade open source."
|
1460 |
+
|
1461 |
+
#: views/events-meta-box.php:361
|
1462 |
+
msgid "Check it out here."
|
1463 |
+
msgstr "Confira aqui."
|
1464 |
+
|
1465 |
+
#: views/events-meta-box.php:372
|
1466 |
+
msgid "<h4>If You Like This Plugin - Help Support It</h4><p>We spend a lot of time and effort building robust plugins and we love to share them with the community. If you use this plugin consider making a donation to help support its' continued development. You may remove this message on the <a href=\"/wp-admin/options-general.php?page=the-events-calendar.php\">settings page</a>.</p>"
|
1467 |
+
msgstr "<h4>Se você gostou deste plugin - Ajude a Mantê-lo!</h4><p>Investimos muito tempo e esforço para construir estes plugins e adoramos dividir com a comunidade. Se você usa este plugin considere fazer uma doação para ajudar a mantê-lo e aperfeiçoá-lo. Você poderá remover esta informação na <a href=\"/wp-admin/options-general.php?page=the-events-calendar.php\">página de configuração</a>.</p>"
|
1468 |
+
|
1469 |
+
#: views/events-meta-box.php:374
|
1470 |
+
msgid "Thanks"
|
1471 |
+
msgstr "Grato,"
|
1472 |
+
|
1473 |
+
#: views/events-options.php:69
|
1474 |
+
msgid "The Events Calendar Settings"
|
1475 |
+
msgstr "Configuração do Calendário de Eventos"
|
1476 |
+
|
1477 |
+
#: views/events-options.php:71
|
1478 |
+
msgid "Need a hand?"
|
1479 |
+
msgstr "Precisa de ajuda?"
|
1480 |
+
|
1481 |
+
#: views/events-options.php:72
|
1482 |
+
msgid "If you're stuck on these options, please <a href=\"http://wordpress.org/extend/plugins/the-events-calendar/\">check out the documentation</a>. If you're still wondering what's going on, be sure to stop by the support <a href=\"http://wordpress.org/tags/the-events-calendar?forum_id=10\">forum</a> and ask for help. The open source community is full of kind folks who are happy to help."
|
1483 |
+
msgstr "Se já saturou estas opções, por favor <a href=\"http://wordpress.org/extend/plugins/the-events-calendar/\">confira a documentção</a>. Se você ainda tem dúvidas, visite nosso suporte neste <a href=\"http://wordpress.org/tags/the-events-calendar?forum_id=10\">forum</a> e peça ajuda. Nossa comunidade de código aberto sempre tem alguém para ajudar."
|
1484 |
+
|
1485 |
+
#: views/events-options.php:75
|
1486 |
+
msgid "Donate"
|
1487 |
+
msgstr "Doação"
|
1488 |
+
|
1489 |
+
#: views/events-options.php:84
|
1490 |
+
msgid "If you find this plugin useful, please consider donating to the producer of it, Shane & Peter, Inc. Thank you!"
|
1491 |
+
msgstr "Se você achou este campo útil, por favor pense numa doação para seu produtor, Shane & Peter, Inc. Obrigado!"
|
1492 |
+
|
1493 |
+
#: views/events-options.php:88
|
1494 |
+
msgid "I have already donated, so please hide this button!"
|
1495 |
+
msgstr "Se já fez a doação, então esconda este campo!"
|
1496 |
+
|
1497 |
+
#: views/events-options.php:98
|
1498 |
+
msgid "Donate for this wonderful plugin"
|
1499 |
+
msgstr "Doe para este plugin maravilhoso"
|
1500 |
+
|
1501 |
+
#: views/events-options.php:112
|
1502 |
+
msgid "Settings"
|
1503 |
+
msgstr "Configurações"
|
1504 |
+
|
1505 |
+
#: views/events-options.php:115
|
1506 |
+
#: views/events-options.php:119
|
1507 |
+
msgid "Default View for the Events"
|
1508 |
+
msgstr "Padrão para ver eventos"
|
1509 |
+
|
1510 |
+
#: views/events-options.php:131
|
1511 |
+
#: views/gridview.php:15
|
1512 |
+
#: views/list.php:12
|
1513 |
+
msgid "Calendar"
|
1514 |
+
msgstr "Calendário"
|
1515 |
+
|
1516 |
+
#: views/events-options.php:135
|
1517 |
+
#: views/gridview.php:14
|
1518 |
+
#: views/list.php:11
|
1519 |
+
msgid "Event List"
|
1520 |
+
msgstr "Lista de Eventos"
|
1521 |
+
|
1522 |
+
#: views/events-options.php:141
|
1523 |
+
#: views/events-options.php:145
|
1524 |
+
msgid "Show Comments"
|
1525 |
+
msgstr "Mostre Comentários"
|
1526 |
+
|
1527 |
+
#: views/events-options.php:167
|
1528 |
+
msgid "Default Country for Events"
|
1529 |
+
msgstr "País padrão para eventos"
|
1530 |
+
|
1531 |
+
#: views/events-options.php:192
|
1532 |
+
#: views/events-options.php:196
|
1533 |
+
msgid "Embed Google Maps"
|
1534 |
+
msgstr ""
|
1535 |
+
|
1536 |
+
#: views/events-options.php:210
|
1537 |
+
msgid "Off"
|
1538 |
+
msgstr "Não"
|
1539 |
+
|
1540 |
+
#: views/events-options.php:214
|
1541 |
+
msgid "On"
|
1542 |
+
msgstr "Sim"
|
1543 |
+
|
1544 |
+
#: views/events-options.php:217
|
1545 |
+
msgid "Height"
|
1546 |
+
msgstr "Altura"
|
1547 |
+
|
1548 |
+
#: views/events-options.php:218
|
1549 |
+
msgid "Width"
|
1550 |
+
msgstr "Largura"
|
1551 |
+
|
1552 |
+
#: views/events-options.php:218
|
1553 |
+
msgid "(number or %)"
|
1554 |
+
msgstr "(número ou %)"
|
1555 |
+
|
1556 |
+
#: views/events-options.php:229
|
1557 |
+
msgid "Save Changes"
|
1558 |
+
msgstr "Salvar as Mudanças"
|
1559 |
+
|
1560 |
+
#: views/gridview.php:9
|
1561 |
+
#: views/list.php:9
|
1562 |
+
msgid "Calendar of Events"
|
1563 |
+
msgstr "Calendário de Eventos"
|
1564 |
+
|
1565 |
+
#: views/list.php:33
|
1566 |
+
#: views/single.php:13
|
1567 |
+
msgid "Start:"
|
1568 |
+
msgstr "Início:"
|
1569 |
+
|
1570 |
+
#: views/list.php:37
|
1571 |
+
#: views/single.php:16
|
1572 |
+
msgid "End:"
|
1573 |
+
msgstr "Fim:"
|
1574 |
+
|
1575 |
+
#: views/list.php:63
|
1576 |
+
#: views/single.php:30
|
1577 |
+
msgid "Google Map"
|
1578 |
+
msgstr ""
|
1579 |
+
|
1580 |
+
#: views/list.php:94
|
1581 |
+
msgid "« Previous Events"
|
1582 |
+
msgstr "« Eventos Passados"
|
1583 |
+
|
1584 |
+
#: views/list.php:107
|
1585 |
+
msgid "Next Events »"
|
1586 |
+
msgstr "Próximos Eventos »"
|
1587 |
+
|
1588 |
+
#: views/single.php:8
|
1589 |
+
msgid "« Back to Events"
|
1590 |
+
msgstr "« Voltar aos Eventos"
|
1591 |
+
|
1592 |
+
#: views/single.php:10
|
1593 |
+
msgid "This event has passed."
|
1594 |
+
msgstr "Este evento é passado"
|
1595 |
+
|
1596 |
+
#: views/single.php:30
|
1597 |
+
msgid "Click to view a Google Map"
|
1598 |
+
msgstr "Clique para ver no Google Maps"
|
1599 |
+
|
1600 |
+
#. Plugin URI of an extension
|
1601 |
+
msgid "http://wordpress.org/extend/plugins/the-events-calendar/"
|
1602 |
+
msgstr ""
|
1603 |
+
|
1604 |
+
#. Description of an extension
|
1605 |
+
msgid "The Events Calendar plugin enables you to rapidly create and manage events using the post editor. Features include optional Eventbrite integration, Google Maps integration as well as default calendar grid and list templates for streamlined one click installation."
|
1606 |
+
msgstr "O plugin The Events Calendar possibilita criar e configurar eventos usando seu editor de post. Entre os benefícios esta a integração opcional com o Eventbrite, Google Maps assim como o calendário padrão e as listas de eventos com apenas um clique."
|
1607 |
+
|
1608 |
+
#. Author of an extension
|
1609 |
+
msgid "Shane & Peter, Inc."
|
1610 |
+
msgstr ""
|
1611 |
+
|
1612 |
+
#. Author URI of an extension
|
1613 |
+
msgid "http://www.shaneandpeter.com/"
|
1614 |
+
msgstr ""
|
1615 |
+
|
lang/the-events-calendar-sp_SP.mo
ADDED
Binary file
|
lang/the-events-calendar-sp_SP.po
ADDED
@@ -0,0 +1,1618 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of the WordPress plugin The Events Calendar 1.5.4 by Shane & Peter, Inc..
|
2 |
+
# Copyright (C) 2010 Shane & Peter, Inc.
|
3 |
+
# This file is distributed under the same license as the The Events Calendar package.
|
4 |
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
5 |
+
#
|
6 |
+
msgid ""
|
7 |
+
msgstr ""
|
8 |
+
"Project-Id-Version: The Events Calendar 1.5.4\n"
|
9 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/the-events-calendar\n"
|
10 |
+
"POT-Creation-Date: 2010-02-16 02:03+0000\n"
|
11 |
+
"PO-Revision-Date: 2010-02-21 15:53-0800\n"
|
12 |
+
"Last-Translator: Aaron Rhodes <aaron@aaronrhodes.org>\n"
|
13 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
+
"MIME-Version: 1.0\n"
|
15 |
+
"Content-Type: text/plain; charset=utf-8\n"
|
16 |
+
"Content-Transfer-Encoding: 8bit\n"
|
17 |
+
|
18 |
+
#: the-events-calendar.php:54
|
19 |
+
msgid "United States"
|
20 |
+
msgstr "trans_unitedstates"
|
21 |
+
|
22 |
+
#: the-events-calendar.php:55
|
23 |
+
msgid "Afghanistan"
|
24 |
+
msgstr "trans_afghanistan"
|
25 |
+
|
26 |
+
#: the-events-calendar.php:56
|
27 |
+
msgid "Albania"
|
28 |
+
msgstr "Albania"
|
29 |
+
|
30 |
+
#: the-events-calendar.php:57
|
31 |
+
msgid "Algeria"
|
32 |
+
msgstr "Algeria"
|
33 |
+
|
34 |
+
#: the-events-calendar.php:58
|
35 |
+
msgid "American Samoa"
|
36 |
+
msgstr "American Samoa"
|
37 |
+
|
38 |
+
#: the-events-calendar.php:59
|
39 |
+
msgid "Andorra"
|
40 |
+
msgstr "Andorra"
|
41 |
+
|
42 |
+
#: the-events-calendar.php:60
|
43 |
+
msgid "Angola"
|
44 |
+
msgstr "Angola"
|
45 |
+
|
46 |
+
#: the-events-calendar.php:61
|
47 |
+
msgid "Anguilla"
|
48 |
+
msgstr "Anguilla"
|
49 |
+
|
50 |
+
#: the-events-calendar.php:62
|
51 |
+
msgid "Antarctica"
|
52 |
+
msgstr "Antarctica"
|
53 |
+
|
54 |
+
#: the-events-calendar.php:63
|
55 |
+
msgid "Antigua And Barbuda"
|
56 |
+
msgstr "Antigua And Barbuda"
|
57 |
+
|
58 |
+
#: the-events-calendar.php:64
|
59 |
+
msgid "Argentina"
|
60 |
+
msgstr "Argentina"
|
61 |
+
|
62 |
+
#: the-events-calendar.php:65
|
63 |
+
msgid "Armenia"
|
64 |
+
msgstr "Armenia"
|
65 |
+
|
66 |
+
#: the-events-calendar.php:66
|
67 |
+
msgid "Aruba"
|
68 |
+
msgstr "Aruba"
|
69 |
+
|
70 |
+
#: the-events-calendar.php:67
|
71 |
+
msgid "Australia"
|
72 |
+
msgstr "Australia"
|
73 |
+
|
74 |
+
#: the-events-calendar.php:68
|
75 |
+
msgid "Austria"
|
76 |
+
msgstr "Austria"
|
77 |
+
|
78 |
+
#: the-events-calendar.php:69
|
79 |
+
msgid "Azerbaijan"
|
80 |
+
msgstr "Azerbaijan"
|
81 |
+
|
82 |
+
#: the-events-calendar.php:70
|
83 |
+
msgid "Bahamas"
|
84 |
+
msgstr "Bahamas"
|
85 |
+
|
86 |
+
#: the-events-calendar.php:71
|
87 |
+
msgid "Bahrain"
|
88 |
+
msgstr "Bahrain"
|
89 |
+
|
90 |
+
#: the-events-calendar.php:72
|
91 |
+
msgid "Bangladesh"
|
92 |
+
msgstr "Bangladesh"
|
93 |
+
|
94 |
+
#: the-events-calendar.php:73
|
95 |
+
msgid "Barbados"
|
96 |
+
msgstr "Barbados"
|
97 |
+
|
98 |
+
#: the-events-calendar.php:74
|
99 |
+
msgid "Belarus"
|
100 |
+
msgstr "Belarus"
|
101 |
+
|
102 |
+
#: the-events-calendar.php:75
|
103 |
+
msgid "Belgium"
|
104 |
+
msgstr "Belgium"
|
105 |
+
|
106 |
+
#: the-events-calendar.php:76
|
107 |
+
msgid "Belize"
|
108 |
+
msgstr "Belize"
|
109 |
+
|
110 |
+
#: the-events-calendar.php:77
|
111 |
+
msgid "Benin"
|
112 |
+
msgstr "Benin"
|
113 |
+
|
114 |
+
#: the-events-calendar.php:78
|
115 |
+
msgid "Bermuda"
|
116 |
+
msgstr "Bermuda"
|
117 |
+
|
118 |
+
#: the-events-calendar.php:79
|
119 |
+
msgid "Bhutan"
|
120 |
+
msgstr "Bhutan"
|
121 |
+
|
122 |
+
#: the-events-calendar.php:80
|
123 |
+
msgid "Bolivia"
|
124 |
+
msgstr "Bolivia"
|
125 |
+
|
126 |
+
#: the-events-calendar.php:81
|
127 |
+
msgid "Bosnia And Herzegowina"
|
128 |
+
msgstr "Bosnia And Herzegowina"
|
129 |
+
|
130 |
+
#: the-events-calendar.php:82
|
131 |
+
msgid "Botswana"
|
132 |
+
msgstr "Botswana"
|
133 |
+
|
134 |
+
#: the-events-calendar.php:83
|
135 |
+
msgid "Bouvet Island"
|
136 |
+
msgstr "Bouvet Island"
|
137 |
+
|
138 |
+
#: the-events-calendar.php:84
|
139 |
+
msgid "Brazil"
|
140 |
+
msgstr "Brazil"
|
141 |
+
|
142 |
+
#: the-events-calendar.php:85
|
143 |
+
msgid "British Indian Ocean Territory"
|
144 |
+
msgstr "British Indian Ocean Territory"
|
145 |
+
|
146 |
+
#: the-events-calendar.php:86
|
147 |
+
msgid "Brunei Darussalam"
|
148 |
+
msgstr "Brunei Darussalam"
|
149 |
+
|
150 |
+
#: the-events-calendar.php:87
|
151 |
+
msgid "Bulgaria"
|
152 |
+
msgstr "Bulgaria"
|
153 |
+
|
154 |
+
#: the-events-calendar.php:88
|
155 |
+
msgid "Burkina Faso"
|
156 |
+
msgstr "Burkina Faso"
|
157 |
+
|
158 |
+
#: the-events-calendar.php:89
|
159 |
+
msgid "Burundi"
|
160 |
+
msgstr "Burundi"
|
161 |
+
|
162 |
+
#: the-events-calendar.php:90
|
163 |
+
msgid "Cambodia"
|
164 |
+
msgstr "Cambodia"
|
165 |
+
|
166 |
+
#: the-events-calendar.php:91
|
167 |
+
msgid "Cameroon"
|
168 |
+
msgstr "Cameroon"
|
169 |
+
|
170 |
+
#: the-events-calendar.php:92
|
171 |
+
msgid "Canada"
|
172 |
+
msgstr "Canada"
|
173 |
+
|
174 |
+
#: the-events-calendar.php:93
|
175 |
+
msgid "Cape Verde"
|
176 |
+
msgstr "Cape Verde"
|
177 |
+
|
178 |
+
#: the-events-calendar.php:94
|
179 |
+
msgid "Cayman Islands"
|
180 |
+
msgstr "Cayman Islands"
|
181 |
+
|
182 |
+
#: the-events-calendar.php:95
|
183 |
+
msgid "Central African Republic"
|
184 |
+
msgstr "Central African Republic"
|
185 |
+
|
186 |
+
#: the-events-calendar.php:96
|
187 |
+
msgid "Chad"
|
188 |
+
msgstr "Chad"
|
189 |
+
|
190 |
+
#: the-events-calendar.php:97
|
191 |
+
msgid "Chile"
|
192 |
+
msgstr "Chile"
|
193 |
+
|
194 |
+
#: the-events-calendar.php:98
|
195 |
+
msgid "China"
|
196 |
+
msgstr "China"
|
197 |
+
|
198 |
+
#: the-events-calendar.php:99
|
199 |
+
msgid "Christmas Island"
|
200 |
+
msgstr "Christmas Island"
|
201 |
+
|
202 |
+
#: the-events-calendar.php:100
|
203 |
+
msgid "Cocos (Keeling) Islands"
|
204 |
+
msgstr "Cocos (Keeling) Islands"
|
205 |
+
|
206 |
+
#: the-events-calendar.php:101
|
207 |
+
msgid "Colombia"
|
208 |
+
msgstr "Colombia"
|
209 |
+
|
210 |
+
#: the-events-calendar.php:102
|
211 |
+
msgid "Comoros"
|
212 |
+
msgstr "Comoros"
|
213 |
+
|
214 |
+
#: the-events-calendar.php:103
|
215 |
+
msgid "Congo"
|
216 |
+
msgstr "Congo"
|
217 |
+
|
218 |
+
#: the-events-calendar.php:104
|
219 |
+
msgid "Congo, The Democratic Republic Of The"
|
220 |
+
msgstr "Congo, The Democratic Republic Of The"
|
221 |
+
|
222 |
+
#: the-events-calendar.php:105
|
223 |
+
msgid "Cook Islands"
|
224 |
+
msgstr "Cook Islands"
|
225 |
+
|
226 |
+
#: the-events-calendar.php:106
|
227 |
+
msgid "Costa Rica"
|
228 |
+
msgstr "Costa Rica"
|
229 |
+
|
230 |
+
#: the-events-calendar.php:107
|
231 |
+
msgid "Cote D'Ivoire"
|
232 |
+
msgstr "Cote D'Ivoire"
|
233 |
+
|
234 |
+
#: the-events-calendar.php:108
|
235 |
+
msgid "Croatia (Local Name: Hrvatska)"
|
236 |
+
msgstr "Croatia (Local Name: Hrvatska)"
|
237 |
+
|
238 |
+
#: the-events-calendar.php:109
|
239 |
+
msgid "Cuba"
|
240 |
+
msgstr "Cuba"
|
241 |
+
|
242 |
+
#: the-events-calendar.php:110
|
243 |
+
msgid "Cyprus"
|
244 |
+
msgstr "Cyprus"
|
245 |
+
|
246 |
+
#: the-events-calendar.php:111
|
247 |
+
msgid "Czech Republic"
|
248 |
+
msgstr "Czech Republic"
|
249 |
+
|
250 |
+
#: the-events-calendar.php:112
|
251 |
+
msgid "Denmark"
|
252 |
+
msgstr "Denmark"
|
253 |
+
|
254 |
+
#: the-events-calendar.php:113
|
255 |
+
msgid "Djibouti"
|
256 |
+
msgstr "Djibouti"
|
257 |
+
|
258 |
+
#: the-events-calendar.php:114
|
259 |
+
msgid "Dominica"
|
260 |
+
msgstr "Dominica"
|
261 |
+
|
262 |
+
#: the-events-calendar.php:115
|
263 |
+
msgid "Dominican Republic"
|
264 |
+
msgstr "Dominican Republic"
|
265 |
+
|
266 |
+
#: the-events-calendar.php:116
|
267 |
+
msgid "East Timor"
|
268 |
+
msgstr "East Timor"
|
269 |
+
|
270 |
+
#: the-events-calendar.php:117
|
271 |
+
msgid "Ecuador"
|
272 |
+
msgstr "Ecuador"
|
273 |
+
|
274 |
+
#: the-events-calendar.php:118
|
275 |
+
msgid "Egypt"
|
276 |
+
msgstr "Egypt"
|
277 |
+
|
278 |
+
#: the-events-calendar.php:119
|
279 |
+
msgid "El Salvador"
|
280 |
+
msgstr "El Salvador"
|
281 |
+
|
282 |
+
#: the-events-calendar.php:120
|
283 |
+
msgid "Equatorial Guinea"
|
284 |
+
msgstr "Equatorial Guinea"
|
285 |
+
|
286 |
+
#: the-events-calendar.php:121
|
287 |
+
msgid "Eritrea"
|
288 |
+
msgstr "Eritrea"
|
289 |
+
|
290 |
+
#: the-events-calendar.php:122
|
291 |
+
msgid "Estonia"
|
292 |
+
msgstr "Estonia"
|
293 |
+
|
294 |
+
#: the-events-calendar.php:123
|
295 |
+
msgid "Ethiopia"
|
296 |
+
msgstr "Ethiopia"
|
297 |
+
|
298 |
+
#: the-events-calendar.php:124
|
299 |
+
msgid "Falkland Islands (Malvinas)"
|
300 |
+
msgstr "Falkland Islands (Malvinas)"
|
301 |
+
|
302 |
+
#: the-events-calendar.php:125
|
303 |
+
msgid "Faroe Islands"
|
304 |
+
msgstr "Faroe Islands"
|
305 |
+
|
306 |
+
#: the-events-calendar.php:126
|
307 |
+
msgid "Fiji"
|
308 |
+
msgstr "Fiji"
|
309 |
+
|
310 |
+
#: the-events-calendar.php:127
|
311 |
+
msgid "Finland"
|
312 |
+
msgstr "Finland"
|
313 |
+
|
314 |
+
#: the-events-calendar.php:128
|
315 |
+
msgid "France"
|
316 |
+
msgstr "France"
|
317 |
+
|
318 |
+
#: the-events-calendar.php:129
|
319 |
+
msgid "France, Metropolitan"
|
320 |
+
msgstr "France, Metropolitan"
|
321 |
+
|
322 |
+
#: the-events-calendar.php:130
|
323 |
+
msgid "French Guiana"
|
324 |
+
msgstr "French Guiana"
|
325 |
+
|
326 |
+
#: the-events-calendar.php:131
|
327 |
+
msgid "French Polynesia"
|
328 |
+
msgstr "French Polynesia"
|
329 |
+
|
330 |
+
#: the-events-calendar.php:132
|
331 |
+
msgid "French Southern Territories"
|
332 |
+
msgstr "French Southern Territories"
|
333 |
+
|
334 |
+
#: the-events-calendar.php:133
|
335 |
+
msgid "Gabon"
|
336 |
+
msgstr "Gabon"
|
337 |
+
|
338 |
+
#: the-events-calendar.php:134
|
339 |
+
msgid "Gambia"
|
340 |
+
msgstr "Gambia"
|
341 |
+
|
342 |
+
#: the-events-calendar.php:135
|
343 |
+
#: views/events-meta-box.php:282
|
344 |
+
msgid "Georgia"
|
345 |
+
msgstr "Georgia"
|
346 |
+
|
347 |
+
#: the-events-calendar.php:136
|
348 |
+
msgid "Germany"
|
349 |
+
msgstr "Germany"
|
350 |
+
|
351 |
+
#: the-events-calendar.php:137
|
352 |
+
msgid "Ghana"
|
353 |
+
msgstr "Ghana"
|
354 |
+
|
355 |
+
#: the-events-calendar.php:138
|
356 |
+
msgid "Gibraltar"
|
357 |
+
msgstr "Gibraltar"
|
358 |
+
|
359 |
+
#: the-events-calendar.php:139
|
360 |
+
msgid "Greece"
|
361 |
+
msgstr "Greece"
|
362 |
+
|
363 |
+
#: the-events-calendar.php:140
|
364 |
+
msgid "Greenland"
|
365 |
+
msgstr "Greenland"
|
366 |
+
|
367 |
+
#: the-events-calendar.php:141
|
368 |
+
msgid "Grenada"
|
369 |
+
msgstr "Grenada"
|
370 |
+
|
371 |
+
#: the-events-calendar.php:142
|
372 |
+
msgid "Guadeloupe"
|
373 |
+
msgstr "Guadeloupe"
|
374 |
+
|
375 |
+
#: the-events-calendar.php:143
|
376 |
+
msgid "Guam"
|
377 |
+
msgstr "Guam"
|
378 |
+
|
379 |
+
#: the-events-calendar.php:144
|
380 |
+
msgid "Guatemala"
|
381 |
+
msgstr "Guatemala"
|
382 |
+
|
383 |
+
#: the-events-calendar.php:145
|
384 |
+
msgid "Guinea"
|
385 |
+
msgstr "Guinea"
|
386 |
+
|
387 |
+
#: the-events-calendar.php:146
|
388 |
+
msgid "Guinea-Bissau"
|
389 |
+
msgstr "Guinea-Bissau"
|
390 |
+
|
391 |
+
#: the-events-calendar.php:147
|
392 |
+
msgid "Guyana"
|
393 |
+
msgstr "Guyana"
|
394 |
+
|
395 |
+
#: the-events-calendar.php:148
|
396 |
+
msgid "Haiti"
|
397 |
+
msgstr "Haiti"
|
398 |
+
|
399 |
+
#: the-events-calendar.php:149
|
400 |
+
msgid "Heard And Mc Donald Islands"
|
401 |
+
msgstr "Heard And Mc Donald Islands"
|
402 |
+
|
403 |
+
#: the-events-calendar.php:150
|
404 |
+
msgid "Holy See (Vatican City State)"
|
405 |
+
msgstr "Holy See (Vatican City State)"
|
406 |
+
|
407 |
+
#: the-events-calendar.php:151
|
408 |
+
msgid "Honduras"
|
409 |
+
msgstr "Honduras"
|
410 |
+
|
411 |
+
#: the-events-calendar.php:152
|
412 |
+
msgid "Hong Kong"
|
413 |
+
msgstr "Hong Kong"
|
414 |
+
|
415 |
+
#: the-events-calendar.php:153
|
416 |
+
msgid "Hungary"
|
417 |
+
msgstr "Hungary"
|
418 |
+
|
419 |
+
#: the-events-calendar.php:154
|
420 |
+
msgid "Iceland"
|
421 |
+
msgstr "Iceland"
|
422 |
+
|
423 |
+
#: the-events-calendar.php:155
|
424 |
+
msgid "India"
|
425 |
+
msgstr "India"
|
426 |
+
|
427 |
+
#: the-events-calendar.php:156
|
428 |
+
msgid "Indonesia"
|
429 |
+
msgstr "Indonesia"
|
430 |
+
|
431 |
+
#: the-events-calendar.php:157
|
432 |
+
msgid "Iran (Islamic Republic Of)"
|
433 |
+
msgstr "Iran (Islamic Republic Of)"
|
434 |
+
|
435 |
+
#: the-events-calendar.php:158
|
436 |
+
msgid "Iraq"
|
437 |
+
msgstr "Iraq"
|
438 |
+
|
439 |
+
#: the-events-calendar.php:159
|
440 |
+
msgid "Ireland"
|
441 |
+
msgstr "Ireland"
|
442 |
+
|
443 |
+
#: the-events-calendar.php:160
|
444 |
+
msgid "Israel"
|
445 |
+
msgstr "Israel"
|
446 |
+
|
447 |
+
#: the-events-calendar.php:161
|
448 |
+
msgid "Italy"
|
449 |
+
msgstr "Italy"
|
450 |
+
|
451 |
+
#: the-events-calendar.php:162
|
452 |
+
msgid "Jamaica"
|
453 |
+
msgstr "Jamaica"
|
454 |
+
|
455 |
+
#: the-events-calendar.php:163
|
456 |
+
msgid "Japan"
|
457 |
+
msgstr "Japan"
|
458 |
+
|
459 |
+
#: the-events-calendar.php:164
|
460 |
+
msgid "Jordan"
|
461 |
+
msgstr "Jordan"
|
462 |
+
|
463 |
+
#: the-events-calendar.php:165
|
464 |
+
msgid "Kazakhstan"
|
465 |
+
msgstr "Kazakhstan"
|
466 |
+
|
467 |
+
#: the-events-calendar.php:166
|
468 |
+
msgid "Kenya"
|
469 |
+
msgstr "Kenya"
|
470 |
+
|
471 |
+
#: the-events-calendar.php:167
|
472 |
+
msgid "Kiribati"
|
473 |
+
msgstr "Kiribati"
|
474 |
+
|
475 |
+
#: the-events-calendar.php:168
|
476 |
+
msgid "Korea, Democratic People's Republic Of"
|
477 |
+
msgstr "Korea, Democratic People's Republic Of"
|
478 |
+
|
479 |
+
#: the-events-calendar.php:169
|
480 |
+
msgid "Korea, Republic Of"
|
481 |
+
msgstr "Korea, Republic Of"
|
482 |
+
|
483 |
+
#: the-events-calendar.php:170
|
484 |
+
msgid "Kuwait"
|
485 |
+
msgstr "Kuwait"
|
486 |
+
|
487 |
+
#: the-events-calendar.php:171
|
488 |
+
msgid "Kyrgyzstan"
|
489 |
+
msgstr "Kyrgyzstan"
|
490 |
+
|
491 |
+
#: the-events-calendar.php:172
|
492 |
+
msgid "Lao People's Democratic Republic"
|
493 |
+
msgstr "Lao People's Democratic Republic"
|
494 |
+
|
495 |
+
#: the-events-calendar.php:173
|
496 |
+
msgid "Latvia"
|
497 |
+
msgstr "Latvia"
|
498 |
+
|
499 |
+
#: the-events-calendar.php:174
|
500 |
+
msgid "Lebanon"
|
501 |
+
msgstr "Lebanon"
|
502 |
+
|
503 |
+
#: the-events-calendar.php:175
|
504 |
+
msgid "Lesotho"
|
505 |
+
msgstr "Lesotho"
|
506 |
+
|
507 |
+
#: the-events-calendar.php:176
|
508 |
+
msgid "Liberia"
|
509 |
+
msgstr "Liberia"
|
510 |
+
|
511 |
+
#: the-events-calendar.php:177
|
512 |
+
msgid "Libyan Arab Jamahiriya"
|
513 |
+
msgstr "Libyan Arab Jamahiriya"
|
514 |
+
|
515 |
+
#: the-events-calendar.php:178
|
516 |
+
msgid "Liechtenstein"
|
517 |
+
msgstr "Liechtenstein"
|
518 |
+
|
519 |
+
#: the-events-calendar.php:179
|
520 |
+
msgid "Lithuania"
|
521 |
+
msgstr "Lithuania"
|
522 |
+
|
523 |
+
#: the-events-calendar.php:180
|
524 |
+
msgid "Luxembourg"
|
525 |
+
msgstr "Luxembourg"
|
526 |
+
|
527 |
+
#: the-events-calendar.php:181
|
528 |
+
msgid "Macau"
|
529 |
+
msgstr "Macau"
|
530 |
+
|
531 |
+
#: the-events-calendar.php:182
|
532 |
+
msgid "Macedonia, Former Yugoslav Republic Of"
|
533 |
+
msgstr "Macedonia, Former Yugoslav Republic Of"
|
534 |
+
|
535 |
+
#: the-events-calendar.php:183
|
536 |
+
msgid "Madagascar"
|
537 |
+
msgstr "Madagascar"
|
538 |
+
|
539 |
+
#: the-events-calendar.php:184
|
540 |
+
msgid "Malawi"
|
541 |
+
msgstr "Malawi"
|
542 |
+
|
543 |
+
#: the-events-calendar.php:185
|
544 |
+
msgid "Malaysia"
|
545 |
+
msgstr "Malaysia"
|
546 |
+
|
547 |
+
#: the-events-calendar.php:186
|
548 |
+
msgid "Maldives"
|
549 |
+
msgstr "Maldives"
|
550 |
+
|
551 |
+
#: the-events-calendar.php:187
|
552 |
+
msgid "Mali"
|
553 |
+
msgstr "Mali"
|
554 |
+
|
555 |
+
#: the-events-calendar.php:188
|
556 |
+
msgid "Malta"
|
557 |
+
msgstr "Malta"
|
558 |
+
|
559 |
+
#: the-events-calendar.php:189
|
560 |
+
msgid "Marshall Islands"
|
561 |
+
msgstr "Marshall Islands"
|
562 |
+
|
563 |
+
#: the-events-calendar.php:190
|
564 |
+
msgid "Martinique"
|
565 |
+
msgstr "Martinique"
|
566 |
+
|
567 |
+
#: the-events-calendar.php:191
|
568 |
+
msgid "Mauritania"
|
569 |
+
msgstr "Mauritania"
|
570 |
+
|
571 |
+
#: the-events-calendar.php:192
|
572 |
+
msgid "Mauritius"
|
573 |
+
msgstr "Mauritius"
|
574 |
+
|
575 |
+
#: the-events-calendar.php:193
|
576 |
+
msgid "Mayotte"
|
577 |
+
msgstr "Mayotte"
|
578 |
+
|
579 |
+
#: the-events-calendar.php:194
|
580 |
+
msgid "Mexico"
|
581 |
+
msgstr "Mexico"
|
582 |
+
|
583 |
+
#: the-events-calendar.php:195
|
584 |
+
msgid "Micronesia, Federated States Of"
|
585 |
+
msgstr "Micronesia, Federated States Of"
|
586 |
+
|
587 |
+
#: the-events-calendar.php:196
|
588 |
+
msgid "Moldova, Republic Of"
|
589 |
+
msgstr "Moldova, Republic Of"
|
590 |
+
|
591 |
+
#: the-events-calendar.php:197
|
592 |
+
msgid "Monaco"
|
593 |
+
msgstr "Monaco"
|
594 |
+
|
595 |
+
#: the-events-calendar.php:198
|
596 |
+
msgid "Mongolia"
|
597 |
+
msgstr "Mongolia"
|
598 |
+
|
599 |
+
#: the-events-calendar.php:199
|
600 |
+
msgid "Montserrat"
|
601 |
+
msgstr "Montserrat"
|
602 |
+
|
603 |
+
#: the-events-calendar.php:200
|
604 |
+
msgid "Morocco"
|
605 |
+
msgstr "Morocco"
|
606 |
+
|
607 |
+
#: the-events-calendar.php:201
|
608 |
+
msgid "Mozambique"
|
609 |
+
msgstr "Mozambique"
|
610 |
+
|
611 |
+
#: the-events-calendar.php:202
|
612 |
+
msgid "Myanmar"
|
613 |
+
msgstr "Myanmar"
|
614 |
+
|
615 |
+
#: the-events-calendar.php:203
|
616 |
+
msgid "Namibia"
|
617 |
+
msgstr "Namibia"
|
618 |
+
|
619 |
+
#: the-events-calendar.php:204
|
620 |
+
msgid "Nauru"
|
621 |
+
msgstr "Nauru"
|
622 |
+
|
623 |
+
#: the-events-calendar.php:205
|
624 |
+
msgid "Nepal"
|
625 |
+
msgstr "Nepal"
|
626 |
+
|
627 |
+
#: the-events-calendar.php:206
|
628 |
+
msgid "Netherlands"
|
629 |
+
msgstr "Netherlands"
|
630 |
+
|
631 |
+
#: the-events-calendar.php:207
|
632 |
+
msgid "Netherlands Antilles"
|
633 |
+
msgstr "Netherlands Antilles"
|
634 |
+
|
635 |
+
#: the-events-calendar.php:208
|
636 |
+
msgid "New Caledonia"
|
637 |
+
msgstr "New Caledonia"
|
638 |
+
|
639 |
+
#: the-events-calendar.php:209
|
640 |
+
msgid "New Zealand"
|
641 |
+
msgstr "New Zealand"
|
642 |
+
|
643 |
+
#: the-events-calendar.php:210
|
644 |
+
msgid "Nicaragua"
|
645 |
+
msgstr "Nicaragua"
|
646 |
+
|
647 |
+
#: the-events-calendar.php:211
|
648 |
+
msgid "Niger"
|
649 |
+
msgstr "Niger"
|
650 |
+
|
651 |
+
#: the-events-calendar.php:212
|
652 |
+
msgid "Nigeria"
|
653 |
+
msgstr "Nigeria"
|
654 |
+
|
655 |
+
#: the-events-calendar.php:213
|
656 |
+
msgid "Niue"
|
657 |
+
msgstr "Niue"
|
658 |
+
|
659 |
+
#: the-events-calendar.php:214
|
660 |
+
msgid "Norfolk Island"
|
661 |
+
msgstr "Norfolk Island"
|
662 |
+
|
663 |
+
#: the-events-calendar.php:215
|
664 |
+
msgid "Northern Mariana Islands"
|
665 |
+
msgstr "Northern Mariana Islands"
|
666 |
+
|
667 |
+
#: the-events-calendar.php:216
|
668 |
+
msgid "Norway"
|
669 |
+
msgstr "Norway"
|
670 |
+
|
671 |
+
#: the-events-calendar.php:217
|
672 |
+
msgid "Oman"
|
673 |
+
msgstr "Oman"
|
674 |
+
|
675 |
+
#: the-events-calendar.php:218
|
676 |
+
msgid "Pakistan"
|
677 |
+
msgstr "Pakistan"
|
678 |
+
|
679 |
+
#: the-events-calendar.php:219
|
680 |
+
msgid "Palau"
|
681 |
+
msgstr "Palau"
|
682 |
+
|
683 |
+
#: the-events-calendar.php:220
|
684 |
+
msgid "Panama"
|
685 |
+
msgstr "Panama"
|
686 |
+
|
687 |
+
#: the-events-calendar.php:221
|
688 |
+
msgid "Papua New Guinea"
|
689 |
+
msgstr "Papua New Guinea"
|
690 |
+
|
691 |
+
#: the-events-calendar.php:222
|
692 |
+
msgid "Paraguay"
|
693 |
+
msgstr "Paraguay"
|
694 |
+
|
695 |
+
#: the-events-calendar.php:223
|
696 |
+
msgid "Peru"
|
697 |
+
msgstr "Peru"
|
698 |
+
|
699 |
+
#: the-events-calendar.php:224
|
700 |
+
msgid "Philippines"
|
701 |
+
msgstr "Philippines"
|
702 |
+
|
703 |
+
#: the-events-calendar.php:225
|
704 |
+
msgid "Pitcairn"
|
705 |
+
msgstr "Pitcairn"
|
706 |
+
|
707 |
+
#: the-events-calendar.php:226
|
708 |
+
msgid "Poland"
|
709 |
+
msgstr "Poland"
|
710 |
+
|
711 |
+
#: the-events-calendar.php:227
|
712 |
+
msgid "Portugal"
|
713 |
+
msgstr "Portugal"
|
714 |
+
|
715 |
+
#: the-events-calendar.php:228
|
716 |
+
msgid "Puerto Rico"
|
717 |
+
msgstr "Puerto Rico"
|
718 |
+
|
719 |
+
#: the-events-calendar.php:229
|
720 |
+
msgid "Qatar"
|
721 |
+
msgstr "Qatar"
|
722 |
+
|
723 |
+
#: the-events-calendar.php:230
|
724 |
+
msgid "Reunion"
|
725 |
+
msgstr "Reunion"
|
726 |
+
|
727 |
+
#: the-events-calendar.php:231
|
728 |
+
msgid "Romania"
|
729 |
+
msgstr "Romania"
|
730 |
+
|
731 |
+
#: the-events-calendar.php:232
|
732 |
+
msgid "Russian Federation"
|
733 |
+
msgstr "Russian Federation"
|
734 |
+
|
735 |
+
#: the-events-calendar.php:233
|
736 |
+
msgid "Rwanda"
|
737 |
+
msgstr "Rwanda"
|
738 |
+
|
739 |
+
#: the-events-calendar.php:234
|
740 |
+
msgid "Saint Kitts And Nevis"
|
741 |
+
msgstr "Saint Kitts And Nevis"
|
742 |
+
|
743 |
+
#: the-events-calendar.php:235
|
744 |
+
msgid "Saint Lucia"
|
745 |
+
msgstr "Saint Lucia"
|
746 |
+
|
747 |
+
#: the-events-calendar.php:236
|
748 |
+
msgid "Saint Vincent And The Grenadines"
|
749 |
+
msgstr "Saint Vincent And The Grenadines"
|
750 |
+
|
751 |
+
#: the-events-calendar.php:237
|
752 |
+
msgid "Samoa"
|
753 |
+
msgstr "Samoa"
|
754 |
+
|
755 |
+
#: the-events-calendar.php:238
|
756 |
+
msgid "San Marino"
|
757 |
+
msgstr "San Marino"
|
758 |
+
|
759 |
+
#: the-events-calendar.php:239
|
760 |
+
msgid "Sao Tome And Principe"
|
761 |
+
msgstr "Sao Tome And Principe"
|
762 |
+
|
763 |
+
#: the-events-calendar.php:240
|
764 |
+
msgid "Saudi Arabia"
|
765 |
+
msgstr "Saudi Arabia"
|
766 |
+
|
767 |
+
#: the-events-calendar.php:241
|
768 |
+
msgid "Senegal"
|
769 |
+
msgstr "Senegal"
|
770 |
+
|
771 |
+
#: the-events-calendar.php:242
|
772 |
+
msgid "Seychelles"
|
773 |
+
msgstr "Seychelles"
|
774 |
+
|
775 |
+
#: the-events-calendar.php:243
|
776 |
+
msgid "Sierra Leone"
|
777 |
+
msgstr "Sierra Leone"
|
778 |
+
|
779 |
+
#: the-events-calendar.php:244
|
780 |
+
msgid "Singapore"
|
781 |
+
msgstr "Singapore"
|
782 |
+
|
783 |
+
#: the-events-calendar.php:245
|
784 |
+
msgid "Slovakia (Slovak Republic)"
|
785 |
+
msgstr "Slovakia (Slovak Republic)"
|
786 |
+
|
787 |
+
#: the-events-calendar.php:246
|
788 |
+
msgid "Slovenia"
|
789 |
+
msgstr "Slovenia"
|
790 |
+
|
791 |
+
#: the-events-calendar.php:247
|
792 |
+
msgid "Solomon Islands"
|
793 |
+
msgstr "Solomon Islands"
|
794 |
+
|
795 |
+
#: the-events-calendar.php:248
|
796 |
+
msgid "Somalia"
|
797 |
+
msgstr "Somalia"
|
798 |
+
|
799 |
+
#: the-events-calendar.php:249
|
800 |
+
msgid "South Africa"
|
801 |
+
msgstr "South Africa"
|
802 |
+
|
803 |
+
#: the-events-calendar.php:250
|
804 |
+
msgid "South Georgia, South Sandwich Islands"
|
805 |
+
msgstr "South Georgia, South Sandwich Islands"
|
806 |
+
|
807 |
+
#: the-events-calendar.php:251
|
808 |
+
msgid "Spain"
|
809 |
+
msgstr "Spain"
|
810 |
+
|
811 |
+
#: the-events-calendar.php:252
|
812 |
+
msgid "Sri Lanka"
|
813 |
+
msgstr "Sri Lanka"
|
814 |
+
|
815 |
+
#: the-events-calendar.php:253
|
816 |
+
msgid "St. Helena"
|
817 |
+
msgstr "St. Helena"
|
818 |
+
|
819 |
+
#: the-events-calendar.php:254
|
820 |
+
msgid "St. Pierre And Miquelon"
|
821 |
+
msgstr "St. Pierre And Miquelon"
|
822 |
+
|
823 |
+
#: the-events-calendar.php:255
|
824 |
+
msgid "Sudan"
|
825 |
+
msgstr "Sudan"
|
826 |
+
|
827 |
+
#: the-events-calendar.php:256
|
828 |
+
msgid "Suriname"
|
829 |
+
msgstr "Suriname"
|
830 |
+
|
831 |
+
#: the-events-calendar.php:257
|
832 |
+
msgid "Svalbard And Jan Mayen Islands"
|
833 |
+
msgstr "Svalbard And Jan Mayen Islands"
|
834 |
+
|
835 |
+
#: the-events-calendar.php:258
|
836 |
+
msgid "Swaziland"
|
837 |
+
msgstr "Swaziland"
|
838 |
+
|
839 |
+
#: the-events-calendar.php:259
|
840 |
+
msgid "Sweden"
|
841 |
+
msgstr "Sweden"
|
842 |
+
|
843 |
+
#: the-events-calendar.php:260
|
844 |
+
msgid "Switzerland"
|
845 |
+
msgstr "Switzerland"
|
846 |
+
|
847 |
+
#: the-events-calendar.php:261
|
848 |
+
msgid "Syrian Arab Republic"
|
849 |
+
msgstr "Syrian Arab Republic"
|
850 |
+
|
851 |
+
#: the-events-calendar.php:262
|
852 |
+
msgid "Taiwan"
|
853 |
+
msgstr "Taiwan"
|
854 |
+
|
855 |
+
#: the-events-calendar.php:263
|
856 |
+
msgid "Tajikistan"
|
857 |
+
msgstr "Tajikistan"
|
858 |
+
|
859 |
+
#: the-events-calendar.php:264
|
860 |
+
msgid "Tanzania, United Republic Of"
|
861 |
+
msgstr "Tanzania, United Republic Of"
|
862 |
+
|
863 |
+
#: the-events-calendar.php:265
|
864 |
+
msgid "Thailand"
|
865 |
+
msgstr "Thailand"
|
866 |
+
|
867 |
+
#: the-events-calendar.php:266
|
868 |
+
msgid "Togo"
|
869 |
+
msgstr "Togo"
|
870 |
+
|
871 |
+
#: the-events-calendar.php:267
|
872 |
+
msgid "Tokelau"
|
873 |
+
msgstr "Tokelau"
|
874 |
+
|
875 |
+
#: the-events-calendar.php:268
|
876 |
+
msgid "Tonga"
|
877 |
+
msgstr "Tonga"
|
878 |
+
|
879 |
+
#: the-events-calendar.php:269
|
880 |
+
msgid "Trinidad And Tobago"
|
881 |
+
msgstr "Trinidad And Tobago"
|
882 |
+
|
883 |
+
#: the-events-calendar.php:270
|
884 |
+
msgid "Tunisia"
|
885 |
+
msgstr "Tunisia"
|
886 |
+
|
887 |
+
#: the-events-calendar.php:271
|
888 |
+
msgid "Turkey"
|
889 |
+
msgstr "Turkey"
|
890 |
+
|
891 |
+
#: the-events-calendar.php:272
|
892 |
+
msgid "Turkmenistan"
|
893 |
+
msgstr "Turkmenistan"
|
894 |
+
|
895 |
+
#: the-events-calendar.php:273
|
896 |
+
msgid "Turks And Caicos Islands"
|
897 |
+
msgstr "Turks And Caicos Islands"
|
898 |
+
|
899 |
+
#: the-events-calendar.php:274
|
900 |
+
msgid "Tuvalu"
|
901 |
+
msgstr "Tuvalu"
|
902 |
+
|
903 |
+
#: the-events-calendar.php:275
|
904 |
+
msgid "Uganda"
|
905 |
+
msgstr "Uganda"
|
906 |
+
|
907 |
+
#: the-events-calendar.php:276
|
908 |
+
msgid "Ukraine"
|
909 |
+
msgstr "Ukraine"
|
910 |
+
|
911 |
+
#: the-events-calendar.php:277
|
912 |
+
msgid "United Arab Emirates"
|
913 |
+
msgstr "United Arab Emirates"
|
914 |
+
|
915 |
+
#: the-events-calendar.php:278
|
916 |
+
msgid "United Kingdom"
|
917 |
+
msgstr "United Kingdom"
|
918 |
+
|
919 |
+
#: the-events-calendar.php:279
|
920 |
+
msgid "United States Minor Outlying Islands"
|
921 |
+
msgstr "United States Minor Outlying Islands"
|
922 |
+
|
923 |
+
#: the-events-calendar.php:280
|
924 |
+
msgid "Uruguay"
|
925 |
+
msgstr "Uruguay"
|
926 |
+
|
927 |
+
#: the-events-calendar.php:281
|
928 |
+
msgid "Uzbekistan"
|
929 |
+
msgstr "Uzbekistan"
|
930 |
+
|
931 |
+
#: the-events-calendar.php:282
|
932 |
+
msgid "Vanuatu"
|
933 |
+
msgstr "Vanuatu"
|
934 |
+
|
935 |
+
#: the-events-calendar.php:283
|
936 |
+
msgid "Venezuela"
|
937 |
+
msgstr "Venezuela"
|
938 |
+
|
939 |
+
#: the-events-calendar.php:284
|
940 |
+
msgid "Viet Nam"
|
941 |
+
msgstr "Viet Nam"
|
942 |
+
|
943 |
+
#: the-events-calendar.php:285
|
944 |
+
msgid "Virgin Islands (British)"
|
945 |
+
msgstr "Virgin Islands (British)"
|
946 |
+
|
947 |
+
#: the-events-calendar.php:286
|
948 |
+
msgid "Virgin Islands (U.S.)"
|
949 |
+
msgstr "Virgin Islands (U.S.)"
|
950 |
+
|
951 |
+
#: the-events-calendar.php:287
|
952 |
+
msgid "Wallis And Futuna Islands"
|
953 |
+
msgstr "Wallis And Futuna Islands"
|
954 |
+
|
955 |
+
#: the-events-calendar.php:288
|
956 |
+
msgid "Western Sahara"
|
957 |
+
msgstr "Western Sahara"
|
958 |
+
|
959 |
+
#: the-events-calendar.php:289
|
960 |
+
msgid "Yemen"
|
961 |
+
msgstr "Yemen"
|
962 |
+
|
963 |
+
#: the-events-calendar.php:290
|
964 |
+
msgid "Yugoslavia"
|
965 |
+
msgstr "Yugoslavia"
|
966 |
+
|
967 |
+
#: the-events-calendar.php:291
|
968 |
+
msgid "Zambia"
|
969 |
+
msgstr "Zambia"
|
970 |
+
|
971 |
+
#: the-events-calendar.php:292
|
972 |
+
msgid "Zimbabwe"
|
973 |
+
msgstr "Zimbabwe"
|
974 |
+
|
975 |
+
#: the-events-calendar.php:496
|
976 |
+
msgid "January"
|
977 |
+
msgstr "trans_january"
|
978 |
+
|
979 |
+
#: the-events-calendar.php:497
|
980 |
+
msgid "February"
|
981 |
+
msgstr "trans_february"
|
982 |
+
|
983 |
+
#: the-events-calendar.php:498
|
984 |
+
msgid "March"
|
985 |
+
msgstr "trans_march"
|
986 |
+
|
987 |
+
#: the-events-calendar.php:499
|
988 |
+
msgid "April"
|
989 |
+
msgstr "trans_april"
|
990 |
+
|
991 |
+
#: the-events-calendar.php:500
|
992 |
+
msgid "May"
|
993 |
+
msgstr "trans_may"
|
994 |
+
|
995 |
+
#: the-events-calendar.php:501
|
996 |
+
msgid "June"
|
997 |
+
msgstr "trans_june"
|
998 |
+
|
999 |
+
#: the-events-calendar.php:502
|
1000 |
+
msgid "July"
|
1001 |
+
msgstr "trans_july"
|
1002 |
+
|
1003 |
+
#: the-events-calendar.php:503
|
1004 |
+
msgid "August"
|
1005 |
+
msgstr "trans_august"
|
1006 |
+
|
1007 |
+
#: the-events-calendar.php:504
|
1008 |
+
msgid "September"
|
1009 |
+
msgstr "trans_september"
|
1010 |
+
|
1011 |
+
#: the-events-calendar.php:505
|
1012 |
+
msgid "October"
|
1013 |
+
msgstr "trans_october"
|
1014 |
+
|
1015 |
+
#: the-events-calendar.php:506
|
1016 |
+
msgid "November"
|
1017 |
+
msgstr "trans_november"
|
1018 |
+
|
1019 |
+
#: the-events-calendar.php:507
|
1020 |
+
msgid "December"
|
1021 |
+
msgstr "trans_december"
|
1022 |
+
|
1023 |
+
#. #-#-#-#-# plugin.pot (The Events Calendar 1.5.4) #-#-#-#-#
|
1024 |
+
#. Plugin Name of an extension
|
1025 |
+
#: the-events-calendar.php:939
|
1026 |
+
msgid "The Events Calendar"
|
1027 |
+
msgstr "trans_theeventscalendar"
|
1028 |
+
|
1029 |
+
#: the-events-calendar.php:1214
|
1030 |
+
msgid "Sun"
|
1031 |
+
msgstr "trans_sun"
|
1032 |
+
|
1033 |
+
#: the-events-calendar.php:1214
|
1034 |
+
msgid "Mon"
|
1035 |
+
msgstr "trans_mon"
|
1036 |
+
|
1037 |
+
#: the-events-calendar.php:1214
|
1038 |
+
msgid "Tue"
|
1039 |
+
msgstr "trans_tue"
|
1040 |
+
|
1041 |
+
#: the-events-calendar.php:1214
|
1042 |
+
msgid "Wed"
|
1043 |
+
msgstr "trans_wed"
|
1044 |
+
|
1045 |
+
#: the-events-calendar.php:1214
|
1046 |
+
msgid "Thu"
|
1047 |
+
msgstr "trans_thu"
|
1048 |
+
|
1049 |
+
#: the-events-calendar.php:1214
|
1050 |
+
msgid "Fri"
|
1051 |
+
msgstr "trans_fri"
|
1052 |
+
|
1053 |
+
#: the-events-calendar.php:1214
|
1054 |
+
msgid "Sat"
|
1055 |
+
msgstr "trans_sat"
|
1056 |
+
|
1057 |
+
#: the-events-calendar.php:1215
|
1058 |
+
msgid "Sunday"
|
1059 |
+
msgstr "trans_sun"
|
1060 |
+
|
1061 |
+
#: the-events-calendar.php:1215
|
1062 |
+
msgid "Monday"
|
1063 |
+
msgstr "trans_mon"
|
1064 |
+
|
1065 |
+
#: the-events-calendar.php:1215
|
1066 |
+
msgid "Tuesday"
|
1067 |
+
msgstr "trans_tuesday"
|
1068 |
+
|
1069 |
+
#: the-events-calendar.php:1215
|
1070 |
+
msgid "Wednesday"
|
1071 |
+
msgstr "trans_wednesday"
|
1072 |
+
|
1073 |
+
#: the-events-calendar.php:1215
|
1074 |
+
msgid "Thursday"
|
1075 |
+
msgstr "trans_thursday"
|
1076 |
+
|
1077 |
+
#: the-events-calendar.php:1215
|
1078 |
+
msgid "Friday"
|
1079 |
+
msgstr "trans_friday"
|
1080 |
+
|
1081 |
+
#: the-events-calendar.php:1215
|
1082 |
+
msgid "Saturday"
|
1083 |
+
msgstr "trans_saturday"
|
1084 |
+
|
1085 |
+
#: the-events-calendar.php:1926
|
1086 |
+
msgid "A widget that displays the next upcoming x events."
|
1087 |
+
msgstr "trans_eventlistwidgetdescription"
|
1088 |
+
|
1089 |
+
#: the-events-calendar.php:1968
|
1090 |
+
msgid "View All Events"
|
1091 |
+
msgstr "trans_viewallevents"
|
1092 |
+
|
1093 |
+
#: the-events-calendar.php:2049
|
1094 |
+
msgid "A calendar of your events"
|
1095 |
+
msgstr "trans_acalendarofyourevents"
|
1096 |
+
|
1097 |
+
#: the-events-calendar.php:2050
|
1098 |
+
msgid "Events Calendar"
|
1099 |
+
msgstr "trans_eventscalendar"
|
1100 |
+
|
1101 |
+
#: the-events-calendar.php:2076
|
1102 |
+
#: views/events-list-load-widget-admin.php:2
|
1103 |
+
msgid "Title:"
|
1104 |
+
msgstr "trans_title:"
|
1105 |
+
|
1106 |
+
#: views/events-list-load-widget-admin.php:7
|
1107 |
+
msgid "Show:"
|
1108 |
+
msgstr "trans_show:"
|
1109 |
+
|
1110 |
+
#: views/events-list-load-widget-admin.php:16
|
1111 |
+
msgid "Display:"
|
1112 |
+
msgstr "trans_display:"
|
1113 |
+
|
1114 |
+
#: views/events-list-load-widget-admin.php:19
|
1115 |
+
msgid "Start Date & Time"
|
1116 |
+
msgstr "trans_startdateandtime"
|
1117 |
+
|
1118 |
+
#: views/events-list-load-widget-admin.php:20
|
1119 |
+
msgid "End Date & Time"
|
1120 |
+
msgstr "trans_enddateandtime"
|
1121 |
+
|
1122 |
+
#: views/events-list-load-widget-admin.php:21
|
1123 |
+
msgid "Venue"
|
1124 |
+
msgstr "trans_venue"
|
1125 |
+
|
1126 |
+
#: views/events-list-load-widget-admin.php:22
|
1127 |
+
msgid "Address"
|
1128 |
+
msgstr "trans_address"
|
1129 |
+
|
1130 |
+
#: views/events-list-load-widget-admin.php:23
|
1131 |
+
msgid "City"
|
1132 |
+
msgstr "trans_city"
|
1133 |
+
|
1134 |
+
#: views/events-list-load-widget-admin.php:24
|
1135 |
+
msgid "State (US)"
|
1136 |
+
msgstr "trans_state"
|
1137 |
+
|
1138 |
+
#: views/events-list-load-widget-admin.php:25
|
1139 |
+
msgid "Province (Int)"
|
1140 |
+
msgstr "trans_provinceint"
|
1141 |
+
|
1142 |
+
#: views/events-list-load-widget-admin.php:26
|
1143 |
+
msgid "Postal Code"
|
1144 |
+
msgstr "trans_postalcode"
|
1145 |
+
|
1146 |
+
#: views/events-list-load-widget-admin.php:27
|
1147 |
+
msgid "Country"
|
1148 |
+
msgstr "trans_country"
|
1149 |
+
|
1150 |
+
#: views/events-list-load-widget-admin.php:28
|
1151 |
+
msgid "Phone"
|
1152 |
+
msgstr "trans_phone"
|
1153 |
+
|
1154 |
+
#: views/events-list-load-widget-admin.php:29
|
1155 |
+
msgid "Price"
|
1156 |
+
msgstr "trans_price"
|
1157 |
+
|
1158 |
+
#: views/events-list-load-widget-display.php:48
|
1159 |
+
msgid "More Info"
|
1160 |
+
msgstr "trans_moreinfo"
|
1161 |
+
|
1162 |
+
#: views/events-meta-box.php:153
|
1163 |
+
msgid "Is this post an event?"
|
1164 |
+
msgstr "trans_isthisanevent?"
|
1165 |
+
|
1166 |
+
#: views/events-meta-box.php:154
|
1167 |
+
#: views/events-options.php:157
|
1168 |
+
msgid "Yes"
|
1169 |
+
msgstr "trans_yes"
|
1170 |
+
|
1171 |
+
#: views/events-meta-box.php:155
|
1172 |
+
#: views/events-options.php:161
|
1173 |
+
msgid "No"
|
1174 |
+
msgstr "trans_no"
|
1175 |
+
|
1176 |
+
#: views/events-meta-box.php:162
|
1177 |
+
msgid "Event Time & Date"
|
1178 |
+
msgstr "trans_eventtimeanddate"
|
1179 |
+
|
1180 |
+
#: views/events-meta-box.php:165
|
1181 |
+
msgid "All day event?"
|
1182 |
+
msgstr "trans_alldayevent"
|
1183 |
+
|
1184 |
+
#: views/events-meta-box.php:169
|
1185 |
+
msgid "Start Date / Time:"
|
1186 |
+
msgstr "trans_startdatetime"
|
1187 |
+
|
1188 |
+
#: views/events-meta-box.php:183
|
1189 |
+
#: views/events-meta-box.php:213
|
1190 |
+
msgid "@"
|
1191 |
+
msgstr "trans_@"
|
1192 |
+
|
1193 |
+
#: views/events-meta-box.php:199
|
1194 |
+
msgid "End Date / Time:"
|
1195 |
+
msgstr "trans_enddatetime"
|
1196 |
+
|
1197 |
+
#: views/events-meta-box.php:229
|
1198 |
+
msgid "Event Location Details"
|
1199 |
+
msgstr "trans_eventlocationdetails"
|
1200 |
+
|
1201 |
+
#: views/events-meta-box.php:232
|
1202 |
+
#: views/list.php:45
|
1203 |
+
#: views/single.php:26
|
1204 |
+
msgid "Venue:"
|
1205 |
+
msgstr "trans_venue"
|
1206 |
+
|
1207 |
+
#: views/events-meta-box.php:238
|
1208 |
+
msgid "Country:"
|
1209 |
+
msgstr "trans_country"
|
1210 |
+
|
1211 |
+
#: views/events-meta-box.php:255
|
1212 |
+
#: views/list.php:63
|
1213 |
+
#: views/single.php:30
|
1214 |
+
msgid "Address:"
|
1215 |
+
msgstr "trans_address"
|
1216 |
+
|
1217 |
+
#: views/events-meta-box.php:259
|
1218 |
+
msgid "City:"
|
1219 |
+
msgstr "trans_city"
|
1220 |
+
|
1221 |
+
#: views/events-meta-box.php:263
|
1222 |
+
msgid "Province:"
|
1223 |
+
msgstr "trans_province"
|
1224 |
+
|
1225 |
+
#: views/events-meta-box.php:267
|
1226 |
+
msgid "State:"
|
1227 |
+
msgstr "trans_state"
|
1228 |
+
|
1229 |
+
#: views/events-meta-box.php:270
|
1230 |
+
msgid "Select a State:"
|
1231 |
+
msgstr "trans_selectastate"
|
1232 |
+
|
1233 |
+
#: views/events-meta-box.php:272
|
1234 |
+
msgid "Alabama"
|
1235 |
+
msgstr "trans_alabama"
|
1236 |
+
|
1237 |
+
#: views/events-meta-box.php:273
|
1238 |
+
msgid "Alaska"
|
1239 |
+
msgstr "Alaska"
|
1240 |
+
|
1241 |
+
#: views/events-meta-box.php:274
|
1242 |
+
msgid "Arizona"
|
1243 |
+
msgstr "Arizona"
|
1244 |
+
|
1245 |
+
#: views/events-meta-box.php:275
|
1246 |
+
msgid "Arkansas"
|
1247 |
+
msgstr "Arkansas"
|
1248 |
+
|
1249 |
+
#: views/events-meta-box.php:276
|
1250 |
+
msgid "California"
|
1251 |
+
msgstr "California"
|
1252 |
+
|
1253 |
+
#: views/events-meta-box.php:277
|
1254 |
+
msgid "Colorado"
|
1255 |
+
msgstr "Colorado"
|
1256 |
+
|
1257 |
+
#: views/events-meta-box.php:278
|
1258 |
+
msgid "Connecticut"
|
1259 |
+
msgstr "Connecticut"
|
1260 |
+
|
1261 |
+
#: views/events-meta-box.php:279
|
1262 |
+
msgid "Delaware"
|
1263 |
+
msgstr "Delaware"
|
1264 |
+
|
1265 |
+
#: views/events-meta-box.php:280
|
1266 |
+
msgid "District of Columbia"
|
1267 |
+
msgstr "District of Columbia"
|
1268 |
+
|
1269 |
+
#: views/events-meta-box.php:281
|
1270 |
+
msgid "Florida"
|
1271 |
+
msgstr "Florida"
|
1272 |
+
|
1273 |
+
#: views/events-meta-box.php:283
|
1274 |
+
msgid "Hawaii"
|
1275 |
+
msgstr "Hawaii"
|
1276 |
+
|
1277 |
+
#: views/events-meta-box.php:284
|
1278 |
+
msgid "Idaho"
|
1279 |
+
msgstr "Idaho"
|
1280 |
+
|
1281 |
+
#: views/events-meta-box.php:285
|
1282 |
+
msgid "Illinois"
|
1283 |
+
msgstr "Illinois"
|
1284 |
+
|
1285 |
+
#: views/events-meta-box.php:286
|
1286 |
+
msgid "Indiana"
|
1287 |
+
msgstr "Indiana"
|
1288 |
+
|
1289 |
+
#: views/events-meta-box.php:287
|
1290 |
+
msgid "Iowa"
|
1291 |
+
msgstr "Iowa"
|
1292 |
+
|
1293 |
+
#: views/events-meta-box.php:288
|
1294 |
+
msgid "Kansas"
|
1295 |
+
msgstr "Kansas"
|
1296 |
+
|
1297 |
+
#: views/events-meta-box.php:289
|
1298 |
+
msgid "Kentucky"
|
1299 |
+
msgstr "Kentucky"
|
1300 |
+
|
1301 |
+
#: views/events-meta-box.php:290
|
1302 |
+
msgid "Louisiana"
|
1303 |
+
msgstr "Louisiana"
|
1304 |
+
|
1305 |
+
#: views/events-meta-box.php:291
|
1306 |
+
msgid "Maine"
|
1307 |
+
msgstr "Maine"
|
1308 |
+
|
1309 |
+
#: views/events-meta-box.php:292
|
1310 |
+
msgid "Maryland"
|
1311 |
+
msgstr "Maryland"
|
1312 |
+
|
1313 |
+
#: views/events-meta-box.php:293
|
1314 |
+
msgid "Massachusetts"
|
1315 |
+
msgstr "Massachusetts"
|
1316 |
+
|
1317 |
+
#: views/events-meta-box.php:294
|
1318 |
+
msgid "Michigan"
|
1319 |
+
msgstr "Michigan"
|
1320 |
+
|
1321 |
+
#: views/events-meta-box.php:295
|
1322 |
+
msgid "Minnesota"
|
1323 |
+
msgstr "Minnesota"
|
1324 |
+
|
1325 |
+
#: views/events-meta-box.php:296
|
1326 |
+
msgid "Mississippi"
|
1327 |
+
msgstr "Mississippi"
|
1328 |
+
|
1329 |
+
#: views/events-meta-box.php:297
|
1330 |
+
msgid "Missouri"
|
1331 |
+
msgstr "Missouri"
|
1332 |
+
|
1333 |
+
#: views/events-meta-box.php:298
|
1334 |
+
msgid "Montana"
|
1335 |
+
msgstr "Montana"
|
1336 |
+
|
1337 |
+
#: views/events-meta-box.php:299
|
1338 |
+
msgid "Nebraska"
|
1339 |
+
msgstr "Nebraska"
|
1340 |
+
|
1341 |
+
#: views/events-meta-box.php:300
|
1342 |
+
msgid "Nevada"
|
1343 |
+
msgstr "Nevada"
|
1344 |
+
|
1345 |
+
#: views/events-meta-box.php:301
|
1346 |
+
msgid "New Hampshire"
|
1347 |
+
msgstr "New Hampshire"
|
1348 |
+
|
1349 |
+
#: views/events-meta-box.php:302
|
1350 |
+
msgid "New Jersey"
|
1351 |
+
msgstr "New Jersey"
|
1352 |
+
|
1353 |
+
#: views/events-meta-box.php:303
|
1354 |
+
msgid "New Mexico"
|
1355 |
+
msgstr "New Mexico"
|
1356 |
+
|
1357 |
+
#: views/events-meta-box.php:304
|
1358 |
+
msgid "New York"
|
1359 |
+
msgstr "New York"
|
1360 |
+
|
1361 |
+
#: views/events-meta-box.php:305
|
1362 |
+
msgid "North Carolina"
|
1363 |
+
msgstr "North Carolina"
|
1364 |
+
|
1365 |
+
#: views/events-meta-box.php:306
|
1366 |
+
msgid "North Dakota"
|
1367 |
+
msgstr "North Dakota"
|
1368 |
+
|
1369 |
+
#: views/events-meta-box.php:307
|
1370 |
+
msgid "Ohio"
|
1371 |
+
msgstr "Ohio"
|
1372 |
+
|
1373 |
+
#: views/events-meta-box.php:308
|
1374 |
+
msgid "Oklahoma"
|
1375 |
+
msgstr "Oklahoma"
|
1376 |
+
|
1377 |
+
#: views/events-meta-box.php:309
|
1378 |
+
msgid "Oregon"
|
1379 |
+
msgstr "Oregon"
|
1380 |
+
|
1381 |
+
#: views/events-meta-box.php:310
|
1382 |
+
msgid "Pennsylvania"
|
1383 |
+
msgstr "Pennsylvania"
|
1384 |
+
|
1385 |
+
#: views/events-meta-box.php:311
|
1386 |
+
msgid "Rhode Island"
|
1387 |
+
msgstr "Rhode Island"
|
1388 |
+
|
1389 |
+
#: views/events-meta-box.php:312
|
1390 |
+
msgid "South Carolina"
|
1391 |
+
msgstr "South Carolina"
|
1392 |
+
|
1393 |
+
#: views/events-meta-box.php:313
|
1394 |
+
msgid "South Dakota"
|
1395 |
+
msgstr "South Dakota"
|
1396 |
+
|
1397 |
+
#: views/events-meta-box.php:314
|
1398 |
+
msgid "Tennessee"
|
1399 |
+
msgstr "Tennessee"
|
1400 |
+
|
1401 |
+
#: views/events-meta-box.php:315
|
1402 |
+
msgid "Texas"
|
1403 |
+
msgstr "Texas"
|
1404 |
+
|
1405 |
+
#: views/events-meta-box.php:316
|
1406 |
+
msgid "Utah"
|
1407 |
+
msgstr "Utah"
|
1408 |
+
|
1409 |
+
#: views/events-meta-box.php:317
|
1410 |
+
msgid "Vermont"
|
1411 |
+
msgstr "Vermont"
|
1412 |
+
|
1413 |
+
#: views/events-meta-box.php:318
|
1414 |
+
msgid "Virginia"
|
1415 |
+
msgstr "Virginia"
|
1416 |
+
|
1417 |
+
#: views/events-meta-box.php:319
|
1418 |
+
msgid "Washington"
|
1419 |
+
msgstr "Washington"
|
1420 |
+
|
1421 |
+
#: views/events-meta-box.php:320
|
1422 |
+
msgid "West Virginia"
|
1423 |
+
msgstr "West Virginia"
|
1424 |
+
|
1425 |
+
#: views/events-meta-box.php:321
|
1426 |
+
msgid "Wisconsin"
|
1427 |
+
msgstr "Wisconsin"
|
1428 |
+
|
1429 |
+
#: views/events-meta-box.php:322
|
1430 |
+
msgid "Wyoming"
|
1431 |
+
msgstr "Wyoming"
|
1432 |
+
|
1433 |
+
#: views/events-meta-box.php:336
|
1434 |
+
msgid "Postal Code:"
|
1435 |
+
msgstr "trans_postalcode:"
|
1436 |
+
|
1437 |
+
#: views/events-meta-box.php:340
|
1438 |
+
#: views/list.php:54
|
1439 |
+
msgid "Phone:"
|
1440 |
+
msgstr "trans_phone:"
|
1441 |
+
|
1442 |
+
#: views/events-meta-box.php:344
|
1443 |
+
msgid "Event Cost"
|
1444 |
+
msgstr "trans_eventcost:"
|
1445 |
+
|
1446 |
+
#: views/events-meta-box.php:347
|
1447 |
+
#: views/list.php:72
|
1448 |
+
#: views/single.php:20
|
1449 |
+
msgid "Cost:"
|
1450 |
+
msgstr "trans_cost:"
|
1451 |
+
|
1452 |
+
#: views/events-meta-box.php:352
|
1453 |
+
msgid "Leave blank to hide the field. Enter a 0 for events that are free."
|
1454 |
+
msgstr "trans_leaveblank"
|
1455 |
+
|
1456 |
+
#: views/events-meta-box.php:356
|
1457 |
+
msgid "Sell Tickets & Track Registration"
|
1458 |
+
msgstr "trans_sellticketstrackregistration"
|
1459 |
+
|
1460 |
+
#: views/events-meta-box.php:361
|
1461 |
+
msgid "Interested in selling tickets and tracking registrations? Now you can do it for free using our <a href=\"http://wordpress.org/extend/plugins/eventbrite-for-the-events-calendar/\">Eventbrite Integration Plugin</a>. Eventbrite is a feature rich easy-to-use event management tool. \"Wow, you're selling Eventbrite pretty hard. You must get a kickback.\" Well, now that you mention it... we do. We get a little something for everyone that registers an event using our referral link. It's how we're able to keep supporting and building plugins for the open source community. "
|
1462 |
+
msgstr "trans_interestedinsellingtickets?"
|
1463 |
+
|
1464 |
+
#: views/events-meta-box.php:361
|
1465 |
+
msgid "Check it out here."
|
1466 |
+
msgstr "trans_checkitout"
|
1467 |
+
|
1468 |
+
#: views/events-meta-box.php:372
|
1469 |
+
msgid "<h4>If You Like This Plugin - Help Support It</h4><p>We spend a lot of time and effort building robust plugins and we love to share them with the community. If you use this plugin consider making a donation to help support its' continued development. You may remove this message on the <a href=\"/wp-admin/options-general.php?page=the-events-calendar.php\">settings page</a>.</p>"
|
1470 |
+
msgstr "trans_ifyoulikethisplugin"
|
1471 |
+
|
1472 |
+
#: views/events-meta-box.php:374
|
1473 |
+
msgid "Thanks"
|
1474 |
+
msgstr "trans_thanks"
|
1475 |
+
|
1476 |
+
#: views/events-options.php:69
|
1477 |
+
msgid "The Events Calendar Settings"
|
1478 |
+
msgstr "trans_theeventscalendarsettings"
|
1479 |
+
|
1480 |
+
#: views/events-options.php:71
|
1481 |
+
msgid "Need a hand?"
|
1482 |
+
msgstr "trans_needahand?"
|
1483 |
+
|
1484 |
+
#: views/events-options.php:72
|
1485 |
+
msgid "If you're stuck on these options, please <a href=\"http://wordpress.org/extend/plugins/the-events-calendar/\">check out the documentation</a>. If you're still wondering what's going on, be sure to stop by the support <a href=\"http://wordpress.org/tags/the-events-calendar?forum_id=10\">forum</a> and ask for help. The open source community is full of kind folks who are happy to help."
|
1486 |
+
msgstr "trans_supportlinks"
|
1487 |
+
|
1488 |
+
#: views/events-options.php:75
|
1489 |
+
msgid "Donate"
|
1490 |
+
msgstr "trans_donate"
|
1491 |
+
|
1492 |
+
#: views/events-options.php:84
|
1493 |
+
msgid "If you find this plugin useful, please consider donating to the producer of it, Shane & Peter, Inc. Thank you!"
|
1494 |
+
msgstr "trans_considerdonating"
|
1495 |
+
|
1496 |
+
#: views/events-options.php:88
|
1497 |
+
msgid "I have already donated, so please hide this button!"
|
1498 |
+
msgstr "trans_alreadydonated"
|
1499 |
+
|
1500 |
+
#: views/events-options.php:98
|
1501 |
+
msgid "Donate for this wonderful plugin"
|
1502 |
+
msgstr "trans_donatewonderful"
|
1503 |
+
|
1504 |
+
#: views/events-options.php:112
|
1505 |
+
msgid "Settings"
|
1506 |
+
msgstr "trans_settings"
|
1507 |
+
|
1508 |
+
#: views/events-options.php:115
|
1509 |
+
#: views/events-options.php:119
|
1510 |
+
msgid "Default View for the Events"
|
1511 |
+
msgstr "trans_defaultviewfortheevents"
|
1512 |
+
|
1513 |
+
#: views/events-options.php:131
|
1514 |
+
#: views/gridview.php:15
|
1515 |
+
#: views/list.php:12
|
1516 |
+
msgid "Calendar"
|
1517 |
+
msgstr "trans_calendar"
|
1518 |
+
|
1519 |
+
#: views/events-options.php:135
|
1520 |
+
#: views/gridview.php:14
|
1521 |
+
#: views/list.php:11
|
1522 |
+
msgid "Event List"
|
1523 |
+
msgstr "trans_eventlist"
|
1524 |
+
|
1525 |
+
#: views/events-options.php:141
|
1526 |
+
#: views/events-options.php:145
|
1527 |
+
msgid "Show Comments"
|
1528 |
+
msgstr "trans_showcomments"
|
1529 |
+
|
1530 |
+
#: views/events-options.php:167
|
1531 |
+
msgid "Default Country for Events"
|
1532 |
+
msgstr "trans_defaultcountryforevents"
|
1533 |
+
|
1534 |
+
#: views/events-options.php:192
|
1535 |
+
#: views/events-options.php:196
|
1536 |
+
msgid "Embed Google Maps"
|
1537 |
+
msgstr "trans_embedgooglemaps"
|
1538 |
+
|
1539 |
+
#: views/events-options.php:210
|
1540 |
+
msgid "Off"
|
1541 |
+
msgstr "trans_off"
|
1542 |
+
|
1543 |
+
#: views/events-options.php:214
|
1544 |
+
msgid "On"
|
1545 |
+
msgstr "trans_on"
|
1546 |
+
|
1547 |
+
#: views/events-options.php:217
|
1548 |
+
msgid "Height"
|
1549 |
+
msgstr "trans_height"
|
1550 |
+
|
1551 |
+
#: views/events-options.php:218
|
1552 |
+
msgid "Width"
|
1553 |
+
msgstr "trans_width"
|
1554 |
+
|
1555 |
+
#: views/events-options.php:218
|
1556 |
+
msgid "(number or %)"
|
1557 |
+
msgstr "trans_numberor%"
|
1558 |
+
|
1559 |
+
#: views/events-options.php:229
|
1560 |
+
msgid "Save Changes"
|
1561 |
+
msgstr "trans_savechanges"
|
1562 |
+
|
1563 |
+
#: views/gridview.php:9
|
1564 |
+
#: views/list.php:9
|
1565 |
+
msgid "Calendar of Events"
|
1566 |
+
msgstr "trans_calendarofevents"
|
1567 |
+
|
1568 |
+
#: views/list.php:33
|
1569 |
+
#: views/single.php:13
|
1570 |
+
msgid "Start:"
|
1571 |
+
msgstr "trans_start:"
|
1572 |
+
|
1573 |
+
#: views/list.php:37
|
1574 |
+
#: views/single.php:16
|
1575 |
+
msgid "End:"
|
1576 |
+
msgstr "trans_end:"
|
1577 |
+
|
1578 |
+
#: views/list.php:63
|
1579 |
+
#: views/single.php:30
|
1580 |
+
msgid "Google Map"
|
1581 |
+
msgstr "trans_googlemap"
|
1582 |
+
|
1583 |
+
#: views/list.php:94
|
1584 |
+
msgid "« Previous Events"
|
1585 |
+
msgstr "trans_previousevents"
|
1586 |
+
|
1587 |
+
#: views/list.php:107
|
1588 |
+
msgid "Next Events »"
|
1589 |
+
msgstr "trans_nextevents"
|
1590 |
+
|
1591 |
+
#: views/single.php:8
|
1592 |
+
msgid "« Back to Events"
|
1593 |
+
msgstr "trans_backtoevents"
|
1594 |
+
|
1595 |
+
#: views/single.php:10
|
1596 |
+
msgid "This event has passed."
|
1597 |
+
msgstr "trans_eventpassed"
|
1598 |
+
|
1599 |
+
#: views/single.php:30
|
1600 |
+
msgid "Click to view a Google Map"
|
1601 |
+
msgstr "trans_googlemaplink"
|
1602 |
+
|
1603 |
+
#. Plugin URI of an extension
|
1604 |
+
msgid "http://wordpress.org/extend/plugins/the-events-calendar/"
|
1605 |
+
msgstr "trans_plugindownload"
|
1606 |
+
|
1607 |
+
#. Description of an extension
|
1608 |
+
msgid "The Events Calendar plugin enables you to rapidly create and manage events using the post editor. Features include optional Eventbrite integration, Google Maps integration as well as default calendar grid and list templates for streamlined one click installation."
|
1609 |
+
msgstr "trans_eventcalendardescription"
|
1610 |
+
|
1611 |
+
#. Author of an extension
|
1612 |
+
msgid "Shane & Peter, Inc."
|
1613 |
+
msgstr "trans_S&P"
|
1614 |
+
|
1615 |
+
#. Author URI of an extension
|
1616 |
+
msgid "http://www.shaneandpeter.com/"
|
1617 |
+
msgstr "trans_url"
|
1618 |
+
|
lang/the-events-calendar-sv_SE.mo
CHANGED
Binary file
|
lang/the-events-calendar-sv_SE.po
CHANGED
@@ -1,996 +1,1101 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: the
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2010-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Kaj Johansson <kaj@olydia.se>\n"
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Poedit-
|
13 |
-
"X-Poedit-
|
14 |
-
"X-Poedit-SearchPath-0: .\n"
|
15 |
|
16 |
-
#: the-events-calendar.php:
|
17 |
msgid "United States"
|
18 |
msgstr "Förenta Staterna"
|
19 |
|
20 |
-
#: the-events-calendar.php:
|
21 |
msgid "Afghanistan"
|
22 |
msgstr "Afghanistan"
|
23 |
|
24 |
-
#: the-events-calendar.php:
|
25 |
msgid "Albania"
|
26 |
msgstr "Albanien"
|
27 |
|
28 |
-
#: the-events-calendar.php:
|
29 |
msgid "Algeria"
|
30 |
msgstr "Algeriet"
|
31 |
|
32 |
-
#: the-events-calendar.php:
|
33 |
msgid "American Samoa"
|
34 |
msgstr "Amerikanska Samoa"
|
35 |
|
36 |
-
#: the-events-calendar.php:
|
37 |
msgid "Andorra"
|
38 |
msgstr "Andorra"
|
39 |
|
40 |
-
#: the-events-calendar.php:
|
41 |
msgid "Angola"
|
42 |
-
msgstr "
|
43 |
|
44 |
-
#: the-events-calendar.php:
|
45 |
msgid "Anguilla"
|
46 |
msgstr "Anguilla"
|
47 |
|
48 |
-
#: the-events-calendar.php:
|
49 |
msgid "Antarctica"
|
50 |
msgstr "Antarktis"
|
51 |
|
52 |
-
#: the-events-calendar.php:
|
53 |
msgid "Antigua And Barbuda"
|
54 |
msgstr "Antigua och Barbuda"
|
55 |
|
56 |
-
#: the-events-calendar.php:
|
57 |
msgid "Argentina"
|
58 |
msgstr "Argentina"
|
59 |
|
60 |
-
#: the-events-calendar.php:
|
61 |
msgid "Armenia"
|
62 |
msgstr "Armenien"
|
63 |
|
64 |
-
#: the-events-calendar.php:
|
65 |
msgid "Aruba"
|
66 |
msgstr "Aruba"
|
67 |
|
68 |
-
#: the-events-calendar.php:
|
69 |
msgid "Australia"
|
70 |
msgstr "Australien"
|
71 |
|
72 |
-
#: the-events-calendar.php:
|
73 |
msgid "Austria"
|
74 |
msgstr "Österrike"
|
75 |
|
76 |
-
#: the-events-calendar.php:
|
77 |
msgid "Azerbaijan"
|
78 |
msgstr "Azerbajdzjan"
|
79 |
|
80 |
-
#: the-events-calendar.php:
|
81 |
msgid "Bahamas"
|
82 |
msgstr "Bahamas"
|
83 |
|
84 |
-
#: the-events-calendar.php:
|
85 |
msgid "Bahrain"
|
86 |
msgstr "Bahrain"
|
87 |
|
88 |
-
#: the-events-calendar.php:
|
89 |
msgid "Bangladesh"
|
90 |
msgstr "Bangladesh"
|
91 |
|
92 |
-
#: the-events-calendar.php:
|
93 |
msgid "Barbados"
|
94 |
msgstr "Barbados"
|
95 |
|
96 |
-
#: the-events-calendar.php:
|
97 |
msgid "Belarus"
|
98 |
msgstr "Vitryssland"
|
99 |
|
100 |
-
#: the-events-calendar.php:
|
101 |
msgid "Belgium"
|
102 |
msgstr "Belgien"
|
103 |
|
104 |
-
#: the-events-calendar.php:
|
105 |
msgid "Belize"
|
106 |
msgstr "Belize"
|
107 |
|
108 |
-
#: the-events-calendar.php:
|
109 |
msgid "Benin"
|
110 |
msgstr "Benin"
|
111 |
|
112 |
-
#: the-events-calendar.php:
|
113 |
msgid "Bermuda"
|
114 |
msgstr "Bermuda"
|
115 |
|
116 |
-
#: the-events-calendar.php:
|
117 |
msgid "Bhutan"
|
118 |
msgstr "Bhutan"
|
119 |
|
120 |
-
#: the-events-calendar.php:
|
121 |
msgid "Bolivia"
|
122 |
msgstr "Bolivia"
|
123 |
|
124 |
-
#: the-events-calendar.php:
|
125 |
msgid "Bosnia And Herzegowina"
|
126 |
msgstr "Bosnien och Hercegovina"
|
127 |
|
128 |
-
#: the-events-calendar.php:
|
129 |
msgid "Botswana"
|
130 |
msgstr "Botswana"
|
131 |
|
132 |
-
#: the-events-calendar.php:
|
133 |
msgid "Bouvet Island"
|
134 |
msgstr "Bouvet Island"
|
135 |
|
136 |
-
#: the-events-calendar.php:
|
137 |
msgid "Brazil"
|
138 |
msgstr "Brasilien"
|
139 |
|
140 |
-
#: the-events-calendar.php:
|
141 |
msgid "British Indian Ocean Territory"
|
142 |
msgstr "Brittiska territoriet i Indiska oceanen"
|
143 |
|
144 |
-
#: the-events-calendar.php:
|
145 |
msgid "Brunei Darussalam"
|
146 |
msgstr "Brunei Darussalam"
|
147 |
|
148 |
-
#: the-events-calendar.php:
|
149 |
msgid "Bulgaria"
|
150 |
msgstr "Bulgarien"
|
151 |
|
152 |
-
#: the-events-calendar.php:
|
153 |
msgid "Burkina Faso"
|
154 |
msgstr "Burkina Faso"
|
155 |
|
156 |
-
#: the-events-calendar.php:
|
157 |
msgid "Burundi"
|
158 |
msgstr "Burundi"
|
159 |
|
160 |
-
#: the-events-calendar.php:
|
161 |
msgid "Cambodia"
|
162 |
msgstr "Kambodja"
|
163 |
|
164 |
-
#: the-events-calendar.php:
|
165 |
msgid "Cameroon"
|
166 |
msgstr "Kamerun"
|
167 |
|
168 |
-
#: the-events-calendar.php:
|
169 |
msgid "Canada"
|
170 |
msgstr "Kanada"
|
171 |
|
172 |
-
#: the-events-calendar.php:
|
173 |
msgid "Cape Verde"
|
174 |
-
msgstr "
|
175 |
|
176 |
-
#: the-events-calendar.php:
|
177 |
msgid "Cayman Islands"
|
178 |
msgstr "Caymanöarna"
|
179 |
|
180 |
-
#: the-events-calendar.php:
|
181 |
msgid "Central African Republic"
|
182 |
msgstr "Centralafrikanska republiken"
|
183 |
|
184 |
-
#: the-events-calendar.php:
|
185 |
msgid "Chad"
|
186 |
msgstr "Tchad"
|
187 |
|
188 |
-
#: the-events-calendar.php:
|
189 |
msgid "Chile"
|
190 |
msgstr "Chile"
|
191 |
|
192 |
-
#: the-events-calendar.php:
|
193 |
msgid "China"
|
194 |
msgstr "Kina"
|
195 |
|
196 |
-
#: the-events-calendar.php:
|
197 |
msgid "Christmas Island"
|
198 |
msgstr "Julön"
|
199 |
|
200 |
-
#: the-events-calendar.php:
|
201 |
msgid "Cocos (Keeling) Islands"
|
202 |
msgstr "Kokosöarna"
|
203 |
|
204 |
-
#: the-events-calendar.php:
|
205 |
msgid "Colombia"
|
206 |
msgstr "Colombia"
|
207 |
|
208 |
-
#: the-events-calendar.php:
|
209 |
msgid "Comoros"
|
210 |
msgstr "Komorerna"
|
211 |
|
212 |
-
#: the-events-calendar.php:
|
213 |
msgid "Congo"
|
214 |
msgstr "Kongo"
|
215 |
|
216 |
-
#: the-events-calendar.php:
|
217 |
msgid "Congo, The Democratic Republic Of The"
|
218 |
msgstr "Kongo-Kinshasa (Demokratiska republiken Kongo)"
|
219 |
|
220 |
-
#: the-events-calendar.php:
|
221 |
msgid "Cook Islands"
|
222 |
msgstr "Cooköarna"
|
223 |
|
224 |
-
#: the-events-calendar.php:
|
225 |
msgid "Costa Rica"
|
226 |
msgstr "Costa Rica"
|
227 |
|
228 |
-
#: the-events-calendar.php:
|
229 |
msgid "Cote D'Ivoire"
|
230 |
msgstr "Elfenbenskusten"
|
231 |
|
232 |
-
#: the-events-calendar.php:
|
233 |
msgid "Croatia (Local Name: Hrvatska)"
|
234 |
msgstr "Kroatien"
|
235 |
|
236 |
-
#: the-events-calendar.php:
|
237 |
msgid "Cuba"
|
238 |
msgstr "Kuba"
|
239 |
|
240 |
-
#: the-events-calendar.php:
|
241 |
msgid "Cyprus"
|
242 |
msgstr "Cypern"
|
243 |
|
244 |
-
#: the-events-calendar.php:
|
245 |
msgid "Czech Republic"
|
246 |
msgstr "Tjekien"
|
247 |
|
248 |
-
#: the-events-calendar.php:
|
249 |
msgid "Denmark"
|
250 |
msgstr "Danmark"
|
251 |
|
252 |
-
#: the-events-calendar.php:
|
253 |
msgid "Djibouti"
|
254 |
msgstr "Djibouti (Republiken Djibouti)"
|
255 |
|
256 |
-
#: the-events-calendar.php:
|
257 |
msgid "Dominica"
|
258 |
msgstr "Dominica (Samväldet Dominica)"
|
259 |
|
260 |
-
#: the-events-calendar.php:
|
261 |
msgid "Dominican Republic"
|
262 |
msgstr "Dominikanska republiken"
|
263 |
|
264 |
-
#: the-events-calendar.php:
|
265 |
msgid "East Timor"
|
266 |
msgstr "Östtimor"
|
267 |
|
268 |
-
#: the-events-calendar.php:
|
269 |
msgid "Ecuador"
|
270 |
msgstr "Ecuador"
|
271 |
|
272 |
-
#: the-events-calendar.php:
|
273 |
msgid "Egypt"
|
274 |
msgstr "Egypten"
|
275 |
|
276 |
-
#: the-events-calendar.php:
|
277 |
msgid "El Salvador"
|
278 |
msgstr "El Salvador"
|
279 |
|
280 |
-
#: the-events-calendar.php:
|
281 |
msgid "Equatorial Guinea"
|
282 |
msgstr "Ekvatorialguinea"
|
283 |
|
284 |
-
#: the-events-calendar.php:
|
285 |
msgid "Eritrea"
|
286 |
msgstr "Eritrea"
|
287 |
|
288 |
-
#: the-events-calendar.php:
|
289 |
msgid "Estonia"
|
290 |
msgstr "Estland"
|
291 |
|
292 |
-
#: the-events-calendar.php:
|
293 |
msgid "Ethiopia"
|
294 |
msgstr "Etiopien"
|
295 |
|
296 |
-
#: the-events-calendar.php:
|
297 |
msgid "Falkland Islands (Malvinas)"
|
298 |
-
msgstr "Falklandsöarna"
|
299 |
|
300 |
-
#: the-events-calendar.php:
|
301 |
msgid "Faroe Islands"
|
302 |
msgstr "Färöarna"
|
303 |
|
304 |
-
#: the-events-calendar.php:
|
305 |
msgid "Fiji"
|
306 |
msgstr "Fiji"
|
307 |
|
308 |
-
#: the-events-calendar.php:
|
309 |
msgid "Finland"
|
310 |
msgstr "Finland"
|
311 |
|
312 |
-
#: the-events-calendar.php:
|
313 |
msgid "France"
|
314 |
msgstr "Frankrike"
|
315 |
|
316 |
-
#: the-events-calendar.php:
|
317 |
msgid "France, Metropolitan"
|
318 |
msgstr "France métropolitaine"
|
319 |
|
320 |
-
#: the-events-calendar.php:
|
321 |
msgid "French Guiana"
|
322 |
msgstr "Franska Guyana"
|
323 |
|
324 |
-
#: the-events-calendar.php:
|
325 |
msgid "French Polynesia"
|
326 |
msgstr "Franska Polynesien"
|
327 |
|
328 |
-
#: the-events-calendar.php:
|
329 |
msgid "French Southern Territories"
|
330 |
msgstr "Franska sydterritorierna"
|
331 |
|
332 |
-
#: the-events-calendar.php:
|
333 |
msgid "Gabon"
|
334 |
msgstr "Gabon"
|
335 |
|
336 |
-
#: the-events-calendar.php:
|
337 |
msgid "Gambia"
|
338 |
msgstr "Gambia"
|
339 |
|
340 |
-
#: the-events-calendar.php:
|
341 |
-
#: views/events-meta-box.php:
|
342 |
msgid "Georgia"
|
343 |
msgstr "Georgia"
|
344 |
|
345 |
-
#: the-events-calendar.php:
|
346 |
msgid "Germany"
|
347 |
msgstr "Tyskland"
|
348 |
|
349 |
-
#: the-events-calendar.php:
|
350 |
msgid "Ghana"
|
351 |
msgstr "Ghana"
|
352 |
|
353 |
-
#: the-events-calendar.php:
|
354 |
msgid "Gibraltar"
|
355 |
msgstr "Gibraltar"
|
356 |
|
357 |
-
#: the-events-calendar.php:
|
358 |
msgid "Greece"
|
359 |
msgstr "Grekland"
|
360 |
|
361 |
-
#: the-events-calendar.php:
|
362 |
msgid "Greenland"
|
363 |
msgstr "Grönland"
|
364 |
|
365 |
-
#: the-events-calendar.php:
|
366 |
msgid "Grenada"
|
367 |
msgstr "Grenada"
|
368 |
|
369 |
-
#: the-events-calendar.php:
|
370 |
msgid "Guadeloupe"
|
371 |
msgstr "Guadeloupe"
|
372 |
|
373 |
-
#: the-events-calendar.php:
|
374 |
msgid "Guam"
|
375 |
msgstr "Guam"
|
376 |
|
377 |
-
#: the-events-calendar.php:
|
378 |
msgid "Guatemala"
|
379 |
msgstr "Guatemala"
|
380 |
|
381 |
-
#: the-events-calendar.php:
|
382 |
msgid "Guinea"
|
383 |
msgstr "Guinea"
|
384 |
|
385 |
-
#: the-events-calendar.php:
|
386 |
msgid "Guinea-Bissau"
|
387 |
msgstr "Guinea-Bissau"
|
388 |
|
389 |
-
#: the-events-calendar.php:
|
390 |
msgid "Guyana"
|
391 |
msgstr "Guyana"
|
392 |
|
393 |
-
#: the-events-calendar.php:
|
394 |
msgid "Haiti"
|
395 |
msgstr "Haiti"
|
396 |
|
397 |
-
#: the-events-calendar.php:
|
398 |
msgid "Heard And Mc Donald Islands"
|
399 |
-
msgstr "Heard
|
400 |
|
401 |
-
#: the-events-calendar.php:
|
402 |
msgid "Holy See (Vatican City State)"
|
403 |
msgstr "Vatikanen"
|
404 |
|
405 |
-
#: the-events-calendar.php:
|
406 |
msgid "Honduras"
|
407 |
msgstr "Honduras"
|
408 |
|
409 |
-
#: the-events-calendar.php:
|
410 |
msgid "Hong Kong"
|
411 |
msgstr "Hong Kong"
|
412 |
|
413 |
-
#: the-events-calendar.php:
|
414 |
msgid "Hungary"
|
415 |
msgstr "Ungern"
|
416 |
|
417 |
-
#: the-events-calendar.php:
|
418 |
msgid "Iceland"
|
419 |
msgstr "Island"
|
420 |
|
421 |
-
#: the-events-calendar.php:
|
422 |
msgid "India"
|
423 |
msgstr "Indien"
|
424 |
|
425 |
-
#: the-events-calendar.php:
|
426 |
msgid "Indonesia"
|
427 |
msgstr "Indonesien"
|
428 |
|
429 |
-
#: the-events-calendar.php:
|
430 |
msgid "Iran (Islamic Republic Of)"
|
431 |
msgstr "Iran (Islamiska republiken Iran)"
|
432 |
|
433 |
-
#: the-events-calendar.php:
|
434 |
msgid "Iraq"
|
435 |
msgstr "Irak"
|
436 |
|
437 |
-
#: the-events-calendar.php:
|
438 |
msgid "Ireland"
|
439 |
msgstr "Irland"
|
440 |
|
441 |
-
#: the-events-calendar.php:
|
442 |
msgid "Israel"
|
443 |
msgstr "Israel"
|
444 |
|
445 |
-
#: the-events-calendar.php:
|
446 |
msgid "Italy"
|
447 |
msgstr "Italien"
|
448 |
|
449 |
-
#: the-events-calendar.php:
|
450 |
msgid "Jamaica"
|
451 |
msgstr "Jamaica"
|
452 |
|
453 |
-
#: the-events-calendar.php:
|
454 |
msgid "Japan"
|
455 |
msgstr "Japan"
|
456 |
|
457 |
-
#: the-events-calendar.php:
|
458 |
msgid "Jordan"
|
459 |
msgstr "Jordanien"
|
460 |
|
461 |
-
#: the-events-calendar.php:
|
462 |
msgid "Kazakhstan"
|
463 |
msgstr "Kazakstan"
|
464 |
|
465 |
-
#: the-events-calendar.php:
|
466 |
msgid "Kenya"
|
467 |
msgstr "Kenya"
|
468 |
|
469 |
-
#: the-events-calendar.php:
|
470 |
msgid "Kiribati"
|
471 |
msgstr "Kiribati"
|
472 |
|
473 |
-
#: the-events-calendar.php:
|
474 |
msgid "Korea, Democratic People's Republic Of"
|
475 |
msgstr "Nordkorea (Demokratiska folkrepubliken Korea)"
|
476 |
|
477 |
-
#: the-events-calendar.php:
|
478 |
msgid "Korea, Republic Of"
|
479 |
msgstr "Sydkorea (Republiken Korea)"
|
480 |
|
481 |
-
#: the-events-calendar.php:
|
482 |
msgid "Kuwait"
|
483 |
msgstr "Kuwait"
|
484 |
|
485 |
-
#: the-events-calendar.php:
|
486 |
msgid "Kyrgyzstan"
|
487 |
msgstr "Kirgizistan"
|
488 |
|
489 |
-
#: the-events-calendar.php:
|
490 |
msgid "Lao People's Democratic Republic"
|
491 |
msgstr "Laos (Demokratiska folkrepubliken Laos)"
|
492 |
|
493 |
-
#: the-events-calendar.php:
|
494 |
msgid "Latvia"
|
495 |
msgstr "Lettland"
|
496 |
|
497 |
-
#: the-events-calendar.php:
|
498 |
msgid "Lebanon"
|
499 |
msgstr "Libanon"
|
500 |
|
501 |
-
#: the-events-calendar.php:
|
502 |
msgid "Lesotho"
|
503 |
msgstr "Lesotho (Konungariket Lesotho)"
|
504 |
|
505 |
-
#: the-events-calendar.php:
|
506 |
msgid "Liberia"
|
507 |
msgstr "Liberia"
|
508 |
|
509 |
-
#: the-events-calendar.php:
|
510 |
msgid "Libyan Arab Jamahiriya"
|
511 |
msgstr "Libyen (Libyska arabiska Jamahiriya)"
|
512 |
|
513 |
-
#: the-events-calendar.php:
|
514 |
msgid "Liechtenstein"
|
515 |
msgstr "Liechtenstein"
|
516 |
|
517 |
-
#: the-events-calendar.php:
|
518 |
msgid "Lithuania"
|
519 |
msgstr "Litauen"
|
520 |
|
521 |
-
#: the-events-calendar.php:
|
522 |
msgid "Luxembourg"
|
523 |
msgstr "Luxemburg"
|
524 |
|
525 |
-
#: the-events-calendar.php:
|
526 |
msgid "Macau"
|
527 |
msgstr "Macao"
|
528 |
|
529 |
-
#: the-events-calendar.php:
|
530 |
msgid "Macedonia, Former Yugoslav Republic Of"
|
531 |
msgstr "Makedonien (Republiken Makedonien)"
|
532 |
|
533 |
-
#: the-events-calendar.php:
|
534 |
msgid "Madagascar"
|
535 |
msgstr "Madagaskar"
|
536 |
|
537 |
-
#: the-events-calendar.php:
|
538 |
msgid "Malawi"
|
539 |
msgstr "Malawi"
|
540 |
|
541 |
-
#: the-events-calendar.php:
|
542 |
msgid "Malaysia"
|
543 |
msgstr "Malaysia"
|
544 |
|
545 |
-
#: the-events-calendar.php:
|
546 |
msgid "Maldives"
|
547 |
msgstr "Maldiverna (Republiken Maldiverna)"
|
548 |
|
549 |
-
#: the-events-calendar.php:
|
550 |
msgid "Mali"
|
551 |
msgstr "Mali"
|
552 |
|
553 |
-
#: the-events-calendar.php:
|
554 |
msgid "Malta"
|
555 |
msgstr "Malta"
|
556 |
|
557 |
-
#: the-events-calendar.php:
|
558 |
msgid "Marshall Islands"
|
559 |
msgstr "Marshallöarna"
|
560 |
|
561 |
-
#: the-events-calendar.php:
|
562 |
msgid "Martinique"
|
563 |
msgstr "Martinique"
|
564 |
|
565 |
-
#: the-events-calendar.php:
|
566 |
msgid "Mauritania"
|
567 |
msgstr "Mauretanien (Islamiska republiken Mauretanien)"
|
568 |
|
569 |
-
#: the-events-calendar.php:
|
570 |
msgid "Mauritius"
|
571 |
msgstr "Mauritius"
|
572 |
|
573 |
-
#: the-events-calendar.php:
|
574 |
msgid "Mayotte"
|
575 |
msgstr "Mayotte"
|
576 |
|
577 |
-
#: the-events-calendar.php:
|
578 |
msgid "Mexico"
|
579 |
msgstr "Mexico"
|
580 |
|
581 |
-
#: the-events-calendar.php:
|
582 |
msgid "Micronesia, Federated States Of"
|
583 |
msgstr "Mikronesien"
|
584 |
|
585 |
-
#: the-events-calendar.php:
|
586 |
msgid "Moldova, Republic Of"
|
587 |
msgstr "Moldavien"
|
588 |
|
589 |
-
#: the-events-calendar.php:
|
590 |
msgid "Monaco"
|
591 |
msgstr "Monaco"
|
592 |
|
593 |
-
#: the-events-calendar.php:
|
594 |
msgid "Mongolia"
|
595 |
msgstr "Mongoliet"
|
596 |
|
597 |
-
#: the-events-calendar.php:
|
598 |
msgid "Montserrat"
|
599 |
msgstr "Montserrat"
|
600 |
|
601 |
-
#: the-events-calendar.php:
|
602 |
msgid "Morocco"
|
603 |
msgstr "Marocko"
|
604 |
|
605 |
-
#: the-events-calendar.php:
|
606 |
msgid "Mozambique"
|
607 |
msgstr "Moçambique (Republiken Moçambique)"
|
608 |
|
609 |
-
#: the-events-calendar.php:
|
610 |
msgid "Myanmar"
|
611 |
msgstr "Burma"
|
612 |
|
613 |
-
#: the-events-calendar.php:
|
614 |
msgid "Namibia"
|
615 |
msgstr "Namibia"
|
616 |
|
617 |
-
#: the-events-calendar.php:
|
618 |
msgid "Nauru"
|
619 |
msgstr "Nauru"
|
620 |
|
621 |
-
#: the-events-calendar.php:
|
622 |
msgid "Nepal"
|
623 |
msgstr "Nepal"
|
624 |
|
625 |
-
#: the-events-calendar.php:
|
626 |
msgid "Netherlands"
|
627 |
msgstr "Nederländerna"
|
628 |
|
629 |
-
#: the-events-calendar.php:
|
630 |
msgid "Netherlands Antilles"
|
631 |
msgstr "Nederländska Antillerna"
|
632 |
|
633 |
-
#: the-events-calendar.php:
|
634 |
msgid "New Caledonia"
|
635 |
-
msgstr "
|
636 |
|
637 |
-
#: the-events-calendar.php:
|
638 |
msgid "New Zealand"
|
639 |
msgstr "Nya Zeeland"
|
640 |
|
641 |
-
#: the-events-calendar.php:
|
642 |
msgid "Nicaragua"
|
643 |
msgstr "Nicaragua"
|
644 |
|
645 |
-
#: the-events-calendar.php:
|
646 |
msgid "Niger"
|
647 |
msgstr "Niger"
|
648 |
|
649 |
-
#: the-events-calendar.php:
|
650 |
msgid "Nigeria"
|
651 |
msgstr "Nigeria"
|
652 |
|
653 |
-
#: the-events-calendar.php:
|
654 |
msgid "Niue"
|
655 |
msgstr "Niue"
|
656 |
|
657 |
-
#: the-events-calendar.php:
|
658 |
msgid "Norfolk Island"
|
659 |
msgstr "Norfolkön"
|
660 |
|
661 |
-
#: the-events-calendar.php:
|
662 |
msgid "Northern Mariana Islands"
|
663 |
msgstr "Nordmarianerna"
|
664 |
|
665 |
-
#: the-events-calendar.php:
|
666 |
msgid "Norway"
|
667 |
msgstr "Norge"
|
668 |
|
669 |
-
#: the-events-calendar.php:
|
670 |
msgid "Oman"
|
671 |
msgstr "Oman"
|
672 |
|
673 |
-
#: the-events-calendar.php:
|
674 |
msgid "Pakistan"
|
675 |
msgstr "Pakistan"
|
676 |
|
677 |
-
#: the-events-calendar.php:
|
678 |
msgid "Palau"
|
679 |
msgstr "Palau"
|
680 |
|
681 |
-
#: the-events-calendar.php:
|
682 |
msgid "Panama"
|
683 |
msgstr "Panama"
|
684 |
|
685 |
-
#: the-events-calendar.php:
|
686 |
msgid "Papua New Guinea"
|
687 |
msgstr "Papua Nya Guinea"
|
688 |
|
689 |
-
#: the-events-calendar.php:
|
690 |
msgid "Paraguay"
|
691 |
msgstr "Paraguay"
|
692 |
|
693 |
-
#: the-events-calendar.php:
|
694 |
msgid "Peru"
|
695 |
msgstr "Peru"
|
696 |
|
697 |
-
#: the-events-calendar.php:
|
698 |
msgid "Philippines"
|
699 |
msgstr "Filippinerna"
|
700 |
|
701 |
-
#: the-events-calendar.php:
|
702 |
msgid "Pitcairn"
|
703 |
msgstr "Pitcairnöarna"
|
704 |
|
705 |
-
#: the-events-calendar.php:
|
706 |
msgid "Poland"
|
707 |
msgstr "Polen"
|
708 |
|
709 |
-
#: the-events-calendar.php:
|
710 |
msgid "Portugal"
|
711 |
msgstr "Portugal"
|
712 |
|
713 |
-
#: the-events-calendar.php:
|
714 |
msgid "Puerto Rico"
|
715 |
msgstr "Puerto Rico"
|
716 |
|
717 |
-
#: the-events-calendar.php:
|
718 |
msgid "Qatar"
|
719 |
msgstr "Qatar"
|
720 |
|
721 |
-
#: the-events-calendar.php:
|
722 |
msgid "Reunion"
|
723 |
msgstr "Réunion"
|
724 |
|
725 |
-
#: the-events-calendar.php:
|
726 |
msgid "Romania"
|
727 |
msgstr "Rumänien"
|
728 |
|
729 |
-
#: the-events-calendar.php:
|
730 |
msgid "Russian Federation"
|
731 |
msgstr "Ryssland (Ryska federationen)"
|
732 |
|
733 |
-
#: the-events-calendar.php:
|
734 |
msgid "Rwanda"
|
735 |
msgstr "Rwanda"
|
736 |
|
737 |
-
#: the-events-calendar.php:
|
738 |
msgid "Saint Kitts And Nevis"
|
739 |
msgstr "Saint Kitts och Nevis"
|
740 |
|
741 |
-
#: the-events-calendar.php:
|
742 |
msgid "Saint Lucia"
|
743 |
msgstr "Saint Lucia"
|
744 |
|
745 |
-
#: the-events-calendar.php:
|
746 |
msgid "Saint Vincent And The Grenadines"
|
747 |
msgstr "Saint Vincent och Grenadinerna"
|
748 |
|
749 |
-
#: the-events-calendar.php:
|
750 |
msgid "Samoa"
|
751 |
msgstr "Samoa"
|
752 |
|
753 |
-
#: the-events-calendar.php:
|
754 |
msgid "San Marino"
|
755 |
msgstr "San Marino"
|
756 |
|
757 |
-
#: the-events-calendar.php:
|
758 |
msgid "Sao Tome And Principe"
|
759 |
msgstr "São Tomé och Príncipe"
|
760 |
|
761 |
-
#: the-events-calendar.php:
|
762 |
msgid "Saudi Arabia"
|
763 |
msgstr "Saudiarabien"
|
764 |
|
765 |
-
#: the-events-calendar.php:
|
766 |
msgid "Senegal"
|
767 |
msgstr "Senegal"
|
768 |
|
769 |
-
#: the-events-calendar.php:
|
770 |
msgid "Seychelles"
|
771 |
msgstr "Seychellerna"
|
772 |
|
773 |
-
#: the-events-calendar.php:
|
774 |
msgid "Sierra Leone"
|
775 |
msgstr "Sierra Leone"
|
776 |
|
777 |
-
#: the-events-calendar.php:
|
778 |
msgid "Singapore"
|
779 |
msgstr "Singapore"
|
780 |
|
781 |
-
#: the-events-calendar.php:
|
782 |
msgid "Slovakia (Slovak Republic)"
|
783 |
msgstr "Slovakien"
|
784 |
|
785 |
-
#: the-events-calendar.php:
|
786 |
msgid "Slovenia"
|
787 |
msgstr "Slovenien"
|
788 |
|
789 |
-
#: the-events-calendar.php:
|
790 |
msgid "Solomon Islands"
|
791 |
-
msgstr "
|
792 |
|
793 |
-
#: the-events-calendar.php:
|
794 |
msgid "Somalia"
|
795 |
-
msgstr "
|
796 |
|
797 |
-
#: the-events-calendar.php:
|
798 |
msgid "South Africa"
|
799 |
msgstr "Sydafrika"
|
800 |
|
801 |
-
#: the-events-calendar.php:
|
802 |
msgid "South Georgia, South Sandwich Islands"
|
803 |
msgstr "Sydgeorgien och Sydsandwichöarna"
|
804 |
|
805 |
-
#: the-events-calendar.php:
|
806 |
msgid "Spain"
|
807 |
msgstr "Spanien"
|
808 |
|
809 |
-
#: the-events-calendar.php:
|
810 |
msgid "Sri Lanka"
|
811 |
msgstr "Sri Lanka"
|
812 |
|
813 |
-
#: the-events-calendar.php:
|
814 |
msgid "St. Helena"
|
815 |
-
msgstr "
|
816 |
|
817 |
-
#: the-events-calendar.php:
|
818 |
msgid "St. Pierre And Miquelon"
|
819 |
msgstr "Saint-Pierre och Miquelon"
|
820 |
|
821 |
-
#: the-events-calendar.php:
|
822 |
msgid "Sudan"
|
823 |
msgstr "Sudan"
|
824 |
|
825 |
-
#: the-events-calendar.php:
|
826 |
msgid "Suriname"
|
827 |
msgstr "Surinam"
|
828 |
|
829 |
-
#: the-events-calendar.php:
|
830 |
msgid "Svalbard And Jan Mayen Islands"
|
831 |
msgstr "Svalbard och Jan Mayen"
|
832 |
|
833 |
-
#: the-events-calendar.php:
|
834 |
msgid "Swaziland"
|
835 |
msgstr "Swaziland"
|
836 |
|
837 |
-
#: the-events-calendar.php:
|
838 |
msgid "Sweden"
|
839 |
msgstr "Sverige"
|
840 |
|
841 |
-
#: the-events-calendar.php:
|
842 |
msgid "Switzerland"
|
843 |
msgstr "Schweiz"
|
844 |
|
845 |
-
#: the-events-calendar.php:
|
846 |
msgid "Syrian Arab Republic"
|
847 |
msgstr "Syrien (Arabrepubliken Syrien)"
|
848 |
|
849 |
-
#: the-events-calendar.php:
|
850 |
msgid "Taiwan"
|
851 |
msgstr "Taiwan"
|
852 |
|
853 |
-
#: the-events-calendar.php:
|
854 |
msgid "Tajikistan"
|
855 |
msgstr "Tadzjikistan"
|
856 |
|
857 |
-
#: the-events-calendar.php:
|
858 |
msgid "Tanzania, United Republic Of"
|
859 |
msgstr "Tanzania"
|
860 |
|
861 |
-
#: the-events-calendar.php:
|
862 |
msgid "Thailand"
|
863 |
msgstr "Thailand"
|
864 |
|
865 |
-
#: the-events-calendar.php:
|
866 |
msgid "Togo"
|
867 |
msgstr "Togo"
|
868 |
|
869 |
-
#: the-events-calendar.php:
|
870 |
msgid "Tokelau"
|
871 |
msgstr "Tokelauöarna"
|
872 |
|
873 |
-
#: the-events-calendar.php:
|
874 |
msgid "Tonga"
|
875 |
msgstr "Tonga"
|
876 |
|
877 |
-
#: the-events-calendar.php:
|
878 |
msgid "Trinidad And Tobago"
|
879 |
-
msgstr "Trinidad
|
880 |
|
881 |
-
#: the-events-calendar.php:
|
882 |
msgid "Tunisia"
|
883 |
msgstr "Tunisien"
|
884 |
|
885 |
-
#: the-events-calendar.php:
|
886 |
msgid "Turkey"
|
887 |
msgstr "Turkiet"
|
888 |
|
889 |
-
#: the-events-calendar.php:
|
890 |
msgid "Turkmenistan"
|
891 |
msgstr "Turkmenistan"
|
892 |
|
893 |
-
#: the-events-calendar.php:
|
894 |
msgid "Turks And Caicos Islands"
|
895 |
msgstr "Turks- och Caicosöarna"
|
896 |
|
897 |
-
#: the-events-calendar.php:
|
898 |
msgid "Tuvalu"
|
899 |
msgstr "Tuvalu"
|
900 |
|
901 |
-
#: the-events-calendar.php:
|
902 |
msgid "Uganda"
|
903 |
msgstr "Uganda"
|
904 |
|
905 |
-
#: the-events-calendar.php:
|
906 |
msgid "Ukraine"
|
907 |
msgstr "Ukraina"
|
908 |
|
909 |
-
#: the-events-calendar.php:
|
910 |
msgid "United Arab Emirates"
|
911 |
msgstr "Förenade Arabemiraten"
|
912 |
|
913 |
-
#: the-events-calendar.php:
|
914 |
msgid "United Kingdom"
|
915 |
msgstr "Storbritannien (Förenade kungariket Storbritannien)"
|
916 |
|
917 |
-
#: the-events-calendar.php:
|
918 |
msgid "United States Minor Outlying Islands"
|
919 |
msgstr "Förenta staternas avlägset belägna öar"
|
920 |
|
921 |
-
#: the-events-calendar.php:
|
922 |
msgid "Uruguay"
|
923 |
msgstr "Uruguay"
|
924 |
|
925 |
-
#: the-events-calendar.php:
|
926 |
msgid "Uzbekistan"
|
927 |
msgstr "Uzbekistan"
|
928 |
|
929 |
-
#: the-events-calendar.php:
|
930 |
msgid "Vanuatu"
|
931 |
msgstr "Vanuatu"
|
932 |
|
933 |
-
#: the-events-calendar.php:
|
934 |
msgid "Venezuela"
|
935 |
msgstr "Venezuela"
|
936 |
|
937 |
-
#: the-events-calendar.php:
|
938 |
msgid "Viet Nam"
|
939 |
msgstr "Vietnam (Socialistiska republiken Vietnam)"
|
940 |
|
941 |
-
#: the-events-calendar.php:
|
942 |
msgid "Virgin Islands (British)"
|
943 |
msgstr "Brittiska Jungfruöarna"
|
944 |
|
945 |
-
#: the-events-calendar.php:
|
946 |
msgid "Virgin Islands (U.S.)"
|
947 |
msgstr "Amerikanska Jungfruöarna"
|
948 |
|
949 |
-
#: the-events-calendar.php:
|
950 |
msgid "Wallis And Futuna Islands"
|
951 |
msgstr "Wallis- och Futunaöarna"
|
952 |
|
953 |
-
#: the-events-calendar.php:
|
954 |
msgid "Western Sahara"
|
955 |
msgstr "Västsahara"
|
956 |
|
957 |
-
#: the-events-calendar.php:
|
958 |
msgid "Yemen"
|
959 |
msgstr "Jemen"
|
960 |
|
961 |
-
#: the-events-calendar.php:
|
962 |
msgid "Yugoslavia"
|
963 |
msgstr "Jugoslavien"
|
964 |
|
965 |
-
#: the-events-calendar.php:
|
966 |
msgid "Zambia"
|
967 |
msgstr "Zambia"
|
968 |
|
969 |
-
#: the-events-calendar.php:
|
970 |
msgid "Zimbabwe"
|
971 |
msgstr "Zimbabwe"
|
972 |
|
973 |
-
#: the-events-calendar.php:
|
974 |
-
msgid "
|
975 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
976 |
|
977 |
-
#: the-events-calendar.php:
|
978 |
-
msgid "
|
979 |
-
msgstr "
|
980 |
|
981 |
-
#: the-events-calendar.php:
|
982 |
msgid "A widget that displays the next upcoming x events."
|
983 |
msgstr "En widget som visar kommande evenemang"
|
984 |
|
985 |
-
#: the-events-calendar.php:
|
|
|
|
|
|
|
|
|
986 |
msgid "A calendar of your events"
|
987 |
msgstr "En kalender med dina evenemang"
|
988 |
|
989 |
-
#: the-events-calendar.php:
|
990 |
msgid "Events Calendar"
|
991 |
msgstr "Evenemangskalender"
|
992 |
|
993 |
-
#: the-events-calendar.php:
|
994 |
#: views/events-list-load-widget-admin.php:2
|
995 |
msgid "Title:"
|
996 |
msgstr "Titel:"
|
@@ -999,6 +1104,10 @@ msgstr "Titel:"
|
|
999 |
msgid "Show:"
|
1000 |
msgstr "Visa:"
|
1001 |
|
|
|
|
|
|
|
|
|
1002 |
#: views/events-list-load-widget-admin.php:19
|
1003 |
msgid "Start Date & Time"
|
1004 |
msgstr "Start datum & tid"
|
@@ -1043,471 +1152,466 @@ msgstr "Tele"
|
|
1043 |
msgid "Price"
|
1044 |
msgstr "Kostnad"
|
1045 |
|
1046 |
-
#: views/events-
|
1047 |
-
msgid "
|
1048 |
-
msgstr "
|
1049 |
|
1050 |
-
#: views/events-meta-box.php:
|
1051 |
msgid "Is this post an event?"
|
1052 |
msgstr "Är den här posten ett evenemang?"
|
1053 |
|
1054 |
-
#: views/events-meta-box.php:
|
1055 |
-
|
1056 |
-
|
|
|
1057 |
|
1058 |
-
#: views/events-meta-box.php:
|
1059 |
-
|
1060 |
-
|
|
|
1061 |
|
1062 |
-
#: views/events-meta-box.php:
|
1063 |
-
msgid "
|
1064 |
-
msgstr "
|
1065 |
|
1066 |
-
#: views/events-meta-box.php:
|
1067 |
-
msgid "
|
1068 |
-
msgstr "
|
1069 |
|
1070 |
-
#: views/events-meta-box.php:
|
1071 |
msgid "Start Date / Time:"
|
1072 |
msgstr "Start datum / tid:"
|
1073 |
|
1074 |
-
#: views/events-meta-box.php:
|
1075 |
-
#: views/events-meta-box.php:
|
1076 |
msgid "@"
|
1077 |
msgstr "@"
|
1078 |
|
1079 |
-
#: views/events-meta-box.php:
|
1080 |
msgid "End Date / Time:"
|
1081 |
msgstr "Slut datum / tid:"
|
1082 |
|
1083 |
-
#: views/events-meta-box.php:
|
1084 |
-
|
1085 |
-
|
|
|
|
|
|
|
|
|
1086 |
msgid "Venue:"
|
1087 |
-
msgstr "Plats
|
1088 |
|
1089 |
-
#: views/events-meta-box.php:
|
1090 |
msgid "Country:"
|
1091 |
-
msgstr "Land
|
1092 |
|
1093 |
-
#: views/events-meta-box.php:
|
1094 |
-
#: views/list.php:
|
1095 |
-
#: views/single.php:
|
1096 |
msgid "Address:"
|
1097 |
msgstr "Adress:"
|
1098 |
|
1099 |
-
#: views/events-meta-box.php:
|
1100 |
msgid "City:"
|
1101 |
msgstr "Stad:"
|
1102 |
|
1103 |
-
#: views/events-meta-box.php:
|
1104 |
msgid "Province:"
|
1105 |
msgstr "Provins/Region:"
|
1106 |
|
1107 |
-
#: views/events-meta-box.php:
|
1108 |
msgid "State:"
|
1109 |
msgstr "Delstat (US):"
|
1110 |
|
1111 |
-
#: views/events-meta-box.php:
|
1112 |
msgid "Select a State:"
|
1113 |
msgstr "Välj delstat:"
|
1114 |
|
1115 |
-
#: views/events-meta-box.php:
|
1116 |
msgid "Alabama"
|
1117 |
msgstr "Alabama"
|
1118 |
|
1119 |
-
#: views/events-meta-box.php:
|
1120 |
msgid "Alaska"
|
1121 |
msgstr "Alaska"
|
1122 |
|
1123 |
-
#: views/events-meta-box.php:
|
1124 |
msgid "Arizona"
|
1125 |
msgstr "Arizona"
|
1126 |
|
1127 |
-
#: views/events-meta-box.php:
|
1128 |
msgid "Arkansas"
|
1129 |
msgstr "Arkansas"
|
1130 |
|
1131 |
-
#: views/events-meta-box.php:
|
1132 |
msgid "California"
|
1133 |
-
msgstr "
|
1134 |
|
1135 |
-
#: views/events-meta-box.php:
|
1136 |
msgid "Colorado"
|
1137 |
msgstr "Colorado"
|
1138 |
|
1139 |
-
#: views/events-meta-box.php:
|
1140 |
msgid "Connecticut"
|
1141 |
msgstr "Connecticut"
|
1142 |
|
1143 |
-
#: views/events-meta-box.php:
|
1144 |
msgid "Delaware"
|
1145 |
msgstr "Delaware"
|
1146 |
|
1147 |
-
#: views/events-meta-box.php:
|
1148 |
msgid "District of Columbia"
|
1149 |
-
msgstr "
|
1150 |
|
1151 |
-
#: views/events-meta-box.php:
|
1152 |
msgid "Florida"
|
1153 |
msgstr "Florida"
|
1154 |
|
1155 |
-
#: views/events-meta-box.php:
|
1156 |
msgid "Hawaii"
|
1157 |
msgstr "Hawaii"
|
1158 |
|
1159 |
-
#: views/events-meta-box.php:
|
1160 |
msgid "Idaho"
|
1161 |
msgstr "Idaho"
|
1162 |
|
1163 |
-
#: views/events-meta-box.php:
|
1164 |
msgid "Illinois"
|
1165 |
msgstr "Illinois"
|
1166 |
|
1167 |
-
#: views/events-meta-box.php:
|
1168 |
msgid "Indiana"
|
1169 |
msgstr "Indiana"
|
1170 |
|
1171 |
-
#: views/events-meta-box.php:
|
1172 |
msgid "Iowa"
|
1173 |
msgstr "Iowa"
|
1174 |
|
1175 |
-
#: views/events-meta-box.php:
|
1176 |
msgid "Kansas"
|
1177 |
msgstr "Kansas"
|
1178 |
|
1179 |
-
#: views/events-meta-box.php:
|
1180 |
msgid "Kentucky"
|
1181 |
msgstr "Kentucky"
|
1182 |
|
1183 |
-
#: views/events-meta-box.php:
|
1184 |
msgid "Louisiana"
|
1185 |
msgstr "Louisiana"
|
1186 |
|
1187 |
-
#: views/events-meta-box.php:
|
1188 |
msgid "Maine"
|
1189 |
msgstr "Maine"
|
1190 |
|
1191 |
-
#: views/events-meta-box.php:
|
1192 |
msgid "Maryland"
|
1193 |
msgstr "Maryland"
|
1194 |
|
1195 |
-
#: views/events-meta-box.php:
|
1196 |
msgid "Massachusetts"
|
1197 |
msgstr "Massachusetts"
|
1198 |
|
1199 |
-
#: views/events-meta-box.php:
|
1200 |
msgid "Michigan"
|
1201 |
msgstr "Michigan"
|
1202 |
|
1203 |
-
#: views/events-meta-box.php:
|
1204 |
msgid "Minnesota"
|
1205 |
msgstr "Minnesota"
|
1206 |
|
1207 |
-
#: views/events-meta-box.php:
|
1208 |
msgid "Mississippi"
|
1209 |
msgstr "Mississippi"
|
1210 |
|
1211 |
-
#: views/events-meta-box.php:
|
1212 |
msgid "Missouri"
|
1213 |
msgstr "Missouri"
|
1214 |
|
1215 |
-
#: views/events-meta-box.php:
|
1216 |
msgid "Montana"
|
1217 |
msgstr "Montana"
|
1218 |
|
1219 |
-
#: views/events-meta-box.php:
|
1220 |
msgid "Nebraska"
|
1221 |
msgstr "Nebraska"
|
1222 |
|
1223 |
-
#: views/events-meta-box.php:
|
1224 |
msgid "Nevada"
|
1225 |
msgstr "Nevada"
|
1226 |
|
1227 |
-
#: views/events-meta-box.php:
|
1228 |
msgid "New Hampshire"
|
1229 |
msgstr "New Hampshire"
|
1230 |
|
1231 |
-
#: views/events-meta-box.php:
|
1232 |
msgid "New Jersey"
|
1233 |
msgstr "New Jersey"
|
1234 |
|
1235 |
-
#: views/events-meta-box.php:
|
1236 |
msgid "New Mexico"
|
1237 |
msgstr "New Mexico"
|
1238 |
|
1239 |
-
#: views/events-meta-box.php:
|
1240 |
msgid "New York"
|
1241 |
msgstr "New York"
|
1242 |
|
1243 |
-
#: views/events-meta-box.php:
|
1244 |
msgid "North Carolina"
|
1245 |
msgstr "North Carolina"
|
1246 |
|
1247 |
-
#: views/events-meta-box.php:
|
1248 |
msgid "North Dakota"
|
1249 |
msgstr "North Dakota"
|
1250 |
|
1251 |
-
#: views/events-meta-box.php:
|
1252 |
msgid "Ohio"
|
1253 |
msgstr "Ohio"
|
1254 |
|
1255 |
-
#: views/events-meta-box.php:
|
1256 |
msgid "Oklahoma"
|
1257 |
msgstr "Oklahoma"
|
1258 |
|
1259 |
-
#: views/events-meta-box.php:
|
1260 |
msgid "Oregon"
|
1261 |
msgstr "Oregon"
|
1262 |
|
1263 |
-
#: views/events-meta-box.php:
|
1264 |
msgid "Pennsylvania"
|
1265 |
msgstr "Pennsylvania"
|
1266 |
|
1267 |
-
#: views/events-meta-box.php:
|
1268 |
msgid "Rhode Island"
|
1269 |
msgstr "Rhode Island"
|
1270 |
|
1271 |
-
#: views/events-meta-box.php:
|
1272 |
msgid "South Carolina"
|
1273 |
msgstr "South Carolina"
|
1274 |
|
1275 |
-
#: views/events-meta-box.php:
|
1276 |
msgid "South Dakota"
|
1277 |
msgstr "South Dakota"
|
1278 |
|
1279 |
-
#: views/events-meta-box.php:
|
1280 |
msgid "Tennessee"
|
1281 |
msgstr "Tennessee"
|
1282 |
|
1283 |
-
#: views/events-meta-box.php:
|
1284 |
msgid "Texas"
|
1285 |
msgstr "Texas"
|
1286 |
|
1287 |
-
#: views/events-meta-box.php:
|
1288 |
msgid "Utah"
|
1289 |
msgstr "Utah"
|
1290 |
|
1291 |
-
#: views/events-meta-box.php:
|
1292 |
msgid "Vermont"
|
1293 |
msgstr "Vermont"
|
1294 |
|
1295 |
-
#: views/events-meta-box.php:
|
1296 |
msgid "Virginia"
|
1297 |
msgstr "Virginia"
|
1298 |
|
1299 |
-
#: views/events-meta-box.php:
|
1300 |
msgid "Washington"
|
1301 |
msgstr "Washington"
|
1302 |
|
1303 |
-
#: views/events-meta-box.php:
|
1304 |
msgid "West Virginia"
|
1305 |
msgstr "West Virginia"
|
1306 |
|
1307 |
-
#: views/events-meta-box.php:
|
1308 |
msgid "Wisconsin"
|
1309 |
msgstr "Wisconsin"
|
1310 |
|
1311 |
-
#: views/events-meta-box.php:
|
1312 |
msgid "Wyoming"
|
1313 |
msgstr "Wyoming"
|
1314 |
|
1315 |
-
#: views/events-meta-box.php:
|
1316 |
msgid "Postal Code:"
|
1317 |
msgstr "Postnummer:"
|
1318 |
|
1319 |
-
#: views/events-meta-box.php:
|
1320 |
-
#: views/list.php:
|
1321 |
msgid "Phone:"
|
1322 |
msgstr "Tele:"
|
1323 |
|
1324 |
-
#: views/events-meta-box.php:
|
1325 |
-
|
1326 |
-
|
|
|
|
|
|
|
|
|
1327 |
msgid "Cost:"
|
1328 |
msgstr "Kostnad:"
|
1329 |
|
1330 |
-
#: views/events-meta-box.php:
|
1331 |
msgid "Leave blank to hide the field. Enter a 0 for events that are free."
|
1332 |
msgstr "Lämnas blankt för att gömma fältet. Skriv 0 för evenemang som är gratis."
|
1333 |
|
1334 |
-
#: views/events-meta-box.php:
|
|
|
|
|
|
|
|
|
1335 |
msgid "Interested in selling tickets and tracking registrations? Now you can do it for free using our <a href=\"http://wordpress.org/extend/plugins/eventbrite-for-the-events-calendar/\">Eventbrite Integration Plugin</a>. Eventbrite is a feature rich easy-to-use event management tool. \"Wow, you're selling Eventbrite pretty hard. You must get a kickback.\" Well, now that you mention it... we do. We get a little something for everyone that registers an event using our referral link. It's how we're able to keep supporting and building plugins for the open source community. "
|
1336 |
msgstr "Vill du sälja biljetter och hantera anmälningar? Nu kan du göra detta gratis, om du använder <a href=\"http://wordpress.org/extend/plugins/eventbrite-for-the-events-calendar/\">Eventbrite Integration Plugin</a>. Eventbrite är funktionsrik och lättanvänt verktyg för att hantera evenemang. (\"Wow, ni försöker verkligen pusha för Eventbrita. Ni får säkert provision...\" Ja, det stämmer. Vi får en liten slant för alla som registrerar sina event genom vår länk. Det är så det blir möjligt för oss att fortsätta supporta och bygga tillägg till Open Source gemenskapen.)"
|
1337 |
|
1338 |
-
#: views/events-meta-box.php:
|
1339 |
msgid "Check it out here."
|
1340 |
msgstr "Kolla in den här."
|
1341 |
|
1342 |
-
#: views/events-meta-box.php:
|
1343 |
-
msgid ""
|
1344 |
-
"<h4>If You Like This Plugin - Help Support It</h4>\r\n"
|
1345 |
-
"\t\t\t\t<p>We spend a lot of time and effort building robust plugins and we love to share them with the community. If you use this plugin consider making a donation to help support its' continued development. You may remove this message on the <a href=\"/wp-admin/options-general.php?page=the-events-calendar.php\">settings page</a>.</p>"
|
1346 |
msgstr ""
|
1347 |
-
"
|
1348 |
"\t\t\t\t<p>Vi lägger ner massor av tid på att skapa bra tillägg som vi gärna delar med oss av till hela Open Source gemenskapen. Om du använder det här tillägget, överväg då att göra en donation för att stödja fortsatt utveckling. Du kan ta bort det här meddelandet på <a href=\"/wp-admin/options-general.php?page=the-events-calendar.php\">inställsningssidan</a>.</p>"
|
1349 |
|
1350 |
-
#: views/events-meta-box.php:
|
1351 |
msgid "Thanks"
|
1352 |
msgstr "Tack"
|
1353 |
|
1354 |
-
#: views/events-options.php:
|
1355 |
msgid "The Events Calendar Settings"
|
1356 |
msgstr "Evenemangskalenderns inställningar"
|
1357 |
|
1358 |
-
#: views/events-options.php:
|
1359 |
msgid "Need a hand?"
|
1360 |
msgstr "Behöver du hjälp?"
|
1361 |
|
1362 |
-
#: views/events-options.php:
|
1363 |
msgid "If you're stuck on these options, please <a href=\"http://wordpress.org/extend/plugins/the-events-calendar/\">check out the documentation</a>. If you're still wondering what's going on, be sure to stop by the support <a href=\"http://wordpress.org/tags/the-events-calendar?forum_id=10\">forum</a> and ask for help. The open source community is full of kind folks who are happy to help."
|
1364 |
msgstr "Om du fastnar på de här inställningarna, så kan du <a href=\"http://wordpress.org/extend/plugins/the-events-calendar/\">kolla dokumentationen</a>. Om du inte hittar svar där, så kan du alltid kolla in vårt support <a href=\"http://wordpress.org/tags/the-events-calendar?forum_id=10\">forum</a> och fråga om hjälp. Där finns det många snälla människor som gärna hjälper till."
|
1365 |
|
1366 |
-
#: views/events-options.php:
|
1367 |
-
#: views/user-profile.php:19
|
1368 |
msgid "Donate"
|
1369 |
msgstr "Donera"
|
1370 |
|
1371 |
-
#: views/events-options.php:
|
1372 |
-
#: views/user-profile.php:28
|
1373 |
msgid "If you find this plugin useful, please consider donating to the producer of it, Shane & Peter, Inc. Thank you!"
|
1374 |
msgstr "Om du gillar det här tillägget, överväg gärna en donation till skaparna av det, Shane & Peter, Inc. Tack!"
|
1375 |
|
1376 |
-
#: views/events-options.php:
|
1377 |
msgid "I have already donated, so please hide this button!"
|
1378 |
msgstr "Jag har redan donerat, var snäll och dölj den här knappen!"
|
1379 |
|
1380 |
-
#: views/events-options.php:
|
1381 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1382 |
msgid "Default View for the Events"
|
1383 |
msgstr "Förvald vy för evenemang"
|
1384 |
|
1385 |
-
#: views/events-options.php:
|
1386 |
-
#: views/gridview.php:
|
1387 |
-
#: views/list.php:
|
1388 |
msgid "Calendar"
|
1389 |
msgstr "Kalender"
|
1390 |
|
1391 |
-
#: views/events-options.php:
|
1392 |
-
#: views/gridview.php:
|
1393 |
-
#: views/list.php:
|
1394 |
msgid "Event List"
|
1395 |
msgstr "Evenemangslista"
|
1396 |
|
1397 |
-
#: views/events-options.php:
|
1398 |
-
#: views/events-options.php:
|
1399 |
msgid "Show Comments"
|
1400 |
msgstr "Visa kommentarer"
|
1401 |
|
1402 |
-
#: views/events-options.php:
|
1403 |
-
msgid "Yes"
|
1404 |
-
msgstr "Ja"
|
1405 |
-
|
1406 |
-
#: views/events-options.php:139
|
1407 |
-
msgid "No"
|
1408 |
-
msgstr "Nej"
|
1409 |
-
|
1410 |
-
#: views/events-options.php:145
|
1411 |
msgid "Default Country for Events"
|
1412 |
msgstr "Förvalt land för evenemang"
|
1413 |
|
1414 |
-
#: views/events-options.php:
|
1415 |
-
#: views/events-options.php:
|
1416 |
msgid "Embed Google Maps"
|
1417 |
-
msgstr "Bädda in Google Maps
|
1418 |
|
1419 |
-
#: views/events-options.php:
|
1420 |
msgid "Off"
|
1421 |
msgstr "Av"
|
1422 |
|
1423 |
-
#: views/events-options.php:
|
1424 |
msgid "On"
|
1425 |
msgstr "På"
|
1426 |
|
1427 |
-
#: views/events-options.php:
|
1428 |
msgid "Height"
|
1429 |
msgstr "Höjd"
|
1430 |
|
1431 |
-
#: views/events-options.php:
|
1432 |
msgid "Width"
|
1433 |
-
msgstr "
|
1434 |
|
1435 |
-
#: views/
|
1436 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1437 |
msgid "Calendar of Events"
|
1438 |
-
msgstr "
|
1439 |
|
1440 |
-
#: views/list.php:
|
1441 |
-
#: views/single.php:
|
1442 |
msgid "Start:"
|
1443 |
-
msgstr "
|
1444 |
|
1445 |
-
#: views/list.php:
|
1446 |
-
#: views/single.php:
|
1447 |
msgid "End:"
|
1448 |
-
msgstr "
|
1449 |
-
|
1450 |
-
#: views/single.php:8
|
1451 |
-
msgid "This event has passed."
|
1452 |
-
msgstr "Det här evenemanget har varit."
|
1453 |
-
|
1454 |
-
#: views/table.php:12
|
1455 |
-
msgid "Sunday"
|
1456 |
-
msgstr "Söndag"
|
1457 |
-
|
1458 |
-
#: views/table.php:12
|
1459 |
-
msgid "Sun"
|
1460 |
-
msgstr "Sön"
|
1461 |
-
|
1462 |
-
#: views/table.php:13
|
1463 |
-
msgid "Monday"
|
1464 |
-
msgstr "Måndag"
|
1465 |
-
|
1466 |
-
#: views/table.php:13
|
1467 |
-
msgid "Mon"
|
1468 |
-
msgstr "Mån"
|
1469 |
-
|
1470 |
-
#: views/table.php:14
|
1471 |
-
msgid "Tuesday"
|
1472 |
-
msgstr "Tisdag"
|
1473 |
|
1474 |
-
#: views/
|
1475 |
-
|
1476 |
-
|
|
|
1477 |
|
1478 |
-
#: views/
|
1479 |
-
msgid "
|
1480 |
-
msgstr "
|
1481 |
|
1482 |
-
#: views/
|
1483 |
-
msgid "
|
1484 |
-
msgstr "
|
1485 |
|
1486 |
-
#: views/
|
1487 |
-
msgid "
|
1488 |
-
msgstr "
|
1489 |
|
1490 |
-
#: views/
|
1491 |
-
msgid "
|
1492 |
-
msgstr "
|
1493 |
|
1494 |
-
#: views/
|
1495 |
-
msgid "
|
1496 |
-
msgstr "
|
1497 |
|
1498 |
-
|
1499 |
-
msgid "
|
1500 |
-
msgstr "
|
1501 |
|
1502 |
-
|
1503 |
-
msgid "
|
1504 |
-
msgstr "
|
1505 |
|
1506 |
-
|
1507 |
-
msgid "
|
1508 |
-
msgstr "
|
1509 |
|
1510 |
-
|
1511 |
-
msgid "
|
1512 |
-
msgstr "
|
1513 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: the events calendar 1.5.6\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/the-events-calendar\n"
|
5 |
+
"POT-Creation-Date: 2010-02-16 02:03+0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Kaj Johansson <kaj@olydia.se>\n"
|
8 |
+
"Language-Team: Kaj <kaj@olydia.se>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-Language: swedish\n"
|
13 |
+
"X-Poedit-Country: sweden\n"
|
|
|
14 |
|
15 |
+
#: the-events-calendar.php:54
|
16 |
msgid "United States"
|
17 |
msgstr "Förenta Staterna"
|
18 |
|
19 |
+
#: the-events-calendar.php:55
|
20 |
msgid "Afghanistan"
|
21 |
msgstr "Afghanistan"
|
22 |
|
23 |
+
#: the-events-calendar.php:56
|
24 |
msgid "Albania"
|
25 |
msgstr "Albanien"
|
26 |
|
27 |
+
#: the-events-calendar.php:57
|
28 |
msgid "Algeria"
|
29 |
msgstr "Algeriet"
|
30 |
|
31 |
+
#: the-events-calendar.php:58
|
32 |
msgid "American Samoa"
|
33 |
msgstr "Amerikanska Samoa"
|
34 |
|
35 |
+
#: the-events-calendar.php:59
|
36 |
msgid "Andorra"
|
37 |
msgstr "Andorra"
|
38 |
|
39 |
+
#: the-events-calendar.php:60
|
40 |
msgid "Angola"
|
41 |
+
msgstr "Angola"
|
42 |
|
43 |
+
#: the-events-calendar.php:61
|
44 |
msgid "Anguilla"
|
45 |
msgstr "Anguilla"
|
46 |
|
47 |
+
#: the-events-calendar.php:62
|
48 |
msgid "Antarctica"
|
49 |
msgstr "Antarktis"
|
50 |
|
51 |
+
#: the-events-calendar.php:63
|
52 |
msgid "Antigua And Barbuda"
|
53 |
msgstr "Antigua och Barbuda"
|
54 |
|
55 |
+
#: the-events-calendar.php:64
|
56 |
msgid "Argentina"
|
57 |
msgstr "Argentina"
|
58 |
|
59 |
+
#: the-events-calendar.php:65
|
60 |
msgid "Armenia"
|
61 |
msgstr "Armenien"
|
62 |
|
63 |
+
#: the-events-calendar.php:66
|
64 |
msgid "Aruba"
|
65 |
msgstr "Aruba"
|
66 |
|
67 |
+
#: the-events-calendar.php:67
|
68 |
msgid "Australia"
|
69 |
msgstr "Australien"
|
70 |
|
71 |
+
#: the-events-calendar.php:68
|
72 |
msgid "Austria"
|
73 |
msgstr "Österrike"
|
74 |
|
75 |
+
#: the-events-calendar.php:69
|
76 |
msgid "Azerbaijan"
|
77 |
msgstr "Azerbajdzjan"
|
78 |
|
79 |
+
#: the-events-calendar.php:70
|
80 |
msgid "Bahamas"
|
81 |
msgstr "Bahamas"
|
82 |
|
83 |
+
#: the-events-calendar.php:71
|
84 |
msgid "Bahrain"
|
85 |
msgstr "Bahrain"
|
86 |
|
87 |
+
#: the-events-calendar.php:72
|
88 |
msgid "Bangladesh"
|
89 |
msgstr "Bangladesh"
|
90 |
|
91 |
+
#: the-events-calendar.php:73
|
92 |
msgid "Barbados"
|
93 |
msgstr "Barbados"
|
94 |
|
95 |
+
#: the-events-calendar.php:74
|
96 |
msgid "Belarus"
|
97 |
msgstr "Vitryssland"
|
98 |
|
99 |
+
#: the-events-calendar.php:75
|
100 |
msgid "Belgium"
|
101 |
msgstr "Belgien"
|
102 |
|
103 |
+
#: the-events-calendar.php:76
|
104 |
msgid "Belize"
|
105 |
msgstr "Belize"
|
106 |
|
107 |
+
#: the-events-calendar.php:77
|
108 |
msgid "Benin"
|
109 |
msgstr "Benin"
|
110 |
|
111 |
+
#: the-events-calendar.php:78
|
112 |
msgid "Bermuda"
|
113 |
msgstr "Bermuda"
|
114 |
|
115 |
+
#: the-events-calendar.php:79
|
116 |
msgid "Bhutan"
|
117 |
msgstr "Bhutan"
|
118 |
|
119 |
+
#: the-events-calendar.php:80
|
120 |
msgid "Bolivia"
|
121 |
msgstr "Bolivia"
|
122 |
|
123 |
+
#: the-events-calendar.php:81
|
124 |
msgid "Bosnia And Herzegowina"
|
125 |
msgstr "Bosnien och Hercegovina"
|
126 |
|
127 |
+
#: the-events-calendar.php:82
|
128 |
msgid "Botswana"
|
129 |
msgstr "Botswana"
|
130 |
|
131 |
+
#: the-events-calendar.php:83
|
132 |
msgid "Bouvet Island"
|
133 |
msgstr "Bouvet Island"
|
134 |
|
135 |
+
#: the-events-calendar.php:84
|
136 |
msgid "Brazil"
|
137 |
msgstr "Brasilien"
|
138 |
|
139 |
+
#: the-events-calendar.php:85
|
140 |
msgid "British Indian Ocean Territory"
|
141 |
msgstr "Brittiska territoriet i Indiska oceanen"
|
142 |
|
143 |
+
#: the-events-calendar.php:86
|
144 |
msgid "Brunei Darussalam"
|
145 |
msgstr "Brunei Darussalam"
|
146 |
|
147 |
+
#: the-events-calendar.php:87
|
148 |
msgid "Bulgaria"
|
149 |
msgstr "Bulgarien"
|
150 |
|
151 |
+
#: the-events-calendar.php:88
|
152 |
msgid "Burkina Faso"
|
153 |
msgstr "Burkina Faso"
|
154 |
|
155 |
+
#: the-events-calendar.php:89
|
156 |
msgid "Burundi"
|
157 |
msgstr "Burundi"
|
158 |
|
159 |
+
#: the-events-calendar.php:90
|
160 |
msgid "Cambodia"
|
161 |
msgstr "Kambodja"
|
162 |
|
163 |
+
#: the-events-calendar.php:91
|
164 |
msgid "Cameroon"
|
165 |
msgstr "Kamerun"
|
166 |
|
167 |
+
#: the-events-calendar.php:92
|
168 |
msgid "Canada"
|
169 |
msgstr "Kanada"
|
170 |
|
171 |
+
#: the-events-calendar.php:93
|
172 |
msgid "Cape Verde"
|
173 |
+
msgstr "Kap Verde"
|
174 |
|
175 |
+
#: the-events-calendar.php:94
|
176 |
msgid "Cayman Islands"
|
177 |
msgstr "Caymanöarna"
|
178 |
|
179 |
+
#: the-events-calendar.php:95
|
180 |
msgid "Central African Republic"
|
181 |
msgstr "Centralafrikanska republiken"
|
182 |
|
183 |
+
#: the-events-calendar.php:96
|
184 |
msgid "Chad"
|
185 |
msgstr "Tchad"
|
186 |
|
187 |
+
#: the-events-calendar.php:97
|
188 |
msgid "Chile"
|
189 |
msgstr "Chile"
|
190 |
|
191 |
+
#: the-events-calendar.php:98
|
192 |
msgid "China"
|
193 |
msgstr "Kina"
|
194 |
|
195 |
+
#: the-events-calendar.php:99
|
196 |
msgid "Christmas Island"
|
197 |
msgstr "Julön"
|
198 |
|
199 |
+
#: the-events-calendar.php:100
|
200 |
msgid "Cocos (Keeling) Islands"
|
201 |
msgstr "Kokosöarna"
|
202 |
|
203 |
+
#: the-events-calendar.php:101
|
204 |
msgid "Colombia"
|
205 |
msgstr "Colombia"
|
206 |
|
207 |
+
#: the-events-calendar.php:102
|
208 |
msgid "Comoros"
|
209 |
msgstr "Komorerna"
|
210 |
|
211 |
+
#: the-events-calendar.php:103
|
212 |
msgid "Congo"
|
213 |
msgstr "Kongo"
|
214 |
|
215 |
+
#: the-events-calendar.php:104
|
216 |
msgid "Congo, The Democratic Republic Of The"
|
217 |
msgstr "Kongo-Kinshasa (Demokratiska republiken Kongo)"
|
218 |
|
219 |
+
#: the-events-calendar.php:105
|
220 |
msgid "Cook Islands"
|
221 |
msgstr "Cooköarna"
|
222 |
|
223 |
+
#: the-events-calendar.php:106
|
224 |
msgid "Costa Rica"
|
225 |
msgstr "Costa Rica"
|
226 |
|
227 |
+
#: the-events-calendar.php:107
|
228 |
msgid "Cote D'Ivoire"
|
229 |
msgstr "Elfenbenskusten"
|
230 |
|
231 |
+
#: the-events-calendar.php:108
|
232 |
msgid "Croatia (Local Name: Hrvatska)"
|
233 |
msgstr "Kroatien"
|
234 |
|
235 |
+
#: the-events-calendar.php:109
|
236 |
msgid "Cuba"
|
237 |
msgstr "Kuba"
|
238 |
|
239 |
+
#: the-events-calendar.php:110
|
240 |
msgid "Cyprus"
|
241 |
msgstr "Cypern"
|
242 |
|
243 |
+
#: the-events-calendar.php:111
|
244 |
msgid "Czech Republic"
|
245 |
msgstr "Tjekien"
|
246 |
|
247 |
+
#: the-events-calendar.php:112
|
248 |
msgid "Denmark"
|
249 |
msgstr "Danmark"
|
250 |
|
251 |
+
#: the-events-calendar.php:113
|
252 |
msgid "Djibouti"
|
253 |
msgstr "Djibouti (Republiken Djibouti)"
|
254 |
|
255 |
+
#: the-events-calendar.php:114
|
256 |
msgid "Dominica"
|
257 |
msgstr "Dominica (Samväldet Dominica)"
|
258 |
|
259 |
+
#: the-events-calendar.php:115
|
260 |
msgid "Dominican Republic"
|
261 |
msgstr "Dominikanska republiken"
|
262 |
|
263 |
+
#: the-events-calendar.php:116
|
264 |
msgid "East Timor"
|
265 |
msgstr "Östtimor"
|
266 |
|
267 |
+
#: the-events-calendar.php:117
|
268 |
msgid "Ecuador"
|
269 |
msgstr "Ecuador"
|
270 |
|
271 |
+
#: the-events-calendar.php:118
|
272 |
msgid "Egypt"
|
273 |
msgstr "Egypten"
|
274 |
|
275 |
+
#: the-events-calendar.php:119
|
276 |
msgid "El Salvador"
|
277 |
msgstr "El Salvador"
|
278 |
|
279 |
+
#: the-events-calendar.php:120
|
280 |
msgid "Equatorial Guinea"
|
281 |
msgstr "Ekvatorialguinea"
|
282 |
|
283 |
+
#: the-events-calendar.php:121
|
284 |
msgid "Eritrea"
|
285 |
msgstr "Eritrea"
|
286 |
|
287 |
+
#: the-events-calendar.php:122
|
288 |
msgid "Estonia"
|
289 |
msgstr "Estland"
|
290 |
|
291 |
+
#: the-events-calendar.php:123
|
292 |
msgid "Ethiopia"
|
293 |
msgstr "Etiopien"
|
294 |
|
295 |
+
#: the-events-calendar.php:124
|
296 |
msgid "Falkland Islands (Malvinas)"
|
297 |
+
msgstr "Falklandsöarna (Malvinerna)"
|
298 |
|
299 |
+
#: the-events-calendar.php:125
|
300 |
msgid "Faroe Islands"
|
301 |
msgstr "Färöarna"
|
302 |
|
303 |
+
#: the-events-calendar.php:126
|
304 |
msgid "Fiji"
|
305 |
msgstr "Fiji"
|
306 |
|
307 |
+
#: the-events-calendar.php:127
|
308 |
msgid "Finland"
|
309 |
msgstr "Finland"
|
310 |
|
311 |
+
#: the-events-calendar.php:128
|
312 |
msgid "France"
|
313 |
msgstr "Frankrike"
|
314 |
|
315 |
+
#: the-events-calendar.php:129
|
316 |
msgid "France, Metropolitan"
|
317 |
msgstr "France métropolitaine"
|
318 |
|
319 |
+
#: the-events-calendar.php:130
|
320 |
msgid "French Guiana"
|
321 |
msgstr "Franska Guyana"
|
322 |
|
323 |
+
#: the-events-calendar.php:131
|
324 |
msgid "French Polynesia"
|
325 |
msgstr "Franska Polynesien"
|
326 |
|
327 |
+
#: the-events-calendar.php:132
|
328 |
msgid "French Southern Territories"
|
329 |
msgstr "Franska sydterritorierna"
|
330 |
|
331 |
+
#: the-events-calendar.php:133
|
332 |
msgid "Gabon"
|
333 |
msgstr "Gabon"
|
334 |
|
335 |
+
#: the-events-calendar.php:134
|
336 |
msgid "Gambia"
|
337 |
msgstr "Gambia"
|
338 |
|
339 |
+
#: the-events-calendar.php:135
|
340 |
+
#: views/events-meta-box.php:282
|
341 |
msgid "Georgia"
|
342 |
msgstr "Georgia"
|
343 |
|
344 |
+
#: the-events-calendar.php:136
|
345 |
msgid "Germany"
|
346 |
msgstr "Tyskland"
|
347 |
|
348 |
+
#: the-events-calendar.php:137
|
349 |
msgid "Ghana"
|
350 |
msgstr "Ghana"
|
351 |
|
352 |
+
#: the-events-calendar.php:138
|
353 |
msgid "Gibraltar"
|
354 |
msgstr "Gibraltar"
|
355 |
|
356 |
+
#: the-events-calendar.php:139
|
357 |
msgid "Greece"
|
358 |
msgstr "Grekland"
|
359 |
|
360 |
+
#: the-events-calendar.php:140
|
361 |
msgid "Greenland"
|
362 |
msgstr "Grönland"
|
363 |
|
364 |
+
#: the-events-calendar.php:141
|
365 |
msgid "Grenada"
|
366 |
msgstr "Grenada"
|
367 |
|
368 |
+
#: the-events-calendar.php:142
|
369 |
msgid "Guadeloupe"
|
370 |
msgstr "Guadeloupe"
|
371 |
|
372 |
+
#: the-events-calendar.php:143
|
373 |
msgid "Guam"
|
374 |
msgstr "Guam"
|
375 |
|
376 |
+
#: the-events-calendar.php:144
|
377 |
msgid "Guatemala"
|
378 |
msgstr "Guatemala"
|
379 |
|
380 |
+
#: the-events-calendar.php:145
|
381 |
msgid "Guinea"
|
382 |
msgstr "Guinea"
|
383 |
|
384 |
+
#: the-events-calendar.php:146
|
385 |
msgid "Guinea-Bissau"
|
386 |
msgstr "Guinea-Bissau"
|
387 |
|
388 |
+
#: the-events-calendar.php:147
|
389 |
msgid "Guyana"
|
390 |
msgstr "Guyana"
|
391 |
|
392 |
+
#: the-events-calendar.php:148
|
393 |
msgid "Haiti"
|
394 |
msgstr "Haiti"
|
395 |
|
396 |
+
#: the-events-calendar.php:149
|
397 |
msgid "Heard And Mc Donald Islands"
|
398 |
+
msgstr "Heard And Mc Donald Islands"
|
399 |
|
400 |
+
#: the-events-calendar.php:150
|
401 |
msgid "Holy See (Vatican City State)"
|
402 |
msgstr "Vatikanen"
|
403 |
|
404 |
+
#: the-events-calendar.php:151
|
405 |
msgid "Honduras"
|
406 |
msgstr "Honduras"
|
407 |
|
408 |
+
#: the-events-calendar.php:152
|
409 |
msgid "Hong Kong"
|
410 |
msgstr "Hong Kong"
|
411 |
|
412 |
+
#: the-events-calendar.php:153
|
413 |
msgid "Hungary"
|
414 |
msgstr "Ungern"
|
415 |
|
416 |
+
#: the-events-calendar.php:154
|
417 |
msgid "Iceland"
|
418 |
msgstr "Island"
|
419 |
|
420 |
+
#: the-events-calendar.php:155
|
421 |
msgid "India"
|
422 |
msgstr "Indien"
|
423 |
|
424 |
+
#: the-events-calendar.php:156
|
425 |
msgid "Indonesia"
|
426 |
msgstr "Indonesien"
|
427 |
|
428 |
+
#: the-events-calendar.php:157
|
429 |
msgid "Iran (Islamic Republic Of)"
|
430 |
msgstr "Iran (Islamiska republiken Iran)"
|
431 |
|
432 |
+
#: the-events-calendar.php:158
|
433 |
msgid "Iraq"
|
434 |
msgstr "Irak"
|
435 |
|
436 |
+
#: the-events-calendar.php:159
|
437 |
msgid "Ireland"
|
438 |
msgstr "Irland"
|
439 |
|
440 |
+
#: the-events-calendar.php:160
|
441 |
msgid "Israel"
|
442 |
msgstr "Israel"
|
443 |
|
444 |
+
#: the-events-calendar.php:161
|
445 |
msgid "Italy"
|
446 |
msgstr "Italien"
|
447 |
|
448 |
+
#: the-events-calendar.php:162
|
449 |
msgid "Jamaica"
|
450 |
msgstr "Jamaica"
|
451 |
|
452 |
+
#: the-events-calendar.php:163
|
453 |
msgid "Japan"
|
454 |
msgstr "Japan"
|
455 |
|
456 |
+
#: the-events-calendar.php:164
|
457 |
msgid "Jordan"
|
458 |
msgstr "Jordanien"
|
459 |
|
460 |
+
#: the-events-calendar.php:165
|
461 |
msgid "Kazakhstan"
|
462 |
msgstr "Kazakstan"
|
463 |
|
464 |
+
#: the-events-calendar.php:166
|
465 |
msgid "Kenya"
|
466 |
msgstr "Kenya"
|
467 |
|
468 |
+
#: the-events-calendar.php:167
|
469 |
msgid "Kiribati"
|
470 |
msgstr "Kiribati"
|
471 |
|
472 |
+
#: the-events-calendar.php:168
|
473 |
msgid "Korea, Democratic People's Republic Of"
|
474 |
msgstr "Nordkorea (Demokratiska folkrepubliken Korea)"
|
475 |
|
476 |
+
#: the-events-calendar.php:169
|
477 |
msgid "Korea, Republic Of"
|
478 |
msgstr "Sydkorea (Republiken Korea)"
|
479 |
|
480 |
+
#: the-events-calendar.php:170
|
481 |
msgid "Kuwait"
|
482 |
msgstr "Kuwait"
|
483 |
|
484 |
+
#: the-events-calendar.php:171
|
485 |
msgid "Kyrgyzstan"
|
486 |
msgstr "Kirgizistan"
|
487 |
|
488 |
+
#: the-events-calendar.php:172
|
489 |
msgid "Lao People's Democratic Republic"
|
490 |
msgstr "Laos (Demokratiska folkrepubliken Laos)"
|
491 |
|
492 |
+
#: the-events-calendar.php:173
|
493 |
msgid "Latvia"
|
494 |
msgstr "Lettland"
|
495 |
|
496 |
+
#: the-events-calendar.php:174
|
497 |
msgid "Lebanon"
|
498 |
msgstr "Libanon"
|
499 |
|
500 |
+
#: the-events-calendar.php:175
|
501 |
msgid "Lesotho"
|
502 |
msgstr "Lesotho (Konungariket Lesotho)"
|
503 |
|
504 |
+
#: the-events-calendar.php:176
|
505 |
msgid "Liberia"
|
506 |
msgstr "Liberia"
|
507 |
|
508 |
+
#: the-events-calendar.php:177
|
509 |
msgid "Libyan Arab Jamahiriya"
|
510 |
msgstr "Libyen (Libyska arabiska Jamahiriya)"
|
511 |
|
512 |
+
#: the-events-calendar.php:178
|
513 |
msgid "Liechtenstein"
|
514 |
msgstr "Liechtenstein"
|
515 |
|
516 |
+
#: the-events-calendar.php:179
|
517 |
msgid "Lithuania"
|
518 |
msgstr "Litauen"
|
519 |
|
520 |
+
#: the-events-calendar.php:180
|
521 |
msgid "Luxembourg"
|
522 |
msgstr "Luxemburg"
|
523 |
|
524 |
+
#: the-events-calendar.php:181
|
525 |
msgid "Macau"
|
526 |
msgstr "Macao"
|
527 |
|
528 |
+
#: the-events-calendar.php:182
|
529 |
msgid "Macedonia, Former Yugoslav Republic Of"
|
530 |
msgstr "Makedonien (Republiken Makedonien)"
|
531 |
|
532 |
+
#: the-events-calendar.php:183
|
533 |
msgid "Madagascar"
|
534 |
msgstr "Madagaskar"
|
535 |
|
536 |
+
#: the-events-calendar.php:184
|
537 |
msgid "Malawi"
|
538 |
msgstr "Malawi"
|
539 |
|
540 |
+
#: the-events-calendar.php:185
|
541 |
msgid "Malaysia"
|
542 |
msgstr "Malaysia"
|
543 |
|
544 |
+
#: the-events-calendar.php:186
|
545 |
msgid "Maldives"
|
546 |
msgstr "Maldiverna (Republiken Maldiverna)"
|
547 |
|
548 |
+
#: the-events-calendar.php:187
|
549 |
msgid "Mali"
|
550 |
msgstr "Mali"
|
551 |
|
552 |
+
#: the-events-calendar.php:188
|
553 |
msgid "Malta"
|
554 |
msgstr "Malta"
|
555 |
|
556 |
+
#: the-events-calendar.php:189
|
557 |
msgid "Marshall Islands"
|
558 |
msgstr "Marshallöarna"
|
559 |
|
560 |
+
#: the-events-calendar.php:190
|
561 |
msgid "Martinique"
|
562 |
msgstr "Martinique"
|
563 |
|
564 |
+
#: the-events-calendar.php:191
|
565 |
msgid "Mauritania"
|
566 |
msgstr "Mauretanien (Islamiska republiken Mauretanien)"
|
567 |
|
568 |
+
#: the-events-calendar.php:192
|
569 |
msgid "Mauritius"
|
570 |
msgstr "Mauritius"
|
571 |
|
572 |
+
#: the-events-calendar.php:193
|
573 |
msgid "Mayotte"
|
574 |
msgstr "Mayotte"
|
575 |
|
576 |
+
#: the-events-calendar.php:194
|
577 |
msgid "Mexico"
|
578 |
msgstr "Mexico"
|
579 |
|
580 |
+
#: the-events-calendar.php:195
|
581 |
msgid "Micronesia, Federated States Of"
|
582 |
msgstr "Mikronesien"
|
583 |
|
584 |
+
#: the-events-calendar.php:196
|
585 |
msgid "Moldova, Republic Of"
|
586 |
msgstr "Moldavien"
|
587 |
|
588 |
+
#: the-events-calendar.php:197
|
589 |
msgid "Monaco"
|
590 |
msgstr "Monaco"
|
591 |
|
592 |
+
#: the-events-calendar.php:198
|
593 |
msgid "Mongolia"
|
594 |
msgstr "Mongoliet"
|
595 |
|
596 |
+
#: the-events-calendar.php:199
|
597 |
msgid "Montserrat"
|
598 |
msgstr "Montserrat"
|
599 |
|
600 |
+
#: the-events-calendar.php:200
|
601 |
msgid "Morocco"
|
602 |
msgstr "Marocko"
|
603 |
|
604 |
+
#: the-events-calendar.php:201
|
605 |
msgid "Mozambique"
|
606 |
msgstr "Moçambique (Republiken Moçambique)"
|
607 |
|
608 |
+
#: the-events-calendar.php:202
|
609 |
msgid "Myanmar"
|
610 |
msgstr "Burma"
|
611 |
|
612 |
+
#: the-events-calendar.php:203
|
613 |
msgid "Namibia"
|
614 |
msgstr "Namibia"
|
615 |
|
616 |
+
#: the-events-calendar.php:204
|
617 |
msgid "Nauru"
|
618 |
msgstr "Nauru"
|
619 |
|
620 |
+
#: the-events-calendar.php:205
|
621 |
msgid "Nepal"
|
622 |
msgstr "Nepal"
|
623 |
|
624 |
+
#: the-events-calendar.php:206
|
625 |
msgid "Netherlands"
|
626 |
msgstr "Nederländerna"
|
627 |
|
628 |
+
#: the-events-calendar.php:207
|
629 |
msgid "Netherlands Antilles"
|
630 |
msgstr "Nederländska Antillerna"
|
631 |
|
632 |
+
#: the-events-calendar.php:208
|
633 |
msgid "New Caledonia"
|
634 |
+
msgstr "Nya Kaledonien"
|
635 |
|
636 |
+
#: the-events-calendar.php:209
|
637 |
msgid "New Zealand"
|
638 |
msgstr "Nya Zeeland"
|
639 |
|
640 |
+
#: the-events-calendar.php:210
|
641 |
msgid "Nicaragua"
|
642 |
msgstr "Nicaragua"
|
643 |
|
644 |
+
#: the-events-calendar.php:211
|
645 |
msgid "Niger"
|
646 |
msgstr "Niger"
|
647 |
|
648 |
+
#: the-events-calendar.php:212
|
649 |
msgid "Nigeria"
|
650 |
msgstr "Nigeria"
|
651 |
|
652 |
+
#: the-events-calendar.php:213
|
653 |
msgid "Niue"
|
654 |
msgstr "Niue"
|
655 |
|
656 |
+
#: the-events-calendar.php:214
|
657 |
msgid "Norfolk Island"
|
658 |
msgstr "Norfolkön"
|
659 |
|
660 |
+
#: the-events-calendar.php:215
|
661 |
msgid "Northern Mariana Islands"
|
662 |
msgstr "Nordmarianerna"
|
663 |
|
664 |
+
#: the-events-calendar.php:216
|
665 |
msgid "Norway"
|
666 |
msgstr "Norge"
|
667 |
|
668 |
+
#: the-events-calendar.php:217
|
669 |
msgid "Oman"
|
670 |
msgstr "Oman"
|
671 |
|
672 |
+
#: the-events-calendar.php:218
|
673 |
msgid "Pakistan"
|
674 |
msgstr "Pakistan"
|
675 |
|
676 |
+
#: the-events-calendar.php:219
|
677 |
msgid "Palau"
|
678 |
msgstr "Palau"
|
679 |
|
680 |
+
#: the-events-calendar.php:220
|
681 |
msgid "Panama"
|
682 |
msgstr "Panama"
|
683 |
|
684 |
+
#: the-events-calendar.php:221
|
685 |
msgid "Papua New Guinea"
|
686 |
msgstr "Papua Nya Guinea"
|
687 |
|
688 |
+
#: the-events-calendar.php:222
|
689 |
msgid "Paraguay"
|
690 |
msgstr "Paraguay"
|
691 |
|
692 |
+
#: the-events-calendar.php:223
|
693 |
msgid "Peru"
|
694 |
msgstr "Peru"
|
695 |
|
696 |
+
#: the-events-calendar.php:224
|
697 |
msgid "Philippines"
|
698 |
msgstr "Filippinerna"
|
699 |
|
700 |
+
#: the-events-calendar.php:225
|
701 |
msgid "Pitcairn"
|
702 |
msgstr "Pitcairnöarna"
|
703 |
|
704 |
+
#: the-events-calendar.php:226
|
705 |
msgid "Poland"
|
706 |
msgstr "Polen"
|
707 |
|
708 |
+
#: the-events-calendar.php:227
|
709 |
msgid "Portugal"
|
710 |
msgstr "Portugal"
|
711 |
|
712 |
+
#: the-events-calendar.php:228
|
713 |
msgid "Puerto Rico"
|
714 |
msgstr "Puerto Rico"
|
715 |
|
716 |
+
#: the-events-calendar.php:229
|
717 |
msgid "Qatar"
|
718 |
msgstr "Qatar"
|
719 |
|
720 |
+
#: the-events-calendar.php:230
|
721 |
msgid "Reunion"
|
722 |
msgstr "Réunion"
|
723 |
|
724 |
+
#: the-events-calendar.php:231
|
725 |
msgid "Romania"
|
726 |
msgstr "Rumänien"
|
727 |
|
728 |
+
#: the-events-calendar.php:232
|
729 |
msgid "Russian Federation"
|
730 |
msgstr "Ryssland (Ryska federationen)"
|
731 |
|
732 |
+
#: the-events-calendar.php:233
|
733 |
msgid "Rwanda"
|
734 |
msgstr "Rwanda"
|
735 |
|
736 |
+
#: the-events-calendar.php:234
|
737 |
msgid "Saint Kitts And Nevis"
|
738 |
msgstr "Saint Kitts och Nevis"
|
739 |
|
740 |
+
#: the-events-calendar.php:235
|
741 |
msgid "Saint Lucia"
|
742 |
msgstr "Saint Lucia"
|
743 |
|
744 |
+
#: the-events-calendar.php:236
|
745 |
msgid "Saint Vincent And The Grenadines"
|
746 |
msgstr "Saint Vincent och Grenadinerna"
|
747 |
|
748 |
+
#: the-events-calendar.php:237
|
749 |
msgid "Samoa"
|
750 |
msgstr "Samoa"
|
751 |
|
752 |
+
#: the-events-calendar.php:238
|
753 |
msgid "San Marino"
|
754 |
msgstr "San Marino"
|
755 |
|
756 |
+
#: the-events-calendar.php:239
|
757 |
msgid "Sao Tome And Principe"
|
758 |
msgstr "São Tomé och Príncipe"
|
759 |
|
760 |
+
#: the-events-calendar.php:240
|
761 |
msgid "Saudi Arabia"
|
762 |
msgstr "Saudiarabien"
|
763 |
|
764 |
+
#: the-events-calendar.php:241
|
765 |
msgid "Senegal"
|
766 |
msgstr "Senegal"
|
767 |
|
768 |
+
#: the-events-calendar.php:242
|
769 |
msgid "Seychelles"
|
770 |
msgstr "Seychellerna"
|
771 |
|
772 |
+
#: the-events-calendar.php:243
|
773 |
msgid "Sierra Leone"
|
774 |
msgstr "Sierra Leone"
|
775 |
|
776 |
+
#: the-events-calendar.php:244
|
777 |
msgid "Singapore"
|
778 |
msgstr "Singapore"
|
779 |
|
780 |
+
#: the-events-calendar.php:245
|
781 |
msgid "Slovakia (Slovak Republic)"
|
782 |
msgstr "Slovakien"
|
783 |
|
784 |
+
#: the-events-calendar.php:246
|
785 |
msgid "Slovenia"
|
786 |
msgstr "Slovenien"
|
787 |
|
788 |
+
#: the-events-calendar.php:247
|
789 |
msgid "Solomon Islands"
|
790 |
+
msgstr "Salomonöarna"
|
791 |
|
792 |
+
#: the-events-calendar.php:248
|
793 |
msgid "Somalia"
|
794 |
+
msgstr "Somalia"
|
795 |
|
796 |
+
#: the-events-calendar.php:249
|
797 |
msgid "South Africa"
|
798 |
msgstr "Sydafrika"
|
799 |
|
800 |
+
#: the-events-calendar.php:250
|
801 |
msgid "South Georgia, South Sandwich Islands"
|
802 |
msgstr "Sydgeorgien och Sydsandwichöarna"
|
803 |
|
804 |
+
#: the-events-calendar.php:251
|
805 |
msgid "Spain"
|
806 |
msgstr "Spanien"
|
807 |
|
808 |
+
#: the-events-calendar.php:252
|
809 |
msgid "Sri Lanka"
|
810 |
msgstr "Sri Lanka"
|
811 |
|
812 |
+
#: the-events-calendar.php:253
|
813 |
msgid "St. Helena"
|
814 |
+
msgstr "Sankta Helena"
|
815 |
|
816 |
+
#: the-events-calendar.php:254
|
817 |
msgid "St. Pierre And Miquelon"
|
818 |
msgstr "Saint-Pierre och Miquelon"
|
819 |
|
820 |
+
#: the-events-calendar.php:255
|
821 |
msgid "Sudan"
|
822 |
msgstr "Sudan"
|
823 |
|
824 |
+
#: the-events-calendar.php:256
|
825 |
msgid "Suriname"
|
826 |
msgstr "Surinam"
|
827 |
|
828 |
+
#: the-events-calendar.php:257
|
829 |
msgid "Svalbard And Jan Mayen Islands"
|
830 |
msgstr "Svalbard och Jan Mayen"
|
831 |
|
832 |
+
#: the-events-calendar.php:258
|
833 |
msgid "Swaziland"
|
834 |
msgstr "Swaziland"
|
835 |
|
836 |
+
#: the-events-calendar.php:259
|
837 |
msgid "Sweden"
|
838 |
msgstr "Sverige"
|
839 |
|
840 |
+
#: the-events-calendar.php:260
|
841 |
msgid "Switzerland"
|
842 |
msgstr "Schweiz"
|
843 |
|
844 |
+
#: the-events-calendar.php:261
|
845 |
msgid "Syrian Arab Republic"
|
846 |
msgstr "Syrien (Arabrepubliken Syrien)"
|
847 |
|
848 |
+
#: the-events-calendar.php:262
|
849 |
msgid "Taiwan"
|
850 |
msgstr "Taiwan"
|
851 |
|
852 |
+
#: the-events-calendar.php:263
|
853 |
msgid "Tajikistan"
|
854 |
msgstr "Tadzjikistan"
|
855 |
|
856 |
+
#: the-events-calendar.php:264
|
857 |
msgid "Tanzania, United Republic Of"
|
858 |
msgstr "Tanzania"
|
859 |
|
860 |
+
#: the-events-calendar.php:265
|
861 |
msgid "Thailand"
|
862 |
msgstr "Thailand"
|
863 |
|
864 |
+
#: the-events-calendar.php:266
|
865 |
msgid "Togo"
|
866 |
msgstr "Togo"
|
867 |
|
868 |
+
#: the-events-calendar.php:267
|
869 |
msgid "Tokelau"
|
870 |
msgstr "Tokelauöarna"
|
871 |
|
872 |
+
#: the-events-calendar.php:268
|
873 |
msgid "Tonga"
|
874 |
msgstr "Tonga"
|
875 |
|
876 |
+
#: the-events-calendar.php:269
|
877 |
msgid "Trinidad And Tobago"
|
878 |
+
msgstr "Trinidad And Tobago"
|
879 |
|
880 |
+
#: the-events-calendar.php:270
|
881 |
msgid "Tunisia"
|
882 |
msgstr "Tunisien"
|
883 |
|
884 |
+
#: the-events-calendar.php:271
|
885 |
msgid "Turkey"
|
886 |
msgstr "Turkiet"
|
887 |
|
888 |
+
#: the-events-calendar.php:272
|
889 |
msgid "Turkmenistan"
|
890 |
msgstr "Turkmenistan"
|
891 |
|
892 |
+
#: the-events-calendar.php:273
|
893 |
msgid "Turks And Caicos Islands"
|
894 |
msgstr "Turks- och Caicosöarna"
|
895 |
|
896 |
+
#: the-events-calendar.php:274
|
897 |
msgid "Tuvalu"
|
898 |
msgstr "Tuvalu"
|
899 |
|
900 |
+
#: the-events-calendar.php:275
|
901 |
msgid "Uganda"
|
902 |
msgstr "Uganda"
|
903 |
|
904 |
+
#: the-events-calendar.php:276
|
905 |
msgid "Ukraine"
|
906 |
msgstr "Ukraina"
|
907 |
|
908 |
+
#: the-events-calendar.php:277
|
909 |
msgid "United Arab Emirates"
|
910 |
msgstr "Förenade Arabemiraten"
|
911 |
|
912 |
+
#: the-events-calendar.php:278
|
913 |
msgid "United Kingdom"
|
914 |
msgstr "Storbritannien (Förenade kungariket Storbritannien)"
|
915 |
|
916 |
+
#: the-events-calendar.php:279
|
917 |
msgid "United States Minor Outlying Islands"
|
918 |
msgstr "Förenta staternas avlägset belägna öar"
|
919 |
|
920 |
+
#: the-events-calendar.php:280
|
921 |
msgid "Uruguay"
|
922 |
msgstr "Uruguay"
|
923 |
|
924 |
+
#: the-events-calendar.php:281
|
925 |
msgid "Uzbekistan"
|
926 |
msgstr "Uzbekistan"
|
927 |
|
928 |
+
#: the-events-calendar.php:282
|
929 |
msgid "Vanuatu"
|
930 |
msgstr "Vanuatu"
|
931 |
|
932 |
+
#: the-events-calendar.php:283
|
933 |
msgid "Venezuela"
|
934 |
msgstr "Venezuela"
|
935 |
|
936 |
+
#: the-events-calendar.php:284
|
937 |
msgid "Viet Nam"
|
938 |
msgstr "Vietnam (Socialistiska republiken Vietnam)"
|
939 |
|
940 |
+
#: the-events-calendar.php:285
|
941 |
msgid "Virgin Islands (British)"
|
942 |
msgstr "Brittiska Jungfruöarna"
|
943 |
|
944 |
+
#: the-events-calendar.php:286
|
945 |
msgid "Virgin Islands (U.S.)"
|
946 |
msgstr "Amerikanska Jungfruöarna"
|
947 |
|
948 |
+
#: the-events-calendar.php:287
|
949 |
msgid "Wallis And Futuna Islands"
|
950 |
msgstr "Wallis- och Futunaöarna"
|
951 |
|
952 |
+
#: the-events-calendar.php:288
|
953 |
msgid "Western Sahara"
|
954 |
msgstr "Västsahara"
|
955 |
|
956 |
+
#: the-events-calendar.php:289
|
957 |
msgid "Yemen"
|
958 |
msgstr "Jemen"
|
959 |
|
960 |
+
#: the-events-calendar.php:290
|
961 |
msgid "Yugoslavia"
|
962 |
msgstr "Jugoslavien"
|
963 |
|
964 |
+
#: the-events-calendar.php:291
|
965 |
msgid "Zambia"
|
966 |
msgstr "Zambia"
|
967 |
|
968 |
+
#: the-events-calendar.php:292
|
969 |
msgid "Zimbabwe"
|
970 |
msgstr "Zimbabwe"
|
971 |
|
972 |
+
#: the-events-calendar.php:496
|
973 |
+
msgid "January"
|
974 |
+
msgstr "Januari"
|
975 |
+
|
976 |
+
#: the-events-calendar.php:497
|
977 |
+
msgid "February"
|
978 |
+
msgstr "Februari"
|
979 |
+
|
980 |
+
#: the-events-calendar.php:498
|
981 |
+
msgid "March"
|
982 |
+
msgstr "Mars"
|
983 |
+
|
984 |
+
#: the-events-calendar.php:499
|
985 |
+
msgid "April"
|
986 |
+
msgstr "April"
|
987 |
+
|
988 |
+
#: the-events-calendar.php:500
|
989 |
+
msgid "May"
|
990 |
+
msgstr "Maj"
|
991 |
+
|
992 |
+
#: the-events-calendar.php:501
|
993 |
+
msgid "June"
|
994 |
+
msgstr "Juni"
|
995 |
+
|
996 |
+
#: the-events-calendar.php:502
|
997 |
+
msgid "July"
|
998 |
+
msgstr "Juli"
|
999 |
+
|
1000 |
+
#: the-events-calendar.php:503
|
1001 |
+
msgid "August"
|
1002 |
+
msgstr "Augusti"
|
1003 |
+
|
1004 |
+
#: the-events-calendar.php:504
|
1005 |
+
msgid "September"
|
1006 |
+
msgstr "September"
|
1007 |
+
|
1008 |
+
#: the-events-calendar.php:505
|
1009 |
+
msgid "October"
|
1010 |
+
msgstr "Oktober"
|
1011 |
+
|
1012 |
+
#: the-events-calendar.php:506
|
1013 |
+
msgid "November"
|
1014 |
+
msgstr "November"
|
1015 |
+
|
1016 |
+
#: the-events-calendar.php:507
|
1017 |
+
msgid "December"
|
1018 |
+
msgstr "December"
|
1019 |
+
|
1020 |
+
#. #-#-#-#-# plugin.pot (The Events Calendar 1.5.4) #-#-#-#-#
|
1021 |
+
#. Plugin Name of an extension
|
1022 |
+
#: the-events-calendar.php:939
|
1023 |
+
msgid "The Events Calendar"
|
1024 |
+
msgstr "Evenemangskalendern"
|
1025 |
+
|
1026 |
+
#: the-events-calendar.php:1214
|
1027 |
+
msgid "Sun"
|
1028 |
+
msgstr "Sön"
|
1029 |
+
|
1030 |
+
#: the-events-calendar.php:1214
|
1031 |
+
msgid "Mon"
|
1032 |
+
msgstr "Mån"
|
1033 |
+
|
1034 |
+
#: the-events-calendar.php:1214
|
1035 |
+
msgid "Tue"
|
1036 |
+
msgstr "Tis"
|
1037 |
+
|
1038 |
+
#: the-events-calendar.php:1214
|
1039 |
+
msgid "Wed"
|
1040 |
+
msgstr "Ons"
|
1041 |
+
|
1042 |
+
#: the-events-calendar.php:1214
|
1043 |
+
msgid "Thu"
|
1044 |
+
msgstr "Tor"
|
1045 |
+
|
1046 |
+
#: the-events-calendar.php:1214
|
1047 |
+
msgid "Fri"
|
1048 |
+
msgstr "Fre"
|
1049 |
+
|
1050 |
+
#: the-events-calendar.php:1214
|
1051 |
+
msgid "Sat"
|
1052 |
+
msgstr "Lör"
|
1053 |
+
|
1054 |
+
#: the-events-calendar.php:1215
|
1055 |
+
msgid "Sunday"
|
1056 |
+
msgstr "Söndag"
|
1057 |
+
|
1058 |
+
#: the-events-calendar.php:1215
|
1059 |
+
msgid "Monday"
|
1060 |
+
msgstr "Måndag"
|
1061 |
+
|
1062 |
+
#: the-events-calendar.php:1215
|
1063 |
+
msgid "Tuesday"
|
1064 |
+
msgstr "Tisdag"
|
1065 |
+
|
1066 |
+
#: the-events-calendar.php:1215
|
1067 |
+
msgid "Wednesday"
|
1068 |
+
msgstr "Onsdag"
|
1069 |
+
|
1070 |
+
#: the-events-calendar.php:1215
|
1071 |
+
msgid "Thursday"
|
1072 |
+
msgstr "Torsdag"
|
1073 |
+
|
1074 |
+
#: the-events-calendar.php:1215
|
1075 |
+
msgid "Friday"
|
1076 |
+
msgstr "Fredag"
|
1077 |
|
1078 |
+
#: the-events-calendar.php:1215
|
1079 |
+
msgid "Saturday"
|
1080 |
+
msgstr "Lördag"
|
1081 |
|
1082 |
+
#: the-events-calendar.php:1926
|
1083 |
msgid "A widget that displays the next upcoming x events."
|
1084 |
msgstr "En widget som visar kommande evenemang"
|
1085 |
|
1086 |
+
#: the-events-calendar.php:1968
|
1087 |
+
msgid "View All Events"
|
1088 |
+
msgstr "Visa alla evenemang"
|
1089 |
+
|
1090 |
+
#: the-events-calendar.php:2049
|
1091 |
msgid "A calendar of your events"
|
1092 |
msgstr "En kalender med dina evenemang"
|
1093 |
|
1094 |
+
#: the-events-calendar.php:2050
|
1095 |
msgid "Events Calendar"
|
1096 |
msgstr "Evenemangskalender"
|
1097 |
|
1098 |
+
#: the-events-calendar.php:2076
|
1099 |
#: views/events-list-load-widget-admin.php:2
|
1100 |
msgid "Title:"
|
1101 |
msgstr "Titel:"
|
1104 |
msgid "Show:"
|
1105 |
msgstr "Visa:"
|
1106 |
|
1107 |
+
#: views/events-list-load-widget-admin.php:16
|
1108 |
+
msgid "Display:"
|
1109 |
+
msgstr "Visa:"
|
1110 |
+
|
1111 |
#: views/events-list-load-widget-admin.php:19
|
1112 |
msgid "Start Date & Time"
|
1113 |
msgstr "Start datum & tid"
|
1152 |
msgid "Price"
|
1153 |
msgstr "Kostnad"
|
1154 |
|
1155 |
+
#: views/events-list-load-widget-display.php:48
|
1156 |
+
msgid "More Info"
|
1157 |
+
msgstr "Mer info"
|
1158 |
|
1159 |
+
#: views/events-meta-box.php:153
|
1160 |
msgid "Is this post an event?"
|
1161 |
msgstr "Är den här posten ett evenemang?"
|
1162 |
|
1163 |
+
#: views/events-meta-box.php:154
|
1164 |
+
#: views/events-options.php:157
|
1165 |
+
msgid "Yes"
|
1166 |
+
msgstr "Ja"
|
1167 |
|
1168 |
+
#: views/events-meta-box.php:155
|
1169 |
+
#: views/events-options.php:161
|
1170 |
+
msgid "No"
|
1171 |
+
msgstr "Nej"
|
1172 |
|
1173 |
+
#: views/events-meta-box.php:162
|
1174 |
+
msgid "Event Time & Date"
|
1175 |
+
msgstr "När?"
|
1176 |
|
1177 |
+
#: views/events-meta-box.php:165
|
1178 |
+
msgid "All day event?"
|
1179 |
+
msgstr "Heldagsevenemang"
|
1180 |
|
1181 |
+
#: views/events-meta-box.php:169
|
1182 |
msgid "Start Date / Time:"
|
1183 |
msgstr "Start datum / tid:"
|
1184 |
|
1185 |
+
#: views/events-meta-box.php:183
|
1186 |
+
#: views/events-meta-box.php:213
|
1187 |
msgid "@"
|
1188 |
msgstr "@"
|
1189 |
|
1190 |
+
#: views/events-meta-box.php:199
|
1191 |
msgid "End Date / Time:"
|
1192 |
msgstr "Slut datum / tid:"
|
1193 |
|
1194 |
+
#: views/events-meta-box.php:229
|
1195 |
+
msgid "Event Location Details"
|
1196 |
+
msgstr "Var?"
|
1197 |
+
|
1198 |
+
#: views/events-meta-box.php:232
|
1199 |
+
#: views/list.php:45
|
1200 |
+
#: views/single.php:26
|
1201 |
msgid "Venue:"
|
1202 |
+
msgstr "Plats"
|
1203 |
|
1204 |
+
#: views/events-meta-box.php:238
|
1205 |
msgid "Country:"
|
1206 |
+
msgstr "Land"
|
1207 |
|
1208 |
+
#: views/events-meta-box.php:255
|
1209 |
+
#: views/list.php:63
|
1210 |
+
#: views/single.php:30
|
1211 |
msgid "Address:"
|
1212 |
msgstr "Adress:"
|
1213 |
|
1214 |
+
#: views/events-meta-box.php:259
|
1215 |
msgid "City:"
|
1216 |
msgstr "Stad:"
|
1217 |
|
1218 |
+
#: views/events-meta-box.php:263
|
1219 |
msgid "Province:"
|
1220 |
msgstr "Provins/Region:"
|
1221 |
|
1222 |
+
#: views/events-meta-box.php:267
|
1223 |
msgid "State:"
|
1224 |
msgstr "Delstat (US):"
|
1225 |
|
1226 |
+
#: views/events-meta-box.php:270
|
1227 |
msgid "Select a State:"
|
1228 |
msgstr "Välj delstat:"
|
1229 |
|
1230 |
+
#: views/events-meta-box.php:272
|
1231 |
msgid "Alabama"
|
1232 |
msgstr "Alabama"
|
1233 |
|
1234 |
+
#: views/events-meta-box.php:273
|
1235 |
msgid "Alaska"
|
1236 |
msgstr "Alaska"
|
1237 |
|
1238 |
+
#: views/events-meta-box.php:274
|
1239 |
msgid "Arizona"
|
1240 |
msgstr "Arizona"
|
1241 |
|
1242 |
+
#: views/events-meta-box.php:275
|
1243 |
msgid "Arkansas"
|
1244 |
msgstr "Arkansas"
|
1245 |
|
1246 |
+
#: views/events-meta-box.php:276
|
1247 |
msgid "California"
|
1248 |
+
msgstr "California"
|
1249 |
|
1250 |
+
#: views/events-meta-box.php:277
|
1251 |
msgid "Colorado"
|
1252 |
msgstr "Colorado"
|
1253 |
|
1254 |
+
#: views/events-meta-box.php:278
|
1255 |
msgid "Connecticut"
|
1256 |
msgstr "Connecticut"
|
1257 |
|
1258 |
+
#: views/events-meta-box.php:279
|
1259 |
msgid "Delaware"
|
1260 |
msgstr "Delaware"
|
1261 |
|
1262 |
+
#: views/events-meta-box.php:280
|
1263 |
msgid "District of Columbia"
|
1264 |
+
msgstr "District of Columbia"
|
1265 |
|
1266 |
+
#: views/events-meta-box.php:281
|
1267 |
msgid "Florida"
|
1268 |
msgstr "Florida"
|
1269 |
|
1270 |
+
#: views/events-meta-box.php:283
|
1271 |
msgid "Hawaii"
|
1272 |
msgstr "Hawaii"
|
1273 |
|
1274 |
+
#: views/events-meta-box.php:284
|
1275 |
msgid "Idaho"
|
1276 |
msgstr "Idaho"
|
1277 |
|
1278 |
+
#: views/events-meta-box.php:285
|
1279 |
msgid "Illinois"
|
1280 |
msgstr "Illinois"
|
1281 |
|
1282 |
+
#: views/events-meta-box.php:286
|
1283 |
msgid "Indiana"
|
1284 |
msgstr "Indiana"
|
1285 |
|
1286 |
+
#: views/events-meta-box.php:287
|
1287 |
msgid "Iowa"
|
1288 |
msgstr "Iowa"
|
1289 |
|
1290 |
+
#: views/events-meta-box.php:288
|
1291 |
msgid "Kansas"
|
1292 |
msgstr "Kansas"
|
1293 |
|
1294 |
+
#: views/events-meta-box.php:289
|
1295 |
msgid "Kentucky"
|
1296 |
msgstr "Kentucky"
|
1297 |
|
1298 |
+
#: views/events-meta-box.php:290
|
1299 |
msgid "Louisiana"
|
1300 |
msgstr "Louisiana"
|
1301 |
|
1302 |
+
#: views/events-meta-box.php:291
|
1303 |
msgid "Maine"
|
1304 |
msgstr "Maine"
|
1305 |
|
1306 |
+
#: views/events-meta-box.php:292
|
1307 |
msgid "Maryland"
|
1308 |
msgstr "Maryland"
|
1309 |
|
1310 |
+
#: views/events-meta-box.php:293
|
1311 |
msgid "Massachusetts"
|
1312 |
msgstr "Massachusetts"
|
1313 |
|
1314 |
+
#: views/events-meta-box.php:294
|
1315 |
msgid "Michigan"
|
1316 |
msgstr "Michigan"
|
1317 |
|
1318 |
+
#: views/events-meta-box.php:295
|
1319 |
msgid "Minnesota"
|
1320 |
msgstr "Minnesota"
|
1321 |
|
1322 |
+
#: views/events-meta-box.php:296
|
1323 |
msgid "Mississippi"
|
1324 |
msgstr "Mississippi"
|
1325 |
|
1326 |
+
#: views/events-meta-box.php:297
|
1327 |
msgid "Missouri"
|
1328 |
msgstr "Missouri"
|
1329 |
|
1330 |
+
#: views/events-meta-box.php:298
|
1331 |
msgid "Montana"
|
1332 |
msgstr "Montana"
|
1333 |
|
1334 |
+
#: views/events-meta-box.php:299
|
1335 |
msgid "Nebraska"
|
1336 |
msgstr "Nebraska"
|
1337 |
|
1338 |
+
#: views/events-meta-box.php:300
|
1339 |
msgid "Nevada"
|
1340 |
msgstr "Nevada"
|
1341 |
|
1342 |
+
#: views/events-meta-box.php:301
|
1343 |
msgid "New Hampshire"
|
1344 |
msgstr "New Hampshire"
|
1345 |
|
1346 |
+
#: views/events-meta-box.php:302
|
1347 |
msgid "New Jersey"
|
1348 |
msgstr "New Jersey"
|
1349 |
|
1350 |
+
#: views/events-meta-box.php:303
|
1351 |
msgid "New Mexico"
|
1352 |
msgstr "New Mexico"
|
1353 |
|
1354 |
+
#: views/events-meta-box.php:304
|
1355 |
msgid "New York"
|
1356 |
msgstr "New York"
|
1357 |
|
1358 |
+
#: views/events-meta-box.php:305
|
1359 |
msgid "North Carolina"
|
1360 |
msgstr "North Carolina"
|
1361 |
|
1362 |
+
#: views/events-meta-box.php:306
|
1363 |
msgid "North Dakota"
|
1364 |
msgstr "North Dakota"
|
1365 |
|
1366 |
+
#: views/events-meta-box.php:307
|
1367 |
msgid "Ohio"
|
1368 |
msgstr "Ohio"
|
1369 |
|
1370 |
+
#: views/events-meta-box.php:308
|
1371 |
msgid "Oklahoma"
|
1372 |
msgstr "Oklahoma"
|
1373 |
|
1374 |
+
#: views/events-meta-box.php:309
|
1375 |
msgid "Oregon"
|
1376 |
msgstr "Oregon"
|
1377 |
|
1378 |
+
#: views/events-meta-box.php:310
|
1379 |
msgid "Pennsylvania"
|
1380 |
msgstr "Pennsylvania"
|
1381 |
|
1382 |
+
#: views/events-meta-box.php:311
|
1383 |
msgid "Rhode Island"
|
1384 |
msgstr "Rhode Island"
|
1385 |
|
1386 |
+
#: views/events-meta-box.php:312
|
1387 |
msgid "South Carolina"
|
1388 |
msgstr "South Carolina"
|
1389 |
|
1390 |
+
#: views/events-meta-box.php:313
|
1391 |
msgid "South Dakota"
|
1392 |
msgstr "South Dakota"
|
1393 |
|
1394 |
+
#: views/events-meta-box.php:314
|
1395 |
msgid "Tennessee"
|
1396 |
msgstr "Tennessee"
|
1397 |
|
1398 |
+
#: views/events-meta-box.php:315
|
1399 |
msgid "Texas"
|
1400 |
msgstr "Texas"
|
1401 |
|
1402 |
+
#: views/events-meta-box.php:316
|
1403 |
msgid "Utah"
|
1404 |
msgstr "Utah"
|
1405 |
|
1406 |
+
#: views/events-meta-box.php:317
|
1407 |
msgid "Vermont"
|
1408 |
msgstr "Vermont"
|
1409 |
|
1410 |
+
#: views/events-meta-box.php:318
|
1411 |
msgid "Virginia"
|
1412 |
msgstr "Virginia"
|
1413 |
|
1414 |
+
#: views/events-meta-box.php:319
|
1415 |
msgid "Washington"
|
1416 |
msgstr "Washington"
|
1417 |
|
1418 |
+
#: views/events-meta-box.php:320
|
1419 |
msgid "West Virginia"
|
1420 |
msgstr "West Virginia"
|
1421 |
|
1422 |
+
#: views/events-meta-box.php:321
|
1423 |
msgid "Wisconsin"
|
1424 |
msgstr "Wisconsin"
|
1425 |
|
1426 |
+
#: views/events-meta-box.php:322
|
1427 |
msgid "Wyoming"
|
1428 |
msgstr "Wyoming"
|
1429 |
|
1430 |
+
#: views/events-meta-box.php:336
|
1431 |
msgid "Postal Code:"
|
1432 |
msgstr "Postnummer:"
|
1433 |
|
1434 |
+
#: views/events-meta-box.php:340
|
1435 |
+
#: views/list.php:54
|
1436 |
msgid "Phone:"
|
1437 |
msgstr "Tele:"
|
1438 |
|
1439 |
+
#: views/events-meta-box.php:344
|
1440 |
+
msgid "Event Cost"
|
1441 |
+
msgstr "Kostnad:"
|
1442 |
+
|
1443 |
+
#: views/events-meta-box.php:347
|
1444 |
+
#: views/list.php:72
|
1445 |
+
#: views/single.php:20
|
1446 |
msgid "Cost:"
|
1447 |
msgstr "Kostnad:"
|
1448 |
|
1449 |
+
#: views/events-meta-box.php:352
|
1450 |
msgid "Leave blank to hide the field. Enter a 0 for events that are free."
|
1451 |
msgstr "Lämnas blankt för att gömma fältet. Skriv 0 för evenemang som är gratis."
|
1452 |
|
1453 |
+
#: views/events-meta-box.php:356
|
1454 |
+
msgid "Sell Tickets & Track Registration"
|
1455 |
+
msgstr "Sälj biljetter & bokningsregistrering"
|
1456 |
+
|
1457 |
+
#: views/events-meta-box.php:361
|
1458 |
msgid "Interested in selling tickets and tracking registrations? Now you can do it for free using our <a href=\"http://wordpress.org/extend/plugins/eventbrite-for-the-events-calendar/\">Eventbrite Integration Plugin</a>. Eventbrite is a feature rich easy-to-use event management tool. \"Wow, you're selling Eventbrite pretty hard. You must get a kickback.\" Well, now that you mention it... we do. We get a little something for everyone that registers an event using our referral link. It's how we're able to keep supporting and building plugins for the open source community. "
|
1459 |
msgstr "Vill du sälja biljetter och hantera anmälningar? Nu kan du göra detta gratis, om du använder <a href=\"http://wordpress.org/extend/plugins/eventbrite-for-the-events-calendar/\">Eventbrite Integration Plugin</a>. Eventbrite är funktionsrik och lättanvänt verktyg för att hantera evenemang. (\"Wow, ni försöker verkligen pusha för Eventbrita. Ni får säkert provision...\" Ja, det stämmer. Vi får en liten slant för alla som registrerar sina event genom vår länk. Det är så det blir möjligt för oss att fortsätta supporta och bygga tillägg till Open Source gemenskapen.)"
|
1460 |
|
1461 |
+
#: views/events-meta-box.php:361
|
1462 |
msgid "Check it out here."
|
1463 |
msgstr "Kolla in den här."
|
1464 |
|
1465 |
+
#: views/events-meta-box.php:372
|
1466 |
+
msgid "<h4>If You Like This Plugin - Help Support It</h4><p>We spend a lot of time and effort building robust plugins and we love to share them with the community. If you use this plugin consider making a donation to help support its' continued development. You may remove this message on the <a href=\"/wp-admin/options-general.php?page=the-events-calendar.php\">settings page</a>.</p>"
|
|
|
|
|
1467 |
msgstr ""
|
1468 |
+
"Om du gillar vårt tillägg - Hjälp till att stödja den!</h4>\r\n"
|
1469 |
"\t\t\t\t<p>Vi lägger ner massor av tid på att skapa bra tillägg som vi gärna delar med oss av till hela Open Source gemenskapen. Om du använder det här tillägget, överväg då att göra en donation för att stödja fortsatt utveckling. Du kan ta bort det här meddelandet på <a href=\"/wp-admin/options-general.php?page=the-events-calendar.php\">inställsningssidan</a>.</p>"
|
1470 |
|
1471 |
+
#: views/events-meta-box.php:374
|
1472 |
msgid "Thanks"
|
1473 |
msgstr "Tack"
|
1474 |
|
1475 |
+
#: views/events-options.php:69
|
1476 |
msgid "The Events Calendar Settings"
|
1477 |
msgstr "Evenemangskalenderns inställningar"
|
1478 |
|
1479 |
+
#: views/events-options.php:71
|
1480 |
msgid "Need a hand?"
|
1481 |
msgstr "Behöver du hjälp?"
|
1482 |
|
1483 |
+
#: views/events-options.php:72
|
1484 |
msgid "If you're stuck on these options, please <a href=\"http://wordpress.org/extend/plugins/the-events-calendar/\">check out the documentation</a>. If you're still wondering what's going on, be sure to stop by the support <a href=\"http://wordpress.org/tags/the-events-calendar?forum_id=10\">forum</a> and ask for help. The open source community is full of kind folks who are happy to help."
|
1485 |
msgstr "Om du fastnar på de här inställningarna, så kan du <a href=\"http://wordpress.org/extend/plugins/the-events-calendar/\">kolla dokumentationen</a>. Om du inte hittar svar där, så kan du alltid kolla in vårt support <a href=\"http://wordpress.org/tags/the-events-calendar?forum_id=10\">forum</a> och fråga om hjälp. Där finns det många snälla människor som gärna hjälper till."
|
1486 |
|
1487 |
+
#: views/events-options.php:75
|
|
|
1488 |
msgid "Donate"
|
1489 |
msgstr "Donera"
|
1490 |
|
1491 |
+
#: views/events-options.php:84
|
|
|
1492 |
msgid "If you find this plugin useful, please consider donating to the producer of it, Shane & Peter, Inc. Thank you!"
|
1493 |
msgstr "Om du gillar det här tillägget, överväg gärna en donation till skaparna av det, Shane & Peter, Inc. Tack!"
|
1494 |
|
1495 |
+
#: views/events-options.php:88
|
1496 |
msgid "I have already donated, so please hide this button!"
|
1497 |
msgstr "Jag har redan donerat, var snäll och dölj den här knappen!"
|
1498 |
|
1499 |
+
#: views/events-options.php:98
|
1500 |
+
msgid "Donate for this wonderful plugin"
|
1501 |
+
msgstr "Donera till det här tillägget!"
|
1502 |
+
|
1503 |
+
#: views/events-options.php:112
|
1504 |
+
msgid "Settings"
|
1505 |
+
msgstr "Inställningar"
|
1506 |
+
|
1507 |
+
#: views/events-options.php:115
|
1508 |
+
#: views/events-options.php:119
|
1509 |
msgid "Default View for the Events"
|
1510 |
msgstr "Förvald vy för evenemang"
|
1511 |
|
1512 |
+
#: views/events-options.php:131
|
1513 |
+
#: views/gridview.php:15
|
1514 |
+
#: views/list.php:12
|
1515 |
msgid "Calendar"
|
1516 |
msgstr "Kalender"
|
1517 |
|
1518 |
+
#: views/events-options.php:135
|
1519 |
+
#: views/gridview.php:14
|
1520 |
+
#: views/list.php:11
|
1521 |
msgid "Event List"
|
1522 |
msgstr "Evenemangslista"
|
1523 |
|
1524 |
+
#: views/events-options.php:141
|
1525 |
+
#: views/events-options.php:145
|
1526 |
msgid "Show Comments"
|
1527 |
msgstr "Visa kommentarer"
|
1528 |
|
1529 |
+
#: views/events-options.php:167
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1530 |
msgid "Default Country for Events"
|
1531 |
msgstr "Förvalt land för evenemang"
|
1532 |
|
1533 |
+
#: views/events-options.php:192
|
1534 |
+
#: views/events-options.php:196
|
1535 |
msgid "Embed Google Maps"
|
1536 |
+
msgstr "Bädda in Google Maps(karta)"
|
1537 |
|
1538 |
+
#: views/events-options.php:210
|
1539 |
msgid "Off"
|
1540 |
msgstr "Av"
|
1541 |
|
1542 |
+
#: views/events-options.php:214
|
1543 |
msgid "On"
|
1544 |
msgstr "På"
|
1545 |
|
1546 |
+
#: views/events-options.php:217
|
1547 |
msgid "Height"
|
1548 |
msgstr "Höjd"
|
1549 |
|
1550 |
+
#: views/events-options.php:218
|
1551 |
msgid "Width"
|
1552 |
+
msgstr "Bredd"
|
1553 |
|
1554 |
+
#: views/events-options.php:218
|
1555 |
+
msgid "(number or %)"
|
1556 |
+
msgstr "(Antal eller %)"
|
1557 |
+
|
1558 |
+
#: views/events-options.php:229
|
1559 |
+
msgid "Save Changes"
|
1560 |
+
msgstr "Spara ändringar"
|
1561 |
+
|
1562 |
+
#: views/gridview.php:9
|
1563 |
+
#: views/list.php:9
|
1564 |
msgid "Calendar of Events"
|
1565 |
+
msgstr "Kalender för evenemang"
|
1566 |
|
1567 |
+
#: views/list.php:33
|
1568 |
+
#: views/single.php:13
|
1569 |
msgid "Start:"
|
1570 |
+
msgstr "Börjar"
|
1571 |
|
1572 |
+
#: views/list.php:37
|
1573 |
+
#: views/single.php:16
|
1574 |
msgid "End:"
|
1575 |
+
msgstr "Slutar"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1576 |
|
1577 |
+
#: views/list.php:63
|
1578 |
+
#: views/single.php:30
|
1579 |
+
msgid "Google Map"
|
1580 |
+
msgstr "Google kartor"
|
1581 |
|
1582 |
+
#: views/list.php:94
|
1583 |
+
msgid "« Previous Events"
|
1584 |
+
msgstr "« Föregående evenemang"
|
1585 |
|
1586 |
+
#: views/list.php:107
|
1587 |
+
msgid "Next Events »"
|
1588 |
+
msgstr "Nästa evenemang »"
|
1589 |
|
1590 |
+
#: views/single.php:8
|
1591 |
+
msgid "« Back to Events"
|
1592 |
+
msgstr "« Tillbaka till evenemang"
|
1593 |
|
1594 |
+
#: views/single.php:10
|
1595 |
+
msgid "This event has passed."
|
1596 |
+
msgstr "Evenemanget har varit"
|
1597 |
|
1598 |
+
#: views/single.php:30
|
1599 |
+
msgid "Click to view a Google Map"
|
1600 |
+
msgstr "Klicka för att visa en Google karta"
|
1601 |
|
1602 |
+
#. Plugin URI of an extension
|
1603 |
+
msgid "http://wordpress.org/extend/plugins/the-events-calendar/"
|
1604 |
+
msgstr "http://wordpress.org/extend/plugins/the-events-calendar/"
|
1605 |
|
1606 |
+
#. Description of an extension
|
1607 |
+
msgid "The Events Calendar plugin enables you to rapidly create and manage events using the post editor. Features include optional Eventbrite integration, Google Maps integration as well as default calendar grid and list templates for streamlined one click installation."
|
1608 |
+
msgstr "Med tillägget The Events Calendar kan du snabbt skapa och administrera evenemang med editorn för vanliga inlägg. Funktioner som ingår är bland annat integration med Eventbrite, integration med Google kartor, kartor och listor över evenemang."
|
1609 |
|
1610 |
+
#. Author of an extension
|
1611 |
+
msgid "Shane & Peter, Inc."
|
1612 |
+
msgstr "Shane & Peter, Inc."
|
1613 |
|
1614 |
+
#. Author URI of an extension
|
1615 |
+
msgid "http://www.shaneandpeter.com/"
|
1616 |
+
msgstr "http://www.shaneandpeter.com/"
|
1617 |
|
lang/the-events-calendar.pot
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Translation of the WordPress plugin The Events Calendar 1.
|
2 |
# Copyright (C) 2010 Shane & Peter, Inc.
|
3 |
# This file is distributed under the same license as the The Events Calendar package.
|
4 |
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
@@ -6,9 +6,9 @@
|
|
6 |
#, fuzzy
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
-
"Project-Id-Version: The Events Calendar 1.
|
10 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/the-events-calendar\n"
|
11 |
-
"POT-Creation-Date: 2010-
|
12 |
"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
@@ -16,1437 +16,1514 @@ msgstr ""
|
|
16 |
"Content-Type: text/plain; charset=utf-8\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
|
19 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
msgid "United States"
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: the-events-calendar.php:
|
24 |
msgid "Afghanistan"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: the-events-calendar.php:
|
28 |
msgid "Albania"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: the-events-calendar.php:
|
32 |
msgid "Algeria"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: the-events-calendar.php:
|
36 |
msgid "American Samoa"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: the-events-calendar.php:
|
40 |
msgid "Andorra"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: the-events-calendar.php:
|
44 |
msgid "Angola"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: the-events-calendar.php:
|
48 |
msgid "Anguilla"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: the-events-calendar.php:
|
52 |
msgid "Antarctica"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: the-events-calendar.php:
|
56 |
msgid "Antigua And Barbuda"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: the-events-calendar.php:
|
60 |
msgid "Argentina"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: the-events-calendar.php:
|
64 |
msgid "Armenia"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: the-events-calendar.php:
|
68 |
msgid "Aruba"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: the-events-calendar.php:
|
72 |
msgid "Australia"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: the-events-calendar.php:
|
76 |
msgid "Austria"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: the-events-calendar.php:
|
80 |
msgid "Azerbaijan"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: the-events-calendar.php:
|
84 |
msgid "Bahamas"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: the-events-calendar.php:
|
88 |
msgid "Bahrain"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: the-events-calendar.php:
|
92 |
msgid "Bangladesh"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: the-events-calendar.php:
|
96 |
msgid "Barbados"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: the-events-calendar.php:
|
100 |
msgid "Belarus"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: the-events-calendar.php:
|
104 |
msgid "Belgium"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: the-events-calendar.php:
|
108 |
msgid "Belize"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: the-events-calendar.php:
|
112 |
msgid "Benin"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: the-events-calendar.php:
|
116 |
msgid "Bermuda"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: the-events-calendar.php:
|
120 |
msgid "Bhutan"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: the-events-calendar.php:
|
124 |
msgid "Bolivia"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: the-events-calendar.php:
|
128 |
msgid "Bosnia And Herzegowina"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: the-events-calendar.php:
|
132 |
msgid "Botswana"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: the-events-calendar.php:
|
136 |
msgid "Bouvet Island"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: the-events-calendar.php:
|
140 |
msgid "Brazil"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: the-events-calendar.php:
|
144 |
msgid "British Indian Ocean Territory"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: the-events-calendar.php:
|
148 |
msgid "Brunei Darussalam"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: the-events-calendar.php:
|
152 |
msgid "Bulgaria"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: the-events-calendar.php:
|
156 |
msgid "Burkina Faso"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: the-events-calendar.php:
|
160 |
msgid "Burundi"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: the-events-calendar.php:
|
164 |
msgid "Cambodia"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: the-events-calendar.php:
|
168 |
msgid "Cameroon"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: the-events-calendar.php:
|
172 |
msgid "Canada"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: the-events-calendar.php:
|
176 |
msgid "Cape Verde"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: the-events-calendar.php:
|
180 |
msgid "Cayman Islands"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: the-events-calendar.php:
|
184 |
msgid "Central African Republic"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: the-events-calendar.php:
|
188 |
msgid "Chad"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: the-events-calendar.php:
|
192 |
msgid "Chile"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: the-events-calendar.php:
|
196 |
msgid "China"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: the-events-calendar.php:
|
200 |
msgid "Christmas Island"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: the-events-calendar.php:
|
204 |
msgid "Cocos (Keeling) Islands"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: the-events-calendar.php:
|
208 |
msgid "Colombia"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: the-events-calendar.php:
|
212 |
msgid "Comoros"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: the-events-calendar.php:
|
216 |
msgid "Congo"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: the-events-calendar.php:
|
220 |
msgid "Congo, The Democratic Republic Of The"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: the-events-calendar.php:
|
224 |
msgid "Cook Islands"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: the-events-calendar.php:
|
228 |
msgid "Costa Rica"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: the-events-calendar.php:
|
232 |
msgid "Cote D'Ivoire"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: the-events-calendar.php:
|
236 |
msgid "Croatia (Local Name: Hrvatska)"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: the-events-calendar.php:
|
240 |
msgid "Cuba"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: the-events-calendar.php:
|
244 |
msgid "Cyprus"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: the-events-calendar.php:
|
248 |
msgid "Czech Republic"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: the-events-calendar.php:
|
252 |
msgid "Denmark"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: the-events-calendar.php:
|
256 |
msgid "Djibouti"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: the-events-calendar.php:
|
260 |
msgid "Dominica"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: the-events-calendar.php:
|
264 |
msgid "Dominican Republic"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: the-events-calendar.php:
|
268 |
msgid "East Timor"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: the-events-calendar.php:
|
272 |
msgid "Ecuador"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: the-events-calendar.php:
|
276 |
msgid "Egypt"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: the-events-calendar.php:
|
280 |
msgid "El Salvador"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: the-events-calendar.php:
|
284 |
msgid "Equatorial Guinea"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: the-events-calendar.php:
|
288 |
msgid "Eritrea"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: the-events-calendar.php:
|
292 |
msgid "Estonia"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: the-events-calendar.php:
|
296 |
msgid "Ethiopia"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: the-events-calendar.php:
|
300 |
msgid "Falkland Islands (Malvinas)"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: the-events-calendar.php:
|
304 |
msgid "Faroe Islands"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: the-events-calendar.php:
|
308 |
msgid "Fiji"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: the-events-calendar.php:
|
312 |
msgid "Finland"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: the-events-calendar.php:
|
316 |
msgid "France"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: the-events-calendar.php:
|
320 |
msgid "France, Metropolitan"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: the-events-calendar.php:
|
324 |
msgid "French Guiana"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: the-events-calendar.php:
|
328 |
msgid "French Polynesia"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: the-events-calendar.php:
|
332 |
msgid "French Southern Territories"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: the-events-calendar.php:
|
336 |
msgid "Gabon"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: the-events-calendar.php:
|
340 |
msgid "Gambia"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: the-events-calendar.php:
|
344 |
msgid "Georgia"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: the-events-calendar.php:
|
348 |
msgid "Germany"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: the-events-calendar.php:
|
352 |
msgid "Ghana"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: the-events-calendar.php:
|
356 |
msgid "Gibraltar"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: the-events-calendar.php:
|
360 |
msgid "Greece"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: the-events-calendar.php:
|
364 |
msgid "Greenland"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: the-events-calendar.php:
|
368 |
msgid "Grenada"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: the-events-calendar.php:
|
372 |
msgid "Guadeloupe"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: the-events-calendar.php:
|
376 |
msgid "Guam"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: the-events-calendar.php:
|
380 |
msgid "Guatemala"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: the-events-calendar.php:
|
384 |
msgid "Guinea"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: the-events-calendar.php:
|
388 |
msgid "Guinea-Bissau"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: the-events-calendar.php:
|
392 |
msgid "Guyana"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: the-events-calendar.php:
|
396 |
msgid "Haiti"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: the-events-calendar.php:
|
400 |
msgid "Heard And Mc Donald Islands"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: the-events-calendar.php:
|
404 |
msgid "Holy See (Vatican City State)"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: the-events-calendar.php:
|
408 |
msgid "Honduras"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: the-events-calendar.php:
|
412 |
msgid "Hong Kong"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: the-events-calendar.php:
|
416 |
msgid "Hungary"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: the-events-calendar.php:
|
420 |
msgid "Iceland"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: the-events-calendar.php:
|
424 |
msgid "India"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: the-events-calendar.php:
|
428 |
msgid "Indonesia"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: the-events-calendar.php:
|
432 |
msgid "Iran (Islamic Republic Of)"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: the-events-calendar.php:
|
436 |
msgid "Iraq"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: the-events-calendar.php:
|
440 |
msgid "Ireland"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: the-events-calendar.php:
|
444 |
msgid "Israel"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: the-events-calendar.php:
|
448 |
msgid "Italy"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: the-events-calendar.php:
|
452 |
msgid "Jamaica"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: the-events-calendar.php:
|
456 |
msgid "Japan"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: the-events-calendar.php:
|
460 |
msgid "Jordan"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: the-events-calendar.php:
|
464 |
msgid "Kazakhstan"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: the-events-calendar.php:
|
468 |
msgid "Kenya"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: the-events-calendar.php:
|
472 |
msgid "Kiribati"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: the-events-calendar.php:
|
476 |
msgid "Korea, Democratic People's Republic Of"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: the-events-calendar.php:
|
480 |
msgid "Korea, Republic Of"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: the-events-calendar.php:
|
484 |
msgid "Kuwait"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: the-events-calendar.php:
|
488 |
msgid "Kyrgyzstan"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: the-events-calendar.php:
|
492 |
msgid "Lao People's Democratic Republic"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: the-events-calendar.php:
|
496 |
msgid "Latvia"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: the-events-calendar.php:
|
500 |
msgid "Lebanon"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: the-events-calendar.php:
|
504 |
msgid "Lesotho"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: the-events-calendar.php:
|
508 |
msgid "Liberia"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: the-events-calendar.php:
|
512 |
msgid "Libyan Arab Jamahiriya"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: the-events-calendar.php:
|
516 |
msgid "Liechtenstein"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: the-events-calendar.php:
|
520 |
msgid "Lithuania"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: the-events-calendar.php:
|
524 |
msgid "Luxembourg"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: the-events-calendar.php:
|
528 |
msgid "Macau"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: the-events-calendar.php:
|
532 |
msgid "Macedonia, Former Yugoslav Republic Of"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: the-events-calendar.php:
|
536 |
msgid "Madagascar"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: the-events-calendar.php:
|
540 |
msgid "Malawi"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: the-events-calendar.php:
|
544 |
msgid "Malaysia"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: the-events-calendar.php:
|
548 |
msgid "Maldives"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: the-events-calendar.php:
|
552 |
msgid "Mali"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: the-events-calendar.php:
|
556 |
msgid "Malta"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: the-events-calendar.php:
|
560 |
msgid "Marshall Islands"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: the-events-calendar.php:
|
564 |
msgid "Martinique"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: the-events-calendar.php:
|
568 |
msgid "Mauritania"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: the-events-calendar.php:
|
572 |
msgid "Mauritius"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: the-events-calendar.php:
|
576 |
msgid "Mayotte"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: the-events-calendar.php:
|
580 |
msgid "Mexico"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: the-events-calendar.php:
|
584 |
msgid "Micronesia, Federated States Of"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: the-events-calendar.php:
|
588 |
msgid "Moldova, Republic Of"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: the-events-calendar.php:
|
592 |
msgid "Monaco"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: the-events-calendar.php:
|
596 |
msgid "Mongolia"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: the-events-calendar.php:
|
600 |
msgid "Montserrat"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: the-events-calendar.php:
|
604 |
msgid "Morocco"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: the-events-calendar.php:
|
608 |
msgid "Mozambique"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: the-events-calendar.php:
|
612 |
msgid "Myanmar"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: the-events-calendar.php:
|
616 |
msgid "Namibia"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: the-events-calendar.php:
|
620 |
msgid "Nauru"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: the-events-calendar.php:
|
624 |
msgid "Nepal"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: the-events-calendar.php:
|
628 |
msgid "Netherlands"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: the-events-calendar.php:
|
632 |
msgid "Netherlands Antilles"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: the-events-calendar.php:
|
636 |
msgid "New Caledonia"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: the-events-calendar.php:
|
640 |
msgid "New Zealand"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: the-events-calendar.php:
|
644 |
msgid "Nicaragua"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: the-events-calendar.php:
|
648 |
msgid "Niger"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: the-events-calendar.php:
|
652 |
msgid "Nigeria"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: the-events-calendar.php:
|
656 |
msgid "Niue"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: the-events-calendar.php:
|
660 |
msgid "Norfolk Island"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: the-events-calendar.php:
|
664 |
msgid "Northern Mariana Islands"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: the-events-calendar.php:
|
668 |
msgid "Norway"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: the-events-calendar.php:
|
672 |
msgid "Oman"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: the-events-calendar.php:
|
676 |
msgid "Pakistan"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: the-events-calendar.php:
|
680 |
msgid "Palau"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: the-events-calendar.php:
|
684 |
msgid "Panama"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: the-events-calendar.php:
|
688 |
msgid "Papua New Guinea"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: the-events-calendar.php:
|
692 |
msgid "Paraguay"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: the-events-calendar.php:
|
696 |
msgid "Peru"
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: the-events-calendar.php:
|
700 |
msgid "Philippines"
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: the-events-calendar.php:
|
704 |
msgid "Pitcairn"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: the-events-calendar.php:
|
708 |
msgid "Poland"
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: the-events-calendar.php:
|
712 |
msgid "Portugal"
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: the-events-calendar.php:
|
716 |
msgid "Puerto Rico"
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: the-events-calendar.php:
|
720 |
msgid "Qatar"
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: the-events-calendar.php:
|
724 |
msgid "Reunion"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: the-events-calendar.php:
|
728 |
msgid "Romania"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: the-events-calendar.php:
|
732 |
msgid "Russian Federation"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: the-events-calendar.php:
|
736 |
msgid "Rwanda"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: the-events-calendar.php:
|
740 |
msgid "Saint Kitts And Nevis"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: the-events-calendar.php:
|
744 |
msgid "Saint Lucia"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: the-events-calendar.php:
|
748 |
msgid "Saint Vincent And The Grenadines"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: the-events-calendar.php:
|
752 |
msgid "Samoa"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: the-events-calendar.php:
|
756 |
msgid "San Marino"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: the-events-calendar.php:
|
760 |
msgid "Sao Tome And Principe"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: the-events-calendar.php:
|
764 |
msgid "Saudi Arabia"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: the-events-calendar.php:
|
768 |
msgid "Senegal"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: the-events-calendar.php:
|
772 |
msgid "Seychelles"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: the-events-calendar.php:
|
776 |
msgid "Sierra Leone"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: the-events-calendar.php:
|
780 |
msgid "Singapore"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: the-events-calendar.php:
|
784 |
msgid "Slovakia (Slovak Republic)"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: the-events-calendar.php:
|
788 |
msgid "Slovenia"
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: the-events-calendar.php:
|
792 |
msgid "Solomon Islands"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: the-events-calendar.php:
|
796 |
msgid "Somalia"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: the-events-calendar.php:
|
800 |
msgid "South Africa"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: the-events-calendar.php:
|
804 |
msgid "South Georgia, South Sandwich Islands"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: the-events-calendar.php:
|
808 |
msgid "Spain"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: the-events-calendar.php:
|
812 |
msgid "Sri Lanka"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: the-events-calendar.php:
|
816 |
msgid "St. Helena"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: the-events-calendar.php:
|
820 |
msgid "St. Pierre And Miquelon"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: the-events-calendar.php:
|
824 |
msgid "Sudan"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: the-events-calendar.php:
|
828 |
msgid "Suriname"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: the-events-calendar.php:
|
832 |
msgid "Svalbard And Jan Mayen Islands"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: the-events-calendar.php:
|
836 |
msgid "Swaziland"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: the-events-calendar.php:
|
840 |
msgid "Sweden"
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: the-events-calendar.php:
|
844 |
msgid "Switzerland"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: the-events-calendar.php:
|
848 |
msgid "Syrian Arab Republic"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: the-events-calendar.php:
|
852 |
msgid "Taiwan"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: the-events-calendar.php:
|
856 |
msgid "Tajikistan"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: the-events-calendar.php:
|
860 |
msgid "Tanzania, United Republic Of"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: the-events-calendar.php:
|
864 |
msgid "Thailand"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: the-events-calendar.php:
|
868 |
msgid "Togo"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: the-events-calendar.php:
|
872 |
msgid "Tokelau"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: the-events-calendar.php:
|
876 |
msgid "Tonga"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: the-events-calendar.php:
|
880 |
msgid "Trinidad And Tobago"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: the-events-calendar.php:
|
884 |
msgid "Tunisia"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: the-events-calendar.php:
|
888 |
msgid "Turkey"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: the-events-calendar.php:
|
892 |
msgid "Turkmenistan"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: the-events-calendar.php:
|
896 |
msgid "Turks And Caicos Islands"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: the-events-calendar.php:
|
900 |
msgid "Tuvalu"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: the-events-calendar.php:
|
904 |
msgid "Uganda"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: the-events-calendar.php:
|
908 |
msgid "Ukraine"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: the-events-calendar.php:
|
912 |
msgid "United Arab Emirates"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: the-events-calendar.php:
|
916 |
msgid "United Kingdom"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: the-events-calendar.php:
|
920 |
msgid "United States Minor Outlying Islands"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: the-events-calendar.php:
|
924 |
msgid "Uruguay"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: the-events-calendar.php:
|
928 |
msgid "Uzbekistan"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: the-events-calendar.php:
|
932 |
msgid "Vanuatu"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: the-events-calendar.php:
|
936 |
msgid "Venezuela"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: the-events-calendar.php:
|
940 |
msgid "Viet Nam"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: the-events-calendar.php:
|
944 |
msgid "Virgin Islands (British)"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: the-events-calendar.php:
|
948 |
msgid "Virgin Islands (U.S.)"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: the-events-calendar.php:
|
952 |
msgid "Wallis And Futuna Islands"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: the-events-calendar.php:
|
956 |
msgid "Western Sahara"
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: the-events-calendar.php:
|
960 |
msgid "Yemen"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: the-events-calendar.php:
|
964 |
msgid "Yugoslavia"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: the-events-calendar.php:
|
968 |
msgid "Zambia"
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: the-events-calendar.php:
|
972 |
msgid "Zimbabwe"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: the-events-calendar.php:
|
976 |
-
msgid "
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: the-events-calendar.php:
|
980 |
-
msgid "
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: the-events-calendar.php:
|
984 |
-
msgid "
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: the-events-calendar.php:
|
988 |
-
msgid "
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: the-events-calendar.php:
|
992 |
msgid "May"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: the-events-calendar.php:
|
996 |
-
msgid "
|
997 |
-
msgstr ""
|
998 |
-
|
999 |
-
#: the-events-calendar.php:502
|
1000 |
-
msgid "July"
|
1001 |
-
msgstr ""
|
1002 |
-
|
1003 |
-
#: the-events-calendar.php:503
|
1004 |
-
msgid "August"
|
1005 |
-
msgstr ""
|
1006 |
-
|
1007 |
-
#: the-events-calendar.php:504
|
1008 |
-
msgid "September"
|
1009 |
-
msgstr ""
|
1010 |
-
|
1011 |
-
#: the-events-calendar.php:505
|
1012 |
-
msgid "October"
|
1013 |
-
msgstr ""
|
1014 |
-
|
1015 |
-
#: the-events-calendar.php:506
|
1016 |
-
msgid "November"
|
1017 |
-
msgstr ""
|
1018 |
-
|
1019 |
-
#: the-events-calendar.php:507
|
1020 |
-
msgid "December"
|
1021 |
-
msgstr ""
|
1022 |
-
|
1023 |
-
#. #-#-#-#-# plugin.pot (The Events Calendar 1.5.4) #-#-#-#-#
|
1024 |
-
#. Plugin Name of an extension
|
1025 |
-
#: the-events-calendar.php:939
|
1026 |
-
msgid "The Events Calendar"
|
1027 |
-
msgstr ""
|
1028 |
-
|
1029 |
-
#: the-events-calendar.php:1214
|
1030 |
-
msgid "Sun"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: the-events-calendar.php:
|
1034 |
-
msgid "
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: the-events-calendar.php:
|
1038 |
-
msgid "
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: the-events-calendar.php:
|
1042 |
-
msgid "
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: the-events-calendar.php:
|
1046 |
-
msgid "
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: the-events-calendar.php:
|
1050 |
-
msgid "
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: the-events-calendar.php:
|
1054 |
-
msgid "
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: the-events-calendar.php:
|
1058 |
-
msgid "
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: the-events-calendar.php:
|
1062 |
-
msgid "
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: the-events-calendar.php:
|
1066 |
-
msgid "
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: the-events-calendar.php:
|
1070 |
-
msgid "
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: the-events-calendar.php:
|
1074 |
-
msgid "
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: the-events-calendar.php:
|
1078 |
-
msgid "
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: the-events-calendar.php:
|
1082 |
-
msgid "
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: the-events-calendar.php:
|
1086 |
-
msgid "
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: the-events-calendar.php:
|
1090 |
-
msgid "
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: the-events-calendar.php:
|
1094 |
-
msgid "
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: the-events-calendar.php:
|
1098 |
-
msgid "
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
|
1102 |
-
|
|
|
|
|
1103 |
msgstr ""
|
1104 |
|
1105 |
#: views/events-list-load-widget-admin.php:7
|
1106 |
msgid "Show:"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#: views/events-list-load-widget-admin.php:
|
|
|
|
|
|
|
|
|
1110 |
msgid "Display:"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: views/events-list-load-widget-admin.php:
|
1114 |
msgid "Start Date & Time"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: views/events-list-load-widget-admin.php:
|
1118 |
msgid "End Date & Time"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: views/events-list-load-widget-admin.php:
|
1122 |
msgid "Venue"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#: views/events-list-load-widget-admin.php:
|
1126 |
msgid "Address"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: views/events-list-load-widget-admin.php:
|
1130 |
msgid "City"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: views/events-list-load-widget-admin.php:
|
1134 |
msgid "State (US)"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: views/events-list-load-widget-admin.php:
|
1138 |
msgid "Province (Int)"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: views/events-list-load-widget-admin.php:
|
1142 |
msgid "Postal Code"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: views/events-list-load-widget-admin.php:
|
1146 |
msgid "Country"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: views/events-list-load-widget-admin.php:
|
1150 |
msgid "Phone"
|
1151 |
msgstr ""
|
1152 |
|
1153 |
-
#: views/events-list-load-widget-admin.php:
|
1154 |
msgid "Price"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: views/events-list-load-widget-display.php:
|
1158 |
msgid "More Info"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: views/events-meta-box.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1162 |
msgid "Is this post an event?"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: views/events-meta-box.php:
|
1166 |
msgid "Yes"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: views/events-meta-box.php:
|
1170 |
msgid "No"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: views/events-meta-box.php:
|
1174 |
msgid "Event Time & Date"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: views/events-meta-box.php:
|
1178 |
msgid "All day event?"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: views/events-meta-box.php:
|
1182 |
msgid "Start Date / Time:"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: views/events-meta-box.php:
|
1186 |
msgid "@"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: views/events-meta-box.php:
|
1190 |
msgid "End Date / Time:"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: views/events-meta-box.php:
|
1194 |
msgid "Event Location Details"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: views/events-meta-box.php:
|
1198 |
msgid "Venue:"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: views/events-meta-box.php:
|
1202 |
msgid "Country:"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: views/events-meta-box.php:
|
1206 |
msgid "Address:"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: views/events-meta-box.php:
|
1210 |
msgid "City:"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: views/events-meta-box.php:
|
1214 |
msgid "Province:"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: views/events-meta-box.php:
|
1218 |
msgid "State:"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: views/events-meta-box.php:
|
1222 |
msgid "Select a State:"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#: views/events-meta-box.php:
|
1226 |
msgid "Alabama"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: views/events-meta-box.php:
|
1230 |
msgid "Alaska"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: views/events-meta-box.php:
|
1234 |
msgid "Arizona"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: views/events-meta-box.php:
|
1238 |
msgid "Arkansas"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: views/events-meta-box.php:
|
1242 |
msgid "California"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: views/events-meta-box.php:
|
1246 |
msgid "Colorado"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
-
#: views/events-meta-box.php:
|
1250 |
msgid "Connecticut"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
-
#: views/events-meta-box.php:
|
1254 |
msgid "Delaware"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: views/events-meta-box.php:
|
1258 |
msgid "District of Columbia"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: views/events-meta-box.php:
|
1262 |
msgid "Florida"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: views/events-meta-box.php:
|
1266 |
msgid "Hawaii"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: views/events-meta-box.php:
|
1270 |
msgid "Idaho"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: views/events-meta-box.php:
|
1274 |
msgid "Illinois"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#: views/events-meta-box.php:
|
1278 |
msgid "Indiana"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#: views/events-meta-box.php:
|
1282 |
msgid "Iowa"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: views/events-meta-box.php:
|
1286 |
msgid "Kansas"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: views/events-meta-box.php:
|
1290 |
msgid "Kentucky"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: views/events-meta-box.php:
|
1294 |
msgid "Louisiana"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: views/events-meta-box.php:
|
1298 |
msgid "Maine"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#: views/events-meta-box.php:
|
1302 |
msgid "Maryland"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: views/events-meta-box.php:
|
1306 |
msgid "Massachusetts"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#: views/events-meta-box.php:
|
1310 |
msgid "Michigan"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: views/events-meta-box.php:
|
1314 |
msgid "Minnesota"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: views/events-meta-box.php:
|
1318 |
msgid "Mississippi"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: views/events-meta-box.php:
|
1322 |
msgid "Missouri"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#: views/events-meta-box.php:
|
1326 |
msgid "Montana"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
-
#: views/events-meta-box.php:
|
1330 |
msgid "Nebraska"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
-
#: views/events-meta-box.php:
|
1334 |
msgid "Nevada"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
-
#: views/events-meta-box.php:
|
1338 |
msgid "New Hampshire"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: views/events-meta-box.php:
|
1342 |
msgid "New Jersey"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: views/events-meta-box.php:
|
1346 |
msgid "New Mexico"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: views/events-meta-box.php:
|
1350 |
msgid "New York"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: views/events-meta-box.php:
|
1354 |
msgid "North Carolina"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: views/events-meta-box.php:
|
1358 |
msgid "North Dakota"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#: views/events-meta-box.php:
|
1362 |
msgid "Ohio"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: views/events-meta-box.php:
|
1366 |
msgid "Oklahoma"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: views/events-meta-box.php:
|
1370 |
msgid "Oregon"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
-
#: views/events-meta-box.php:
|
1374 |
msgid "Pennsylvania"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
-
#: views/events-meta-box.php:
|
1378 |
msgid "Rhode Island"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#: views/events-meta-box.php:
|
1382 |
msgid "South Carolina"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: views/events-meta-box.php:
|
1386 |
msgid "South Dakota"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
-
#: views/events-meta-box.php:
|
1390 |
msgid "Tennessee"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: views/events-meta-box.php:
|
1394 |
msgid "Texas"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: views/events-meta-box.php:
|
1398 |
msgid "Utah"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: views/events-meta-box.php:
|
1402 |
msgid "Vermont"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: views/events-meta-box.php:
|
1406 |
msgid "Virginia"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#: views/events-meta-box.php:
|
1410 |
msgid "Washington"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: views/events-meta-box.php:
|
1414 |
msgid "West Virginia"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: views/events-meta-box.php:
|
1418 |
msgid "Wisconsin"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: views/events-meta-box.php:
|
1422 |
msgid "Wyoming"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: views/events-meta-box.php:
|
1426 |
msgid "Postal Code:"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: views/events-meta-box.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1430 |
msgid "Phone:"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: views/events-meta-box.php:
|
1434 |
msgid "Event Cost"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
-
#: views/events-meta-box.php:
|
1438 |
msgid "Cost:"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: views/events-meta-box.php:
|
1442 |
msgid "Leave blank to hide the field. Enter a 0 for events that are free."
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: views/events-meta-box.php:
|
1446 |
msgid "Sell Tickets & Track Registration"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#: views/events-meta-box.php:
|
1450 |
msgid ""
|
1451 |
"Interested in selling tickets and tracking registrations? Now you can do it "
|
1452 |
"for free using our <a href=\"http://wordpress.org/extend/plugins/eventbrite-"
|
@@ -1458,11 +1535,11 @@ msgid ""
|
|
1458 |
"building plugins for the open source community. "
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: views/events-meta-box.php:
|
1462 |
msgid "Check it out here."
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: views/events-meta-box.php:
|
1466 |
msgid ""
|
1467 |
"<h4>If You Like This Plugin - Help Support It</h4><p>We spend a lot of time "
|
1468 |
"and effort building robust plugins and we love to share them with the "
|
@@ -1472,19 +1549,19 @@ msgid ""
|
|
1472 |
"p>"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
-
#: views/events-meta-box.php:
|
1476 |
msgid "Thanks"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#: views/events-options.php:
|
1480 |
msgid "The Events Calendar Settings"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
-
#: views/events-options.php:
|
1484 |
msgid "Need a hand?"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
-
#: views/events-options.php:
|
1488 |
msgid ""
|
1489 |
"If you're stuck on these options, please <a href=\"http://wordpress.org/"
|
1490 |
"extend/plugins/the-events-calendar/\">check out the documentation</a>. If "
|
@@ -1494,73 +1571,103 @@ msgid ""
|
|
1494 |
"happy to help."
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#: views/events-options.php:
|
|
|
|
|
|
|
|
|
1498 |
msgid "Donate"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: views/events-options.php:
|
1502 |
msgid ""
|
1503 |
"If you find this plugin useful, please consider donating to the producer of "
|
1504 |
"it, Shane & Peter, Inc. Thank you!"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: views/events-options.php:
|
1508 |
msgid "I have already donated, so please hide this button!"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: views/events-options.php:
|
1512 |
msgid "Donate for this wonderful plugin"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#: views/events-options.php:
|
1516 |
msgid "Settings"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: views/events-options.php:
|
1520 |
msgid "Default View for the Events"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#: views/events-options.php:
|
1524 |
msgid "Calendar"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
-
#: views/events-options.php:
|
1528 |
msgid "Event List"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#: views/events-options.php:
|
1532 |
msgid "Show Comments"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: views/events-options.php:
|
1536 |
msgid "Default Country for Events"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: views/events-options.php:
|
1540 |
-
msgid "
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: views/events-options.php:
|
|
|
1544 |
msgid "Off"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
-
#: views/events-options.php:
|
|
|
1548 |
msgid "On"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: views/events-options.php:
|
|
|
|
|
|
|
|
|
1552 |
msgid "Height"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: views/events-options.php:
|
1556 |
msgid "Width"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
-
#: views/events-options.php:
|
1560 |
msgid "(number or %)"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
-
#: views/events-options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1564 |
msgid "Save Changes"
|
1565 |
msgstr ""
|
1566 |
|
@@ -1568,15 +1675,15 @@ msgstr ""
|
|
1568 |
msgid "Calendar of Events"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#: views/list.php:33 views/single.php:
|
1572 |
msgid "Start:"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
-
#: views/list.php:37 views/single.php:
|
1576 |
msgid "End:"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#: views/list.php:
|
1580 |
msgid "Google Map"
|
1581 |
msgstr ""
|
1582 |
|
@@ -1588,34 +1695,36 @@ msgstr ""
|
|
1588 |
msgid "Next Events »"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
-
#: views/single.php:
|
1592 |
msgid "« Back to Events"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
-
#: views/single.php:
|
1596 |
msgid "This event has passed."
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
#: views/single.php:
|
1600 |
msgid "Click to view a Google Map"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#. Plugin URI of
|
1604 |
msgid "http://wordpress.org/extend/plugins/the-events-calendar/"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#. Description of
|
1608 |
msgid ""
|
1609 |
"The Events Calendar plugin enables you to rapidly create and manage events "
|
1610 |
-
"using the post editor.
|
1611 |
"Google Maps integration as well as default calendar grid and list templates "
|
1612 |
-
"for streamlined one click installation."
|
|
|
|
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#. Author of
|
1616 |
msgid "Shane & Peter, Inc."
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#. Author URI of
|
1620 |
msgid "http://www.shaneandpeter.com/"
|
1621 |
msgstr ""
|
1 |
+
# Translation of the WordPress plugin The Events Calendar 1.6 by Shane & Peter, Inc..
|
2 |
# Copyright (C) 2010 Shane & Peter, Inc.
|
3 |
# This file is distributed under the same license as the The Events Calendar package.
|
4 |
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
6 |
#, fuzzy
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
+
"Project-Id-Version: The Events Calendar 1.6\n"
|
10 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/the-events-calendar\n"
|
11 |
+
"POT-Creation-Date: 2010-05-26 14:02+0000\n"
|
12 |
"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
16 |
"Content-Type: text/plain; charset=utf-8\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
|
19 |
+
#: events-calendar-widget.class.php:12
|
20 |
+
msgid "A calendar of your events"
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: events-calendar-widget.class.php:13
|
24 |
+
msgid "Events Calendar"
|
25 |
+
msgstr ""
|
26 |
+
|
27 |
+
#: events-calendar-widget.class.php:39
|
28 |
+
#: views/events-list-load-widget-admin.php:2
|
29 |
+
msgid "Title:"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: events-list-widget.class.php:15
|
33 |
+
msgid "A widget that displays the next upcoming x events."
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: events-list-widget.class.php:81
|
37 |
+
msgid "View All Events"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: events-list-widget.class.php:82
|
41 |
+
msgid "There are no upcoming events at this time."
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: the-events-calendar.class.php:49
|
45 |
+
msgid "Sun"
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: the-events-calendar.class.php:49
|
49 |
+
msgid "Mon"
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: the-events-calendar.class.php:49
|
53 |
+
msgid "Tue"
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: the-events-calendar.class.php:49
|
57 |
+
msgid "Wed"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: the-events-calendar.class.php:49
|
61 |
+
msgid "Thu"
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: the-events-calendar.class.php:49
|
65 |
+
msgid "Fri"
|
66 |
+
msgstr ""
|
67 |
+
|
68 |
+
#: the-events-calendar.class.php:49
|
69 |
+
msgid "Sat"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: the-events-calendar.class.php:50
|
73 |
+
msgid "Sunday"
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: the-events-calendar.class.php:50
|
77 |
+
msgid "Monday"
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: the-events-calendar.class.php:50
|
81 |
+
msgid "Tuesday"
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: the-events-calendar.class.php:50
|
85 |
+
msgid "Wednesday"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: the-events-calendar.class.php:50
|
89 |
+
msgid "Thursday"
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: the-events-calendar.class.php:50
|
93 |
+
msgid "Friday"
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: the-events-calendar.class.php:50
|
97 |
+
msgid "Saturday"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: the-events-calendar.class.php:56
|
101 |
+
msgid "Select a Country:"
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: the-events-calendar.class.php:57
|
105 |
msgid "United States"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: the-events-calendar.class.php:58
|
109 |
msgid "Afghanistan"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: the-events-calendar.class.php:59
|
113 |
msgid "Albania"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: the-events-calendar.class.php:60
|
117 |
msgid "Algeria"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: the-events-calendar.class.php:61
|
121 |
msgid "American Samoa"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: the-events-calendar.class.php:62
|
125 |
msgid "Andorra"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: the-events-calendar.class.php:63
|
129 |
msgid "Angola"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: the-events-calendar.class.php:64
|
133 |
msgid "Anguilla"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: the-events-calendar.class.php:65
|
137 |
msgid "Antarctica"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: the-events-calendar.class.php:66
|
141 |
msgid "Antigua And Barbuda"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: the-events-calendar.class.php:67
|
145 |
msgid "Argentina"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: the-events-calendar.class.php:68
|
149 |
msgid "Armenia"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: the-events-calendar.class.php:69
|
153 |
msgid "Aruba"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: the-events-calendar.class.php:70
|
157 |
msgid "Australia"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: the-events-calendar.class.php:71
|
161 |
msgid "Austria"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: the-events-calendar.class.php:72
|
165 |
msgid "Azerbaijan"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: the-events-calendar.class.php:73
|
169 |
msgid "Bahamas"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: the-events-calendar.class.php:74
|
173 |
msgid "Bahrain"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: the-events-calendar.class.php:75
|
177 |
msgid "Bangladesh"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: the-events-calendar.class.php:76
|
181 |
msgid "Barbados"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: the-events-calendar.class.php:77
|
185 |
msgid "Belarus"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: the-events-calendar.class.php:78
|
189 |
msgid "Belgium"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: the-events-calendar.class.php:79
|
193 |
msgid "Belize"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: the-events-calendar.class.php:80
|
197 |
msgid "Benin"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: the-events-calendar.class.php:81
|
201 |
msgid "Bermuda"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: the-events-calendar.class.php:82
|
205 |
msgid "Bhutan"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: the-events-calendar.class.php:83
|
209 |
msgid "Bolivia"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: the-events-calendar.class.php:84
|
213 |
msgid "Bosnia And Herzegowina"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: the-events-calendar.class.php:85
|
217 |
msgid "Botswana"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: the-events-calendar.class.php:86
|
221 |
msgid "Bouvet Island"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: the-events-calendar.class.php:87
|
225 |
msgid "Brazil"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: the-events-calendar.class.php:88
|
229 |
msgid "British Indian Ocean Territory"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: the-events-calendar.class.php:89
|
233 |
msgid "Brunei Darussalam"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: the-events-calendar.class.php:90
|
237 |
msgid "Bulgaria"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: the-events-calendar.class.php:91
|
241 |
msgid "Burkina Faso"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: the-events-calendar.class.php:92
|
245 |
msgid "Burundi"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: the-events-calendar.class.php:93
|
249 |
msgid "Cambodia"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: the-events-calendar.class.php:94
|
253 |
msgid "Cameroon"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: the-events-calendar.class.php:95
|
257 |
msgid "Canada"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: the-events-calendar.class.php:96
|
261 |
msgid "Cape Verde"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: the-events-calendar.class.php:97
|
265 |
msgid "Cayman Islands"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: the-events-calendar.class.php:98
|
269 |
msgid "Central African Republic"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: the-events-calendar.class.php:99
|
273 |
msgid "Chad"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: the-events-calendar.class.php:100
|
277 |
msgid "Chile"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: the-events-calendar.class.php:101
|
281 |
msgid "China"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: the-events-calendar.class.php:102
|
285 |
msgid "Christmas Island"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: the-events-calendar.class.php:103
|
289 |
msgid "Cocos (Keeling) Islands"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: the-events-calendar.class.php:104
|
293 |
msgid "Colombia"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: the-events-calendar.class.php:105
|
297 |
msgid "Comoros"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: the-events-calendar.class.php:106
|
301 |
msgid "Congo"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: the-events-calendar.class.php:107
|
305 |
msgid "Congo, The Democratic Republic Of The"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: the-events-calendar.class.php:108
|
309 |
msgid "Cook Islands"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: the-events-calendar.class.php:109
|
313 |
msgid "Costa Rica"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: the-events-calendar.class.php:110
|
317 |
msgid "Cote D'Ivoire"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: the-events-calendar.class.php:111
|
321 |
msgid "Croatia (Local Name: Hrvatska)"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: the-events-calendar.class.php:112
|
325 |
msgid "Cuba"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: the-events-calendar.class.php:113
|
329 |
msgid "Cyprus"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: the-events-calendar.class.php:114
|
333 |
msgid "Czech Republic"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: the-events-calendar.class.php:115
|
337 |
msgid "Denmark"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: the-events-calendar.class.php:116
|
341 |
msgid "Djibouti"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: the-events-calendar.class.php:117
|
345 |
msgid "Dominica"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: the-events-calendar.class.php:118
|
349 |
msgid "Dominican Republic"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: the-events-calendar.class.php:119
|
353 |
msgid "East Timor"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: the-events-calendar.class.php:120
|
357 |
msgid "Ecuador"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: the-events-calendar.class.php:121
|
361 |
msgid "Egypt"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: the-events-calendar.class.php:122
|
365 |
msgid "El Salvador"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: the-events-calendar.class.php:123
|
369 |
msgid "Equatorial Guinea"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: the-events-calendar.class.php:124
|
373 |
msgid "Eritrea"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: the-events-calendar.class.php:125
|
377 |
msgid "Estonia"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: the-events-calendar.class.php:126
|
381 |
msgid "Ethiopia"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: the-events-calendar.class.php:127
|
385 |
msgid "Falkland Islands (Malvinas)"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: the-events-calendar.class.php:128
|
389 |
msgid "Faroe Islands"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: the-events-calendar.class.php:129
|
393 |
msgid "Fiji"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: the-events-calendar.class.php:130
|
397 |
msgid "Finland"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: the-events-calendar.class.php:131
|
401 |
msgid "France"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: the-events-calendar.class.php:132
|
405 |
msgid "France, Metropolitan"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: the-events-calendar.class.php:133
|
409 |
msgid "French Guiana"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: the-events-calendar.class.php:134
|
413 |
msgid "French Polynesia"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: the-events-calendar.class.php:135
|
417 |
msgid "French Southern Territories"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: the-events-calendar.class.php:136
|
421 |
msgid "Gabon"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: the-events-calendar.class.php:137
|
425 |
msgid "Gambia"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: the-events-calendar.class.php:138 views/events-meta-box.php:369
|
429 |
msgid "Georgia"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: the-events-calendar.class.php:139
|
433 |
msgid "Germany"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: the-events-calendar.class.php:140
|
437 |
msgid "Ghana"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: the-events-calendar.class.php:141
|
441 |
msgid "Gibraltar"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: the-events-calendar.class.php:142
|
445 |
msgid "Greece"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: the-events-calendar.class.php:143
|
449 |
msgid "Greenland"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: the-events-calendar.class.php:144
|
453 |
msgid "Grenada"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: the-events-calendar.class.php:145
|
457 |
msgid "Guadeloupe"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: the-events-calendar.class.php:146
|
461 |
msgid "Guam"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: the-events-calendar.class.php:147
|
465 |
msgid "Guatemala"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: the-events-calendar.class.php:148
|
469 |
msgid "Guinea"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: the-events-calendar.class.php:149
|
473 |
msgid "Guinea-Bissau"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: the-events-calendar.class.php:150
|
477 |
msgid "Guyana"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: the-events-calendar.class.php:151
|
481 |
msgid "Haiti"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: the-events-calendar.class.php:152
|
485 |
msgid "Heard And Mc Donald Islands"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: the-events-calendar.class.php:153
|
489 |
msgid "Holy See (Vatican City State)"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: the-events-calendar.class.php:154
|
493 |
msgid "Honduras"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: the-events-calendar.class.php:155
|
497 |
msgid "Hong Kong"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: the-events-calendar.class.php:156
|
501 |
msgid "Hungary"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: the-events-calendar.class.php:157
|
505 |
msgid "Iceland"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: the-events-calendar.class.php:158
|
509 |
msgid "India"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: the-events-calendar.class.php:159
|
513 |
msgid "Indonesia"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: the-events-calendar.class.php:160
|
517 |
msgid "Iran (Islamic Republic Of)"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: the-events-calendar.class.php:161
|
521 |
msgid "Iraq"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: the-events-calendar.class.php:162
|
525 |
msgid "Ireland"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: the-events-calendar.class.php:163
|
529 |
msgid "Israel"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: the-events-calendar.class.php:164
|
533 |
msgid "Italy"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: the-events-calendar.class.php:165
|
537 |
msgid "Jamaica"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: the-events-calendar.class.php:166
|
541 |
msgid "Japan"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: the-events-calendar.class.php:167
|
545 |
msgid "Jordan"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: the-events-calendar.class.php:168
|
549 |
msgid "Kazakhstan"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: the-events-calendar.class.php:169
|
553 |
msgid "Kenya"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: the-events-calendar.class.php:170
|
557 |
msgid "Kiribati"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: the-events-calendar.class.php:171
|
561 |
msgid "Korea, Democratic People's Republic Of"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: the-events-calendar.class.php:172
|
565 |
msgid "Korea, Republic Of"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: the-events-calendar.class.php:173
|
569 |
msgid "Kuwait"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: the-events-calendar.class.php:174
|
573 |
msgid "Kyrgyzstan"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: the-events-calendar.class.php:175
|
577 |
msgid "Lao People's Democratic Republic"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: the-events-calendar.class.php:176
|
581 |
msgid "Latvia"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: the-events-calendar.class.php:177
|
585 |
msgid "Lebanon"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: the-events-calendar.class.php:178
|
589 |
msgid "Lesotho"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: the-events-calendar.class.php:179
|
593 |
msgid "Liberia"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: the-events-calendar.class.php:180
|
597 |
msgid "Libyan Arab Jamahiriya"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: the-events-calendar.class.php:181
|
601 |
msgid "Liechtenstein"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: the-events-calendar.class.php:182
|
605 |
msgid "Lithuania"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: the-events-calendar.class.php:183
|
609 |
msgid "Luxembourg"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: the-events-calendar.class.php:184
|
613 |
msgid "Macau"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: the-events-calendar.class.php:185
|
617 |
msgid "Macedonia, Former Yugoslav Republic Of"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: the-events-calendar.class.php:186
|
621 |
msgid "Madagascar"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: the-events-calendar.class.php:187
|
625 |
msgid "Malawi"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: the-events-calendar.class.php:188
|
629 |
msgid "Malaysia"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: the-events-calendar.class.php:189
|
633 |
msgid "Maldives"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: the-events-calendar.class.php:190
|
637 |
msgid "Mali"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: the-events-calendar.class.php:191
|
641 |
msgid "Malta"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: the-events-calendar.class.php:192
|
645 |
msgid "Marshall Islands"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: the-events-calendar.class.php:193
|
649 |
msgid "Martinique"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: the-events-calendar.class.php:194
|
653 |
msgid "Mauritania"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: the-events-calendar.class.php:195
|
657 |
msgid "Mauritius"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: the-events-calendar.class.php:196
|
661 |
msgid "Mayotte"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: the-events-calendar.class.php:197
|
665 |
msgid "Mexico"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: the-events-calendar.class.php:198
|
669 |
msgid "Micronesia, Federated States Of"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: the-events-calendar.class.php:199
|
673 |
msgid "Moldova, Republic Of"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: the-events-calendar.class.php:200
|
677 |
msgid "Monaco"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: the-events-calendar.class.php:201
|
681 |
msgid "Mongolia"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: the-events-calendar.class.php:202
|
685 |
msgid "Montserrat"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: the-events-calendar.class.php:203
|
689 |
msgid "Morocco"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: the-events-calendar.class.php:204
|
693 |
msgid "Mozambique"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: the-events-calendar.class.php:205
|
697 |
msgid "Myanmar"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: the-events-calendar.class.php:206
|
701 |
msgid "Namibia"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: the-events-calendar.class.php:207
|
705 |
msgid "Nauru"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: the-events-calendar.class.php:208
|
709 |
msgid "Nepal"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: the-events-calendar.class.php:209
|
713 |
msgid "Netherlands"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: the-events-calendar.class.php:210
|
717 |
msgid "Netherlands Antilles"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: the-events-calendar.class.php:211
|
721 |
msgid "New Caledonia"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: the-events-calendar.class.php:212
|
725 |
msgid "New Zealand"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: the-events-calendar.class.php:213
|
729 |
msgid "Nicaragua"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: the-events-calendar.class.php:214
|
733 |
msgid "Niger"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: the-events-calendar.class.php:215
|
737 |
msgid "Nigeria"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: the-events-calendar.class.php:216
|
741 |
msgid "Niue"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: the-events-calendar.class.php:217
|
745 |
msgid "Norfolk Island"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: the-events-calendar.class.php:218
|
749 |
msgid "Northern Mariana Islands"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: the-events-calendar.class.php:219
|
753 |
msgid "Norway"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: the-events-calendar.class.php:220
|
757 |
msgid "Oman"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: the-events-calendar.class.php:221
|
761 |
msgid "Pakistan"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: the-events-calendar.class.php:222
|
765 |
msgid "Palau"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: the-events-calendar.class.php:223
|
769 |
msgid "Panama"
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: the-events-calendar.class.php:224
|
773 |
msgid "Papua New Guinea"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: the-events-calendar.class.php:225
|
777 |
msgid "Paraguay"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: the-events-calendar.class.php:226
|
781 |
msgid "Peru"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: the-events-calendar.class.php:227
|
785 |
msgid "Philippines"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: the-events-calendar.class.php:228
|
789 |
msgid "Pitcairn"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: the-events-calendar.class.php:229
|
793 |
msgid "Poland"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: the-events-calendar.class.php:230
|
797 |
msgid "Portugal"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: the-events-calendar.class.php:231
|
801 |
msgid "Puerto Rico"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: the-events-calendar.class.php:232
|
805 |
msgid "Qatar"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: the-events-calendar.class.php:233
|
809 |
msgid "Reunion"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: the-events-calendar.class.php:234
|
813 |
msgid "Romania"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: the-events-calendar.class.php:235
|
817 |
msgid "Russian Federation"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: the-events-calendar.class.php:236
|
821 |
msgid "Rwanda"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: the-events-calendar.class.php:237
|
825 |
msgid "Saint Kitts And Nevis"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: the-events-calendar.class.php:238
|
829 |
msgid "Saint Lucia"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: the-events-calendar.class.php:239
|
833 |
msgid "Saint Vincent And The Grenadines"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: the-events-calendar.class.php:240
|
837 |
msgid "Samoa"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: the-events-calendar.class.php:241
|
841 |
msgid "San Marino"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: the-events-calendar.class.php:242
|
845 |
msgid "Sao Tome And Principe"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: the-events-calendar.class.php:243
|
849 |
msgid "Saudi Arabia"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: the-events-calendar.class.php:244
|
853 |
msgid "Senegal"
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: the-events-calendar.class.php:245
|
857 |
msgid "Seychelles"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: the-events-calendar.class.php:246
|
861 |
msgid "Sierra Leone"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: the-events-calendar.class.php:247
|
865 |
msgid "Singapore"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: the-events-calendar.class.php:248
|
869 |
msgid "Slovakia (Slovak Republic)"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: the-events-calendar.class.php:249
|
873 |
msgid "Slovenia"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: the-events-calendar.class.php:250
|
877 |
msgid "Solomon Islands"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: the-events-calendar.class.php:251
|
881 |
msgid "Somalia"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: the-events-calendar.class.php:252
|
885 |
msgid "South Africa"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: the-events-calendar.class.php:253
|
889 |
msgid "South Georgia, South Sandwich Islands"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: the-events-calendar.class.php:254
|
893 |
msgid "Spain"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: the-events-calendar.class.php:255
|
897 |
msgid "Sri Lanka"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: the-events-calendar.class.php:256
|
901 |
msgid "St. Helena"
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: the-events-calendar.class.php:257
|
905 |
msgid "St. Pierre And Miquelon"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: the-events-calendar.class.php:258
|
909 |
msgid "Sudan"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: the-events-calendar.class.php:259
|
913 |
msgid "Suriname"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: the-events-calendar.class.php:260
|
917 |
msgid "Svalbard And Jan Mayen Islands"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: the-events-calendar.class.php:261
|
921 |
msgid "Swaziland"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: the-events-calendar.class.php:262
|
925 |
msgid "Sweden"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: the-events-calendar.class.php:263
|
929 |
msgid "Switzerland"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: the-events-calendar.class.php:264
|
933 |
msgid "Syrian Arab Republic"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: the-events-calendar.class.php:265
|
937 |
msgid "Taiwan"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: the-events-calendar.class.php:266
|
941 |
msgid "Tajikistan"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: the-events-calendar.class.php:267
|
945 |
msgid "Tanzania, United Republic Of"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: the-events-calendar.class.php:268
|
949 |
msgid "Thailand"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: the-events-calendar.class.php:269
|
953 |
msgid "Togo"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: the-events-calendar.class.php:270
|
957 |
msgid "Tokelau"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: the-events-calendar.class.php:271
|
961 |
msgid "Tonga"
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: the-events-calendar.class.php:272
|
965 |
msgid "Trinidad And Tobago"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: the-events-calendar.class.php:273
|
969 |
msgid "Tunisia"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: the-events-calendar.class.php:274
|
973 |
msgid "Turkey"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: the-events-calendar.class.php:275
|
977 |
msgid "Turkmenistan"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: the-events-calendar.class.php:276
|
981 |
msgid "Turks And Caicos Islands"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: the-events-calendar.class.php:277
|
985 |
msgid "Tuvalu"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: the-events-calendar.class.php:278
|
989 |
msgid "Uganda"
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: the-events-calendar.class.php:279
|
993 |
msgid "Ukraine"
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: the-events-calendar.class.php:280
|
997 |
msgid "United Arab Emirates"
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: the-events-calendar.class.php:281
|
1001 |
msgid "United Kingdom"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: the-events-calendar.class.php:282
|
1005 |
msgid "United States Minor Outlying Islands"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: the-events-calendar.class.php:283
|
1009 |
msgid "Uruguay"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: the-events-calendar.class.php:284
|
1013 |
msgid "Uzbekistan"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: the-events-calendar.class.php:285
|
1017 |
msgid "Vanuatu"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: the-events-calendar.class.php:286
|
1021 |
msgid "Venezuela"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: the-events-calendar.class.php:287
|
1025 |
msgid "Viet Nam"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: the-events-calendar.class.php:288
|
1029 |
msgid "Virgin Islands (British)"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: the-events-calendar.class.php:289
|
1033 |
msgid "Virgin Islands (U.S.)"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: the-events-calendar.class.php:290
|
1037 |
msgid "Wallis And Futuna Islands"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: the-events-calendar.class.php:291
|
1041 |
msgid "Western Sahara"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: the-events-calendar.class.php:292
|
1045 |
msgid "Yemen"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: the-events-calendar.class.php:293
|
1049 |
msgid "Yugoslavia"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
+
#: the-events-calendar.class.php:294
|
1053 |
msgid "Zambia"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: the-events-calendar.class.php:295
|
1057 |
msgid "Zimbabwe"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: the-events-calendar.class.php:490
|
1061 |
+
msgid "Jan"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: the-events-calendar.class.php:491
|
1065 |
+
msgid "Feb"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: the-events-calendar.class.php:492
|
1069 |
+
msgid "Mar"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: the-events-calendar.class.php:493
|
1073 |
+
msgid "Apr"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: the-events-calendar.class.php:494 the-events-calendar.class.php:508
|
1077 |
msgid "May"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: the-events-calendar.class.php:495
|
1081 |
+
msgid "Jun"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: the-events-calendar.class.php:496
|
1085 |
+
msgid "Jul"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: the-events-calendar.class.php:497
|
1089 |
+
msgid "Aug"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: the-events-calendar.class.php:498
|
1093 |
+
msgid "Sep"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: the-events-calendar.class.php:499
|
1097 |
+
msgid "Oct"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: the-events-calendar.class.php:500
|
1101 |
+
msgid "Nov"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: the-events-calendar.class.php:501
|
1105 |
+
msgid "Dec"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: the-events-calendar.class.php:504
|
1109 |
+
msgid "January"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: the-events-calendar.class.php:505
|
1113 |
+
msgid "February"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: the-events-calendar.class.php:506
|
1117 |
+
msgid "March"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: the-events-calendar.class.php:507
|
1121 |
+
msgid "April"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: the-events-calendar.class.php:509
|
1125 |
+
msgid "June"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: the-events-calendar.class.php:510
|
1129 |
+
msgid "July"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: the-events-calendar.class.php:511
|
1133 |
+
msgid "August"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: the-events-calendar.class.php:512
|
1137 |
+
msgid "September"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: the-events-calendar.class.php:513
|
1141 |
+
msgid "October"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: the-events-calendar.class.php:514
|
1145 |
+
msgid "November"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: the-events-calendar.class.php:515
|
1149 |
+
msgid "December"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#. #-#-#-#-# plugin.pot (The Events Calendar 1.6) #-#-#-#-#
|
1153 |
+
#. Plugin Name of the plugin/theme
|
1154 |
+
#: the-events-calendar.class.php:1007
|
1155 |
+
msgid "The Events Calendar"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
#: views/events-list-load-widget-admin.php:7
|
1159 |
msgid "Show:"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: views/events-list-load-widget-admin.php:15
|
1163 |
+
msgid "Don't show the widget if there are no upcoming events:"
|
1164 |
+
msgstr ""
|
1165 |
+
|
1166 |
+
#: views/events-list-load-widget-admin.php:21
|
1167 |
msgid "Display:"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: views/events-list-load-widget-admin.php:24
|
1171 |
msgid "Start Date & Time"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: views/events-list-load-widget-admin.php:25
|
1175 |
msgid "End Date & Time"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: views/events-list-load-widget-admin.php:26
|
1179 |
msgid "Venue"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: views/events-list-load-widget-admin.php:27
|
1183 |
msgid "Address"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: views/events-list-load-widget-admin.php:28
|
1187 |
msgid "City"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: views/events-list-load-widget-admin.php:29
|
1191 |
msgid "State (US)"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: views/events-list-load-widget-admin.php:30
|
1195 |
msgid "Province (Int)"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: views/events-list-load-widget-admin.php:31
|
1199 |
msgid "Postal Code"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: views/events-list-load-widget-admin.php:32
|
1203 |
msgid "Country"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: views/events-list-load-widget-admin.php:33 views/events-meta-box.php:136
|
1207 |
msgid "Phone"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: views/events-list-load-widget-admin.php:34
|
1211 |
msgid "Price"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: views/events-list-load-widget-display.php:47
|
1215 |
msgid "More Info"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: views/events-meta-box.php:136
|
1219 |
+
msgid "is not valid."
|
1220 |
+
msgstr ""
|
1221 |
+
|
1222 |
+
#: views/events-meta-box.php:136
|
1223 |
+
msgid ""
|
1224 |
+
"Valid values are local format (eg. 02 1234 5678 or 123 123 4567) or "
|
1225 |
+
"international format (eg. +61 (0) 2 1234 5678 or +1 123 123 4567). You may "
|
1226 |
+
"also use an optional extension of up to five digits prefixed by x or ext "
|
1227 |
+
"(eg. 123 123 4567 x89)"
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
+
#: views/events-meta-box.php:210
|
1231 |
msgid "Is this post an event?"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: views/events-meta-box.php:211 views/events-options.php:181
|
1235 |
msgid "Yes"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: views/events-meta-box.php:212 views/events-options.php:185
|
1239 |
msgid "No"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: views/events-meta-box.php:229
|
1243 |
msgid "Event Time & Date"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: views/events-meta-box.php:232
|
1247 |
msgid "All day event?"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: views/events-meta-box.php:236
|
1251 |
msgid "Start Date / Time:"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: views/events-meta-box.php:250 views/events-meta-box.php:280
|
1255 |
msgid "@"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: views/events-meta-box.php:266
|
1259 |
msgid "End Date / Time:"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: views/events-meta-box.php:296
|
1263 |
msgid "Event Location Details"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: views/events-meta-box.php:299 views/list.php:45 views/single.php:27
|
1267 |
msgid "Venue:"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: views/events-meta-box.php:305
|
1271 |
msgid "Country:"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: views/events-meta-box.php:341 views/list.php:60 views/single.php:36
|
1275 |
msgid "Address:"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
+
#: views/events-meta-box.php:345
|
1279 |
msgid "City:"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: views/events-meta-box.php:350
|
1283 |
msgid "Province:"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: views/events-meta-box.php:354
|
1287 |
msgid "State:"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: views/events-meta-box.php:357
|
1291 |
msgid "Select a State:"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: views/events-meta-box.php:359
|
1295 |
msgid "Alabama"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: views/events-meta-box.php:360
|
1299 |
msgid "Alaska"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: views/events-meta-box.php:361
|
1303 |
msgid "Arizona"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: views/events-meta-box.php:362
|
1307 |
msgid "Arkansas"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: views/events-meta-box.php:363
|
1311 |
msgid "California"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: views/events-meta-box.php:364
|
1315 |
msgid "Colorado"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: views/events-meta-box.php:365
|
1319 |
msgid "Connecticut"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: views/events-meta-box.php:366
|
1323 |
msgid "Delaware"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: views/events-meta-box.php:367
|
1327 |
msgid "District of Columbia"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: views/events-meta-box.php:368
|
1331 |
msgid "Florida"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: views/events-meta-box.php:370
|
1335 |
msgid "Hawaii"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: views/events-meta-box.php:371
|
1339 |
msgid "Idaho"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: views/events-meta-box.php:372
|
1343 |
msgid "Illinois"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: views/events-meta-box.php:373
|
1347 |
msgid "Indiana"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: views/events-meta-box.php:374
|
1351 |
msgid "Iowa"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: views/events-meta-box.php:375
|
1355 |
msgid "Kansas"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: views/events-meta-box.php:376
|
1359 |
msgid "Kentucky"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: views/events-meta-box.php:377
|
1363 |
msgid "Louisiana"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: views/events-meta-box.php:378
|
1367 |
msgid "Maine"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: views/events-meta-box.php:379
|
1371 |
msgid "Maryland"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: views/events-meta-box.php:380
|
1375 |
msgid "Massachusetts"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: views/events-meta-box.php:381
|
1379 |
msgid "Michigan"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: views/events-meta-box.php:382
|
1383 |
msgid "Minnesota"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: views/events-meta-box.php:383
|
1387 |
msgid "Mississippi"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: views/events-meta-box.php:384
|
1391 |
msgid "Missouri"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: views/events-meta-box.php:385
|
1395 |
msgid "Montana"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: views/events-meta-box.php:386
|
1399 |
msgid "Nebraska"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: views/events-meta-box.php:387
|
1403 |
msgid "Nevada"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
+
#: views/events-meta-box.php:388
|
1407 |
msgid "New Hampshire"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
+
#: views/events-meta-box.php:389
|
1411 |
msgid "New Jersey"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: views/events-meta-box.php:390
|
1415 |
msgid "New Mexico"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
+
#: views/events-meta-box.php:391
|
1419 |
msgid "New York"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
+
#: views/events-meta-box.php:392
|
1423 |
msgid "North Carolina"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
+
#: views/events-meta-box.php:393
|
1427 |
msgid "North Dakota"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
+
#: views/events-meta-box.php:394
|
1431 |
msgid "Ohio"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: views/events-meta-box.php:395
|
1435 |
msgid "Oklahoma"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: views/events-meta-box.php:396
|
1439 |
msgid "Oregon"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: views/events-meta-box.php:397
|
1443 |
msgid "Pennsylvania"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: views/events-meta-box.php:398
|
1447 |
msgid "Rhode Island"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: views/events-meta-box.php:399
|
1451 |
msgid "South Carolina"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: views/events-meta-box.php:400
|
1455 |
msgid "South Dakota"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: views/events-meta-box.php:401
|
1459 |
msgid "Tennessee"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: views/events-meta-box.php:402
|
1463 |
msgid "Texas"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: views/events-meta-box.php:403
|
1467 |
msgid "Utah"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: views/events-meta-box.php:404
|
1471 |
msgid "Vermont"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: views/events-meta-box.php:405
|
1475 |
msgid "Virginia"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: views/events-meta-box.php:406
|
1479 |
msgid "Washington"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: views/events-meta-box.php:407
|
1483 |
msgid "West Virginia"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: views/events-meta-box.php:408
|
1487 |
msgid "Wisconsin"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: views/events-meta-box.php:409
|
1491 |
msgid "Wyoming"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: views/events-meta-box.php:423
|
1495 |
msgid "Postal Code:"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: views/events-meta-box.php:427
|
1499 |
+
msgid "Show Google Map Link:"
|
1500 |
+
msgstr ""
|
1501 |
+
|
1502 |
+
#: views/events-meta-box.php:439
|
1503 |
+
msgid "Show Google Map:"
|
1504 |
+
msgstr ""
|
1505 |
+
|
1506 |
+
#: views/events-meta-box.php:444 views/list.php:54 views/single.php:31
|
1507 |
msgid "Phone:"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: views/events-meta-box.php:448
|
1511 |
msgid "Event Cost"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: views/events-meta-box.php:451 views/list.php:72 views/single.php:21
|
1515 |
msgid "Cost:"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: views/events-meta-box.php:456
|
1519 |
msgid "Leave blank to hide the field. Enter a 0 for events that are free."
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: views/events-meta-box.php:460
|
1523 |
msgid "Sell Tickets & Track Registration"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: views/events-meta-box.php:465
|
1527 |
msgid ""
|
1528 |
"Interested in selling tickets and tracking registrations? Now you can do it "
|
1529 |
"for free using our <a href=\"http://wordpress.org/extend/plugins/eventbrite-"
|
1535 |
"building plugins for the open source community. "
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: views/events-meta-box.php:465
|
1539 |
msgid "Check it out here."
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: views/events-meta-box.php:483
|
1543 |
msgid ""
|
1544 |
"<h4>If You Like This Plugin - Help Support It</h4><p>We spend a lot of time "
|
1545 |
"and effort building robust plugins and we love to share them with the "
|
1549 |
"p>"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: views/events-meta-box.php:485
|
1553 |
msgid "Thanks"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: views/events-options.php:74
|
1557 |
msgid "The Events Calendar Settings"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: views/events-options.php:94
|
1561 |
msgid "Need a hand?"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: views/events-options.php:95
|
1565 |
msgid ""
|
1566 |
"If you're stuck on these options, please <a href=\"http://wordpress.org/"
|
1567 |
"extend/plugins/the-events-calendar/\">check out the documentation</a>. If "
|
1571 |
"happy to help."
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: views/events-options.php:96
|
1575 |
+
msgid "Here is the iCal feed URL for your events: "
|
1576 |
+
msgstr ""
|
1577 |
+
|
1578 |
+
#: views/events-options.php:99
|
1579 |
msgid "Donate"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: views/events-options.php:108
|
1583 |
msgid ""
|
1584 |
"If you find this plugin useful, please consider donating to the producer of "
|
1585 |
"it, Shane & Peter, Inc. Thank you!"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: views/events-options.php:112
|
1589 |
msgid "I have already donated, so please hide this button!"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
+
#: views/events-options.php:122
|
1593 |
msgid "Donate for this wonderful plugin"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
+
#: views/events-options.php:136
|
1597 |
msgid "Settings"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: views/events-options.php:139 views/events-options.php:143
|
1601 |
msgid "Default View for the Events"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: views/events-options.php:155 views/gridview.php:28 views/list.php:12
|
1605 |
msgid "Calendar"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: views/events-options.php:159 views/gridview.php:27 views/list.php:11
|
1609 |
msgid "Event List"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
+
#: views/events-options.php:165 views/events-options.php:169
|
1613 |
msgid "Show Comments"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
+
#: views/events-options.php:191
|
1617 |
msgid "Default Country for Events"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
+
#: views/events-options.php:214 views/events-options.php:218
|
1621 |
+
msgid "Display Events on Homepage"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
+
#: views/events-options.php:225 views/events-options.php:254
|
1625 |
+
#: views/events-options.php:281 views/events-options.php:307
|
1626 |
msgid "Off"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: views/events-options.php:229 views/events-options.php:258
|
1630 |
+
#: views/events-options.php:285 views/events-options.php:311
|
1631 |
msgid "On"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: views/events-options.php:236 views/events-options.php:240
|
1635 |
+
msgid "Embed Google Maps"
|
1636 |
+
msgstr ""
|
1637 |
+
|
1638 |
+
#: views/events-options.php:261
|
1639 |
msgid "Height"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: views/events-options.php:262
|
1643 |
msgid "Width"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
+
#: views/events-options.php:262
|
1647 |
msgid "(number or %)"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: views/events-options.php:270 views/events-options.php:274
|
1651 |
+
msgid "Feature on Event Date"
|
1652 |
+
msgstr ""
|
1653 |
+
|
1654 |
+
#: views/events-options.php:288
|
1655 |
+
msgid ""
|
1656 |
+
"This option will bump an event to the top of the homepage loop on the day of "
|
1657 |
+
"the event."
|
1658 |
+
msgstr ""
|
1659 |
+
|
1660 |
+
#: views/events-options.php:296 views/events-options.php:300
|
1661 |
+
msgid "Use Pretty URLs"
|
1662 |
+
msgstr ""
|
1663 |
+
|
1664 |
+
#: views/events-options.php:314
|
1665 |
+
msgid ""
|
1666 |
+
"Pretty URLs (ie, http://site/category/events/upcoming) may interfere with "
|
1667 |
+
"custom themes or plugins."
|
1668 |
+
msgstr ""
|
1669 |
+
|
1670 |
+
#: views/events-options.php:340
|
1671 |
msgid "Save Changes"
|
1672 |
msgstr ""
|
1673 |
|
1675 |
msgid "Calendar of Events"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
+
#: views/list.php:33 views/single.php:14
|
1679 |
msgid "Start:"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
+
#: views/list.php:37 views/single.php:17
|
1683 |
msgid "End:"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
+
#: views/list.php:62 views/single.php:38
|
1687 |
msgid "Google Map"
|
1688 |
msgstr ""
|
1689 |
|
1695 |
msgid "Next Events »"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
+
#: views/single.php:9
|
1699 |
msgid "« Back to Events"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: views/single.php:11
|
1703 |
msgid "This event has passed."
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: views/single.php:38
|
1707 |
msgid "Click to view a Google Map"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#. Plugin URI of the plugin/theme
|
1711 |
msgid "http://wordpress.org/extend/plugins/the-events-calendar/"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
+
#. Description of the plugin/theme
|
1715 |
msgid ""
|
1716 |
"The Events Calendar plugin enables you to rapidly create and manage events "
|
1717 |
+
"using the post editor. Features include optional Eventbrite integration, "
|
1718 |
"Google Maps integration as well as default calendar grid and list templates "
|
1719 |
+
"for streamlined one click installation. When updating The Events Calendar, "
|
1720 |
+
"if EventBrite for The Events Calendar is being used, the two plugins must be "
|
1721 |
+
"updated together. Requires PHP 5.1 or above."
|
1722 |
msgstr ""
|
1723 |
|
1724 |
+
#. Author of the plugin/theme
|
1725 |
msgid "Shane & Peter, Inc."
|
1726 |
msgstr ""
|
1727 |
|
1728 |
+
#. Author URI of the plugin/theme
|
1729 |
msgid "http://www.shaneandpeter.com/"
|
1730 |
msgstr ""
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Contributors: Kelsey Damas, Matt Wiebe, Justin Endler, Reid Peifer, Dan Cameron,
|
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=10750983
|
5 |
Tags: widget, events, simple, tooltips, grid, month, list, calendar, 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
|
6 |
Requires at least: 2.8
|
7 |
-
Tested up to:
|
8 |
-
Stable tag: 1.
|
9 |
|
10 |
== Description ==
|
11 |
|
@@ -33,7 +33,6 @@ Looking to track attendees, sell tickets and more? Go download the Eventbrite fo
|
|
33 |
= Upcoming Features =
|
34 |
|
35 |
* Option to disable re-posting of event
|
36 |
-
* Ical Feed
|
37 |
* Improved international features (calendar start day)
|
38 |
* Option to exclude events from main loop
|
39 |
* More bug hunting and support (huff puff)
|
@@ -209,14 +208,61 @@ Please visit the forum for questions or comments: http://wordpress.org/tags/the-
|
|
209 |
|
210 |
== Changelog ==
|
211 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
212 |
= 1.5.6 =
|
213 |
|
214 |
-
* Fixes date bug in the class method setOptions(), line 1188 in the-events-calendar.php
|
215 |
-
** thanks to hmarcbower for some ground work on this
|
216 |
|
217 |
= 1.5.5 =
|
218 |
|
219 |
Features
|
|
|
220 |
* Starting day in calendar view now reflects the start_of_week Wordpress option
|
221 |
* Widget view can now be overwritten in theme ([theme]/events/events-list-load-widget-display.php)
|
222 |
* Setting that enables "Feature on Event Date" - This option will bump an event to the top of the homepage loop on the day of the event (and then return it when over).
|
@@ -224,11 +270,14 @@ Features
|
|
224 |
* Class in calendar for current Day, past events and future events.
|
225 |
* Fixed translation bugs (thanks to Kaj for catching)
|
226 |
** new .pot file available with more entries, covering more of the plugin (months are in there now)
|
227 |
-
* New Translations:
|
228 |
-
** Polish: Maciej Swoboda
|
229 |
-
** Czech: Tomas Vesely
|
230 |
|
231 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
232 |
* RSS broken with alterate permalinks
|
233 |
* AM/PM time display bug
|
234 |
* Issue of right float on right three cols on cal view for some themes
|
@@ -265,15 +314,18 @@ Aaron Rhodes, who has begun doing qa for each release. He has been catching bugs
|
|
265 |
= 1.5.3 =
|
266 |
|
267 |
Settings
|
|
|
268 |
* updated minimum php requirement to 5.1
|
269 |
|
270 |
Bug Fixes
|
|
|
271 |
* Fixed permalink issue on calendar
|
272 |
* Removed limit of events shown on calendar view
|
273 |
* Fixed conflicting namespace error with xml2array function
|
274 |
* Curl support for (soon to be deprecated) safe_mod
|
275 |
|
276 |
Features
|
|
|
277 |
* Update minuted to increment by 5 rather than 1 and default to 00
|
278 |
* Added a class per category to each event in the grid view: "cat_classname" to allow users more styling controls in the grid.
|
279 |
* Added embedded google maps integration & admin panel controls
|
@@ -332,5 +384,4 @@ Features
|
|
332 |
|
333 |
* Started internationalization (translation) support
|
334 |
* Added international addresses
|
335 |
-
* Extracted from S&P core plugin to stand alone.
|
336 |
-
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=10750983
|
5 |
Tags: widget, events, simple, tooltips, grid, month, list, calendar, 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
|
6 |
Requires at least: 2.8
|
7 |
+
Tested up to: 3.0
|
8 |
+
Stable tag: 1.6
|
9 |
|
10 |
== Description ==
|
11 |
|
33 |
= Upcoming Features =
|
34 |
|
35 |
* Option to disable re-posting of event
|
|
|
36 |
* Improved international features (calendar start day)
|
37 |
* Option to exclude events from main loop
|
38 |
* More bug hunting and support (huff puff)
|
208 |
|
209 |
== Changelog ==
|
210 |
|
211 |
+
= 1.6 =
|
212 |
+
|
213 |
+
Features
|
214 |
+
|
215 |
+
* Child Theme support
|
216 |
+
* iCal Feed of all events now accessible using http://<yourUrlHere>.com/?ical
|
217 |
+
* Setting to include / exclude events form general loop
|
218 |
+
* Subcategories in events now behave properly! (and include some css for your creative endeavors)
|
219 |
+
* Get Events function no longer starts its own loop (significantly reduce conflicts with other plugins)
|
220 |
+
* Added class to current day
|
221 |
+
* PHP versions older than 5.1 will fail gracefully
|
222 |
+
* Uninstall file
|
223 |
+
* Calendar grid view now honors 'posts_per_page' wordpress setting.
|
224 |
+
* Calendar grid view now has "previous" and "next" month links
|
225 |
+
* Widget now has options to control behavior when there are no events to display
|
226 |
+
* Updates to widget layout (links to events and "read more")
|
227 |
+
* It is now possible to select no default country for events
|
228 |
+
* Added a setting to control "pretty urls" to the events vs using query args (reduce conflicts with other rewrite rules)
|
229 |
+
* Default times for new event updated (all day, starting tomorrow)
|
230 |
+
|
231 |
+
Translations
|
232 |
+
|
233 |
+
* German [Felix Bartels]
|
234 |
+
* Brazilian Portuguese [Thiago Abdalla]
|
235 |
+
* Dutch [Sjoerd Boerrigter]
|
236 |
+
* Spanish [Los Jethrov]
|
237 |
+
* Updates to Swedish Translation [Kaj Johansson]
|
238 |
+
* Updates to German Translation [Andre Schuhmann]
|
239 |
+
* Danish [Carsten Matzon]
|
240 |
+
|
241 |
+
Bugs
|
242 |
+
|
243 |
+
* Improvements to field validation
|
244 |
+
* Fixes Embedded Map HTML URL Encoding so its w3c compatible (Thanks azizur!)
|
245 |
+
* Usability issue: Is this post an event? Yes/No -- now you can click the text and it will select your choice. (Thanks azizur!)
|
246 |
+
* Fixes drag/drop issue (Thanks azizur!)
|
247 |
+
* State vs Province meta values were not mutually exclusive
|
248 |
+
* HTML was not properly escaped in the template
|
249 |
+
* Fixes PHP short tag issue in one of the templates
|
250 |
+
* in single.php, the Back to Events link no longer strictly goes to the grid view, but adheres to the default few option -pointed out by azzatron on the forum
|
251 |
+
* google map link is now produced with minimal information, complete address is no longer needed, W3C-compatible output
|
252 |
+
** tec_event_address() added for easy echoing of the event address
|
253 |
+
** thanks to AntonLargiader and azizur on forum
|
254 |
+
* improvement and debugging of entire error catching and displaying system
|
255 |
+
* Fixes upcoming/past sorting issue (Thanks Elliot Silver for the support!)
|
256 |
+
|
257 |
+
|
258 |
= 1.5.6 =
|
259 |
|
260 |
+
* Fixes date bug in the class method setOptions(), line 1188 in the-events-calendar.php. Thanks to hmarcbower for some ground work on this
|
|
|
261 |
|
262 |
= 1.5.5 =
|
263 |
|
264 |
Features
|
265 |
+
|
266 |
* Starting day in calendar view now reflects the start_of_week Wordpress option
|
267 |
* Widget view can now be overwritten in theme ([theme]/events/events-list-load-widget-display.php)
|
268 |
* Setting that enables "Feature on Event Date" - This option will bump an event to the top of the homepage loop on the day of the event (and then return it when over).
|
270 |
* Class in calendar for current Day, past events and future events.
|
271 |
* Fixed translation bugs (thanks to Kaj for catching)
|
272 |
** new .pot file available with more entries, covering more of the plugin (months are in there now)
|
|
|
|
|
|
|
273 |
|
274 |
+
Translations
|
275 |
+
|
276 |
+
* Polish [Maciej Swoboda]
|
277 |
+
* Czech [Tomas Vesely]
|
278 |
+
|
279 |
+
Bugs
|
280 |
+
|
281 |
* RSS broken with alterate permalinks
|
282 |
* AM/PM time display bug
|
283 |
* Issue of right float on right three cols on cal view for some themes
|
314 |
= 1.5.3 =
|
315 |
|
316 |
Settings
|
317 |
+
|
318 |
* updated minimum php requirement to 5.1
|
319 |
|
320 |
Bug Fixes
|
321 |
+
|
322 |
* Fixed permalink issue on calendar
|
323 |
* Removed limit of events shown on calendar view
|
324 |
* Fixed conflicting namespace error with xml2array function
|
325 |
* Curl support for (soon to be deprecated) safe_mod
|
326 |
|
327 |
Features
|
328 |
+
|
329 |
* Update minuted to increment by 5 rather than 1 and default to 00
|
330 |
* Added a class per category to each event in the grid view: "cat_classname" to allow users more styling controls in the grid.
|
331 |
* Added embedded google maps integration & admin panel controls
|
384 |
|
385 |
* Started internationalization (translation) support
|
386 |
* Added international addresses
|
387 |
+
* Extracted from S&P core plugin to stand alone.
|
|
resources/events.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
/* @override
|
2 |
-
http://wp.local/content/plugins/the-events-calendar/resources/events.css?ver=2.9.
|
3 |
*/
|
4 |
|
5 |
.category-events #tec-content {
|
@@ -20,6 +20,7 @@
|
|
20 |
h2.tec-cal-title {
|
21 |
float:left;
|
22 |
padding-right:15px;
|
|
|
23 |
}
|
24 |
.tec-calendar-buttons a {
|
25 |
background:#999;
|
@@ -40,19 +41,21 @@ h2.tec-cal-title {
|
|
40 |
-moz-border-radius:3px;
|
41 |
-webkit-border-radius:3px;
|
42 |
}
|
43 |
-
.
|
44 |
-
|
|
|
|
|
45 |
}
|
46 |
-
.
|
47 |
-
|
48 |
}
|
49 |
-
|
50 |
-
margin:5px
|
51 |
-
}
|
52 |
-
|
53 |
-
.category-events #tec-nav-below {
|
54 |
-
margin:21px 0;
|
55 |
}
|
|
|
|
|
|
|
|
|
56 |
select.tec-events-dropdown {
|
57 |
width:auto;
|
58 |
font-size:11px;
|
@@ -67,9 +70,7 @@ select.tec-events-dropdown {
|
|
67 |
font-size:15px;
|
68 |
margin:15px 0 6px;
|
69 |
}
|
70 |
-
.category-events .entry-title a, .tec-event-meta-desc, .tec-event-day {
|
71 |
-
color:#555;
|
72 |
-
}
|
73 |
.category-events .post .alt {
|
74 |
background:#f9f9f9;
|
75 |
border-width:0;
|
@@ -91,9 +92,7 @@ table.tec-calendar {
|
|
91 |
background-color: #2d81bb;
|
92 |
color: #fff;
|
93 |
}
|
94 |
-
.tec-calendar td.tec-past .daynum {
|
95 |
-
color: #aaa;
|
96 |
-
}
|
97 |
.tec-calendar th {
|
98 |
width: 250px;
|
99 |
height: 10px;
|
@@ -116,9 +115,7 @@ table.tec-calendar {
|
|
116 |
padding:6px 9px;
|
117 |
line-height:1.2;
|
118 |
}
|
119 |
-
.tec-calendar td a {
|
120 |
-
font-size:91.7%;
|
121 |
-
}
|
122 |
.tec-calendar hr {
|
123 |
border:0 none !important;
|
124 |
display:block;
|
@@ -126,9 +123,7 @@ table.tec-calendar {
|
|
126 |
background-color:#D4DBCC;
|
127 |
margin:0 9px;
|
128 |
}
|
129 |
-
.tec-calendar .tec-event {
|
130 |
-
position:relative;
|
131 |
-
}
|
132 |
.tec-calendar .tec-tooltip {
|
133 |
border:1px solid #666;
|
134 |
position:absolute;
|
@@ -174,12 +169,8 @@ table.tec-calendar {
|
|
174 |
font-style:italic;
|
175 |
margin:3px 0;
|
176 |
}
|
177 |
-
#tec-content {
|
178 |
-
|
179 |
-
}
|
180 |
-
.tec-event .post {
|
181 |
-
position:relative;
|
182 |
-
}
|
183 |
#tec-event-meta {
|
184 |
border-width:1px 0;
|
185 |
border-style:solid;
|
@@ -217,9 +208,7 @@ table.tec-calendar {
|
|
217 |
-webkit-border-radius:2px;
|
218 |
border-radius:2px;
|
219 |
}
|
220 |
-
span.back {
|
221 |
-
margin:12px 0 0;
|
222 |
-
}
|
223 |
#tec-events-loop {
|
224 |
font-size:13px;
|
225 |
clear:both;
|
@@ -237,9 +226,7 @@ span.back {
|
|
237 |
font-size:12px;
|
238 |
margin-bottom:20px;
|
239 |
}
|
240 |
-
.tec-event-list-meta table {
|
241 |
-
border-collapse:collapse;
|
242 |
-
}
|
243 |
.tec-event-list-meta td {
|
244 |
vertical-align:top;
|
245 |
padding-bottom:4px;
|
@@ -256,16 +243,12 @@ h4.tec-event-day {
|
|
256 |
margin:12px 0 -3px;
|
257 |
clear:both;
|
258 |
}
|
259 |
-
h4.tec-event-day + .post .entry-title {
|
260 |
-
margin-top:6px;
|
261 |
-
}
|
262 |
-
|
263 |
#eventbrite-embed {
|
264 |
width:100%;
|
265 |
min-height:225px;
|
266 |
margin:24px 0;
|
267 |
}
|
268 |
-
|
269 |
.clearfix:after {
|
270 |
content: ".";
|
271 |
display: block;
|
@@ -273,6 +256,7 @@ h4.tec-event-day + .post .entry-title {
|
|
273 |
clear: both;
|
274 |
visibility: hidden;
|
275 |
}
|
276 |
-
.clearfix {
|
277 |
-
|
278 |
-
}
|
|
1 |
/* @override
|
2 |
+
http://wp.local/content/plugins/the-events-calendar/resources/events.css?ver=2.9.2
|
3 |
*/
|
4 |
|
5 |
.category-events #tec-content {
|
20 |
h2.tec-cal-title {
|
21 |
float:left;
|
22 |
padding-right:15px;
|
23 |
+
margin-bottom: 33px;
|
24 |
}
|
25 |
.tec-calendar-buttons a {
|
26 |
background:#999;
|
41 |
-moz-border-radius:3px;
|
42 |
-webkit-border-radius:3px;
|
43 |
}
|
44 |
+
.tec-month-nav {
|
45 |
+
position: absolute;
|
46 |
+
left: 20px;
|
47 |
+
bottom:0px;
|
48 |
}
|
49 |
+
.tec-prev-month {
|
50 |
+
margin-right: 5px;
|
51 |
}
|
52 |
+
.tec-next-month {
|
53 |
+
margin-left: 5px;
|
|
|
|
|
|
|
|
|
54 |
}
|
55 |
+
.upcoming a.tec-button-on, .grid a.tec-button-on {background:#0F81BB;}
|
56 |
+
.upcoming a.tec-button-off, .grid a.tec-button-off {background:#999999;}
|
57 |
+
#tec-nav-above {margin:5px 0 0;}
|
58 |
+
.category-events #tec-nav-below {margin:21px 0;}
|
59 |
select.tec-events-dropdown {
|
60 |
width:auto;
|
61 |
font-size:11px;
|
70 |
font-size:15px;
|
71 |
margin:15px 0 6px;
|
72 |
}
|
73 |
+
.category-events .entry-title a, .tec-event-meta-desc, .tec-event-day {color:#555;}
|
|
|
|
|
74 |
.category-events .post .alt {
|
75 |
background:#f9f9f9;
|
76 |
border-width:0;
|
92 |
background-color: #2d81bb;
|
93 |
color: #fff;
|
94 |
}
|
95 |
+
.tec-calendar td.tec-past .daynum {color: #aaa;}
|
|
|
|
|
96 |
.tec-calendar th {
|
97 |
width: 250px;
|
98 |
height: 10px;
|
115 |
padding:6px 9px;
|
116 |
line-height:1.2;
|
117 |
}
|
118 |
+
.tec-calendar td a {font-size:91.7%;}
|
|
|
|
|
119 |
.tec-calendar hr {
|
120 |
border:0 none !important;
|
121 |
display:block;
|
123 |
background-color:#D4DBCC;
|
124 |
margin:0 9px;
|
125 |
}
|
126 |
+
.tec-calendar .tec-event {position:relative;}
|
|
|
|
|
127 |
.tec-calendar .tec-tooltip {
|
128 |
border:1px solid #666;
|
129 |
position:absolute;
|
169 |
font-style:italic;
|
170 |
margin:3px 0;
|
171 |
}
|
172 |
+
#tec-content {font-size: 1.2em;}
|
173 |
+
.tec-event .post {position:relative;}
|
|
|
|
|
|
|
|
|
174 |
#tec-event-meta {
|
175 |
border-width:1px 0;
|
176 |
border-style:solid;
|
208 |
-webkit-border-radius:2px;
|
209 |
border-radius:2px;
|
210 |
}
|
211 |
+
span.back {margin:12px 0 0;}
|
|
|
|
|
212 |
#tec-events-loop {
|
213 |
font-size:13px;
|
214 |
clear:both;
|
226 |
font-size:12px;
|
227 |
margin-bottom:20px;
|
228 |
}
|
229 |
+
.tec-event-list-meta table {border-collapse:collapse;}
|
|
|
|
|
230 |
.tec-event-list-meta td {
|
231 |
vertical-align:top;
|
232 |
padding-bottom:4px;
|
243 |
margin:12px 0 -3px;
|
244 |
clear:both;
|
245 |
}
|
246 |
+
h4.tec-event-day + .post .entry-title {margin-top:6px;}
|
|
|
|
|
|
|
247 |
#eventbrite-embed {
|
248 |
width:100%;
|
249 |
min-height:225px;
|
250 |
margin:24px 0;
|
251 |
}
|
|
|
252 |
.clearfix:after {
|
253 |
content: ".";
|
254 |
display: block;
|
256 |
clear: both;
|
257 |
visibility: hidden;
|
258 |
}
|
259 |
+
.clearfix {zoom:1; /* For IE */}
|
260 |
+
.tec-events-error {display:none;}
|
261 |
+
.tec_hide {display:none;}
|
262 |
+
.tec-multi-event-day {color: #0F81BB;}
|
resources/events.js
CHANGED
@@ -5,7 +5,6 @@ jQuery(document).ready(function($) {
|
|
5 |
$(this).find("td:gt(3)").addClass("tec-right");
|
6 |
});
|
7 |
|
8 |
-
|
9 |
// popups
|
10 |
$("table.tec-calendar .tec-event a").hover(function() {
|
11 |
|
@@ -21,4 +20,4 @@ jQuery(document).ready(function($) {
|
|
21 |
}, function() {
|
22 |
$(this).next(".tec-tooltip").fadeOut(100);
|
23 |
});
|
24 |
-
});
|
5 |
$(this).find("td:gt(3)").addClass("tec-right");
|
6 |
});
|
7 |
|
|
|
8 |
// popups
|
9 |
$("table.tec-calendar .tec-event a").hover(function() {
|
10 |
|
20 |
}, function() {
|
21 |
$(this).next(".tec-tooltip").fadeOut(100);
|
22 |
});
|
23 |
+
});
|
resources/images/eb_press_little.gif
ADDED
Binary file
|
resources/images/logo_eventbrite.png
DELETED
Binary file
|
template-tags.php
ADDED
@@ -0,0 +1,771 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
if( class_exists( 'The_Events_Calendar' ) && !function_exists( 'eventsGetOptionValue' ) ) {
|
4 |
+
// fetch the iCal file
|
5 |
+
if ( isset($_GET['ical']) ) add_action('init', array( $spEvents, 'iCalFeed') );
|
6 |
+
/**
|
7 |
+
* retrieve specific key from options array, optionally provide a default return value
|
8 |
+
*/
|
9 |
+
function eventsGetOptionValue($optionName, $default = '') {
|
10 |
+
global $spEvents;
|
11 |
+
if($optionName) {
|
12 |
+
if( $spEvents->latestOptions ) return $spEvents->latestOptions[$optionName];
|
13 |
+
$options = $spEvents->getOptions();
|
14 |
+
return ( $options[$optionName] ) ? $options[$optionName] : $default;
|
15 |
+
}
|
16 |
+
}
|
17 |
+
/**
|
18 |
+
* Output function: Prints the events calendar 'grid view'
|
19 |
+
*
|
20 |
+
* @return void
|
21 |
+
*/
|
22 |
+
function event_grid_view() {
|
23 |
+
set_query_var( 'eventDisplay', 'bydate' );
|
24 |
+
load_template( dirname( __FILE__ ) . '/views/table.php' );
|
25 |
+
}
|
26 |
+
/**
|
27 |
+
* Maps events to days
|
28 |
+
*
|
29 |
+
* @param array of events from get_events()
|
30 |
+
* @param string date of the
|
31 |
+
* @return array days of the month with events as values
|
32 |
+
*/
|
33 |
+
function events_by_month( $results, $date ) {
|
34 |
+
if( preg_match( '/(\d{4})-(\d{2})/', $date, $matches ) ) {
|
35 |
+
$queryYear = $matches[1];
|
36 |
+
$queryMonth = $matches[2];
|
37 |
+
} else {
|
38 |
+
return false; // second argument not a date we recognize
|
39 |
+
}
|
40 |
+
$monthView = array();
|
41 |
+
for( $i = 1; $i <= 31; $i++ ) {
|
42 |
+
$monthView[$i] = array();
|
43 |
+
}
|
44 |
+
foreach ( $results as $event ) {
|
45 |
+
$started = false;
|
46 |
+
list( $startYear, $startMonth, $startDay, $garbage ) = explode( '-', $event->EventStartDate );
|
47 |
+
list( $endYear, $endMonth, $endDay, $garbage ) = explode( '-', $event->EventEndDate );
|
48 |
+
list( $startDay, $garbage ) = explode( ' ', $startDay );
|
49 |
+
list( $endDay, $garbage ) = explode( ' ', $endDay );
|
50 |
+
for( $i = 1; $i <= 31 ; $i++ ) {
|
51 |
+
if ( ( $i == $startDay && $startMonth == $queryMonth ) || strtotime( $startYear.'-'.$startMonth ) < strtotime( $queryYear.'-'.$queryMonth ) ) {
|
52 |
+
$started = true;
|
53 |
+
}
|
54 |
+
if ( $started ) {
|
55 |
+
$monthView[$i][] = $event;
|
56 |
+
}
|
57 |
+
if( $i == $endDay && $endMonth == $queryMonth ) {
|
58 |
+
continue 2;
|
59 |
+
}
|
60 |
+
}
|
61 |
+
}
|
62 |
+
return $monthView;
|
63 |
+
}
|
64 |
+
/**
|
65 |
+
* Output function: Prints the selected event style
|
66 |
+
*
|
67 |
+
* @param string $post_id
|
68 |
+
* @return void
|
69 |
+
*/
|
70 |
+
function event_style( $postId = null ) {
|
71 |
+
echo get_event_style( $postId );
|
72 |
+
}
|
73 |
+
|
74 |
+
/**
|
75 |
+
* Template function:
|
76 |
+
* @return boolean
|
77 |
+
*/
|
78 |
+
function is_event( $postId = null ) {
|
79 |
+
if ( $postId === null || !is_numeric( $postId ) ) {
|
80 |
+
global $post;
|
81 |
+
$postId = $post->ID;
|
82 |
+
}
|
83 |
+
if (get_post_meta( $postId, '_isEvent', true )) {
|
84 |
+
return true;
|
85 |
+
}
|
86 |
+
return false;
|
87 |
+
}
|
88 |
+
/**
|
89 |
+
* Returns a link to google maps for the given event
|
90 |
+
*
|
91 |
+
* @param string $postId
|
92 |
+
* @return string a fully qualified link to http://maps.google.com/ for this event
|
93 |
+
*/
|
94 |
+
function get_event_google_map_link( $postId = null ) {
|
95 |
+
if ( $postId === null || !is_numeric( $postId ) ) {
|
96 |
+
global $post;
|
97 |
+
$postId = $post->ID;
|
98 |
+
}
|
99 |
+
if ( !is_event( $postId ) ) return false;
|
100 |
+
$locationMetaSuffixes = array( 'Address', 'City', 'State', 'Province', 'Zip', 'Country' );
|
101 |
+
$toUrlEncode = "";
|
102 |
+
foreach( $locationMetaSuffixes as $val ) {
|
103 |
+
$metaVal = get_post_meta( $postId, '_Event' . $val, true );
|
104 |
+
if( $metaVal ) $toUrlEncode .= $metaVal . " ";
|
105 |
+
}
|
106 |
+
if( $toUrlEncode ) return "http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=" . urlencode( trim( $toUrlEncode ) );
|
107 |
+
return "";
|
108 |
+
}
|
109 |
+
/**
|
110 |
+
* Displays a link to google maps for the given event
|
111 |
+
*
|
112 |
+
* @param string $postId
|
113 |
+
* @return void
|
114 |
+
*/
|
115 |
+
function event_google_map_link( $postId = null ) {
|
116 |
+
echo get_event_google_map_link( $postId );
|
117 |
+
}
|
118 |
+
/**
|
119 |
+
* @return string formatted event address
|
120 |
+
*/
|
121 |
+
function tec_get_event_address( $postId = null, $includeVenue = false ) {
|
122 |
+
if ( $postId === null || !is_numeric( $postId ) ) {
|
123 |
+
global $post;
|
124 |
+
$postId = $post->ID;
|
125 |
+
}
|
126 |
+
$address = '';
|
127 |
+
if( $includeVenue ) $address .= the_event_venue( $postId );
|
128 |
+
if( the_event_address( $postId ) ) {
|
129 |
+
if( $address ) $address .= ', ';
|
130 |
+
$address .= the_event_address( $postId );
|
131 |
+
}
|
132 |
+
if( the_event_city( $postId ) ) {
|
133 |
+
if( $address ) $address .= ', ';
|
134 |
+
$address .= the_event_city( $postId );
|
135 |
+
}
|
136 |
+
if( the_event_region( $postId ) ) {
|
137 |
+
if( $address ) $address .= ', ';
|
138 |
+
$address .= the_event_region( $postId );
|
139 |
+
}
|
140 |
+
if( the_event_country( $postId ) ) {
|
141 |
+
if( $address ) $address .= ', ';
|
142 |
+
$address .= the_event_country( $postId );
|
143 |
+
}
|
144 |
+
if( the_event_zip( $postId ) ) {
|
145 |
+
if( $address ) $address .= ', ';
|
146 |
+
$address .= the_event_zip( $postId );
|
147 |
+
}
|
148 |
+
$address = str_replace(' ,', ',', $address);
|
149 |
+
return $address;
|
150 |
+
}
|
151 |
+
/**
|
152 |
+
* Displays a formatted event address
|
153 |
+
*
|
154 |
+
* @param string $postId
|
155 |
+
* @return void
|
156 |
+
*/
|
157 |
+
function tec_event_address( $postId = null ) {
|
158 |
+
echo tec_get_event_address( $postId );
|
159 |
+
}
|
160 |
+
/**
|
161 |
+
* @return boolean true if any part of an address exists
|
162 |
+
*/
|
163 |
+
function tec_address_exists( $postId = null ) {
|
164 |
+
if ( $postId === null || !is_numeric( $postId ) ) {
|
165 |
+
global $post;
|
166 |
+
$postId = $post->ID;
|
167 |
+
}
|
168 |
+
return ( the_event_address( $postId ) || the_event_city( $postId ) || the_event_region( $postId ) || the_event_country( $postId ) || the_event_zip( $postId ) ) ? true : false;
|
169 |
+
}
|
170 |
+
/**
|
171 |
+
* Returns an embedded google maps for the given event
|
172 |
+
*
|
173 |
+
* @param string $postId
|
174 |
+
* @param int $width
|
175 |
+
* @param int $height
|
176 |
+
* @return string - an iframe pulling http://maps.google.com/ for this event
|
177 |
+
*/
|
178 |
+
function get_event_google_map_embed( $postId = null, $width = '', $height = '' ) {
|
179 |
+
if ( $postId === null || !is_numeric( $postId ) ) {
|
180 |
+
global $post;
|
181 |
+
$postId = $post->ID;
|
182 |
+
}
|
183 |
+
if ( !is_event( $postId ) ) {
|
184 |
+
return false;
|
185 |
+
}
|
186 |
+
$locationMetaSuffixes = array( 'Address', 'City', 'State', 'Province', 'Zip', 'Country' );
|
187 |
+
$toUrlEncode = "";
|
188 |
+
foreach( $locationMetaSuffixes as $val ) {
|
189 |
+
$metaVal = get_post_meta( $postId, '_Event' . $val, true );
|
190 |
+
if( $metaVal ) $toUrlEncode .= $metaVal . " ";
|
191 |
+
}
|
192 |
+
if (!$height) $height = eventsGetOptionValue('embedGoogleMapsHeight','350');
|
193 |
+
if (!$width) $width = eventsGetOptionValue('embedGoogleMapsWidth','100%');
|
194 |
+
if( $toUrlEncode ) $googleaddress = urlencode( trim( $toUrlEncode ) );
|
195 |
+
if ($googleaddress) {
|
196 |
+
$google_iframe = '<div id="googlemaps"><iframe width="'.$width.'" height="'.$height.'" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://www.google.com/maps?f=q&source=s_q&hl=en&geocode=&q='.$googleaddress.'?>&output=embed"></iframe><br /><small><a href="http://www.google.com/maps?f=q&source=embed&hl=en&geocode=&q='.$googleaddress.'" style="color:#0000FF;text-align:left">View Larger Map</a></small></div>';
|
197 |
+
return $google_iframe;
|
198 |
+
}
|
199 |
+
else return '';
|
200 |
+
}
|
201 |
+
/**
|
202 |
+
* Displays an embedded google map for the given event
|
203 |
+
*
|
204 |
+
* @param string $postId
|
205 |
+
* @param int $width
|
206 |
+
* @param int $height
|
207 |
+
* @return void
|
208 |
+
*/
|
209 |
+
function event_google_map_embed( $postId = null, $width = null, $height = null ) {
|
210 |
+
if (eventsGetOptionValue('embedGoogleMaps') == 'on') echo get_event_google_map_embed( $postId, $width, $height );
|
211 |
+
}
|
212 |
+
/**
|
213 |
+
* Prints out the javascript required to control the datepicker (onChange of the id='datepicker')
|
214 |
+
*
|
215 |
+
* @param string a prefix to add to the ID of the calendar elements. This allows you to reuse the calendar on the same page.
|
216 |
+
* @return void
|
217 |
+
*/
|
218 |
+
function get_jump_to_date_calendar( $prefix = '' ) {
|
219 |
+
global $spEvents, $wp_query;
|
220 |
+
if ( isset ( $wp_query->query_vars['eventDate'] ) ) {
|
221 |
+
$date = $wp_query->query_vars['eventDate'] . "-01";
|
222 |
+
} else {
|
223 |
+
$date = date_i18n( The_Events_Calendar::DBDATEFORMAT );
|
224 |
+
}
|
225 |
+
$monthOptions = $spEvents->getMonthOptions( $date );
|
226 |
+
$yearOptions = $spEvents->getYearOptions( $date );
|
227 |
+
include('views/datepicker.php');
|
228 |
+
}
|
229 |
+
/**
|
230 |
+
* Returns the event start date
|
231 |
+
*
|
232 |
+
* @param int post id
|
233 |
+
* @param bool display time?
|
234 |
+
* @param string date format
|
235 |
+
* @return string date
|
236 |
+
*/
|
237 |
+
function the_event_start_date( $postId = null, $showtime = 'true', $dateFormat = '' ) {
|
238 |
+
global $spEvents, $post;
|
239 |
+
if ( $postId === null || !is_numeric( $postId ) ) {
|
240 |
+
global $post;
|
241 |
+
$postId = $post->ID;
|
242 |
+
}
|
243 |
+
if( $dateFormat ) $format = $dateFormat;
|
244 |
+
else $format = get_option( 'date_format', The_Events_Calendar::DATEONLYFORMAT );
|
245 |
+
if( the_event_all_day( $postId ) ) {
|
246 |
+
$showtime = false;
|
247 |
+
}
|
248 |
+
if ( $showtime ) {
|
249 |
+
$format = $spEvents->getTimeFormat( $format );
|
250 |
+
}
|
251 |
+
$shortMonthNames = ( strstr( $format, 'M' ) ) ? true : false;
|
252 |
+
$date = date ( $format, strtotime( get_post_meta( $postId, '_EventStartDate', true ) ) );
|
253 |
+
return str_replace( array_keys($spEvents->monthNames( $shortMonthNames )), $spEvents->monthNames( $shortMonthNames ), $date);
|
254 |
+
}
|
255 |
+
/**
|
256 |
+
* Returns the event end date
|
257 |
+
*
|
258 |
+
* @param int post id
|
259 |
+
* @param bool display time?
|
260 |
+
* @param string date format
|
261 |
+
* @return string date
|
262 |
+
*/
|
263 |
+
function the_event_end_date( $postId = null, $showtime = 'true', $dateFormat = '' ) {
|
264 |
+
global $spEvents, $post;
|
265 |
+
if ( $postId === null || !is_numeric( $postId ) ) {
|
266 |
+
$postId = $post->ID;
|
267 |
+
}
|
268 |
+
if( $dateFormat ) $format = $dateFormat;
|
269 |
+
else $format = get_option( 'date_format', The_Events_Calendar::DATEONLYFORMAT );
|
270 |
+
if( the_event_all_day( $postId ) ) {
|
271 |
+
$showtime = false;
|
272 |
+
}
|
273 |
+
if ( $showtime ) {
|
274 |
+
$format = $spEvents->getTimeFormat( $format );
|
275 |
+
}
|
276 |
+
$date = date ( $format, strtotime( get_post_meta( $postId, '_EventEndDate', true ) ) );
|
277 |
+
return str_replace( array_keys($spEvents->monthNames()), $spEvents->monthNames(), $date);
|
278 |
+
}
|
279 |
+
/**
|
280 |
+
* If EventBrite plugin is active
|
281 |
+
* If the event is registered in eventbrite, and has one ticket. Return the cost of that ticket.
|
282 |
+
* If the event is registered in eventbrite, and there are many tickets, return "Varies"
|
283 |
+
* If the event is not registered in eventbrite, and there is meta, return that.
|
284 |
+
* If the event is not registered in eventbrite, and there is no meta, return ""
|
285 |
+
*
|
286 |
+
* @param mixed post id or null if used in the loop
|
287 |
+
* @return string
|
288 |
+
*/
|
289 |
+
function the_event_cost( $postId = null) {
|
290 |
+
global $spEvents;
|
291 |
+
if ( $postId === null || !is_numeric( $postId ) ) {
|
292 |
+
global $post;
|
293 |
+
$postId = $post->ID;
|
294 |
+
}
|
295 |
+
if( class_exists( 'Eventbrite_for_The_Events_Calendar' ) ) {
|
296 |
+
global $spEventBrite;
|
297 |
+
$returned = $spEventBrite->the_event_cost($postId);
|
298 |
+
if($returned) {
|
299 |
+
return esc_html($returned);
|
300 |
+
}
|
301 |
+
}
|
302 |
+
if ( $cost = get_post_meta( $postId, '_EventCost', true ) ) {
|
303 |
+
return esc_html($cost);
|
304 |
+
} else {
|
305 |
+
return "";
|
306 |
+
}
|
307 |
+
}
|
308 |
+
/**
|
309 |
+
* Returns the event venue
|
310 |
+
*
|
311 |
+
* @return string venue
|
312 |
+
*/
|
313 |
+
function the_event_venue( $postId = null) {
|
314 |
+
if ( $postId === null || !is_numeric( $postId ) ) {
|
315 |
+
global $post;
|
316 |
+
$postId = $post->ID;
|
317 |
+
}
|
318 |
+
return esc_html(get_post_meta( $postId, '_EventVenue', true ));
|
319 |
+
}
|
320 |
+
/**
|
321 |
+
* Returns the event country
|
322 |
+
*
|
323 |
+
* @return string country
|
324 |
+
*/
|
325 |
+
function the_event_country( $postId = null) {
|
326 |
+
if ( $postId === null || !is_numeric( $postId ) ) {
|
327 |
+
global $post;
|
328 |
+
$postId = $post->ID;
|
329 |
+
}
|
330 |
+
return esc_html(get_post_meta( $postId, '_EventCountry', true ));
|
331 |
+
}
|
332 |
+
/**
|
333 |
+
* Returns the event address
|
334 |
+
*
|
335 |
+
* @return string address
|
336 |
+
*/
|
337 |
+
function the_event_address( $postId = null) {
|
338 |
+
if ( $postId === null || !is_numeric( $postId ) ) {
|
339 |
+
global $post;
|
340 |
+
$postId = $post->ID;
|
341 |
+
}
|
342 |
+
return esc_html(get_post_meta( $postId, '_EventAddress', true ));
|
343 |
+
}
|
344 |
+
/**
|
345 |
+
* Returns the event city
|
346 |
+
*
|
347 |
+
* @return string city
|
348 |
+
*/
|
349 |
+
function the_event_city( $postId = null) {
|
350 |
+
if ( $postId === null || !is_numeric( $postId ) ) {
|
351 |
+
global $post;
|
352 |
+
$postId = $post->ID;
|
353 |
+
}
|
354 |
+
return esc_html(get_post_meta( $postId, '_EventCity', true ));
|
355 |
+
}
|
356 |
+
/**
|
357 |
+
* Returns the event state
|
358 |
+
*
|
359 |
+
* @return string state
|
360 |
+
*/
|
361 |
+
function the_event_state( $postId = null) {
|
362 |
+
if ( $postId === null || !is_numeric( $postId ) ) {
|
363 |
+
global $post;
|
364 |
+
$postId = $post->ID;
|
365 |
+
}
|
366 |
+
return esc_html(get_post_meta( $postId, '_EventState', true ));
|
367 |
+
}
|
368 |
+
/**
|
369 |
+
* Returns the event province
|
370 |
+
*
|
371 |
+
* @return string province
|
372 |
+
*/
|
373 |
+
function the_event_province( $postId = null) {
|
374 |
+
if ( $postId === null || !is_numeric( $postId ) ) {
|
375 |
+
global $post;
|
376 |
+
$postId = $post->ID;
|
377 |
+
}
|
378 |
+
return esc_html(get_post_meta( $postId, '_EventProvince', true ));
|
379 |
+
}
|
380 |
+
/**
|
381 |
+
* Returns the event zip code
|
382 |
+
*
|
383 |
+
* @return string zip code
|
384 |
+
*/
|
385 |
+
function the_event_zip( $postId = null) {
|
386 |
+
if ( $postId === null || !is_numeric( $postId ) ) {
|
387 |
+
global $post;
|
388 |
+
$postId = $post->ID;
|
389 |
+
}
|
390 |
+
return esc_html(get_post_meta( $postId, '_EventZip', true ));
|
391 |
+
}
|
392 |
+
/**
|
393 |
+
* Returns the event phone number
|
394 |
+
*
|
395 |
+
* @return string phone number
|
396 |
+
*/
|
397 |
+
function the_event_phone( $postId = null) {
|
398 |
+
if ( $postId === null || !is_numeric( $postId ) ) {
|
399 |
+
global $post;
|
400 |
+
$postId = $post->ID;
|
401 |
+
}
|
402 |
+
return esc_html(get_post_meta( $postId, '_EventPhone', true ));
|
403 |
+
}
|
404 |
+
/**
|
405 |
+
* Returns a list of lectures that are associated with this event
|
406 |
+
*
|
407 |
+
* @param int optional post id
|
408 |
+
* @return mixed array of posts or false
|
409 |
+
*/
|
410 |
+
function the_event_lectures( $postId = null ) {
|
411 |
+
if ( $postId === null || !is_numeric( $postId ) ) {
|
412 |
+
global $post;
|
413 |
+
$postId = $post->ID;
|
414 |
+
}
|
415 |
+
if( !is_event( $postId ) ) {
|
416 |
+
return false;
|
417 |
+
}
|
418 |
+
global $wpdb;
|
419 |
+
$query = "SELECT * FROM {$wpdb->postmeta} WHERE meta_key = '_lectureEvent' AND meta_value = '{$postId}'";
|
420 |
+
$results = $wpdb->get_results( $query );
|
421 |
+
if( empty( $results ) ) {
|
422 |
+
return $results;
|
423 |
+
}
|
424 |
+
$lectures = array();
|
425 |
+
foreach ( $results as $lecture ) {
|
426 |
+
$lectures[] = $lecture->post_id;
|
427 |
+
}
|
428 |
+
$lectures = array_unique( $lectures );
|
429 |
+
$results = array();
|
430 |
+
foreach ( $lectures as $lectureId ) {
|
431 |
+
$results[] = get_post( $lectureId );
|
432 |
+
}
|
433 |
+
return $results;
|
434 |
+
|
435 |
+
}
|
436 |
+
|
437 |
+
/**
|
438 |
+
* Helper function to load XML using cURL
|
439 |
+
*
|
440 |
+
* @return array with xml data
|
441 |
+
*/
|
442 |
+
function load_xml($url) {
|
443 |
+
|
444 |
+
$ch = curl_init($url);
|
445 |
+
|
446 |
+
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
447 |
+
curl_setopt($ch, CURLOPT_HEADER, 0);
|
448 |
+
|
449 |
+
$data = simplexml_load_string(curl_exec($ch));
|
450 |
+
|
451 |
+
curl_close($ch);
|
452 |
+
|
453 |
+
return $data;
|
454 |
+
}
|
455 |
+
|
456 |
+
/**
|
457 |
+
* Called inside of the loop, returns true if the current post's meta_value (EventStartDate)
|
458 |
+
* is different than the previous post. Will always return true for the first event in the loop.
|
459 |
+
*
|
460 |
+
* @return bool
|
461 |
+
*/
|
462 |
+
function is_new_event_day( ) {
|
463 |
+
global $spEvents, $post;
|
464 |
+
$retval = false;
|
465 |
+
$now = time();
|
466 |
+
$postTimestamp = strtotime( $post->EventStartDate, $now );
|
467 |
+
$postTimestamp = strtotime( date( The_Events_Calendar::DBDATEFORMAT, $postTimestamp ), $now); // strip the time
|
468 |
+
if ( $postTimestamp != $spEvents->currentPostTimestamp ) {
|
469 |
+
$retval = true;
|
470 |
+
}
|
471 |
+
$spEvents->currentPostTimestamp = $postTimestamp;
|
472 |
+
return $retval;
|
473 |
+
}
|
474 |
+
/**
|
475 |
+
* Call this function in a template to query the events and start the loop. Do not
|
476 |
+
* subsequently call the_post() in your template, as this will start the loop twice and then
|
477 |
+
* you're in trouble.
|
478 |
+
*
|
479 |
+
* http://codex.wordpress.org/Displaying_Posts_Using_a_Custom_Select_Query#Query_based_on_Custom_Field_and_Category
|
480 |
+
*
|
481 |
+
* @param int number of results to display for upcoming or past modes (default 10)
|
482 |
+
* @param string category name to pull events from, defaults to the currently displayed category
|
483 |
+
* @uses $wpdb
|
484 |
+
* @uses $wp_query
|
485 |
+
* @return array results
|
486 |
+
*/
|
487 |
+
function get_events( $numResults = null, $catName = null ) {
|
488 |
+
if( !$numResults ) $numResults = get_option( 'posts_per_page', 10 );
|
489 |
+
global $wpdb, $spEvents;
|
490 |
+
$spEvents->setOptions();
|
491 |
+
if( $catName ) {
|
492 |
+
$categoryId = get_cat_id( $catName );
|
493 |
+
} else {
|
494 |
+
$categoryId = get_query_var( 'cat' );
|
495 |
+
}
|
496 |
+
$extraSelectClause ='';
|
497 |
+
$extraJoinEndDate ='';
|
498 |
+
if ( events_displaying_month() ) {
|
499 |
+
$extraSelectClause = ", d2.meta_value as EventEndDate ";
|
500 |
+
$extraJoinEndDate = " LEFT JOIN $wpdb->postmeta as d2 ON($wpdb->posts.ID = d2.post_id) ";
|
501 |
+
$whereClause = " AND d1.meta_key = '_EventStartDate' AND d2.meta_key = '_EventEndDate' ";
|
502 |
+
// does this event start in this month?
|
503 |
+
$whereClause .= " AND ((d1.meta_value >= '".$spEvents->date."' AND d1.meta_value < '".$spEvents->nextMonth( $spEvents->date )."') ";
|
504 |
+
// Or does it end in this month?
|
505 |
+
$whereClause .= " OR (d2.meta_value >= '".$spEvents->date."' AND d2.meta_value < '".$spEvents->nextMonth( $spEvents->date )."' ) ";
|
506 |
+
// Or does the event start sometime in the past and end sometime in the distant future?
|
507 |
+
$whereClause .= " OR (d1.meta_value <= '".$spEvents->date."' AND d2.meta_value > '".$spEvents->nextMonth( $spEvents->date )."' ) ) ";
|
508 |
+
$numResults = 999999999;
|
509 |
+
}
|
510 |
+
if ( events_displaying_upcoming() ) {
|
511 |
+
$extraSelectClause = ", d2.meta_value as EventEndDate ";
|
512 |
+
$extraJoinEndDate = " LEFT JOIN $wpdb->postmeta as d2 ON($wpdb->posts.ID = d2.post_id) ";
|
513 |
+
$whereClause = " AND d1.meta_key = '_EventStartDate' AND d2.meta_key = '_EventEndDate' ";
|
514 |
+
// Is the start date in the future?
|
515 |
+
$whereClause .= ' AND ( d1.meta_value > "'.$spEvents->date.'" ';
|
516 |
+
// Or is the start date in the past but the end date in the future? (meaning the event is currently ongoing)
|
517 |
+
$whereClause .= ' OR ( d1.meta_value < "'.$spEvents->date.'" AND d2.meta_value > "'.$spEvents->date.'" ) ) ';
|
518 |
+
}
|
519 |
+
$eventsQuery = "
|
520 |
+
SELECT $wpdb->posts.*, d1.meta_value as EventStartDate
|
521 |
+
$extraSelectClause
|
522 |
+
FROM $wpdb->posts
|
523 |
+
LEFT JOIN $wpdb->postmeta as d1 ON($wpdb->posts.ID = d1.post_id)
|
524 |
+
$extraJoinEndDate
|
525 |
+
LEFT JOIN $wpdb->term_relationships ON($wpdb->posts.ID = $wpdb->term_relationships.object_id)
|
526 |
+
LEFT JOIN $wpdb->term_taxonomy ON($wpdb->term_relationships.term_taxonomy_id = $wpdb->term_taxonomy.term_taxonomy_id)
|
527 |
+
WHERE $wpdb->term_taxonomy.term_id = $categoryId
|
528 |
+
AND $wpdb->term_taxonomy.taxonomy = 'category'
|
529 |
+
AND $wpdb->posts.post_status = 'publish'
|
530 |
+
$whereClause
|
531 |
+
ORDER BY d1.meta_value ".$spEvents->order."
|
532 |
+
LIMIT $numResults";
|
533 |
+
$return = $wpdb->get_results($eventsQuery, OBJECT);
|
534 |
+
return $return;
|
535 |
+
}
|
536 |
+
/**
|
537 |
+
* Returns true if the query is set for past events, false otherwise
|
538 |
+
*
|
539 |
+
* @return bool
|
540 |
+
*/
|
541 |
+
function events_displaying_past() {
|
542 |
+
global $spEvents;
|
543 |
+
return ($spEvents->displaying == "past") ? true : false;
|
544 |
+
}
|
545 |
+
/**
|
546 |
+
* Returns true if the query is set for upcoming events, false otherwise
|
547 |
+
*
|
548 |
+
* @return bool
|
549 |
+
*/
|
550 |
+
function events_displaying_upcoming() {
|
551 |
+
global $spEvents;
|
552 |
+
return ($spEvents->displaying == "upcoming") ? true : false;
|
553 |
+
}
|
554 |
+
/**
|
555 |
+
* Returns true if the query is set for month display (as opposed to Upcoming / Past)
|
556 |
+
*
|
557 |
+
* @return bool
|
558 |
+
*/
|
559 |
+
function events_displaying_month() {
|
560 |
+
global $spEvents;
|
561 |
+
return ( $spEvents->displaying == "month" ) ? true : false;
|
562 |
+
}
|
563 |
+
/**
|
564 |
+
* Returns a link to the previous events in list view
|
565 |
+
*
|
566 |
+
* @return string
|
567 |
+
*/
|
568 |
+
function events_get_past_link() {
|
569 |
+
global $spEvents;
|
570 |
+
$cat_id = get_query_var( 'cat' );
|
571 |
+
if( !$cat_id ) {
|
572 |
+
$cat_id = $spEvents->eventCategory();
|
573 |
+
}
|
574 |
+
$link = get_category_link( $cat_id );
|
575 |
+
if( '' == get_option('permalink_structure') || 'off' == eventsGetOptionValue('useRewriteRules','on') ) {
|
576 |
+
return add_query_arg( array('eventDisplay'=>'past'), $link );
|
577 |
+
} else {
|
578 |
+
return trailingslashit( $link ) . 'past';
|
579 |
+
}
|
580 |
+
}
|
581 |
+
/**
|
582 |
+
* Returns a link to the upcoming events in list view
|
583 |
+
*
|
584 |
+
* @return string
|
585 |
+
*/
|
586 |
+
function events_get_upcoming_link() {
|
587 |
+
global $spEvents;
|
588 |
+
$cat_id = get_query_var( 'cat' );
|
589 |
+
if( !$cat_id ) {
|
590 |
+
$cat_id = $spEvents->eventCategory();
|
591 |
+
}
|
592 |
+
$link = get_category_link( $cat_id );
|
593 |
+
if( '' == get_option('permalink_structure') || 'off' == eventsGetOptionValue('useRewriteRules','on') ) {
|
594 |
+
return add_query_arg( array('eventDisplay'=>'upcoming'), $link );
|
595 |
+
} else {
|
596 |
+
return trailingslashit( $link ) . 'upcoming';
|
597 |
+
}
|
598 |
+
}
|
599 |
+
/**
|
600 |
+
* Returns a link to the next month's events page
|
601 |
+
*
|
602 |
+
* @return string
|
603 |
+
*/
|
604 |
+
function events_get_next_month_link() {
|
605 |
+
global $spEvents;
|
606 |
+
$cat_id = get_query_var( 'cat' );
|
607 |
+
if( !$cat_id ) {
|
608 |
+
$cat_id = $spEvents->eventCategory();
|
609 |
+
}
|
610 |
+
$link = get_category_link( $cat_id );
|
611 |
+
if( '' == get_option('permalink_structure') || 'off' == eventsGetOptionValue('useRewriteRules','on') ) {
|
612 |
+
return add_query_arg( array('eventDate'=>$spEvents->nextMonth( $spEvents->date )), $link );
|
613 |
+
} else {
|
614 |
+
return trailingslashit( $link ) . $spEvents->nextMonth( $spEvents->date );
|
615 |
+
}
|
616 |
+
}
|
617 |
+
/**
|
618 |
+
* Returns a link to the previous month's events page
|
619 |
+
*
|
620 |
+
* @return string
|
621 |
+
*/
|
622 |
+
function events_get_previous_month_link() {
|
623 |
+
global $spEvents;
|
624 |
+
$cat_id = get_query_var( 'cat' );
|
625 |
+
if( !$cat_id ) {
|
626 |
+
$cat_id = $spEvents->eventCategory();
|
627 |
+
}
|
628 |
+
$link = get_category_link( $cat_id );
|
629 |
+
if( '' == get_option('permalink_structure') || 'off' == eventsGetOptionValue('useRewriteRules','on') ) {
|
630 |
+
return add_query_arg( array('eventDate'=>$spEvents->previousMonth( $spEvents->date )), $link );
|
631 |
+
} else {
|
632 |
+
return trailingslashit( $link ) . $spEvents->previousMonth( $spEvents->date );
|
633 |
+
}
|
634 |
+
}
|
635 |
+
/**
|
636 |
+
* Returns a link to the events category
|
637 |
+
*
|
638 |
+
* @return string
|
639 |
+
*/
|
640 |
+
function events_get_events_link() {
|
641 |
+
global $spEvents;
|
642 |
+
$cat_id = get_query_var( 'cat' );
|
643 |
+
if( !$cat_id ) {
|
644 |
+
$cat_id = $spEvents->eventCategory();
|
645 |
+
}
|
646 |
+
return get_category_link( $cat_id );
|
647 |
+
}
|
648 |
+
|
649 |
+
function events_get_gridview_link( ) {
|
650 |
+
global $spEvents;
|
651 |
+
$cat_id = get_query_var( 'cat' );
|
652 |
+
if( !$cat_id ) {
|
653 |
+
$cat_id = $spEvents->eventCategory();
|
654 |
+
}
|
655 |
+
$link = get_category_link( $cat_id );
|
656 |
+
if( '' == get_option('permalink_structure') || 'off' == eventsGetOptionValue('useRewriteRules','on') ) {
|
657 |
+
return add_query_arg( array('eventDisplay'=>'month'), $link );
|
658 |
+
} else {
|
659 |
+
return trailingslashit( $link ) . 'month';
|
660 |
+
}
|
661 |
+
}
|
662 |
+
|
663 |
+
function events_get_listview_link( ) {
|
664 |
+
global $spEvents;
|
665 |
+
$cat_id = get_query_var( 'cat' );
|
666 |
+
if( !$cat_id ) {
|
667 |
+
$cat_id = $spEvents->eventCategory();
|
668 |
+
}
|
669 |
+
$link = get_category_link( $cat_id );
|
670 |
+
if( '' == get_option('permalink_structure') || 'off' == eventsGetOptionValue('useRewriteRules','on') ) {
|
671 |
+
return add_query_arg( array('eventDisplay'=>'upcoming'), $link );
|
672 |
+
} else {
|
673 |
+
return trailingslashit( $link ) . 'upcoming';
|
674 |
+
}
|
675 |
+
}
|
676 |
+
|
677 |
+
function events_get_listview_past_link( ) {
|
678 |
+
global $spEvents;
|
679 |
+
$cat_id = get_query_var( 'cat' );
|
680 |
+
if( !$cat_id ) {
|
681 |
+
$cat_id = $spEvents->eventCategory();
|
682 |
+
}
|
683 |
+
$link = get_category_link( $cat_id );
|
684 |
+
if( '' == get_option('permalink_structure') || 'off' == eventsGetOptionValue('useRewriteRules','on') ) {
|
685 |
+
return add_query_arg( array('eventDisplay'=>'past'), $link );
|
686 |
+
} else {
|
687 |
+
return trailingslashit( $link ) . 'past';
|
688 |
+
}
|
689 |
+
}
|
690 |
+
|
691 |
+
/**
|
692 |
+
* Returns a textual description of the previous month
|
693 |
+
*
|
694 |
+
* @return string
|
695 |
+
*/
|
696 |
+
function events_get_previous_month_text() {
|
697 |
+
global $spEvents;
|
698 |
+
return $spEvents->getDateString( $spEvents->previousMonth( $spEvents->date ) );
|
699 |
+
}
|
700 |
+
/**
|
701 |
+
* Returns a texual description of the current month
|
702 |
+
*
|
703 |
+
* @return string
|
704 |
+
*/
|
705 |
+
function events_get_current_month_text( ){
|
706 |
+
global $spEvents;
|
707 |
+
return date( 'F', strtotime( $spEvents->date ) );
|
708 |
+
}
|
709 |
+
/**
|
710 |
+
* Returns a textual description of the next month
|
711 |
+
*
|
712 |
+
* @return string
|
713 |
+
*/
|
714 |
+
function events_get_next_month_text() {
|
715 |
+
global $spEvents;
|
716 |
+
return $spEvents->getDateString( $spEvents->nextMonth( $spEvents->date ) );
|
717 |
+
}
|
718 |
+
/**
|
719 |
+
* Returns a formatted date string of the currently displayed month (in "jump to month" mode)
|
720 |
+
*
|
721 |
+
* @return string
|
722 |
+
*/
|
723 |
+
function events_get_displayed_month() {
|
724 |
+
global $spEvents;
|
725 |
+
if ( $spEvents->displaying == "month" ) {
|
726 |
+
return $spEvents->getDateString( $spEvents->date );
|
727 |
+
}
|
728 |
+
return " ";
|
729 |
+
}
|
730 |
+
/**
|
731 |
+
* Returns a link to the currently displayed month (if in "jump to month" mode)
|
732 |
+
*
|
733 |
+
* @return string
|
734 |
+
*/
|
735 |
+
function events_get_this_month_link() {
|
736 |
+
global $spEvents;
|
737 |
+
$cat_id = get_query_var( 'cat' );
|
738 |
+
if( !$cat_id ) {
|
739 |
+
$cat_id = $spEvents->eventCategory();
|
740 |
+
}
|
741 |
+
$link = get_category_link( $cat_id );
|
742 |
+
if ( $spEvents->displaying == "month" ) {
|
743 |
+
return trailingslashit( $link ) . $spEvents->date;
|
744 |
+
}
|
745 |
+
return false;
|
746 |
+
}
|
747 |
+
/**
|
748 |
+
* Returns the state or province for US or non-US addresses
|
749 |
+
*
|
750 |
+
* @return string
|
751 |
+
*/
|
752 |
+
function the_event_region() {
|
753 |
+
if (get_post_meta($postId, '_EventCountry', true ) == 'United States') {
|
754 |
+
return the_event_state();
|
755 |
+
} else {
|
756 |
+
return the_event_province();
|
757 |
+
}
|
758 |
+
}
|
759 |
+
/**
|
760 |
+
* Returns true if the event is an all day event
|
761 |
+
*
|
762 |
+
* @return bool
|
763 |
+
*/
|
764 |
+
function the_event_all_day( $postId = null ) {
|
765 |
+
if ( $postId === null || !is_numeric( $postId ) ) {
|
766 |
+
global $post;
|
767 |
+
$postId = $post->ID;
|
768 |
+
}
|
769 |
+
return get_post_meta( $postId, '_EventAllDay', true );
|
770 |
+
}
|
771 |
+
} // end if class_exists('The-Events-Calendar')
|
the-events-calendar-exception.class.php
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Exception handling for third-party plugins dealing with the post edit view.
|
4 |
+
*/
|
5 |
+
if( !class_exists( 'TEC_Post_Exception' ) ) {
|
6 |
+
class TEC_Post_Exception extends Exception {
|
7 |
+
/**
|
8 |
+
* Display the exception message in the div #tec-post-error
|
9 |
+
* @param int $post->ID
|
10 |
+
*/
|
11 |
+
public function displayMessage( $postId ) {
|
12 |
+
if( $error = get_post_meta( $postId, The_Events_Calendar::EVENTSERROROPT, true ) ) : ?>
|
13 |
+
<script type="text/javascript">jQuery('#tec-post-error').append('<h3>Error</h3><p>' + '<?php echo $error; ?>' + '</p>').show();</script>
|
14 |
+
<?php endif;
|
15 |
+
}
|
16 |
+
} // end TEC_Post_Exception
|
17 |
+
} // end if !class_exists TEC_Post_Exception
|
18 |
+
|
19 |
+
/**
|
20 |
+
* Exception handling for third-party plugins dealing with the Wordpress options view.
|
21 |
+
*/
|
22 |
+
if( !class_exists( 'TEC_WP_Options_Exception' ) ) {
|
23 |
+
class TEC_WP_Options_Exception extends Exception {
|
24 |
+
/**
|
25 |
+
* Display the exception message in the div #tec-options-error
|
26 |
+
*/
|
27 |
+
public function displayMessage() {
|
28 |
+
$eventsOptions = get_option(The_Events_Calendar::OPTIONNAME, array() );
|
29 |
+
if( $eventsOptions['error'] ) : ?>
|
30 |
+
<script type="text/javascript">jQuery('#tec-options-error').append('<h3>Error</h3><p>' + '<?php echo $eventsOptions['error']; ?>' + '</p>').show();</script>
|
31 |
+
<?php endif;
|
32 |
+
}
|
33 |
+
} // end TEC_WP_Options_Exception
|
34 |
+
} // end if !class_exists TEC_WP_Options_Exception
|
the-events-calendar.class.php
ADDED
@@ -0,0 +1,1317 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
if ( !class_exists( 'The_Events_Calendar' ) ) {
|
3 |
+
/**
|
4 |
+
* Main plugin
|
5 |
+
*/
|
6 |
+
class The_Events_Calendar {
|
7 |
+
const EVENTSERROROPT = '_tec_events_errors';
|
8 |
+
const CATEGORYNAME = 'Events';
|
9 |
+
const OPTIONNAME = 'sp_events_calendar_options';
|
10 |
+
// default formats, they are overridden by WP options or by arguments to date methods
|
11 |
+
const DATEONLYFORMAT = 'F j, Y';
|
12 |
+
const TIMEFORMAT = 'g:i A';
|
13 |
+
const DBDATEFORMAT = 'Y-m-d';
|
14 |
+
const DBDATETIMEFORMAT = 'Y-m-d G:i:s';
|
15 |
+
|
16 |
+
private $defaultOptions = '';
|
17 |
+
public $latestOptions;
|
18 |
+
private $postExceptionThrown = false;
|
19 |
+
private $optionsExceptionThrown = false;
|
20 |
+
public $displaying;
|
21 |
+
public $pluginDir;
|
22 |
+
public $pluginUrl;
|
23 |
+
public $pluginDomain = 'the-events-calendar';
|
24 |
+
private $tabIndexStart = 2000;
|
25 |
+
|
26 |
+
public $metaTags = array(
|
27 |
+
'_isEvent',
|
28 |
+
'_EventAllDay',
|
29 |
+
'_EventStartDate',
|
30 |
+
'_EventEndDate',
|
31 |
+
'_EventVenue',
|
32 |
+
'_EventCountry',
|
33 |
+
'_EventAddress',
|
34 |
+
'_EventCity',
|
35 |
+
'_EventState',
|
36 |
+
'_EventProvince',
|
37 |
+
'_EventZip',
|
38 |
+
'_EventShowMapLink',
|
39 |
+
'_EventShowMap',
|
40 |
+
'_EventCost',
|
41 |
+
'_EventPhone',
|
42 |
+
self::EVENTSERROROPT
|
43 |
+
);
|
44 |
+
|
45 |
+
public $currentPostTimestamp;
|
46 |
+
public $daysOfWeekShort;
|
47 |
+
public $daysOfWeek;
|
48 |
+
private function constructDaysOfWeek() {
|
49 |
+
$this->daysOfWeekShort = array( __( 'Sun', $this->pluginDomain ), __( 'Mon', $this->pluginDomain ), __( 'Tue', $this->pluginDomain ), __( 'Wed', $this->pluginDomain ), __( 'Thu', $this->pluginDomain ), __( 'Fri', $this->pluginDomain ), __( 'Sat', $this->pluginDomain ) );
|
50 |
+
$this->daysOfWeek = array( __( 'Sunday', $this->pluginDomain ), __( 'Monday', $this->pluginDomain ), __( 'Tuesday', $this->pluginDomain ), __( 'Wednesday', $this->pluginDomain ), __( 'Thursday', $this->pluginDomain ), __( 'Friday', $this->pluginDomain ), __( 'Saturday', $this->pluginDomain ) );
|
51 |
+
}
|
52 |
+
|
53 |
+
private $countries;
|
54 |
+
private function constructCountries( $postId = "", $useDefault = true ) {
|
55 |
+
$countries = array(
|
56 |
+
"" => __("Select a Country:", $this->pluginDomain),
|
57 |
+
"US" => __("United States", $this->pluginDomain),
|
58 |
+
"AF" => __("Afghanistan", $this->pluginDomain),
|
59 |
+
"AL" => __("Albania", $this->pluginDomain),
|
60 |
+
"DZ" => __("Algeria", $this->pluginDomain),
|
61 |
+
"AS" => __("American Samoa", $this->pluginDomain),
|
62 |
+
"AD" => __("Andorra", $this->pluginDomain),
|
63 |
+
"AO" => __("Angola", $this->pluginDomain),
|
64 |
+
"AI" => __("Anguilla", $this->pluginDomain),
|
65 |
+
"AQ" => __("Antarctica", $this->pluginDomain),
|
66 |
+
"AG" => __("Antigua And Barbuda", $this->pluginDomain),
|
67 |
+
"AR" => __("Argentina", $this->pluginDomain),
|
68 |
+
"AM" => __("Armenia", $this->pluginDomain),
|
69 |
+
"AW" => __("Aruba", $this->pluginDomain),
|
70 |
+
"AU" => __("Australia", $this->pluginDomain),
|
71 |
+
"AT" => __("Austria", $this->pluginDomain),
|
72 |
+
"AZ" => __("Azerbaijan", $this->pluginDomain),
|
73 |
+
"BS" => __("Bahamas", $this->pluginDomain),
|
74 |
+
"BH" => __("Bahrain", $this->pluginDomain),
|
75 |
+
"BD" => __("Bangladesh", $this->pluginDomain),
|
76 |
+
"BB" => __("Barbados", $this->pluginDomain),
|
77 |
+
"BY" => __("Belarus", $this->pluginDomain),
|
78 |
+
"BE" => __("Belgium", $this->pluginDomain),
|
79 |
+
"BZ" => __("Belize", $this->pluginDomain),
|
80 |
+
"BJ" => __("Benin", $this->pluginDomain),
|
81 |
+
"BM" => __("Bermuda", $this->pluginDomain),
|
82 |
+
"BT" => __("Bhutan", $this->pluginDomain),
|
83 |
+
"BO" => __("Bolivia", $this->pluginDomain),
|
84 |
+
"BA" => __("Bosnia And Herzegowina", $this->pluginDomain),
|
85 |
+
"BW" => __("Botswana", $this->pluginDomain),
|
86 |
+
"BV" => __("Bouvet Island", $this->pluginDomain),
|
87 |
+
"BR" => __("Brazil", $this->pluginDomain),
|
88 |
+
"IO" => __("British Indian Ocean Territory", $this->pluginDomain),
|
89 |
+
"BN" => __("Brunei Darussalam", $this->pluginDomain),
|
90 |
+
"BG" => __("Bulgaria", $this->pluginDomain),
|
91 |
+
"BF" => __("Burkina Faso", $this->pluginDomain),
|
92 |
+
"BI" => __("Burundi", $this->pluginDomain),
|
93 |
+
"KH" => __("Cambodia", $this->pluginDomain),
|
94 |
+
"CM" => __("Cameroon", $this->pluginDomain),
|
95 |
+
"CA" => __("Canada", $this->pluginDomain),
|
96 |
+
"CV" => __("Cape Verde", $this->pluginDomain),
|
97 |
+
"KY" => __("Cayman Islands", $this->pluginDomain),
|
98 |
+
"CF" => __("Central African Republic", $this->pluginDomain),
|
99 |
+
"TD" => __("Chad", $this->pluginDomain),
|
100 |
+
"CL" => __("Chile", $this->pluginDomain),
|
101 |
+
"CN" => __("China", $this->pluginDomain),
|
102 |
+
"CX" => __("Christmas Island", $this->pluginDomain),
|
103 |
+
"CC" => __("Cocos (Keeling) Islands", $this->pluginDomain),
|
104 |
+
"CO" => __("Colombia", $this->pluginDomain),
|
105 |
+
"KM" => __("Comoros", $this->pluginDomain),
|
106 |
+
"CG" => __("Congo", $this->pluginDomain),
|
107 |
+
"CD" => __("Congo, The Democratic Republic Of The", $this->pluginDomain),
|
108 |
+
"CK" => __("Cook Islands", $this->pluginDomain),
|
109 |
+
"CR" => __("Costa Rica", $this->pluginDomain),
|
110 |
+
"CI" => __("Cote D'Ivoire", $this->pluginDomain),
|
111 |
+
"HR" => __("Croatia (Local Name: Hrvatska)", $this->pluginDomain),
|
112 |
+
"CU" => __("Cuba", $this->pluginDomain),
|
113 |
+
"CY" => __("Cyprus", $this->pluginDomain),
|
114 |
+
"CZ" => __("Czech Republic", $this->pluginDomain),
|
115 |
+
"DK" => __("Denmark", $this->pluginDomain),
|
116 |
+
"DJ" => __("Djibouti", $this->pluginDomain),
|
117 |
+
"DM" => __("Dominica", $this->pluginDomain),
|
118 |
+
"DO" => __("Dominican Republic", $this->pluginDomain),
|
119 |
+
"TP" => __("East Timor", $this->pluginDomain),
|
120 |
+
"EC" => __("Ecuador", $this->pluginDomain),
|
121 |
+
"EG" => __("Egypt", $this->pluginDomain),
|
122 |
+
"SV" => __("El Salvador", $this->pluginDomain),
|
123 |
+
"GQ" => __("Equatorial Guinea", $this->pluginDomain),
|
124 |
+
"ER" => __("Eritrea", $this->pluginDomain),
|
125 |
+
"EE" => __("Estonia", $this->pluginDomain),
|
126 |
+
"ET" => __("Ethiopia", $this->pluginDomain),
|
127 |
+
"FK" => __("Falkland Islands (Malvinas)", $this->pluginDomain),
|
128 |
+
"FO" => __("Faroe Islands", $this->pluginDomain),
|
129 |
+
"FJ" => __("Fiji", $this->pluginDomain),
|
130 |
+
"FI" => __("Finland", $this->pluginDomain),
|
131 |
+
"FR" => __("France", $this->pluginDomain),
|
132 |
+
"FX" => __("France, Metropolitan", $this->pluginDomain),
|
133 |
+
"GF" => __("French Guiana", $this->pluginDomain),
|
134 |
+
"PF" => __("French Polynesia", $this->pluginDomain),
|
135 |
+
"TF" => __("French Southern Territories", $this->pluginDomain),
|
136 |
+
"GA" => __("Gabon", $this->pluginDomain),
|
137 |
+
"GM" => __("Gambia", $this->pluginDomain),
|
138 |
+
"GE" => __("Georgia", $this->pluginDomain),
|
139 |
+
"DE" => __("Germany", $this->pluginDomain),
|
140 |
+
"GH" => __("Ghana", $this->pluginDomain),
|
141 |
+
"GI" => __("Gibraltar", $this->pluginDomain),
|
142 |
+
"GR" => __("Greece", $this->pluginDomain),
|
143 |
+
"GL" => __("Greenland", $this->pluginDomain),
|
144 |
+
"GD" => __("Grenada", $this->pluginDomain),
|
145 |
+
"GP" => __("Guadeloupe", $this->pluginDomain),
|
146 |
+
"GU" => __("Guam", $this->pluginDomain),
|
147 |
+
"GT" => __("Guatemala", $this->pluginDomain),
|
148 |
+
"GN" => __("Guinea", $this->pluginDomain),
|
149 |
+
"GW" => __("Guinea-Bissau", $this->pluginDomain),
|
150 |
+
"GY" => __("Guyana", $this->pluginDomain),
|
151 |
+
"HT" => __("Haiti", $this->pluginDomain),
|
152 |
+
"HM" => __("Heard And Mc Donald Islands", $this->pluginDomain),
|
153 |
+
"VA" => __("Holy See (Vatican City State)", $this->pluginDomain),
|
154 |
+
"HN" => __("Honduras", $this->pluginDomain),
|
155 |
+
"HK" => __("Hong Kong", $this->pluginDomain),
|
156 |
+
"HU" => __("Hungary", $this->pluginDomain),
|
157 |
+
"IS" => __("Iceland", $this->pluginDomain),
|
158 |
+
"IN" => __("India", $this->pluginDomain),
|
159 |
+
"ID" => __("Indonesia", $this->pluginDomain),
|
160 |
+
"IR" => __("Iran (Islamic Republic Of)", $this->pluginDomain),
|
161 |
+
"IQ" => __("Iraq", $this->pluginDomain),
|
162 |
+
"IE" => __("Ireland", $this->pluginDomain),
|
163 |
+
"IL" => __("Israel", $this->pluginDomain),
|
164 |
+
"IT" => __("Italy", $this->pluginDomain),
|
165 |
+
"JM" => __("Jamaica", $this->pluginDomain),
|
166 |
+
"JP" => __("Japan", $this->pluginDomain),
|
167 |
+
"JO" => __("Jordan", $this->pluginDomain),
|
168 |
+
"KZ" => __("Kazakhstan", $this->pluginDomain),
|
169 |
+
"KE" => __("Kenya", $this->pluginDomain),
|
170 |
+
"KI" => __("Kiribati", $this->pluginDomain),
|
171 |
+
"KP" => __("Korea, Democratic People's Republic Of", $this->pluginDomain),
|
172 |
+
"KR" => __("Korea, Republic Of", $this->pluginDomain),
|
173 |
+
"KW" => __("Kuwait", $this->pluginDomain),
|
174 |
+
"KG" => __("Kyrgyzstan", $this->pluginDomain),
|
175 |
+
"LA" => __("Lao People's Democratic Republic", $this->pluginDomain),
|
176 |
+
"LV" => __("Latvia", $this->pluginDomain),
|
177 |
+
"LB" => __("Lebanon", $this->pluginDomain),
|
178 |
+
"LS" => __("Lesotho", $this->pluginDomain),
|
179 |
+
"LR" => __("Liberia", $this->pluginDomain),
|
180 |
+
"LY" => __("Libyan Arab Jamahiriya", $this->pluginDomain),
|
181 |
+
"LI" => __("Liechtenstein", $this->pluginDomain),
|
182 |
+
"LT" => __("Lithuania", $this->pluginDomain),
|
183 |
+
"LU" => __("Luxembourg", $this->pluginDomain),
|
184 |
+
"MO" => __("Macau", $this->pluginDomain),
|
185 |
+
"MK" => __("Macedonia, Former Yugoslav Republic Of", $this->pluginDomain),
|
186 |
+
"MG" => __("Madagascar", $this->pluginDomain),
|
187 |
+
"MW" => __("Malawi", $this->pluginDomain),
|
188 |
+
"MY" => __("Malaysia", $this->pluginDomain),
|
189 |
+
"MV" => __("Maldives", $this->pluginDomain),
|
190 |
+
"ML" => __("Mali", $this->pluginDomain),
|
191 |
+
"MT" => __("Malta", $this->pluginDomain),
|
192 |
+
"MH" => __("Marshall Islands", $this->pluginDomain),
|
193 |
+
"MQ" => __("Martinique", $this->pluginDomain),
|
194 |
+
"MR" => __("Mauritania", $this->pluginDomain),
|
195 |
+
"MU" => __("Mauritius", $this->pluginDomain),
|
196 |
+
"YT" => __("Mayotte", $this->pluginDomain),
|
197 |
+
"MX" => __("Mexico", $this->pluginDomain),
|
198 |
+
"FM" => __("Micronesia, Federated States Of", $this->pluginDomain),
|
199 |
+
"MD" => __("Moldova, Republic Of", $this->pluginDomain),
|
200 |
+
"MC" => __("Monaco", $this->pluginDomain),
|
201 |
+
"MN" => __("Mongolia", $this->pluginDomain),
|
202 |
+
"MS" => __("Montserrat", $this->pluginDomain),
|
203 |
+
"MA" => __("Morocco", $this->pluginDomain),
|
204 |
+
"MZ" => __("Mozambique", $this->pluginDomain),
|
205 |
+
"MM" => __("Myanmar", $this->pluginDomain),
|
206 |
+
"NA" => __("Namibia", $this->pluginDomain),
|
207 |
+
"NR" => __("Nauru", $this->pluginDomain),
|
208 |
+
"NP" => __("Nepal", $this->pluginDomain),
|
209 |
+
"NL" => __("Netherlands", $this->pluginDomain),
|
210 |
+
"AN" => __("Netherlands Antilles", $this->pluginDomain),
|
211 |
+
"NC" => __("New Caledonia", $this->pluginDomain),
|
212 |
+
"NZ" => __("New Zealand", $this->pluginDomain),
|
213 |
+
"NI" => __("Nicaragua", $this->pluginDomain),
|
214 |
+
"NE" => __("Niger", $this->pluginDomain),
|
215 |
+
"NG" => __("Nigeria", $this->pluginDomain),
|
216 |
+
"NU" => __("Niue", $this->pluginDomain),
|
217 |
+
"NF" => __("Norfolk Island", $this->pluginDomain),
|
218 |
+
"MP" => __("Northern Mariana Islands", $this->pluginDomain),
|
219 |
+
"NO" => __("Norway", $this->pluginDomain),
|
220 |
+
"OM" => __("Oman", $this->pluginDomain),
|
221 |
+
"PK" => __("Pakistan", $this->pluginDomain),
|
222 |
+
"PW" => __("Palau", $this->pluginDomain),
|
223 |
+
"PA" => __("Panama", $this->pluginDomain),
|
224 |
+
"PG" => __("Papua New Guinea", $this->pluginDomain),
|
225 |
+
"PY" => __("Paraguay", $this->pluginDomain),
|
226 |
+
"PE" => __("Peru", $this->pluginDomain),
|
227 |
+
"PH" => __("Philippines", $this->pluginDomain),
|
228 |
+
"PN" => __("Pitcairn", $this->pluginDomain),
|
229 |
+
"PL" => __("Poland", $this->pluginDomain),
|
230 |
+
"PT" => __("Portugal", $this->pluginDomain),
|
231 |
+
"PR" => __("Puerto Rico", $this->pluginDomain),
|
232 |
+
"QA" => __("Qatar", $this->pluginDomain),
|
233 |
+
"RE" => __("Reunion", $this->pluginDomain),
|
234 |
+
"RO" => __("Romania", $this->pluginDomain),
|
235 |
+
"RU" => __("Russian Federation", $this->pluginDomain),
|
236 |
+
"RW" => __("Rwanda", $this->pluginDomain),
|
237 |
+
"KN" => __("Saint Kitts And Nevis", $this->pluginDomain),
|
238 |
+
"LC" => __("Saint Lucia", $this->pluginDomain),
|
239 |
+
"VC" => __("Saint Vincent And The Grenadines", $this->pluginDomain),
|
240 |
+
"WS" => __("Samoa", $this->pluginDomain),
|
241 |
+
"SM" => __("San Marino", $this->pluginDomain),
|
242 |
+
"ST" => __("Sao Tome And Principe", $this->pluginDomain),
|
243 |
+
"SA" => __("Saudi Arabia", $this->pluginDomain),
|
244 |
+
"SN" => __("Senegal", $this->pluginDomain),
|
245 |
+
"SC" => __("Seychelles", $this->pluginDomain),
|
246 |
+
"SL" => __("Sierra Leone", $this->pluginDomain),
|
247 |
+
"SG" => __("Singapore", $this->pluginDomain),
|
248 |
+
"SK" => __("Slovakia (Slovak Republic)", $this->pluginDomain),
|
249 |
+
"SI" => __("Slovenia", $this->pluginDomain),
|
250 |
+
"SB" => __("Solomon Islands", $this->pluginDomain),
|
251 |
+
"SO" => __("Somalia", $this->pluginDomain),
|
252 |
+
"ZA" => __("South Africa", $this->pluginDomain),
|
253 |
+
"GS" => __("South Georgia, South Sandwich Islands", $this->pluginDomain),
|
254 |
+
"ES" => __("Spain", $this->pluginDomain),
|
255 |
+
"LK" => __("Sri Lanka", $this->pluginDomain),
|
256 |
+
"SH" => __("St. Helena", $this->pluginDomain),
|
257 |
+
"PM" => __("St. Pierre And Miquelon", $this->pluginDomain),
|
258 |
+
"SD" => __("Sudan", $this->pluginDomain),
|
259 |
+
"SR" => __("Suriname", $this->pluginDomain),
|
260 |
+
"SJ" => __("Svalbard And Jan Mayen Islands", $this->pluginDomain),
|
261 |
+
"SZ" => __("Swaziland", $this->pluginDomain),
|
262 |
+
"SE" => __("Sweden", $this->pluginDomain),
|
263 |
+
"CH" => __("Switzerland", $this->pluginDomain),
|
264 |
+
"SY" => __("Syrian Arab Republic", $this->pluginDomain),
|
265 |
+
"TW" => __("Taiwan", $this->pluginDomain),
|
266 |
+
"TJ" => __("Tajikistan", $this->pluginDomain),
|
267 |
+
"TZ" => __("Tanzania, United Republic Of", $this->pluginDomain),
|
268 |
+
"TH" => __("Thailand", $this->pluginDomain),
|
269 |
+
"TG" => __("Togo", $this->pluginDomain),
|
270 |
+
"TK" => __("Tokelau", $this->pluginDomain),
|
271 |
+
"TO" => __("Tonga", $this->pluginDomain),
|
272 |
+
"TT" => __("Trinidad And Tobago", $this->pluginDomain),
|
273 |
+
"TN" => __("Tunisia", $this->pluginDomain),
|
274 |
+
"TR" => __("Turkey", $this->pluginDomain),
|
275 |
+
"TM" => __("Turkmenistan", $this->pluginDomain),
|
276 |
+
"TC" => __("Turks And Caicos Islands", $this->pluginDomain),
|
277 |
+
"TV" => __("Tuvalu", $this->pluginDomain),
|
278 |
+
"UG" => __("Uganda", $this->pluginDomain),
|
279 |
+
"UA" => __("Ukraine", $this->pluginDomain),
|
280 |
+
"AE" => __("United Arab Emirates", $this->pluginDomain),
|
281 |
+
"GB" => __("United Kingdom", $this->pluginDomain),
|
282 |
+
"UM" => __("United States Minor Outlying Islands", $this->pluginDomain),
|
283 |
+
"UY" => __("Uruguay", $this->pluginDomain),
|
284 |
+
"UZ" => __("Uzbekistan", $this->pluginDomain),
|
285 |
+
"VU" => __("Vanuatu", $this->pluginDomain),
|
286 |
+
"VE" => __("Venezuela", $this->pluginDomain),
|
287 |
+
"VN" => __("Viet Nam", $this->pluginDomain),
|
288 |
+
"VG" => __("Virgin Islands (British)", $this->pluginDomain),
|
289 |
+
"VI" => __("Virgin Islands (U.S.)", $this->pluginDomain),
|
290 |
+
"WF" => __("Wallis And Futuna Islands", $this->pluginDomain),
|
291 |
+
"EH" => __("Western Sahara", $this->pluginDomain),
|
292 |
+
"YE" => __("Yemen", $this->pluginDomain),
|
293 |
+
"YU" => __("Yugoslavia", $this->pluginDomain),
|
294 |
+
"ZM" => __("Zambia", $this->pluginDomain),
|
295 |
+
"ZW" => __("Zimbabwe", $this->pluginDomain)
|
296 |
+
);
|
297 |
+
if ( $postId || $useDefault ) {
|
298 |
+
$countryValue = get_post_meta( $postId, '_EventCountry', true );
|
299 |
+
if( $countryValue ) $defaultCountry = array( array_search( $countryValue, $countries ), $countryValue );
|
300 |
+
else $defaultCountry = eventsGetOptionValue('defaultCountry');
|
301 |
+
if( $defaultCountry && $defaultCountry[0] != "" ) {
|
302 |
+
$selectCountry = array_shift( $countries );
|
303 |
+
asort($countries);
|
304 |
+
$countries = array($defaultCountry[0] => __($defaultCountry[1], $this->pluginDomain)) + $countries;
|
305 |
+
$countries = array("" => __($selectCountry, $this->pluginDomain)) + $countries;
|
306 |
+
array_unique($countries);
|
307 |
+
}
|
308 |
+
$this->countries = $countries;
|
309 |
+
} else {
|
310 |
+
$this->countries = $countries;
|
311 |
+
}
|
312 |
+
}
|
313 |
+
/**
|
314 |
+
* Initializes plugin variables and sets up wordpress hooks/actions.
|
315 |
+
*
|
316 |
+
* @return void
|
317 |
+
*/
|
318 |
+
function __construct( ) {
|
319 |
+
$this->currentDay = '';
|
320 |
+
$this->pluginDir = basename(dirname(__FILE__));
|
321 |
+
$this->pluginUrl = WP_CONTENT_URL.'/plugins/'.plugin_basename(dirname(__FILE__));
|
322 |
+
$this->errors = '';
|
323 |
+
register_deactivation_hook( __FILE__, array( &$this, 'on_deactivate' ) );
|
324 |
+
add_action( 'reschedule_event_post', array( $this, 'reschedule') );
|
325 |
+
add_action( 'init', array( $this, 'loadDomainStylesScripts' ) );
|
326 |
+
add_action( 'sp-events-save-more-options', array( $this, 'flushRewriteRules' ) );
|
327 |
+
add_action( 'pre_get_posts', array( $this, 'setOptions' ) );
|
328 |
+
add_action( 'admin_menu', array( $this, 'addOptionsPage' ) );
|
329 |
+
add_action( 'admin_init', array( $this, 'checkForOptionsChanges' ) );
|
330 |
+
add_action( 'wp_ajax_hideDonate', array( $this, 'storeHideDonate'));
|
331 |
+
add_action( 'admin_menu', array( $this, 'addEventBox' ) );
|
332 |
+
add_action( 'save_post', array( $this, 'addEventMeta' ), 15 );
|
333 |
+
add_action( 'publish_post', array( $this, 'addEventMeta' ), 15 );
|
334 |
+
add_filter( 'generate_rewrite_rules', array( $this, 'filterRewriteRules' ) );
|
335 |
+
add_filter( 'query_vars', array( $this, 'eventQueryVars' ) );
|
336 |
+
add_filter( 'posts_join', array( $this, 'events_search_join' ) );
|
337 |
+
add_filter( 'posts_where', array( $this, 'events_search_where' ) );
|
338 |
+
add_filter( 'posts_orderby', array( $this, 'events_search_orderby' ) );
|
339 |
+
add_filter( 'posts_fields', array( $this, 'events_search_fields' ) );
|
340 |
+
add_filter( 'post_limits', array( $this, 'events_search_limits' ) );
|
341 |
+
add_action( 'template_redirect',array($this, 'templateChooser' ), 1 );
|
342 |
+
add_action( 'pre_get_posts', array( $this, 'events_home_cat_excluder' ) );
|
343 |
+
add_action( 'sp_events_post_errors', array( 'TEC_Post_Exception', 'displayMessage' ) );
|
344 |
+
add_action( 'sp_events_options_top', array( 'TEC_WP_Options_Exception', 'displayMessage') );
|
345 |
+
}
|
346 |
+
|
347 |
+
public function addOptionsPage() {
|
348 |
+
add_options_page('The Events Calendar', 'The Events Calendar', 'administrator', basename(__FILE__), array($this,'optionsPageView'));
|
349 |
+
}
|
350 |
+
|
351 |
+
public function optionsPageView() {
|
352 |
+
include( dirname( __FILE__ ) . '/views/events-options.php' );
|
353 |
+
}
|
354 |
+
|
355 |
+
public function checkForOptionsChanges() {
|
356 |
+
if (isset($_POST['saveEventsCalendarOptions']) && check_admin_referer('saveEventsCalendarOptions')) {
|
357 |
+
$options = $this->getOptions();
|
358 |
+
$options['viewOption'] = $_POST['viewOption'];
|
359 |
+
if($_POST['defaultCountry']) {
|
360 |
+
$this->constructCountries();
|
361 |
+
$defaultCountryKey = array_search($_POST['defaultCountry'],$this->countries);
|
362 |
+
$options['defaultCountry'] = array($defaultCountryKey,$_POST['defaultCountry']);
|
363 |
+
}
|
364 |
+
|
365 |
+
$options['embedGoogleMaps'] = $_POST['embedGoogleMaps'];
|
366 |
+
if($_POST['embedGoogleMapsHeight']) {
|
367 |
+
$options['embedGoogleMapsHeight'] = $_POST['embedGoogleMapsHeight'];
|
368 |
+
$options['embedGoogleMapsWidth'] = $_POST['embedGoogleMapsWidth'];
|
369 |
+
}
|
370 |
+
|
371 |
+
$options['showComments'] = $_POST['showComments'];
|
372 |
+
$options['displayEventsOnHomepage'] = $_POST['displayEventsOnHomepage'];
|
373 |
+
$options['resetEventPostDate'] = $_POST['resetEventPostDate'];
|
374 |
+
$options['useRewriteRules'] = $_POST['useRewriteRules'];
|
375 |
+
try {
|
376 |
+
do_action( 'sp-events-save-more-options' );
|
377 |
+
if ( !$this->optionsExceptionThrown ) $options['error'] = "";
|
378 |
+
} catch( TEC_WP_Options_Exception $e ) {
|
379 |
+
$this->optionsExceptionThrown = true;
|
380 |
+
$options['error'] .= $e->getMessage();
|
381 |
+
}
|
382 |
+
$this->saveOptions($options);
|
383 |
+
$this->latestOptions = $options; //XXX ? duplicated in saveOptions() ?
|
384 |
+
} // end if
|
385 |
+
}
|
386 |
+
|
387 |
+
public function storeHideDonate() {
|
388 |
+
if ( $_POST['donateHidden'] ) {
|
389 |
+
$options = $this->getOptions();
|
390 |
+
$options['donateHidden'] = true;
|
391 |
+
|
392 |
+
$this->saveOptions($options);
|
393 |
+
} // end if
|
394 |
+
}
|
395 |
+
|
396 |
+
/// OPTIONS DATA
|
397 |
+
public function getOptions() {
|
398 |
+
if ('' === $this->defaultOptions) {
|
399 |
+
$this->defaultOptions = get_option(The_Events_Calendar::OPTIONNAME, array());
|
400 |
+
}
|
401 |
+
return $this->defaultOptions;
|
402 |
+
}
|
403 |
+
|
404 |
+
private function saveOptions($options) {
|
405 |
+
if (!is_array($options)) {
|
406 |
+
return;
|
407 |
+
}
|
408 |
+
if ( update_option(The_Events_Calendar::OPTIONNAME, $options) ) {
|
409 |
+
$this->latestOptions = $options;
|
410 |
+
} else {
|
411 |
+
$this->latestOptions = $this->getOptions();
|
412 |
+
}
|
413 |
+
}
|
414 |
+
|
415 |
+
public function deleteOptions() {
|
416 |
+
delete_option(The_Events_Calendar::OPTIONNAME);
|
417 |
+
}
|
418 |
+
|
419 |
+
public function templateChooser() {
|
420 |
+
if( is_feed() ) {
|
421 |
+
return;
|
422 |
+
}
|
423 |
+
$this->constructDaysOfWeek();
|
424 |
+
// list view
|
425 |
+
if ( $this->in_event_category() && ( events_displaying_upcoming() || events_displaying_past() ) ) {
|
426 |
+
if( '' == locate_template( array( 'events/list.php' ), true ) ) {
|
427 |
+
load_template( dirname( __FILE__ ) . '/views/list.php' );
|
428 |
+
}
|
429 |
+
exit;
|
430 |
+
}
|
431 |
+
// grid view
|
432 |
+
if ( $this->in_event_category() ) {
|
433 |
+
if( '' == locate_template( array( 'events/gridview.php' ), true ) ) {
|
434 |
+
load_template( dirname( __FILE__ ) . '/views/gridview.php' );
|
435 |
+
}
|
436 |
+
exit;
|
437 |
+
}
|
438 |
+
// single event
|
439 |
+
if (is_single() && in_category( $this->eventCategory() ) ) {
|
440 |
+
if( '' == locate_template( array( 'events/single.php' ), true ) ) {
|
441 |
+
load_template( dirname( __FILE__ ) . '/views/single.php' );
|
442 |
+
}
|
443 |
+
exit;
|
444 |
+
}
|
445 |
+
}
|
446 |
+
|
447 |
+
public function truncate($text, $excerpt_length = 44) {
|
448 |
+
|
449 |
+
$text = strip_shortcodes( $text );
|
450 |
+
|
451 |
+
$text = apply_filters('the_content', $text);
|
452 |
+
$text = str_replace(']]>', ']]>', $text);
|
453 |
+
$text = strip_tags($text);
|
454 |
+
|
455 |
+
$words = explode(' ', $text, $excerpt_length + 1);
|
456 |
+
if (count($words) > $excerpt_length) {
|
457 |
+
array_pop($words);
|
458 |
+
$text = implode(' ', $words);
|
459 |
+
$text = rtrim($text);
|
460 |
+
$text .= '…';
|
461 |
+
}
|
462 |
+
|
463 |
+
return $text;
|
464 |
+
}
|
465 |
+
|
466 |
+
public function loadDomainStylesScripts() {
|
467 |
+
load_plugin_textdomain( $this->pluginDomain, false, basename(dirname(__FILE__)) . '/lang/');
|
468 |
+
$eventsURL = trailingslashit( WP_PLUGIN_URL ) . trailingslashit( plugin_basename( dirname( __FILE__ ) ) ) . 'resources/';
|
469 |
+
wp_enqueue_script('sp-events-calendar-script', $eventsURL.'events.js', array('jquery') );
|
470 |
+
wp_enqueue_style('sp-events-calendar-style', $eventsURL.'events.css');
|
471 |
+
}
|
472 |
+
|
473 |
+
/**
|
474 |
+
* Helper method to return an array of 1-12 for months
|
475 |
+
*/
|
476 |
+
public function months( ) {
|
477 |
+
$months = array();
|
478 |
+
foreach( range( 1, 12 ) as $month ) {
|
479 |
+
$months[ $month ] = $month;
|
480 |
+
}
|
481 |
+
return $months;
|
482 |
+
}
|
483 |
+
|
484 |
+
/**
|
485 |
+
* Helper method to return an array of translated month names or short month names
|
486 |
+
* @return Array translated month names
|
487 |
+
*/
|
488 |
+
public function monthNames( $short = false ) {
|
489 |
+
if($short) {
|
490 |
+
$months = array( 'Jan' => __('Jan', $this->pluginDomain),
|
491 |
+
'Feb' => __('Feb', $this->pluginDomain),
|
492 |
+
'Mar' => __('Mar', $this->pluginDomain),
|
493 |
+
'Apr' => __('Apr', $this->pluginDomain),
|
494 |
+
'May' => __('May', $this->pluginDomain),
|
495 |
+
'Jun' => __('Jun', $this->pluginDomain),
|
496 |
+
'Jul' => __('Jul', $this->pluginDomain),
|
497 |
+
'Aug' => __('Aug', $this->pluginDomain),
|
498 |
+
'Sep' => __('Sep', $this->pluginDomain),
|
499 |
+
'Oct' => __('Oct', $this->pluginDomain),
|
500 |
+
'Nov' => __('Nov', $this->pluginDomain),
|
501 |
+
'Dec' => __('Dec', $this->pluginDomain)
|
502 |
+
);
|
503 |
+
} else {
|
504 |
+
$months = array( 'January' => __('January', $this->pluginDomain),
|
505 |
+
'February' => __('February', $this->pluginDomain),
|
506 |
+
'March' => __('March', $this->pluginDomain),
|
507 |
+
'April' => __('April', $this->pluginDomain),
|
508 |
+
'May' => __('May', $this->pluginDomain),
|
509 |
+
'June' => __('June', $this->pluginDomain),
|
510 |
+
'July' => __('July', $this->pluginDomain),
|
511 |
+
'August' => __('August', $this->pluginDomain),
|
512 |
+
'September' => __('September', $this->pluginDomain),
|
513 |
+
'October' => __('October', $this->pluginDomain),
|
514 |
+
'November' => __('November', $this->pluginDomain),
|
515 |
+
'December' => __('December', $this->pluginDomain)
|
516 |
+
);
|
517 |
+
}
|
518 |
+
return $months;
|
519 |
+
}
|
520 |
+
|
521 |
+
/**
|
522 |
+
* Helper method to return an array of 1-31 for days
|
523 |
+
*/
|
524 |
+
public function days( $totalDays ) {
|
525 |
+
$days = array();
|
526 |
+
foreach( range( 1, $totalDays ) as $day ) {
|
527 |
+
$days[ $day ] = $day;
|
528 |
+
}
|
529 |
+
return $days;
|
530 |
+
}
|
531 |
+
|
532 |
+
/**
|
533 |
+
* Helper method to return an array of years, back 2 and forward 5
|
534 |
+
*/
|
535 |
+
public function years( ) {
|
536 |
+
$year = ( int )date_i18n( 'Y' );
|
537 |
+
// Back two years, forward 5
|
538 |
+
$year_list = array( $year - 5, $year - 4, $year - 3, $year - 2, $year - 1, $year, $year + 1, $year + 2, $year + 3, $year + 4, $year + 5 );
|
539 |
+
$years = array();
|
540 |
+
foreach( $year_list as $single_year ) {
|
541 |
+
$years[ $single_year ] = $single_year;
|
542 |
+
}
|
543 |
+
|
544 |
+
return $years;
|
545 |
+
}
|
546 |
+
|
547 |
+
/**
|
548 |
+
* Creates the category and sets up the theme resource folder with sample config files.
|
549 |
+
*
|
550 |
+
* @return void
|
551 |
+
*/
|
552 |
+
public function on_activate( ) {
|
553 |
+
$now = time();
|
554 |
+
$firstTime = $now - ($now % 66400);
|
555 |
+
wp_schedule_event( $firstTime, 'daily', 'reschedule_event_post'); // schedule this for midnight, daily
|
556 |
+
$this->create_category_if_not_exists( );
|
557 |
+
$this->flushRewriteRules();
|
558 |
+
}
|
559 |
+
/**
|
560 |
+
* This function is scheduled to run at midnight. If any posts are set with EventStartDate
|
561 |
+
* to today, update the post so that it was posted today. This will force the event to be
|
562 |
+
* displayed in the main loop on the homepage.
|
563 |
+
*
|
564 |
+
* @return void
|
565 |
+
*/
|
566 |
+
public function reschedule( ) {
|
567 |
+
$resetEventPostDate = eventsGetOptionValue('resetEventPostDate', 'off');
|
568 |
+
if( $resetEventPostDate == 'off' ){
|
569 |
+
return;
|
570 |
+
}
|
571 |
+
global $wpdb;
|
572 |
+
$query = "
|
573 |
+
SELECT * FROM $wpdb->posts
|
574 |
+
LEFT JOIN $wpdb->postmeta ON($wpdb->posts.ID = $wpdb->postmeta.post_id)
|
575 |
+
WHERE
|
576 |
+
$wpdb->postmeta.meta_key = '_EventStartDate'
|
577 |
+
AND $wpdb->postmeta.meta_value = CURRENT_DATE()";
|
578 |
+
$return = $wpdb->get_results($query, OBJECT);
|
579 |
+
if ( is_array( $return ) && count( $return ) ) {
|
580 |
+
foreach ( $return as $row ) {
|
581 |
+
$updateQuery = "UPDATE $wpdb->posts SET post_date = NOW() WHERE $wpdb->posts.ID = " . $row->ID;
|
582 |
+
$wpdb->query( $updateQuery );
|
583 |
+
}
|
584 |
+
}
|
585 |
+
}
|
586 |
+
/**
|
587 |
+
* fields filter for standard wordpress templates. Adds the start and end date to queries in the
|
588 |
+
* events category
|
589 |
+
*
|
590 |
+
* @param string fields
|
591 |
+
* @param string modified fields for events queries
|
592 |
+
*/
|
593 |
+
public function events_search_fields( $fields ) {
|
594 |
+
if( !$this->in_event_category() ) {
|
595 |
+
return $fields;
|
596 |
+
}
|
597 |
+
global $wpdb;
|
598 |
+
$fields .= ', eventStart.meta_value as EventStartDate, eventEnd.meta_value as EventEndDate ';
|
599 |
+
return $fields;
|
600 |
+
|
601 |
+
}
|
602 |
+
/**
|
603 |
+
* join filter for standard wordpress templates. Adds the postmeta tables for start and end queries
|
604 |
+
*
|
605 |
+
* @param string join clause
|
606 |
+
* @return string modified join clause
|
607 |
+
*/
|
608 |
+
public function events_search_join( $join ) {
|
609 |
+
global $wpdb;
|
610 |
+
if( !$this->in_event_category() ) {
|
611 |
+
return $join;
|
612 |
+
}
|
613 |
+
$join .= "LEFT JOIN {$wpdb->postmeta} as eventStart ON( {$wpdb->posts}.ID = eventStart.post_id ) ";
|
614 |
+
$join .= "LEFT JOIN {$wpdb->postmeta} as eventEnd ON( {$wpdb->posts}.ID = eventEnd.post_id ) ";
|
615 |
+
return $join;
|
616 |
+
}
|
617 |
+
/**
|
618 |
+
* where filter for standard wordpress templates. Inspects the event options and filters
|
619 |
+
* event posts for upcoming or past event loops
|
620 |
+
*
|
621 |
+
* @param string where clause
|
622 |
+
* @return string modified where clause
|
623 |
+
*/
|
624 |
+
public function events_search_where( $where ) {
|
625 |
+
if( !$this->in_event_category() ) {
|
626 |
+
return $where;
|
627 |
+
}
|
628 |
+
$where .= ' AND ( eventStart.meta_key = "_EventStartDate" AND eventEnd.meta_key = "_EventEndDate" ) ';
|
629 |
+
if( events_displaying_month( ) ) {}
|
630 |
+
if( events_displaying_upcoming( ) ) {
|
631 |
+
// Is the start date in the future?
|
632 |
+
$where .= ' AND ( eventStart.meta_value > "'.$this->date.'" ';
|
633 |
+
// Or is the start date in the past but the end date in the future? (meaning the event is currently ongoing)
|
634 |
+
$where .= ' OR ( eventStart.meta_value < "'.$this->date.'" AND eventEnd.meta_value > "'.$this->date.'" ) ) ';
|
635 |
+
}
|
636 |
+
if( events_displaying_past( ) ) {
|
637 |
+
// Is the start date in the past?
|
638 |
+
$where .= ' AND eventStart.meta_value < "'.$this->date.'" ';
|
639 |
+
}
|
640 |
+
return $where;
|
641 |
+
}
|
642 |
+
/**
|
643 |
+
* Removes event posts from the homepage loop. This uses a standard wordpress pre_get_posts
|
644 |
+
*/
|
645 |
+
public function events_home_cat_excluder( $query ) {
|
646 |
+
if( is_home() && eventsGetOptionValue( 'displayEventsOnHomepage' ) == 'off' ) {
|
647 |
+
$excluded_home_cats = $this->event_category_ids();
|
648 |
+
$cni = $query->get('category__not_in');
|
649 |
+
$cni = array_merge( $cni, $excluded_home_cats );
|
650 |
+
$query->set('category__not_in', $cni );
|
651 |
+
}
|
652 |
+
return $query;
|
653 |
+
}
|
654 |
+
/**
|
655 |
+
* @return bool true if is_category() is on a child of the events category
|
656 |
+
*/
|
657 |
+
public function in_event_category( ) {
|
658 |
+
if( is_category( The_Events_Calendar::CATEGORYNAME ) ) {
|
659 |
+
return true;
|
660 |
+
}
|
661 |
+
$cat_id = get_query_var( 'cat' );
|
662 |
+
if( $cat_id == $this->eventCategory() ) {
|
663 |
+
return true;
|
664 |
+
}
|
665 |
+
$cats = get_categories('child_of=' . $this->eventCategory());
|
666 |
+
$is_child = false;
|
667 |
+
foreach( $cats as $cat ) {
|
668 |
+
if( is_category( $cat->name ) ) {
|
669 |
+
$is_child = true;
|
670 |
+
}
|
671 |
+
}
|
672 |
+
return $is_child;
|
673 |
+
}
|
674 |
+
/**
|
675 |
+
* @return array of event category ids, including children
|
676 |
+
*/
|
677 |
+
public function event_category_ids( ) {
|
678 |
+
$cats = array();
|
679 |
+
$cats[] = $this->eventCategory();
|
680 |
+
$children = get_categories('hide_empty=0&child_of=' . $cats[0]);
|
681 |
+
foreach( $children as $cat ) {
|
682 |
+
$cats[] = $cat->cat_ID;
|
683 |
+
}
|
684 |
+
return $cats;
|
685 |
+
}
|
686 |
+
/**
|
687 |
+
* orderby filter for standard wordpress templates. Adds event ordering for queries that are
|
688 |
+
* in the events category and filtered according to the search parameters
|
689 |
+
*
|
690 |
+
* @param string orderby
|
691 |
+
* @return string modified orderby clause
|
692 |
+
*/
|
693 |
+
public function events_search_orderby( $orderby ) {
|
694 |
+
if( !$this->in_event_category() ) {
|
695 |
+
return $orderby;
|
696 |
+
}
|
697 |
+
global $wpdb;
|
698 |
+
$orderby = ' eventStart.meta_value '.$this->order;
|
699 |
+
return $orderby;
|
700 |
+
}
|
701 |
+
/**
|
702 |
+
* limit filter for standard wordpress templates. Adds limit clauses for pagination
|
703 |
+
* for queries in the events category
|
704 |
+
*
|
705 |
+
* @param string limits clause
|
706 |
+
* @return string modified limits clause
|
707 |
+
*/
|
708 |
+
public function events_search_limits( $limits ) {
|
709 |
+
if( !$this->in_event_category() ) {
|
710 |
+
return $limits;
|
711 |
+
}
|
712 |
+
global $wpdb, $wp_query, $paged;
|
713 |
+
if (empty($paged)) {
|
714 |
+
$paged = 1;
|
715 |
+
}
|
716 |
+
$posts_per_page = intval( get_option('posts_per_page') );
|
717 |
+
$paged = get_query_var('paged') ? intval( get_query_var('paged') ) : 1;
|
718 |
+
$pgstrt = ( ( $paged - 1 ) * $posts_per_page ) . ', ';
|
719 |
+
$limits = 'LIMIT ' . $pgstrt . $posts_per_page;
|
720 |
+
return $limits;
|
721 |
+
}
|
722 |
+
/**
|
723 |
+
* Gets the Category id to use for an Event
|
724 |
+
* @return int|false Category id to use or false is none is set
|
725 |
+
*/
|
726 |
+
static function eventCategory() {
|
727 |
+
return get_cat_id( The_Events_Calendar::CATEGORYNAME );
|
728 |
+
}
|
729 |
+
/**
|
730 |
+
* Flush rewrite rules to support custom links
|
731 |
+
*
|
732 |
+
* @link http://codex.wordpress.org/Custom_Queries#Permalinks_for_Custom_Archives
|
733 |
+
*/
|
734 |
+
public function flushRewriteRules()
|
735 |
+
{
|
736 |
+
global $wp_rewrite;
|
737 |
+
$wp_rewrite->flush_rules();
|
738 |
+
}
|
739 |
+
/**
|
740 |
+
* Adds the event specific query vars to Wordpress
|
741 |
+
*
|
742 |
+
* @link http://codex.wordpress.org/Custom_Queries#Permalinks_for_Custom_Archives
|
743 |
+
* @return mixed array of query variables that this plugin understands
|
744 |
+
*/
|
745 |
+
public function eventQueryVars( $qvars ) {
|
746 |
+
$qvars[] = 'eventDisplay';
|
747 |
+
$qvars[] = 'eventDate';
|
748 |
+
return $qvars;
|
749 |
+
}
|
750 |
+
/**
|
751 |
+
* Adds Event specific rewrite rules.
|
752 |
+
*
|
753 |
+
* events/ => /?cat=27
|
754 |
+
* events/month => /?cat=27&eventDisplay=month
|
755 |
+
* events/upcoming => /?cat=27&eventDisplay=upcoming
|
756 |
+
* events/past => /?cat=27&eventDisplay=past
|
757 |
+
* events/2008-01/#15 => /?cat=27&eventDisplay=bydate&eventDate=2008-01-01
|
758 |
+
*
|
759 |
+
* @return void
|
760 |
+
*/
|
761 |
+
public function filterRewriteRules( $wp_rewrite ) {
|
762 |
+
if( $useRewriteRules = eventsGetOptionValue('useRewriteRules','on') == 'off' ) {
|
763 |
+
return;
|
764 |
+
}
|
765 |
+
$categoryId = get_cat_id( The_Events_Calendar::CATEGORYNAME );
|
766 |
+
$eventCategory = get_category( $categoryId );
|
767 |
+
$eventCats = array( $eventCategory );
|
768 |
+
$childCats = get_categories("hide_empty=0&child_of=$categoryId");
|
769 |
+
$eventCats = array_merge( $eventCats, $childCats );
|
770 |
+
$newRules = array();
|
771 |
+
foreach( $eventCats as $cat ) {
|
772 |
+
$url = get_category_link( $cat->cat_ID );
|
773 |
+
$base = str_replace( trailingslashit( get_option( 'siteurl' ) ), '', $url );
|
774 |
+
$newRules[$base . 'month'] = 'index.php?cat=' . $cat->cat_ID . '&eventDisplay=month';
|
775 |
+
$newRules[$base . 'upcoming/page/(\d+)'] = 'index.php?cat=' . $cat->cat_ID . '&eventDisplay=upcoming&paged=' . $wp_rewrite->preg_index(1);
|
776 |
+
$newRules[$base . 'upcoming'] = 'index.php?cat=' . $cat->cat_ID . '&eventDisplay=upcoming';
|
777 |
+
$newRules[$base . 'past/page/(\d+)'] = 'index.php?cat=' . $cat->cat_ID . '&eventDisplay=past&paged=' . $wp_rewrite->preg_index(1);
|
778 |
+
$newRules[$base . 'past'] = 'index.php?cat=' . $cat->cat_ID . '&eventDisplay=past';
|
779 |
+
$newRules[$base . '(\d{4}-\d{2})$'] = 'index.php?cat=' . $cat->cat_ID . '&eventDisplay=month' .'&eventDate=' . $wp_rewrite->preg_index(1);
|
780 |
+
$newRules[$base . '?$'] = 'index.php?cat=' . $cat->cat_ID . '&eventDisplay=' . eventsGetOptionValue('viewOption','month');
|
781 |
+
}
|
782 |
+
$wp_rewrite->rules = $newRules + $wp_rewrite->rules;
|
783 |
+
}
|
784 |
+
/**
|
785 |
+
* Creates the events category and updates the core options (if not already done)
|
786 |
+
* @return int cat_ID
|
787 |
+
*/
|
788 |
+
public function create_category_if_not_exists( ) {
|
789 |
+
if ( !category_exists( The_Events_Calendar::CATEGORYNAME ) ) {
|
790 |
+
$category_id = wp_create_category( The_Events_Calendar::CATEGORYNAME );
|
791 |
+
return $category_id;
|
792 |
+
} else {
|
793 |
+
return $this->eventCategory();
|
794 |
+
}
|
795 |
+
}
|
796 |
+
/**
|
797 |
+
* This plugin does not have any deactivation functionality. Any events, categories, options and metadata are
|
798 |
+
* left behind.
|
799 |
+
*
|
800 |
+
* @return void
|
801 |
+
*/
|
802 |
+
public function on_deactivate( ) {
|
803 |
+
wp_clear_scheduled_hook('reschedule_event_post');
|
804 |
+
}
|
805 |
+
/**
|
806 |
+
* Converts a set of inputs to YYYY-MM-DD HH:MM:SS format for MySQL
|
807 |
+
*/
|
808 |
+
public function dateToTimeStamp( $year, $month, $day, $hour, $minute, $meridian ) {
|
809 |
+
if ( preg_match( '/(PM|pm)/', $meridian ) && $hour < 12 ) $hour += "12";
|
810 |
+
if ( preg_match( '/(AM|am)/', $meridian ) && $hour == 12 ) $hour = "00";
|
811 |
+
return "$year-$month-$day $hour:$minute:00";
|
812 |
+
}
|
813 |
+
public function getTimeFormat( $dateFormat = self::DATEONLYFORMAT ) {
|
814 |
+
return $dateFormat . ' ' . get_option( 'time_format', self::TIMEFORMAT );
|
815 |
+
}
|
816 |
+
/**
|
817 |
+
* Adds / removes the event details as meta tags to the post.
|
818 |
+
*
|
819 |
+
* @param string $postId
|
820 |
+
* @return void
|
821 |
+
*/
|
822 |
+
public function addEventMeta( $postId ) {
|
823 |
+
if ($_POST['isEvent'] == 'yes') {
|
824 |
+
$category_id = $this->create_category_if_not_exists();
|
825 |
+
// add a function below to remove all existing categories - wp_set_post_categories(int , array )
|
826 |
+
if( $_POST['EventAllDay'] == 'yes' ) {
|
827 |
+
$_POST['EventStartDate'] = $this->dateToTimeStamp( $_POST['EventStartYear'], $_POST['EventStartMonth'], $_POST['EventStartDay'], "12", "00", "AM" );
|
828 |
+
$_POST['EventEndDate'] = $this->dateToTimeStamp( $_POST['EventEndYear'], $_POST['EventEndMonth'], $_POST['EventEndDay'], "11", "59", "PM" );
|
829 |
+
} else {
|
830 |
+
delete_post_meta( $postId, '_EventAllDay' );
|
831 |
+
$_POST['EventStartDate'] = $this->dateToTimeStamp( $_POST['EventStartYear'], $_POST['EventStartMonth'], $_POST['EventStartDay'], $_POST['EventStartHour'], $_POST['EventStartMinute'], $_POST['EventStartMeridian'] );
|
832 |
+
$_POST['EventEndDate'] = $this->dateToTimeStamp( $_POST['EventEndYear'], $_POST['EventEndMonth'], $_POST['EventEndDay'], $_POST['EventEndHour'], $_POST['EventEndMinute'], $_POST['EventEndMeridian'] );
|
833 |
+
}
|
834 |
+
// sanity check that start date < end date
|
835 |
+
$startTimestamp = strtotime( $_POST['EventStartDate'] );
|
836 |
+
$endTimestamp = strtotime( $_POST['EventEndDate'] );
|
837 |
+
if ( $startTimestamp > $endTimestamp ) {
|
838 |
+
$_POST['EventEndDate'] = $_POST['EventStartDate'];
|
839 |
+
}
|
840 |
+
// make state and province mutually exclusive
|
841 |
+
if( $_POST['EventStateExists'] ) $_POST['EventProvince'] = '';
|
842 |
+
else $_POST['EventState'] = '';
|
843 |
+
//ignore Select a Country: as a country
|
844 |
+
if( $_POST['EventCountryLabel'] == "" ) $_POST['EventCountry'] = "";
|
845 |
+
//google map checkboxes
|
846 |
+
if( !isset( $_POST['EventShowMapLink'] ) ) update_post_meta( $postId, '_EventShowMapLink', 'false' );
|
847 |
+
if( !isset( $_POST['EventShowMap'] ) ) update_post_meta( $postId, '_EventShowMap', 'false' );
|
848 |
+
// give add-on plugins a chance to cancel this meta update
|
849 |
+
try {
|
850 |
+
do_action( 'sp_events_event_save', $postId );
|
851 |
+
if( !$this->postExceptionThrown ) delete_post_meta( $postId, self::EVENTSERROROPT );
|
852 |
+
} catch ( TEC_Post_Exception $e ) {
|
853 |
+
$this->postExceptionThrown = true;
|
854 |
+
update_post_meta( $postId, self::EVENTSERROROPT, trim( $e->getMessage() ) );
|
855 |
+
}
|
856 |
+
//update meta fields
|
857 |
+
foreach ( $this->metaTags as $tag ) {
|
858 |
+
$htmlElement = ltrim( $tag, '_' );
|
859 |
+
if ( $tag != self::EVENTSERROROPT ) {
|
860 |
+
if ( isset( $_POST[$htmlElement] ) ) {
|
861 |
+
update_post_meta( $postId, $tag, $_POST[$htmlElement] );
|
862 |
+
}
|
863 |
+
}
|
864 |
+
}
|
865 |
+
try {
|
866 |
+
do_action( 'sp_events_update_meta', $postId );
|
867 |
+
if( !$this->postExceptionThrown ) delete_post_meta( $postId, self::EVENTSERROROPT );
|
868 |
+
} catch( TEC_Post_Exception $e ) {
|
869 |
+
$this->postExceptionThrown = true;
|
870 |
+
update_post_meta( $postId, self::EVENTSERROROPT, trim( $e->getMessage() ) );
|
871 |
+
}
|
872 |
+
|
873 |
+
update_post_meta( $postId, '_EventCost', the_event_cost( $postId ) ); // XXX eventbrite cost field
|
874 |
+
// merge event category into this post
|
875 |
+
$cats = wp_get_object_terms($postId, 'category', array('fields' => 'ids'));
|
876 |
+
$new_cats = array_merge( array( get_category( $category_id )->cat_ID ), $cats );
|
877 |
+
wp_set_post_categories( $postId, $new_cats );
|
878 |
+
}
|
879 |
+
if ($_POST['isEvent'] == 'no' && is_event( $postId ) ) {
|
880 |
+
// remove event meta tags if they exist...this post is no longer an event
|
881 |
+
foreach ( $this->metaTags as $tag ) {
|
882 |
+
delete_post_meta( $postId, $tag );
|
883 |
+
}
|
884 |
+
$event_cats[] = $this->eventCategory();
|
885 |
+
$cats = get_categories('child_of=' . $this->eventCategory());
|
886 |
+
foreach( $cats as $cat ) {
|
887 |
+
$event_cats[] = $cat->term_id;
|
888 |
+
}
|
889 |
+
// remove the event categories from this post but keep any non-event categories
|
890 |
+
$terms = wp_get_object_terms($postId, 'category');
|
891 |
+
$non_event_cats = array();
|
892 |
+
foreach ( $terms as $term ) {
|
893 |
+
if( !in_array( $term->term_id, $event_cats ) ) {
|
894 |
+
$non_event_cats[] = $term->term_id;
|
895 |
+
}
|
896 |
+
}
|
897 |
+
wp_set_post_categories( $postId, $non_event_cats );
|
898 |
+
|
899 |
+
try {
|
900 |
+
do_action( 'sp_events_event_clear', $postId );
|
901 |
+
if( !$this->postExceptionThrown ) delete_post_meta( $postId, self::EVENTSERROROPT );
|
902 |
+
} catch( TEC_Post_Exception $e ) {
|
903 |
+
$this->postExceptionThrown = true;
|
904 |
+
update_post_meta( $postId, self::EVENTSERROROPT, trim( $e->getMessage() ) );
|
905 |
+
}
|
906 |
+
}
|
907 |
+
}
|
908 |
+
|
909 |
+
/**
|
910 |
+
* Adds a style chooser to the write post page
|
911 |
+
*
|
912 |
+
* @return void
|
913 |
+
*/
|
914 |
+
public function EventsChooserBox() {
|
915 |
+
global $post;
|
916 |
+
$options = '';
|
917 |
+
$style = '';
|
918 |
+
$postId = $post->ID;
|
919 |
+
|
920 |
+
foreach ( $this->metaTags as $tag ) {
|
921 |
+
if ( $postId ) {
|
922 |
+
$$tag = get_post_meta( $postId, $tag, true );
|
923 |
+
} else {
|
924 |
+
$$tag = '';
|
925 |
+
}
|
926 |
+
}
|
927 |
+
$isEventChecked = ( $_isEvent == 'yes' ) ? 'checked' : '';
|
928 |
+
$isNotEventChecked = ( $_isEvent == 'no' || $_isEvent == '' ) ? 'checked' : '';
|
929 |
+
$isEventAllDay = ( $_EventAllDay == 'yes' || $_isEvent == '' || $_isEvent == 'no' ) ? 'checked' : ''; // default is all day for new posts
|
930 |
+
|
931 |
+
$startDayOptions = array(
|
932 |
+
31 => $this->getDayOptions( $_EventStartDate, 31 ),
|
933 |
+
30 => $this->getDayOptions( $_EventStartDate, 30 ),
|
934 |
+
29 => $this->getDayOptions( $_EventStartDate, 29 ),
|
935 |
+
28 => $this->getDayOptions( $_EventStartDate, 28 )
|
936 |
+
);
|
937 |
+
$endDayOptions = array(
|
938 |
+
31 => $this->getDayOptions( $_EventEndDate, 31 ),
|
939 |
+
30 => $this->getDayOptions( $_EventEndDate, 30 ),
|
940 |
+
29 => $this->getDayOptions( $_EventEndDate, 29 ),
|
941 |
+
28 => $this->getDayOptions( $_EventEndDate, 28 )
|
942 |
+
);
|
943 |
+
$startMonthOptions = $this->getMonthOptions( $_EventStartDate );
|
944 |
+
$endMonthOptions = $this->getMonthOptions( $_EventEndDate );
|
945 |
+
$startYearOptions = $this->getYearOptions( $_EventStartDate );
|
946 |
+
$endYearOptions = $this->getYearOptions( $_EventEndDate );
|
947 |
+
$startMinuteOptions = $this->getMinuteOptions( $_EventStartDate );
|
948 |
+
$endMinuteOptions = $this->getMinuteOptions( $_EventEndDate );
|
949 |
+
$startHourOptions = $this->getHourOptions( $_EventStartDate, true );
|
950 |
+
$endHourOptions = $this->getHourOptions( $_EventEndDate );
|
951 |
+
$startMeridianOptions = $this->getMeridianOptions( $_EventStartDate, true );
|
952 |
+
$endMeridianOptions = $this->getMeridianOptions( $_EventEndDate );
|
953 |
+
include( dirname( __FILE__ ) . '/views/events-meta-box.php' );
|
954 |
+
}
|
955 |
+
/**
|
956 |
+
* Given a date (YYYY-MM-DD), returns the first of the next month
|
957 |
+
*
|
958 |
+
* @param date
|
959 |
+
* @return date
|
960 |
+
*/
|
961 |
+
public function nextMonth( $date ) {
|
962 |
+
$dateParts = split( '-', $date );
|
963 |
+
if ( $dateParts[1] == 12 ) {
|
964 |
+
$dateParts[0]++;
|
965 |
+
$dateParts[1] = "01";
|
966 |
+
$dateParts[2] = "01";
|
967 |
+
} else {
|
968 |
+
$dateParts[1]++;
|
969 |
+
$dateParts[2] = "01";
|
970 |
+
}
|
971 |
+
if ( $dateParts[1] < 10 && strlen( $dateParts[1] ) == 1 ) {
|
972 |
+
$dateParts[1] = "0" . $dateParts[1];
|
973 |
+
}
|
974 |
+
$return = $dateParts[0] . '-' . $dateParts[1];
|
975 |
+
return $return;
|
976 |
+
}
|
977 |
+
/**
|
978 |
+
* Given a date (YYYY-MM-DD), return the first of the previous month
|
979 |
+
*
|
980 |
+
* @param date
|
981 |
+
* @return date
|
982 |
+
*/
|
983 |
+
public function previousMonth( $date ) {
|
984 |
+
$dateParts = split( '-', $date );
|
985 |
+
|
986 |
+
if ( $dateParts[1] == 1 ) {
|
987 |
+
$dateParts[0]--;
|
988 |
+
$dateParts[1] = "12";
|
989 |
+
$dateParts[2] = "01";
|
990 |
+
} else {
|
991 |
+
$dateParts[1]--;
|
992 |
+
$dateParts[2] = "01";
|
993 |
+
}
|
994 |
+
if ( $dateParts[1] < 10 ) {
|
995 |
+
$dateParts[1] = "0" . $dateParts[1];
|
996 |
+
}
|
997 |
+
$return = $dateParts[0] . '-' . $dateParts[1];
|
998 |
+
|
999 |
+
return $return;
|
1000 |
+
}
|
1001 |
+
|
1002 |
+
/**
|
1003 |
+
* Callback for adding the Meta box to the admin page
|
1004 |
+
* @return void
|
1005 |
+
*/
|
1006 |
+
public function addEventBox( ) {
|
1007 |
+
add_meta_box( 'Event Details', __( 'The Events Calendar', 'Events_textdomain' ),
|
1008 |
+
array( $this, 'EventsChooserBox' ), 'post', 'normal', 'high' );
|
1009 |
+
}
|
1010 |
+
/**
|
1011 |
+
* Builds a set of options for diplaying a meridian chooser
|
1012 |
+
*
|
1013 |
+
* @param string YYYY-MM-DD HH:MM:SS to select (optional)
|
1014 |
+
* @return string a set of HTML options with all meridians
|
1015 |
+
*/
|
1016 |
+
public function getMeridianOptions( $date = "", $isStart = false ) {
|
1017 |
+
if( strstr( get_option( 'time_format', self::TIMEFORMAT ), 'A' ) ) {
|
1018 |
+
$a = 'A';
|
1019 |
+
$meridians = array( "AM", "PM" );
|
1020 |
+
} else {
|
1021 |
+
$a = 'a';
|
1022 |
+
$meridians = array( "am", "pm" );
|
1023 |
+
}
|
1024 |
+
if ( empty( $date ) ) {
|
1025 |
+
$meridian = ( $isStart ) ? $meridians[0] : $meridians[1];
|
1026 |
+
} else {
|
1027 |
+
$meridian = date($a, strtotime( $date ) );
|
1028 |
+
}
|
1029 |
+
$return = '';
|
1030 |
+
foreach ( $meridians as $m ) {
|
1031 |
+
$return .= "<option value='$m'";
|
1032 |
+
if ( $m == $meridian ) {
|
1033 |
+
$return .= ' selected="selected"';
|
1034 |
+
}
|
1035 |
+
$return .= ">$m</option>\n";
|
1036 |
+
}
|
1037 |
+
return $return;
|
1038 |
+
}
|
1039 |
+
/**
|
1040 |
+
* Builds a set of options for displaying a month chooser
|
1041 |
+
* @param string the current date to select (optional)
|
1042 |
+
* @return string a set of HTML options with all months (current month selected)
|
1043 |
+
*/
|
1044 |
+
public function getMonthOptions( $date = "" ) {
|
1045 |
+
$months = $this->monthNames();
|
1046 |
+
$options = '';
|
1047 |
+
if ( empty( $date ) ) {
|
1048 |
+
$month = ( date_i18n( 'j' ) == date_i18n( 't' ) ) ? date( 'F', time() + 86400 ) : date_i18n( 'F' );
|
1049 |
+
} else {
|
1050 |
+
$month = date( 'F', strtotime( $date ) );
|
1051 |
+
}
|
1052 |
+
$monthIndex = 1;
|
1053 |
+
foreach ( $months as $englishMonth => $monthText ) {
|
1054 |
+
if ( $monthIndex < 10 ) {
|
1055 |
+
$monthIndex = "0" . $monthIndex; // need a leading zero in the month
|
1056 |
+
}
|
1057 |
+
if ( $month == $englishMonth ) {
|
1058 |
+
$selected = 'selected="selected"';
|
1059 |
+
} else {
|
1060 |
+
$selected = '';
|
1061 |
+
}
|
1062 |
+
$options .= "<option value='$monthIndex' $selected>$monthText</option>\n";
|
1063 |
+
$monthIndex++;
|
1064 |
+
}
|
1065 |
+
return $options;
|
1066 |
+
}
|
1067 |
+
/**
|
1068 |
+
* Builds a set of options for displaying a day chooser
|
1069 |
+
* @param int number of days in the month
|
1070 |
+
* @param string the current date (optional)
|
1071 |
+
* @return string a set of HTML options with all days (current day selected)
|
1072 |
+
*/
|
1073 |
+
public function getDayOptions( $date = "", $totalDays = 31 ) {
|
1074 |
+
$days = $this->days( $totalDays );
|
1075 |
+
$options = '';
|
1076 |
+
if ( empty ( $date ) ) {
|
1077 |
+
$day = date_i18n( 'j' );
|
1078 |
+
if( $day == date_i18n( 't' ) ) $day = '01';
|
1079 |
+
elseif ( $day < 9 ) $day = '0' . ( $day + 1 );
|
1080 |
+
else $day++;
|
1081 |
+
} else {
|
1082 |
+
$day = date( 'd', strtotime( $date) );
|
1083 |
+
}
|
1084 |
+
foreach ( $days as $dayText ) {
|
1085 |
+
if ( $dayText < 10 ) {
|
1086 |
+
$dayText = "0" . $dayText; // need a leading zero in the day
|
1087 |
+
}
|
1088 |
+
if ( $day == $dayText ) {
|
1089 |
+
$selected = 'selected="selected"';
|
1090 |
+
} else {
|
1091 |
+
$selected = '';
|
1092 |
+
}
|
1093 |
+
$options .= "<option value='$dayText' $selected>$dayText</option>\n";
|
1094 |
+
}
|
1095 |
+
return $options;
|
1096 |
+
}
|
1097 |
+
/**
|
1098 |
+
* Builds a set of options for displaying a year chooser
|
1099 |
+
* @param string the current date (optional)
|
1100 |
+
* @return string a set of HTML options with adjacent years (current year selected)
|
1101 |
+
*/
|
1102 |
+
public function getYearOptions( $date = "" ) {
|
1103 |
+
$years = $this->years();
|
1104 |
+
$options = '';
|
1105 |
+
if ( empty ( $date ) ) {
|
1106 |
+
$year = date_i18n( 'Y' );
|
1107 |
+
if( date_i18n( 'n' ) == 12 && date_i18n( 'j' ) == 31 ) $year++;
|
1108 |
+
} else {
|
1109 |
+
$year = date( 'Y', strtotime( $date ) );
|
1110 |
+
}
|
1111 |
+
foreach ( $years as $yearText ) {
|
1112 |
+
if ( $year == $yearText ) {
|
1113 |
+
$selected = 'selected="selected"';
|
1114 |
+
} else {
|
1115 |
+
$selected = '';
|
1116 |
+
}
|
1117 |
+
$options .= "<option value='$yearText' $selected>$yearText</option>\n";
|
1118 |
+
}
|
1119 |
+
return $options;
|
1120 |
+
}
|
1121 |
+
/**
|
1122 |
+
* Builds a set of options for displaying an hour chooser
|
1123 |
+
* @param string the current date (optional)
|
1124 |
+
* @return string a set of HTML options with hours (current hour selected)
|
1125 |
+
*/
|
1126 |
+
public function getHourOptions( $date = "", $isStart = false ) {
|
1127 |
+
$hours = $this->hours();
|
1128 |
+
if( count($hours) == 12 ) $h = 'h';
|
1129 |
+
else $h = 'H';
|
1130 |
+
$options = '';
|
1131 |
+
if ( empty ( $date ) ) {
|
1132 |
+
$hour = ( $isStart ) ? '08' : '05';
|
1133 |
+
} else {
|
1134 |
+
$timestamp = strtotime( $date );
|
1135 |
+
$hour = date( $h, $timestamp );
|
1136 |
+
// fix hours if time_format has changed from what is saved
|
1137 |
+
if( preg_match('(pm|PM)', $timestamp) && $h == 'H') $hour = $hour + 12;
|
1138 |
+
if( $hour > 12 && $h == 'h' ) $hour = $hour - 12;
|
1139 |
+
|
1140 |
+
}
|
1141 |
+
foreach ( $hours as $hourText ) {
|
1142 |
+
if ( $hour == $hourText ) {
|
1143 |
+
$selected = 'selected="selected"';
|
1144 |
+
} else {
|
1145 |
+
$selected = '';
|
1146 |
+
}
|
1147 |
+
$options .= "<option value='$hourText' $selected>$hourText</option>\n";
|
1148 |
+
}
|
1149 |
+
return $options;
|
1150 |
+
}
|
1151 |
+
/**
|
1152 |
+
* Builds a set of options for displaying a minute chooser
|
1153 |
+
* @param string the current date (optional)
|
1154 |
+
* @return string a set of HTML options with minutes (current minute selected)
|
1155 |
+
*/
|
1156 |
+
public function getMinuteOptions( $date = "" ) {
|
1157 |
+
$minutes = $this->minutes();
|
1158 |
+
$options = '';
|
1159 |
+
if ( empty ( $date ) ) {
|
1160 |
+
$minute = '00';
|
1161 |
+
} else {
|
1162 |
+
$minute = date( 'i', strtotime( $date ) );
|
1163 |
+
}
|
1164 |
+
foreach ( $minutes as $minuteText ) {
|
1165 |
+
if ( $minute == $minuteText ) {
|
1166 |
+
$selected = 'selected="selected"';
|
1167 |
+
} else {
|
1168 |
+
$selected = '';
|
1169 |
+
}
|
1170 |
+
$options .= "<option value='$minuteText' $selected>$minuteText</option>\n";
|
1171 |
+
}
|
1172 |
+
return $options;
|
1173 |
+
}
|
1174 |
+
/**
|
1175 |
+
* Helper method to return an array of 1-12 for hours
|
1176 |
+
*/
|
1177 |
+
public function hours() {
|
1178 |
+
$hours = array();
|
1179 |
+
$rangeMax = ( strstr( get_option( 'time_format', self::TIMEFORMAT ), 'H' ) ) ? 23 : 12;
|
1180 |
+
foreach(range(1,$rangeMax) as $hour) {
|
1181 |
+
if ( $hour < 10 ) {
|
1182 |
+
$hour = "0".$hour;
|
1183 |
+
}
|
1184 |
+
$hours[$hour] = $hour;
|
1185 |
+
}
|
1186 |
+
return $hours;
|
1187 |
+
}
|
1188 |
+
/**
|
1189 |
+
* Helper method to return an array of 00-59 for minutes
|
1190 |
+
*/
|
1191 |
+
public static function minutes( ) {
|
1192 |
+
$minutes = array();
|
1193 |
+
for($minute=0; $minute < 60; $minute+=5) {
|
1194 |
+
if ($minute < 10) {
|
1195 |
+
$minute = "0" . $minute;
|
1196 |
+
}
|
1197 |
+
$minutes[$minute] = $minute;
|
1198 |
+
}
|
1199 |
+
return $minutes;
|
1200 |
+
}
|
1201 |
+
/**
|
1202 |
+
* Sets event options based on the current query string
|
1203 |
+
*
|
1204 |
+
* @return void
|
1205 |
+
*/
|
1206 |
+
public function setOptions( ) {
|
1207 |
+
global $wp_query;
|
1208 |
+
$display = ( isset( $wp_query->query_vars['eventDisplay'] ) ) ? $wp_query->query_vars['eventDisplay'] : eventsGetOptionValue('viewOption','month');
|
1209 |
+
switch ( $display ) {
|
1210 |
+
case "past":
|
1211 |
+
$this->displaying = "past";
|
1212 |
+
$this->startOperator = "<=";
|
1213 |
+
$this->order = "DESC";
|
1214 |
+
$this->date = date_i18n( The_Events_Calendar::DBDATETIMEFORMAT );
|
1215 |
+
break;
|
1216 |
+
case "upcoming":
|
1217 |
+
$this->displaying = "upcoming";
|
1218 |
+
$this->startOperator = ">=";
|
1219 |
+
$this->order = "ASC";
|
1220 |
+
$this->date = date_i18n( The_Events_Calendar::DBDATETIMEFORMAT );
|
1221 |
+
break;
|
1222 |
+
case "month":
|
1223 |
+
case "default":
|
1224 |
+
$this->displaying = "month";
|
1225 |
+
$this->startOperator = ">=";
|
1226 |
+
$this->order = "ASC";
|
1227 |
+
// TODO date set to YYYY-MM
|
1228 |
+
// TODO store DD as an anchor to the URL
|
1229 |
+
if ( isset ( $wp_query->query_vars['eventDate'] ) ) {
|
1230 |
+
$this->date = $wp_query->query_vars['eventDate'] . "-01";
|
1231 |
+
} else {
|
1232 |
+
$date = date_i18n( The_Events_Calendar::DBDATEFORMAT );
|
1233 |
+
$this->date = substr_replace( $date, '01', -2 );
|
1234 |
+
}
|
1235 |
+
}
|
1236 |
+
}
|
1237 |
+
public function getDateString( $date ) {
|
1238 |
+
$dateParts = split( '-', $date );
|
1239 |
+
$timestamp = mktime( 0, 0, 0, $dateParts[1], 1, $dateParts[0] );
|
1240 |
+
return date( "F Y", $timestamp );
|
1241 |
+
}
|
1242 |
+
/**
|
1243 |
+
* echo the next tab index
|
1244 |
+
* @return void
|
1245 |
+
*/
|
1246 |
+
public function tabIndex() {
|
1247 |
+
echo $this->tabIndexStart;
|
1248 |
+
$this->tabIndexStart++;
|
1249 |
+
}
|
1250 |
+
/**
|
1251 |
+
* build an ical feed from events posts
|
1252 |
+
*/
|
1253 |
+
public function iCalFeed( $postId = null ) {
|
1254 |
+
$getstring = $_GET['ical'];
|
1255 |
+
$wpTimezoneString = get_option("timezone_string");
|
1256 |
+
$categoryId = get_cat_id( The_Events_Calendar::CATEGORYNAME );
|
1257 |
+
$events = "";
|
1258 |
+
$lastBuildDate = "";
|
1259 |
+
$eventsTestArray = array();
|
1260 |
+
$blogHome = get_bloginfo('home');
|
1261 |
+
$blogName = get_bloginfo('name');
|
1262 |
+
$includePosts = ( $postId ) ? '&include=' . $postId : '';
|
1263 |
+
$eventPosts = get_posts( 'numberposts=-1&category=' . $categoryId . $includePosts );
|
1264 |
+
foreach( $eventPosts as $eventPost ) {
|
1265 |
+
// convert 2010-04-08 00:00:00 to 20100408T000000 or YYYYMMDDTHHMMSS
|
1266 |
+
$startDate = str_replace( array("-", " ", ":") , array("", "T", "") , get_post_meta( $eventPost->ID, "_EventStartDate", true) );
|
1267 |
+
$endDate = str_replace( array("-", " ", ":") , array("", "T", "") , get_post_meta( $eventPost->ID, "_EventEndDate", true) );
|
1268 |
+
if( get_post_meta( $eventPost->ID, "_EventAllDay", true ) == "yes" ) {
|
1269 |
+
$startDate = substr( $startDate, 0, 8 );
|
1270 |
+
$endDate = substr( $endDate, 0, 8 );
|
1271 |
+
// endDate bumped ahead one day to counter iCal's off-by-one error
|
1272 |
+
$endDateStamp = strtotime($endDate);
|
1273 |
+
$endDate = date( 'Ymd', $endDateStamp + 86400 );
|
1274 |
+
}
|
1275 |
+
$description = preg_replace("/[\n\t\r]/", " ", strip_tags( $eventPost->post_content ) );
|
1276 |
+
//$cost = get_post_meta( $eventPost->ID, "_EventCost", true);
|
1277 |
+
//if( $cost ) $description .= " Cost: " . $cost;
|
1278 |
+
// add fields to iCal output
|
1279 |
+
$events .= "BEGIN:VEVENT\n";
|
1280 |
+
$events .= "DTSTART:" . $startDate . "\n";
|
1281 |
+
$events .= "DTEND:" . $endDate . "\n";
|
1282 |
+
$events .= "DTSTAMP:" . date("Ymd\THis", time()) . "\n";
|
1283 |
+
$events .= "CREATED:" . str_replace( array("-", " ", ":") , array("", "T", "") , $eventPost->post_date ) . "\n";
|
1284 |
+
$events .= "LAST-MODIFIED:". str_replace( array("-", " ", ":") , array("", "T", "") , $eventPost->post_modified ) . "\n";
|
1285 |
+
$events .= "UID:" . $eventPost->ID . "@" . $blogHome . "\n";
|
1286 |
+
$events .= "SUMMARY:" . $eventPost->post_title . "\n";
|
1287 |
+
$events .= "DESCRIPTION:" . $description . "\n";
|
1288 |
+
$events .= "LOCATION:" . tec_get_event_address( $eventPost->ID ) . "\n";
|
1289 |
+
$events .= "URL:" . get_permalink( $eventPost->ID ) . "\n";
|
1290 |
+
$events .= "END:VEVENT\n";
|
1291 |
+
}
|
1292 |
+
header('Content-type: text/calendar');
|
1293 |
+
header('Content-Disposition: attachment; filename="iCal-The_Events_Calendar.ics"');
|
1294 |
+
$content = "BEGIN:VCALENDAR\n";
|
1295 |
+
$content .= "PRODID:-//" . $blogName . "//NONSGML v1.0//EN\n";
|
1296 |
+
$content .= "VERSION:2.0\n";
|
1297 |
+
$content .= "CALSCALE:GREGORIAN\n";
|
1298 |
+
$content .= "METHOD:PUBLISH\n";
|
1299 |
+
$content .= "X-WR-CALNAME:" . $blogName . "\n";
|
1300 |
+
$content .= "X-ORIGINAL-URL:" . $blogHome . "\n";
|
1301 |
+
$content .= "X-WR-CALDESC:Events for " . $blogName . "\n";
|
1302 |
+
if( $wpTimezoneString ) $content .= "X-WR-TIMEZONE:" . $wpTimezoneString . "\n";
|
1303 |
+
$content .= $events;
|
1304 |
+
$content .= "END:VCALENDAR";
|
1305 |
+
echo $content;
|
1306 |
+
exit;
|
1307 |
+
}
|
1308 |
+
public function setPostExceptionThrown( $thrown ) {
|
1309 |
+
$this->postExceptionThrown = $thrown;
|
1310 |
+
}
|
1311 |
+
public function getPostExceptionThrown() {
|
1312 |
+
return $this->postExceptionThrown;
|
1313 |
+
}
|
1314 |
+
} // end The_Events_Calendar class
|
1315 |
+
global $spEvents;
|
1316 |
+
$spEvents = new The_Events_Calendar();
|
1317 |
+
} // end if !class_exists The_Events_Calendar
|
the-events-calendar.php
CHANGED
@@ -2,2128 +2,41 @@
|
|
2 |
/*
|
3 |
Plugin Name: The Events Calendar
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/the-events-calendar/
|
5 |
-
Description: The Events Calendar plugin enables you to rapidly create and manage events using the post editor.
|
6 |
-
Version: 1.
|
7 |
Author: Shane & Peter, Inc.
|
8 |
Author URI: http://www.shaneandpeter.com/
|
9 |
Text Domain: the-events-calendar
|
10 |
*/
|
11 |
|
12 |
-
if ( !class_exists( 'The_Events_Calendar' ) ) {
|
13 |
|
14 |
-
|
15 |
-
|
16 |
-
const OPTIONNAME = 'sp_events_calendar_options';
|
17 |
-
// default formats, they are overridden by WP options or by arguments to date methods
|
18 |
-
const DATEONLYFORMAT = 'F j, Y';
|
19 |
-
const TIMEFORMAT = 'g:i A';
|
20 |
-
|
21 |
-
const DBDATEFORMAT = 'Y-m-d';
|
22 |
-
const DBDATETIMEFORMAT = 'Y-m-d g:i A';
|
23 |
-
|
24 |
-
private $defaultOptions = '';
|
25 |
-
public $latestOptions;
|
26 |
-
|
27 |
-
public $displaying;
|
28 |
-
public $pluginDir;
|
29 |
-
public $pluginUrl;
|
30 |
-
public $pluginDomain = 'the-events-calendar';
|
31 |
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
'_EventEndDate',
|
37 |
-
'_EventVenue',
|
38 |
-
'_EventCountry',
|
39 |
-
'_EventAddress',
|
40 |
-
'_EventCity',
|
41 |
-
'_EventState',
|
42 |
-
'_EventProvince',
|
43 |
-
'_EventZip',
|
44 |
-
'_EventCost',
|
45 |
-
'_EventPhone',
|
46 |
-
);
|
47 |
-
|
48 |
-
public $currentPostTimestamp;
|
49 |
-
|
50 |
-
public $daysOfWeekShort;
|
51 |
-
public $daysOfWeek;
|
52 |
-
private function constructDaysOfWeek() {
|
53 |
-
$this->daysOfWeekShort = array( __( 'Sun', $this->pluginDomain ), __( 'Mon', $this->pluginDomain ), __( 'Tue', $this->pluginDomain ), __( 'Wed', $this->pluginDomain ), __( 'Thu', $this->pluginDomain ), __( 'Fri', $this->pluginDomain ), __( 'Sat', $this->pluginDomain ) );
|
54 |
-
$this->daysOfWeek = array( __( 'Sunday', $this->pluginDomain ), __( 'Monday', $this->pluginDomain ), __( 'Tuesday', $this->pluginDomain ), __( 'Wednesday', $this->pluginDomain ), __( 'Thursday', $this->pluginDomain ), __( 'Friday', $this->pluginDomain ), __( 'Saturday', $this->pluginDomain ) );
|
55 |
-
}
|
56 |
-
|
57 |
-
private $countries;
|
58 |
-
private function constructCountries( $useDefault = true ) {
|
59 |
-
$countries = array(
|
60 |
-
"US" => __("United States", $this->pluginDomain),
|
61 |
-
"AF" => __("Afghanistan", $this->pluginDomain),
|
62 |
-
"AL" => __("Albania", $this->pluginDomain),
|
63 |
-
"DZ" => __("Algeria", $this->pluginDomain),
|
64 |
-
"AS" => __("American Samoa", $this->pluginDomain),
|
65 |
-
"AD" => __("Andorra", $this->pluginDomain),
|
66 |
-
"AO" => __("Angola", $this->pluginDomain),
|
67 |
-
"AI" => __("Anguilla", $this->pluginDomain),
|
68 |
-
"AQ" => __("Antarctica", $this->pluginDomain),
|
69 |
-
"AG" => __("Antigua And Barbuda", $this->pluginDomain),
|
70 |
-
"AR" => __("Argentina", $this->pluginDomain),
|
71 |
-
"AM" => __("Armenia", $this->pluginDomain),
|
72 |
-
"AW" => __("Aruba", $this->pluginDomain),
|
73 |
-
"AU" => __("Australia", $this->pluginDomain),
|
74 |
-
"AT" => __("Austria", $this->pluginDomain),
|
75 |
-
"AZ" => __("Azerbaijan", $this->pluginDomain),
|
76 |
-
"BS" => __("Bahamas", $this->pluginDomain),
|
77 |
-
"BH" => __("Bahrain", $this->pluginDomain),
|
78 |
-
"BD" => __("Bangladesh", $this->pluginDomain),
|
79 |
-
"BB" => __("Barbados", $this->pluginDomain),
|
80 |
-
"BY" => __("Belarus", $this->pluginDomain),
|
81 |
-
"BE" => __("Belgium", $this->pluginDomain),
|
82 |
-
"BZ" => __("Belize", $this->pluginDomain),
|
83 |
-
"BJ" => __("Benin", $this->pluginDomain),
|
84 |
-
"BM" => __("Bermuda", $this->pluginDomain),
|
85 |
-
"BT" => __("Bhutan", $this->pluginDomain),
|
86 |
-
"BO" => __("Bolivia", $this->pluginDomain),
|
87 |
-
"BA" => __("Bosnia And Herzegowina", $this->pluginDomain),
|
88 |
-
"BW" => __("Botswana", $this->pluginDomain),
|
89 |
-
"BV" => __("Bouvet Island", $this->pluginDomain),
|
90 |
-
"BR" => __("Brazil", $this->pluginDomain),
|
91 |
-
"IO" => __("British Indian Ocean Territory", $this->pluginDomain),
|
92 |
-
"BN" => __("Brunei Darussalam", $this->pluginDomain),
|
93 |
-
"BG" => __("Bulgaria", $this->pluginDomain),
|
94 |
-
"BF" => __("Burkina Faso", $this->pluginDomain),
|
95 |
-
"BI" => __("Burundi", $this->pluginDomain),
|
96 |
-
"KH" => __("Cambodia", $this->pluginDomain),
|
97 |
-
"CM" => __("Cameroon", $this->pluginDomain),
|
98 |
-
"CA" => __("Canada", $this->pluginDomain),
|
99 |
-
"CV" => __("Cape Verde", $this->pluginDomain),
|
100 |
-
"KY" => __("Cayman Islands", $this->pluginDomain),
|
101 |
-
"CF" => __("Central African Republic", $this->pluginDomain),
|
102 |
-
"TD" => __("Chad", $this->pluginDomain),
|
103 |
-
"CL" => __("Chile", $this->pluginDomain),
|
104 |
-
"CN" => __("China", $this->pluginDomain),
|
105 |
-
"CX" => __("Christmas Island", $this->pluginDomain),
|
106 |
-
"CC" => __("Cocos (Keeling) Islands", $this->pluginDomain),
|
107 |
-
"CO" => __("Colombia", $this->pluginDomain),
|
108 |
-
"KM" => __("Comoros", $this->pluginDomain),
|
109 |
-
"CG" => __("Congo", $this->pluginDomain),
|
110 |
-
"CD" => __("Congo, The Democratic Republic Of The", $this->pluginDomain),
|
111 |
-
"CK" => __("Cook Islands", $this->pluginDomain),
|
112 |
-
"CR" => __("Costa Rica", $this->pluginDomain),
|
113 |
-
"CI" => __("Cote D'Ivoire", $this->pluginDomain),
|
114 |
-
"HR" => __("Croatia (Local Name: Hrvatska)", $this->pluginDomain),
|
115 |
-
"CU" => __("Cuba", $this->pluginDomain),
|
116 |
-
"CY" => __("Cyprus", $this->pluginDomain),
|
117 |
-
"CZ" => __("Czech Republic", $this->pluginDomain),
|
118 |
-
"DK" => __("Denmark", $this->pluginDomain),
|
119 |
-
"DJ" => __("Djibouti", $this->pluginDomain),
|
120 |
-
"DM" => __("Dominica", $this->pluginDomain),
|
121 |
-
"DO" => __("Dominican Republic", $this->pluginDomain),
|
122 |
-
"TP" => __("East Timor", $this->pluginDomain),
|
123 |
-
"EC" => __("Ecuador", $this->pluginDomain),
|
124 |
-
"EG" => __("Egypt", $this->pluginDomain),
|
125 |
-
"SV" => __("El Salvador", $this->pluginDomain),
|
126 |
-
"GQ" => __("Equatorial Guinea", $this->pluginDomain),
|
127 |
-
"ER" => __("Eritrea", $this->pluginDomain),
|
128 |
-
"EE" => __("Estonia", $this->pluginDomain),
|
129 |
-
"ET" => __("Ethiopia", $this->pluginDomain),
|
130 |
-
"FK" => __("Falkland Islands (Malvinas)", $this->pluginDomain),
|
131 |
-
"FO" => __("Faroe Islands", $this->pluginDomain),
|
132 |
-
"FJ" => __("Fiji", $this->pluginDomain),
|
133 |
-
"FI" => __("Finland", $this->pluginDomain),
|
134 |
-
"FR" => __("France", $this->pluginDomain),
|
135 |
-
"FX" => __("France, Metropolitan", $this->pluginDomain),
|
136 |
-
"GF" => __("French Guiana", $this->pluginDomain),
|
137 |
-
"PF" => __("French Polynesia", $this->pluginDomain),
|
138 |
-
"TF" => __("French Southern Territories", $this->pluginDomain),
|
139 |
-
"GA" => __("Gabon", $this->pluginDomain),
|
140 |
-
"GM" => __("Gambia", $this->pluginDomain),
|
141 |
-
"GE" => __("Georgia", $this->pluginDomain),
|
142 |
-
"DE" => __("Germany", $this->pluginDomain),
|
143 |
-
"GH" => __("Ghana", $this->pluginDomain),
|
144 |
-
"GI" => __("Gibraltar", $this->pluginDomain),
|
145 |
-
"GR" => __("Greece", $this->pluginDomain),
|
146 |
-
"GL" => __("Greenland", $this->pluginDomain),
|
147 |
-
"GD" => __("Grenada", $this->pluginDomain),
|
148 |
-
"GP" => __("Guadeloupe", $this->pluginDomain),
|
149 |
-
"GU" => __("Guam", $this->pluginDomain),
|
150 |
-
"GT" => __("Guatemala", $this->pluginDomain),
|
151 |
-
"GN" => __("Guinea", $this->pluginDomain),
|
152 |
-
"GW" => __("Guinea-Bissau", $this->pluginDomain),
|
153 |
-
"GY" => __("Guyana", $this->pluginDomain),
|
154 |
-
"HT" => __("Haiti", $this->pluginDomain),
|
155 |
-
"HM" => __("Heard And Mc Donald Islands", $this->pluginDomain),
|
156 |
-
"VA" => __("Holy See (Vatican City State)", $this->pluginDomain),
|
157 |
-
"HN" => __("Honduras", $this->pluginDomain),
|
158 |
-
"HK" => __("Hong Kong", $this->pluginDomain),
|
159 |
-
"HU" => __("Hungary", $this->pluginDomain),
|
160 |
-
"IS" => __("Iceland", $this->pluginDomain),
|
161 |
-
"IN" => __("India", $this->pluginDomain),
|
162 |
-
"ID" => __("Indonesia", $this->pluginDomain),
|
163 |
-
"IR" => __("Iran (Islamic Republic Of)", $this->pluginDomain),
|
164 |
-
"IQ" => __("Iraq", $this->pluginDomain),
|
165 |
-
"IE" => __("Ireland", $this->pluginDomain),
|
166 |
-
"IL" => __("Israel", $this->pluginDomain),
|
167 |
-
"IT" => __("Italy", $this->pluginDomain),
|
168 |
-
"JM" => __("Jamaica", $this->pluginDomain),
|
169 |
-
"JP" => __("Japan", $this->pluginDomain),
|
170 |
-
"JO" => __("Jordan", $this->pluginDomain),
|
171 |
-
"KZ" => __("Kazakhstan", $this->pluginDomain),
|
172 |
-
"KE" => __("Kenya", $this->pluginDomain),
|
173 |
-
"KI" => __("Kiribati", $this->pluginDomain),
|
174 |
-
"KP" => __("Korea, Democratic People's Republic Of", $this->pluginDomain),
|
175 |
-
"KR" => __("Korea, Republic Of", $this->pluginDomain),
|
176 |
-
"KW" => __("Kuwait", $this->pluginDomain),
|
177 |
-
"KG" => __("Kyrgyzstan", $this->pluginDomain),
|
178 |
-
"LA" => __("Lao People's Democratic Republic", $this->pluginDomain),
|
179 |
-
"LV" => __("Latvia", $this->pluginDomain),
|
180 |
-
"LB" => __("Lebanon", $this->pluginDomain),
|
181 |
-
"LS" => __("Lesotho", $this->pluginDomain),
|
182 |
-
"LR" => __("Liberia", $this->pluginDomain),
|
183 |
-
"LY" => __("Libyan Arab Jamahiriya", $this->pluginDomain),
|
184 |
-
"LI" => __("Liechtenstein", $this->pluginDomain),
|
185 |
-
"LT" => __("Lithuania", $this->pluginDomain),
|
186 |
-
"LU" => __("Luxembourg", $this->pluginDomain),
|
187 |
-
"MO" => __("Macau", $this->pluginDomain),
|
188 |
-
"MK" => __("Macedonia, Former Yugoslav Republic Of", $this->pluginDomain),
|
189 |
-
"MG" => __("Madagascar", $this->pluginDomain),
|
190 |
-
"MW" => __("Malawi", $this->pluginDomain),
|
191 |
-
"MY" => __("Malaysia", $this->pluginDomain),
|
192 |
-
"MV" => __("Maldives", $this->pluginDomain),
|
193 |
-
"ML" => __("Mali", $this->pluginDomain),
|
194 |
-
"MT" => __("Malta", $this->pluginDomain),
|
195 |
-
"MH" => __("Marshall Islands", $this->pluginDomain),
|
196 |
-
"MQ" => __("Martinique", $this->pluginDomain),
|
197 |
-
"MR" => __("Mauritania", $this->pluginDomain),
|
198 |
-
"MU" => __("Mauritius", $this->pluginDomain),
|
199 |
-
"YT" => __("Mayotte", $this->pluginDomain),
|
200 |
-
"MX" => __("Mexico", $this->pluginDomain),
|
201 |
-
"FM" => __("Micronesia, Federated States Of", $this->pluginDomain),
|
202 |
-
"MD" => __("Moldova, Republic Of", $this->pluginDomain),
|
203 |
-
"MC" => __("Monaco", $this->pluginDomain),
|
204 |
-
"MN" => __("Mongolia", $this->pluginDomain),
|
205 |
-
"MS" => __("Montserrat", $this->pluginDomain),
|
206 |
-
"MA" => __("Morocco", $this->pluginDomain),
|
207 |
-
"MZ" => __("Mozambique", $this->pluginDomain),
|
208 |
-
"MM" => __("Myanmar", $this->pluginDomain),
|
209 |
-
"NA" => __("Namibia", $this->pluginDomain),
|
210 |
-
"NR" => __("Nauru", $this->pluginDomain),
|
211 |
-
"NP" => __("Nepal", $this->pluginDomain),
|
212 |
-
"NL" => __("Netherlands", $this->pluginDomain),
|
213 |
-
"AN" => __("Netherlands Antilles", $this->pluginDomain),
|
214 |
-
"NC" => __("New Caledonia", $this->pluginDomain),
|
215 |
-
"NZ" => __("New Zealand", $this->pluginDomain),
|
216 |
-
"NI" => __("Nicaragua", $this->pluginDomain),
|
217 |
-
"NE" => __("Niger", $this->pluginDomain),
|
218 |
-
"NG" => __("Nigeria", $this->pluginDomain),
|
219 |
-
"NU" => __("Niue", $this->pluginDomain),
|
220 |
-
"NF" => __("Norfolk Island", $this->pluginDomain),
|
221 |
-
"MP" => __("Northern Mariana Islands", $this->pluginDomain),
|
222 |
-
"NO" => __("Norway", $this->pluginDomain),
|
223 |
-
"OM" => __("Oman", $this->pluginDomain),
|
224 |
-
"PK" => __("Pakistan", $this->pluginDomain),
|
225 |
-
"PW" => __("Palau", $this->pluginDomain),
|
226 |
-
"PA" => __("Panama", $this->pluginDomain),
|
227 |
-
"PG" => __("Papua New Guinea", $this->pluginDomain),
|
228 |
-
"PY" => __("Paraguay", $this->pluginDomain),
|
229 |
-
"PE" => __("Peru", $this->pluginDomain),
|
230 |
-
"PH" => __("Philippines", $this->pluginDomain),
|
231 |
-
"PN" => __("Pitcairn", $this->pluginDomain),
|
232 |
-
"PL" => __("Poland", $this->pluginDomain),
|
233 |
-
"PT" => __("Portugal", $this->pluginDomain),
|
234 |
-
"PR" => __("Puerto Rico", $this->pluginDomain),
|
235 |
-
"QA" => __("Qatar", $this->pluginDomain),
|
236 |
-
"RE" => __("Reunion", $this->pluginDomain),
|
237 |
-
"RO" => __("Romania", $this->pluginDomain),
|
238 |
-
"RU" => __("Russian Federation", $this->pluginDomain),
|
239 |
-
"RW" => __("Rwanda", $this->pluginDomain),
|
240 |
-
"KN" => __("Saint Kitts And Nevis", $this->pluginDomain),
|
241 |
-
"LC" => __("Saint Lucia", $this->pluginDomain),
|
242 |
-
"VC" => __("Saint Vincent And The Grenadines", $this->pluginDomain),
|
243 |
-
"WS" => __("Samoa", $this->pluginDomain),
|
244 |
-
"SM" => __("San Marino", $this->pluginDomain),
|
245 |
-
"ST" => __("Sao Tome And Principe", $this->pluginDomain),
|
246 |
-
"SA" => __("Saudi Arabia", $this->pluginDomain),
|
247 |
-
"SN" => __("Senegal", $this->pluginDomain),
|
248 |
-
"SC" => __("Seychelles", $this->pluginDomain),
|
249 |
-
"SL" => __("Sierra Leone", $this->pluginDomain),
|
250 |
-
"SG" => __("Singapore", $this->pluginDomain),
|
251 |
-
"SK" => __("Slovakia (Slovak Republic)", $this->pluginDomain),
|
252 |
-
"SI" => __("Slovenia", $this->pluginDomain),
|
253 |
-
"SB" => __("Solomon Islands", $this->pluginDomain),
|
254 |
-
"SO" => __("Somalia", $this->pluginDomain),
|
255 |
-
"ZA" => __("South Africa", $this->pluginDomain),
|
256 |
-
"GS" => __("South Georgia, South Sandwich Islands", $this->pluginDomain),
|
257 |
-
"ES" => __("Spain", $this->pluginDomain),
|
258 |
-
"LK" => __("Sri Lanka", $this->pluginDomain),
|
259 |
-
"SH" => __("St. Helena", $this->pluginDomain),
|
260 |
-
"PM" => __("St. Pierre And Miquelon", $this->pluginDomain),
|
261 |
-
"SD" => __("Sudan", $this->pluginDomain),
|
262 |
-
"SR" => __("Suriname", $this->pluginDomain),
|
263 |
-
"SJ" => __("Svalbard And Jan Mayen Islands", $this->pluginDomain),
|
264 |
-
"SZ" => __("Swaziland", $this->pluginDomain),
|
265 |
-
"SE" => __("Sweden", $this->pluginDomain),
|
266 |
-
"CH" => __("Switzerland", $this->pluginDomain),
|
267 |
-
"SY" => __("Syrian Arab Republic", $this->pluginDomain),
|
268 |
-
"TW" => __("Taiwan", $this->pluginDomain),
|
269 |
-
"TJ" => __("Tajikistan", $this->pluginDomain),
|
270 |
-
"TZ" => __("Tanzania, United Republic Of", $this->pluginDomain),
|
271 |
-
"TH" => __("Thailand", $this->pluginDomain),
|
272 |
-
"TG" => __("Togo", $this->pluginDomain),
|
273 |
-
"TK" => __("Tokelau", $this->pluginDomain),
|
274 |
-
"TO" => __("Tonga", $this->pluginDomain),
|
275 |
-
"TT" => __("Trinidad And Tobago", $this->pluginDomain),
|
276 |
-
"TN" => __("Tunisia", $this->pluginDomain),
|
277 |
-
"TR" => __("Turkey", $this->pluginDomain),
|
278 |
-
"TM" => __("Turkmenistan", $this->pluginDomain),
|
279 |
-
"TC" => __("Turks And Caicos Islands", $this->pluginDomain),
|
280 |
-
"TV" => __("Tuvalu", $this->pluginDomain),
|
281 |
-
"UG" => __("Uganda", $this->pluginDomain),
|
282 |
-
"UA" => __("Ukraine", $this->pluginDomain),
|
283 |
-
"AE" => __("United Arab Emirates", $this->pluginDomain),
|
284 |
-
"GB" => __("United Kingdom", $this->pluginDomain),
|
285 |
-
"UM" => __("United States Minor Outlying Islands", $this->pluginDomain),
|
286 |
-
"UY" => __("Uruguay", $this->pluginDomain),
|
287 |
-
"UZ" => __("Uzbekistan", $this->pluginDomain),
|
288 |
-
"VU" => __("Vanuatu", $this->pluginDomain),
|
289 |
-
"VE" => __("Venezuela", $this->pluginDomain),
|
290 |
-
"VN" => __("Viet Nam", $this->pluginDomain),
|
291 |
-
"VG" => __("Virgin Islands (British)", $this->pluginDomain),
|
292 |
-
"VI" => __("Virgin Islands (U.S.)", $this->pluginDomain),
|
293 |
-
"WF" => __("Wallis And Futuna Islands", $this->pluginDomain),
|
294 |
-
"EH" => __("Western Sahara", $this->pluginDomain),
|
295 |
-
"YE" => __("Yemen", $this->pluginDomain),
|
296 |
-
"YU" => __("Yugoslavia", $this->pluginDomain),
|
297 |
-
"ZM" => __("Zambia", $this->pluginDomain),
|
298 |
-
"ZW" => __("Zimbabwe", $this->pluginDomain)
|
299 |
-
);
|
300 |
-
if ($useDefault) {
|
301 |
-
$defaultCountry = eventsGetOptionValue('defaultCountry');
|
302 |
-
if($defaultCountry) {
|
303 |
-
asort($countries);
|
304 |
-
$countries = array($defaultCountry[0] => __($defaultCountry[1], $this->pluginDomain)) + $countries;
|
305 |
-
array_unique($countries);
|
306 |
-
}
|
307 |
-
$this->countries = $countries;
|
308 |
-
} else {
|
309 |
-
$this->countries = $countries;
|
310 |
-
}
|
311 |
-
}
|
312 |
-
|
313 |
-
/**
|
314 |
-
* Initializes plugin variables and sets up wordpress hooks/actions.
|
315 |
-
*
|
316 |
-
* @return void
|
317 |
-
*/
|
318 |
-
function __construct( ) {
|
319 |
-
$this->currentDay = '';
|
320 |
-
$this->pluginDir = basename(dirname(__FILE__));
|
321 |
-
$this->pluginUrl = WP_CONTENT_URL.'/plugins/'.plugin_basename(dirname(__FILE__));
|
322 |
-
$this->errors = '';
|
323 |
-
register_activation_hook( __FILE__, array( &$this, 'on_activate' ) );
|
324 |
-
register_deactivation_hook( __FILE__, array( &$this, 'on_deactivate' ) );
|
325 |
-
add_action( 'reschedule_event_post', array( $this, 'reschedule') );
|
326 |
-
add_action( 'init', array( $this, 'loadPluginTextDomain' ) );
|
327 |
-
add_action( 'init', array( $this, 'flushRewriteRules' ) );
|
328 |
-
add_action( 'pre_get_posts', array( $this, 'setOptions' ) );
|
329 |
-
add_action( 'admin_menu', array( $this, 'addOptionsPage' ) );
|
330 |
-
add_action( 'admin_init', array( $this, 'checkForOptionsChanges' ) );
|
331 |
-
add_action( 'wp_ajax_hideDonate', array( $this, 'storeHideDonate'));
|
332 |
-
add_action( 'admin_menu', array( $this, 'addEventBox' ) );
|
333 |
-
add_action( 'save_post', array( $this, 'addEventMeta' ), 15 );
|
334 |
-
add_action( 'publish_post', array( $this, 'addEventMeta' ), 15 );
|
335 |
-
add_filter( 'generate_rewrite_rules', array( $this, 'filterRewriteRules' ) );
|
336 |
-
add_filter( 'query_vars', array( $this, 'eventQueryVars' ) );
|
337 |
-
add_filter( 'posts_join', array( $this, 'events_search_join' ) );
|
338 |
-
add_filter( 'posts_where', array( $this, 'events_search_where' ) );
|
339 |
-
add_filter( 'posts_orderby', array( $this, 'events_search_orderby' ) );
|
340 |
-
add_filter( 'posts_fields', array( $this, 'events_search_fields' ) );
|
341 |
-
add_filter( 'post_limits', array( $this, 'events_search_limits' ) );
|
342 |
-
add_action( 'template_redirect', array($this, 'templateChooser' ) );
|
343 |
-
}
|
344 |
-
|
345 |
-
public function addOptionsPage() {
|
346 |
-
add_options_page('The Events Calendar', 'The Events Calendar', 'administrator', basename(__FILE__), array($this,'optionsPageView'));
|
347 |
-
}
|
348 |
-
|
349 |
-
public function optionsPageView() {
|
350 |
-
include( dirname( __FILE__ ) . '/views/events-options.php' );
|
351 |
-
}
|
352 |
-
|
353 |
-
public function checkForOptionsChanges() {
|
354 |
-
if (isset($_POST['saveEventsCalendarOptions']) && check_admin_referer('saveEventsCalendarOptions')) {
|
355 |
-
$options = $this->getOptions();
|
356 |
-
$options['viewOption'] = $_POST['viewOption'];
|
357 |
-
if($_POST['defaultCountry']) {
|
358 |
-
$this->constructCountries();
|
359 |
-
$defaultCountryKey = array_search($_POST['defaultCountry'],$this->countries);
|
360 |
-
$options['defaultCountry'] = array($defaultCountryKey,$_POST['defaultCountry']);
|
361 |
-
}
|
362 |
-
|
363 |
-
$options['embedGoogleMaps'] = $_POST['embedGoogleMaps'];
|
364 |
-
if($_POST['embedGoogleMapsHeight']) {
|
365 |
-
$options['embedGoogleMapsHeight'] = $_POST['embedGoogleMapsHeight'];
|
366 |
-
$options['embedGoogleMapsWidth'] = $_POST['embedGoogleMapsWidth'];
|
367 |
-
}
|
368 |
-
|
369 |
-
$options['showComments'] = $_POST['showComments'];
|
370 |
-
$options['resetEventPostDate'] = $_POST['resetEventPostDate'];
|
371 |
-
|
372 |
-
do_action( 'sp-events-save-more-options' );
|
373 |
-
|
374 |
-
$this->saveOptions($options);
|
375 |
-
$this->latestOptions = $options;
|
376 |
-
|
377 |
-
} // end if
|
378 |
-
}
|
379 |
-
|
380 |
-
public function storeHideDonate() {
|
381 |
-
if ( $_POST['donateHidden'] ) {
|
382 |
-
$options = $this->getOptions();
|
383 |
-
$options['donateHidden'] = true;
|
384 |
-
|
385 |
-
$this->saveOptions($options);
|
386 |
-
|
387 |
-
} // end if
|
388 |
-
}
|
389 |
-
|
390 |
-
/// OPTIONS DATA
|
391 |
-
|
392 |
-
public function getOptions() {
|
393 |
-
if ('' === $this->defaultOptions) {
|
394 |
-
$this->defaultOptions = get_option(The_Events_Calendar::OPTIONNAME, array());
|
395 |
-
}
|
396 |
-
return $this->defaultOptions;
|
397 |
-
}
|
398 |
-
|
399 |
-
private function saveOptions($options) {
|
400 |
-
if (!is_array($options)) {
|
401 |
-
return;
|
402 |
-
}
|
403 |
-
if ( update_option(The_Events_Calendar::OPTIONNAME, $options) ) {
|
404 |
-
$this->latestOptions = $options;
|
405 |
-
} else {
|
406 |
-
$this->latestOptions = $this->getOptions();
|
407 |
-
}
|
408 |
-
}
|
409 |
-
|
410 |
-
public function deleteOptions() {
|
411 |
-
delete_option(The_Events_Calendar::OPTIONNAME);
|
412 |
-
}
|
413 |
-
|
414 |
-
public function templateChooser() {
|
415 |
-
$this->constructDaysOfWeek();
|
416 |
-
if( !is_feed() ) {
|
417 |
-
// list view
|
418 |
-
if ( $this->in_event_category() && ( events_displaying_upcoming() || events_displaying_past() ) ) {
|
419 |
-
if (file_exists(TEMPLATEPATH.'/events/list.php') ) {
|
420 |
-
include (TEMPLATEPATH.'/events/list.php');
|
421 |
-
}
|
422 |
-
else {
|
423 |
-
include dirname( __FILE__ ) . '/views/list.php';
|
424 |
-
}
|
425 |
-
exit;
|
426 |
-
}
|
427 |
-
|
428 |
-
// grid view
|
429 |
-
if ( $this->in_event_category() ) {
|
430 |
-
if (file_exists(TEMPLATEPATH.'/events/gridview.php') ) {
|
431 |
-
include (TEMPLATEPATH.'/events/gridview.php');
|
432 |
-
}
|
433 |
-
else {
|
434 |
-
include dirname( __FILE__ ) . '/views/gridview.php';
|
435 |
-
}
|
436 |
-
exit;
|
437 |
-
}
|
438 |
-
|
439 |
-
// single event
|
440 |
-
if (is_single() && in_category( $this->eventCategory() ) ) {
|
441 |
-
if (file_exists(TEMPLATEPATH.'/events/single.php') ) {
|
442 |
-
include (TEMPLATEPATH.'/events/single.php');
|
443 |
-
}
|
444 |
-
else {
|
445 |
-
include trailingslashit( WP_PLUGIN_DIR ) . trailingslashit( plugin_basename( dirname( __FILE__ ) ) ) . 'views/single.php';
|
446 |
-
}
|
447 |
-
exit;
|
448 |
-
}
|
449 |
-
} // if is_feed()
|
450 |
-
}
|
451 |
-
|
452 |
-
public function loadStylesAndScripts( ) {
|
453 |
-
$eventsURL = trailingslashit( WP_PLUGIN_URL ) . trailingslashit( plugin_basename( dirname( __FILE__ ) ) ) . 'resources/';
|
454 |
-
|
455 |
-
wp_enqueue_script('sp-events-calendar-script', $eventsURL.'events.js', array('jquery') );
|
456 |
-
wp_enqueue_style('sp-events-calendar-style', $eventsURL.'events.css');
|
457 |
-
|
458 |
-
}
|
459 |
-
|
460 |
-
// works around a bug where setting category base to null doesn't allow get_option to return a default value
|
461 |
-
public function getCategoryBase() {
|
462 |
-
$category_base = get_option('category_base', 'category');
|
463 |
-
return ( empty( $category_base ) ) ? 'category' : $category_base;
|
464 |
-
}
|
465 |
-
|
466 |
-
public function truncate($text, $excerpt_length = 44) {
|
467 |
-
|
468 |
-
$text = strip_shortcodes( $text );
|
469 |
-
|
470 |
-
$text = apply_filters('the_content', $text);
|
471 |
-
$text = str_replace(']]>', ']]>', $text);
|
472 |
-
$text = strip_tags($text);
|
473 |
-
|
474 |
-
$words = explode(' ', $text, $excerpt_length + 1);
|
475 |
-
if (count($words) > $excerpt_length) {
|
476 |
-
array_pop($words);
|
477 |
-
$text = implode(' ', $words);
|
478 |
-
$text = rtrim($text);
|
479 |
-
$text .= '…';
|
480 |
-
}
|
481 |
-
|
482 |
-
return $text;
|
483 |
-
}
|
484 |
-
|
485 |
-
public function loadPluginTextDomain() {
|
486 |
-
load_plugin_textdomain( $this->pluginDomain, false, basename(dirname(__FILE__)) . '/lang/');
|
487 |
-
}
|
488 |
-
|
489 |
-
/**
|
490 |
-
* Helper method to return an array of 1-12 for months
|
491 |
-
*/
|
492 |
-
public function months( ) {
|
493 |
-
$months = array();
|
494 |
-
foreach( range( 1, 12 ) as $month ) {
|
495 |
-
$months[ $month ] = $month;
|
496 |
-
}
|
497 |
-
return $months;
|
498 |
-
}
|
499 |
-
|
500 |
-
/**
|
501 |
-
* Helper method to return an array of translated month names or short month names
|
502 |
-
* @return Array translated month names
|
503 |
-
*/
|
504 |
-
public function monthNames( $short = false ) {
|
505 |
-
if($short) {
|
506 |
-
$months = array( 'Jan' => __('Jan', $this->pluginDomain),
|
507 |
-
'Feb' => __('Feb', $this->pluginDomain),
|
508 |
-
'Mar' => __('Mar', $this->pluginDomain),
|
509 |
-
'Apr' => __('Apr', $this->pluginDomain),
|
510 |
-
'May' => __('May', $this->pluginDomain),
|
511 |
-
'Jun' => __('Jun', $this->pluginDomain),
|
512 |
-
'Jul' => __('Jul', $this->pluginDomain),
|
513 |
-
'Aug' => __('Aug', $this->pluginDomain),
|
514 |
-
'Sep' => __('Sep', $this->pluginDomain),
|
515 |
-
'Oct' => __('Oct', $this->pluginDomain),
|
516 |
-
'Nov' => __('Nov', $this->pluginDomain),
|
517 |
-
'Dec' => __('Dec', $this->pluginDomain)
|
518 |
-
);
|
519 |
-
} else {
|
520 |
-
$months = array( 'January' => __('January', $this->pluginDomain),
|
521 |
-
'February' => __('February', $this->pluginDomain),
|
522 |
-
'March' => __('March', $this->pluginDomain),
|
523 |
-
'April' => __('April', $this->pluginDomain),
|
524 |
-
'May' => __('May', $this->pluginDomain),
|
525 |
-
'June' => __('June', $this->pluginDomain),
|
526 |
-
'July' => __('July', $this->pluginDomain),
|
527 |
-
'August' => __('August', $this->pluginDomain),
|
528 |
-
'September' => __('September', $this->pluginDomain),
|
529 |
-
'October' => __('October', $this->pluginDomain),
|
530 |
-
'November' => __('November', $this->pluginDomain),
|
531 |
-
'December' => __('December', $this->pluginDomain)
|
532 |
-
);
|
533 |
-
}
|
534 |
-
return $months;
|
535 |
-
}
|
536 |
-
|
537 |
-
/**
|
538 |
-
* Helper method to return an array of 1-31 for days
|
539 |
-
*/
|
540 |
-
public function days( $totalDays ) {
|
541 |
-
$days = array();
|
542 |
-
foreach( range( 1, $totalDays ) as $day ) {
|
543 |
-
$days[ $day ] = $day;
|
544 |
-
}
|
545 |
-
return $days;
|
546 |
-
}
|
547 |
-
|
548 |
-
/**
|
549 |
-
* Helper method to return an array of years, back 2 and forward 5
|
550 |
-
*/
|
551 |
-
public function years( ) {
|
552 |
-
$year = ( int )date_i18n( 'Y' );
|
553 |
-
// Back two years, forward 5
|
554 |
-
$year_list = array( $year - 5, $year - 4, $year - 3, $year - 2, $year - 1, $year, $year + 1, $year + 2, $year + 3, $year + 4, $year + 5 );
|
555 |
-
$years = array();
|
556 |
-
foreach( $year_list as $single_year ) {
|
557 |
-
$years[ $single_year ] = $single_year;
|
558 |
-
}
|
559 |
-
|
560 |
-
return $years;
|
561 |
-
}
|
562 |
-
|
563 |
-
/**
|
564 |
-
* Creates the category and sets up the theme resource folder with sample config files.
|
565 |
-
*
|
566 |
-
* @return void
|
567 |
-
*/
|
568 |
-
public function on_activate( ) {
|
569 |
-
$now = time();
|
570 |
-
$firstTime = $now - ($now % 66400);
|
571 |
-
wp_schedule_event( $firstTime, 'daily', 'reschedule_event_post'); // schedule this for midnight, daily
|
572 |
-
$this->create_category_if_not_exists( );
|
573 |
-
}
|
574 |
-
/**
|
575 |
-
* This function is scheduled to run at midnight. If any posts are set with EventStartDate
|
576 |
-
* to today, update the post so that it was posted today. This will force the event to be
|
577 |
-
* displayed in the main loop on the homepage.
|
578 |
-
*
|
579 |
-
* @return void
|
580 |
-
*/
|
581 |
-
public function reschedule( ) {
|
582 |
-
$resetEventPostDate = eventsGetOptionValue('resetEventPostDate', 'off');
|
583 |
-
if( $resetEventPostDate == 'off' ){
|
584 |
-
return;
|
585 |
-
}
|
586 |
-
global $wpdb;
|
587 |
-
$query = "
|
588 |
-
SELECT * FROM $wpdb->posts
|
589 |
-
LEFT JOIN $wpdb->postmeta ON($wpdb->posts.ID = $wpdb->postmeta.post_id)
|
590 |
-
WHERE
|
591 |
-
$wpdb->postmeta.meta_key = '_EventStartDate'
|
592 |
-
AND $wpdb->postmeta.meta_value = CURRENT_DATE()";
|
593 |
-
$return = $wpdb->get_results($query, OBJECT);
|
594 |
-
if ( is_array( $return ) && count( $return ) ) {
|
595 |
-
foreach ( $return as $row ) {
|
596 |
-
$updateQuery = "UPDATE $wpdb->posts SET post_date = NOW() WHERE $wpdb->posts.ID = " . $row->ID;
|
597 |
-
$wpdb->query( $updateQuery );
|
598 |
-
}
|
599 |
-
}
|
600 |
-
}
|
601 |
-
/**
|
602 |
-
* fields filter for standard wordpress templates. Adds the start and end date to queries in the
|
603 |
-
* events category
|
604 |
-
*
|
605 |
-
* @param string fields
|
606 |
-
* @param string modified fields for events queries
|
607 |
-
*/
|
608 |
-
public function events_search_fields( $fields ) {
|
609 |
-
if( !$this->in_event_category() ) {
|
610 |
-
return $fields;
|
611 |
-
}
|
612 |
-
global $wpdb;
|
613 |
-
$fields .= ', eventStart.meta_value as EventStartDate, eventEnd.meta_value as EventEndDate ';
|
614 |
-
return $fields;
|
615 |
-
|
616 |
-
}
|
617 |
-
/**
|
618 |
-
* join filter for standard wordpress templates. Adds the postmeta tables for start and end queries
|
619 |
-
*
|
620 |
-
* @param string join clause
|
621 |
-
* @return string modified join clause
|
622 |
-
*/
|
623 |
-
public function events_search_join( $join ) {
|
624 |
-
if( !$this->in_event_category() ) {
|
625 |
-
return $join;
|
626 |
-
}
|
627 |
-
global $wpdb;
|
628 |
-
$join .= "LEFT JOIN {$wpdb->postmeta} as eventStart ON( {$wpdb->posts}.ID = eventStart.post_id ) ";
|
629 |
-
$join .= "LEFT JOIN {$wpdb->postmeta} as eventEnd ON( {$wpdb->posts}.ID = eventEnd.post_id ) ";
|
630 |
-
return $join;
|
631 |
-
}
|
632 |
-
/**
|
633 |
-
* where filter for standard wordpress templates. Inspects the event options and filters
|
634 |
-
* event posts for upcoming or past event loops
|
635 |
-
*
|
636 |
-
* @param string where clause
|
637 |
-
* @return string modified where clause
|
638 |
-
*/
|
639 |
-
public function events_search_where( $where ) {
|
640 |
-
if( !$this->in_event_category() ) {
|
641 |
-
return $where;
|
642 |
-
}
|
643 |
-
$where .= ' AND ( eventStart.meta_key = "_EventStartDate" AND eventEnd.meta_key = "_EventEndDate" ) ';
|
644 |
-
if( events_displaying_month( ) ) {}
|
645 |
-
if( events_displaying_upcoming( ) ) {
|
646 |
-
// Is the start date in the future?
|
647 |
-
$where .= ' AND ( eventStart.meta_value > "'.$this->date.'" ';
|
648 |
-
// Or is the start date in the past but the end date in the future? (meaning the event is currently ongoing)
|
649 |
-
$where .= ' OR ( eventStart.meta_value < "'.$this->date.'" AND eventEnd.meta_value > "'.$this->date.'" ) ) ';
|
650 |
-
}
|
651 |
-
if( events_displaying_past( ) ) {
|
652 |
-
// Is the start date in the past?
|
653 |
-
$where .= ' AND eventStart.meta_value < "'.$this->date.'" ';
|
654 |
-
}
|
655 |
-
return $where;
|
656 |
-
}
|
657 |
-
/**
|
658 |
-
* @return bool true if is_category() is on a child of the events category
|
659 |
-
*/
|
660 |
-
public function in_event_category( ) {
|
661 |
-
if( is_category( The_Events_Calendar::CATEGORYNAME ) ) {
|
662 |
-
return true;
|
663 |
-
}
|
664 |
-
$cat_id = get_query_var( 'cat' );
|
665 |
-
if( $cat_id == $this->eventCategory() ) {
|
666 |
-
return true;
|
667 |
-
}
|
668 |
-
$cats = get_categories('child_of=' . $this->eventCategory());
|
669 |
-
$is_child = false;
|
670 |
-
foreach( $cats as $cat ) {
|
671 |
-
if( is_category( $cat->name ) ) {
|
672 |
-
$is_child = true;
|
673 |
-
}
|
674 |
-
}
|
675 |
-
return $is_child;
|
676 |
-
}
|
677 |
-
/**
|
678 |
-
* orderby filter for standard wordpress templates. Adds event ordering for queries that are
|
679 |
-
* in the events category and filtered according to the search parameters
|
680 |
-
*
|
681 |
-
* @param string orderby
|
682 |
-
* @return string modified orderby clause
|
683 |
-
*/
|
684 |
-
public function events_search_orderby( $orderby ) {
|
685 |
-
if( !$this->in_event_category() ) {
|
686 |
-
return $orderby;
|
687 |
-
}
|
688 |
-
global $wpdb;
|
689 |
-
$orderby = ' eventStart.meta_value '.$this->order;
|
690 |
-
return $orderby;
|
691 |
-
|
692 |
-
}
|
693 |
-
/**
|
694 |
-
* limit filter for standard wordpress templates. Adds limit clauses for pagination
|
695 |
-
* for queries in the events category
|
696 |
-
*
|
697 |
-
* @param string limits clause
|
698 |
-
* @return string modified limits clause
|
699 |
-
*/
|
700 |
-
public function events_search_limits( $limits ) {
|
701 |
-
if( !$this->in_event_category() ) {
|
702 |
-
return $limits;
|
703 |
-
}
|
704 |
-
global $wpdb, $wp_query, $paged;
|
705 |
-
if (empty($paged)) {
|
706 |
-
$paged = 1;
|
707 |
-
}
|
708 |
-
$posts_per_page = intval( get_option('posts_per_page') );
|
709 |
-
$paged = get_query_var('paged') ? intval( get_query_var('paged') ) : 1;
|
710 |
-
$pgstrt = ( ( $paged - 1 ) * $posts_per_page ) . ', ';
|
711 |
-
$limits = 'LIMIT ' . $pgstrt . $posts_per_page;
|
712 |
-
return $limits;
|
713 |
-
}
|
714 |
-
/**
|
715 |
-
* Gets the Category id to use for an Event
|
716 |
-
* @return int|false Category id to use or false is none is set
|
717 |
-
*/
|
718 |
-
static function eventCategory() {
|
719 |
-
return get_cat_id( The_Events_Calendar::CATEGORYNAME );
|
720 |
-
}
|
721 |
-
/**
|
722 |
-
* undocumented
|
723 |
-
*/
|
724 |
-
public function flushRewriteRules()
|
725 |
-
{
|
726 |
-
global $wp_rewrite;
|
727 |
-
$wp_rewrite->flush_rules();
|
728 |
-
}
|
729 |
-
/**
|
730 |
-
* Adds the event specific query vars to Wordpress
|
731 |
-
*
|
732 |
-
* @return mixed array of query variables that this plugin understands
|
733 |
-
*/
|
734 |
-
public function eventQueryVars( $qvars ) {
|
735 |
-
$qvars[] = 'eventDisplay';
|
736 |
-
$qvars[] = 'eventDate';
|
737 |
-
return $qvars;
|
738 |
-
}
|
739 |
-
/**
|
740 |
-
* Adds Event specific rewrite rules.
|
741 |
-
*
|
742 |
-
* events/ => /?cat=27
|
743 |
-
* events/month => /?cat=27&eventDisplay=month
|
744 |
-
* events/upcoming => /?cat=27&eventDisplay=upcoming
|
745 |
-
* events/past => /?cat=27&eventDisplay=past
|
746 |
-
* events/2008-01/#15 => /?cat=27&eventDisplay=bydate&eventDate=2008-01-01
|
747 |
-
*
|
748 |
-
* @return void
|
749 |
-
*/
|
750 |
-
public function filterRewriteRules( $wp_rewrite ) {
|
751 |
-
$categoryId = get_cat_id( The_Events_Calendar::CATEGORYNAME );
|
752 |
-
$category_base = $this->getCategoryBase();
|
753 |
-
$newRules = array(
|
754 |
-
|
755 |
-
$category_base . '/' . strtolower( The_Events_Calendar::CATEGORYNAME ) . '/month' => 'index.php?cat=' . $categoryId . '&eventDisplay=month',
|
756 |
-
$category_base . '/' . strtolower( The_Events_Calendar::CATEGORYNAME ) . '/upcoming/page/(\d+)' => 'index.php?cat=' . $categoryId . '&eventDisplay=upcoming&paged=' . $wp_rewrite->preg_index(1),
|
757 |
-
$category_base . '/' . strtolower( The_Events_Calendar::CATEGORYNAME ) . '/upcoming' => 'index.php?cat=' . $categoryId . '&eventDisplay=upcoming',
|
758 |
-
$category_base . '/' . strtolower( The_Events_Calendar::CATEGORYNAME ) . '/past/page/(\d+)' => 'index.php?cat=' . $categoryId . '&eventDisplay=past&paged=' . $wp_rewrite->preg_index(1),
|
759 |
-
$category_base . '/' . strtolower( The_Events_Calendar::CATEGORYNAME ) . '/past' => 'index.php?cat=' . $categoryId . '&eventDisplay=past',
|
760 |
-
$category_base . '/' . strtolower( The_Events_Calendar::CATEGORYNAME ) . '/(\d{4}-\d{2})$'
|
761 |
-
=> 'index.php?cat=' . $categoryId . '&eventDisplay=month' .
|
762 |
-
'&eventDate=' . $wp_rewrite->preg_index(1),
|
763 |
-
$category_base . '/' . strtolower( The_Events_Calendar::CATEGORYNAME ) . '/?$'=> 'index.php?cat=' . $categoryId . '&eventDisplay=' . eventsGetOptionValue('viewOption','month')
|
764 |
-
|
765 |
-
);
|
766 |
-
$wp_rewrite->rules = $newRules + $wp_rewrite->rules;
|
767 |
-
}
|
768 |
-
/**
|
769 |
-
* Creates the events category and updates the core options (if not already done)
|
770 |
-
* @return int cat_ID
|
771 |
-
*/
|
772 |
-
public function create_category_if_not_exists( ) {
|
773 |
-
if ( !category_exists( The_Events_Calendar::CATEGORYNAME ) ) {
|
774 |
-
$category_id = wp_create_category( The_Events_Calendar::CATEGORYNAME );
|
775 |
-
return $category_id;
|
776 |
-
} else {
|
777 |
-
return $this->eventCategory();
|
778 |
-
}
|
779 |
-
}
|
780 |
-
|
781 |
-
/**
|
782 |
-
* This plugin does not have any deactivation functionality. Any events, categories, options and metadata are
|
783 |
-
* left behind.
|
784 |
-
*
|
785 |
-
* @return void
|
786 |
-
*/
|
787 |
-
public function on_deactivate( ) {
|
788 |
-
wp_clear_scheduled_hook('reschedule_event_post');
|
789 |
-
}
|
790 |
-
/**
|
791 |
-
* Converts a set of inputs to YYYY-MM-DD HH:MM:SS format for MySQL
|
792 |
-
*/
|
793 |
-
public function dateToTimeStamp( $year, $month, $day, $hour, $minute, $meridian ) {
|
794 |
-
if ( preg_match( '/(PM|pm)/', $meridian ) && $hour < 12 ) $hour += "12";
|
795 |
-
if ( preg_match( '/(AM|am)/', $meridian ) && $hour == 12 ) $hour = "00";
|
796 |
-
return "$year-$month-$day $hour:$minute:00";
|
797 |
-
}
|
798 |
-
public function getTimeFormat( $dateFormat = self::DATEONLYFORMAT ) {
|
799 |
-
return $dateFormat . ' ' . get_option( 'time_format', self::TIMEFORMAT );
|
800 |
-
}
|
801 |
-
/**
|
802 |
-
* Adds / removes the event details as meta tags to the post.
|
803 |
-
*
|
804 |
-
* @param string $postId
|
805 |
-
* @return void
|
806 |
-
*/
|
807 |
-
public function addEventMeta( $postId ) {
|
808 |
-
if ($_POST['isEvent'] == 'yes') {
|
809 |
-
$category_id = $this->create_category_if_not_exists();
|
810 |
-
// add a function below to remove all existing categories - wp_set_post_categories(int , array )
|
811 |
-
if( $_POST['EventAllDay'] == 'yes' ) {
|
812 |
-
$_POST['EventStartDate'] = $this->dateToTimeStamp( $_POST['EventStartYear'], $_POST['EventStartMonth'], $_POST['EventStartDay'], "12", "00", "AM" );
|
813 |
-
$_POST['EventEndDate'] = $this->dateToTimeStamp( $_POST['EventEndYear'], $_POST['EventEndMonth'], $_POST['EventEndDay'], "11", "59", "PM" );
|
814 |
-
} else {
|
815 |
-
delete_post_meta( $postId, '_EventAllDay' );
|
816 |
-
$_POST['EventStartDate'] = $this->dateToTimeStamp( $_POST['EventStartYear'], $_POST['EventStartMonth'], $_POST['EventStartDay'], $_POST['EventStartHour'], $_POST['EventStartMinute'], $_POST['EventStartMeridian'] );
|
817 |
-
$_POST['EventEndDate'] = $this->dateToTimeStamp( $_POST['EventEndYear'], $_POST['EventEndMonth'], $_POST['EventEndDay'], $_POST['EventEndHour'], $_POST['EventEndMinute'], $_POST['EventEndMeridian'] );
|
818 |
-
}
|
819 |
-
// sanity check that start date < end date
|
820 |
-
$startTimestamp = strtotime( $_POST['EventStartDate'] );
|
821 |
-
$endTimestamp = strtotime( $_POST['EventEndDate'] );
|
822 |
-
if ( $startTimestamp > $endTimestamp ) {
|
823 |
-
$_POST['EventEndDate'] = $_POST['EventStartDate'];
|
824 |
-
}
|
825 |
-
// give add-on plugins a chance to cancel this meta update
|
826 |
-
try {
|
827 |
-
do_action( 'sp_events_event_save', $postId );
|
828 |
-
} catch ( Exception $e) {
|
829 |
-
// there was an error with a sub-plugin saving the post details
|
830 |
-
// make sure the error is saved somehow and displayed
|
831 |
-
update_post_meta( $postId, Eventbrite_for_The_Events_Calendar::EVENTBRITEERROPT, trim( $e->getMessage() ) );
|
832 |
-
}
|
833 |
-
//update meta fields
|
834 |
-
foreach ( $this->metaTags as $tag ) {
|
835 |
-
$htmlElement = ltrim( $tag, '_' );
|
836 |
-
if ( isset( $_POST[$htmlElement] ) ) {
|
837 |
-
update_post_meta( $postId, $tag, $_POST[$htmlElement] );
|
838 |
-
}
|
839 |
-
}
|
840 |
-
do_action( 'sp_events_update_meta', $postId );
|
841 |
-
// merge event category into this post
|
842 |
-
update_post_meta( $postId, '_EventCost', the_event_cost( $postId ) ); // XXX eventbrite cost field
|
843 |
-
$cats = wp_get_object_terms($postId, 'category', array('fields' => 'ids'));
|
844 |
-
wp_set_post_categories( $postId, array( get_category( $category_id )->cat_ID ) + $cats );
|
845 |
-
}
|
846 |
-
if ($_POST['isEvent'] == 'no' && is_event( $postId ) ) {
|
847 |
-
// remove event meta tags if they exist...this post is no longer an event
|
848 |
-
foreach ( $this->metaTags as $tag ) {
|
849 |
-
delete_post_meta( $postId, $tag );
|
850 |
-
}
|
851 |
-
$event_cats[] = $this->eventCategory();
|
852 |
-
$cats = get_categories('child_of=' . $this->eventCategory());
|
853 |
-
foreach( $cats as $cat ) {
|
854 |
-
$event_cats[] = $cat->term_id;
|
855 |
-
}
|
856 |
-
// remove the event categories from this post but keep any non-event categories
|
857 |
-
$terms = wp_get_object_terms($postId, 'category');
|
858 |
-
$non_event_cats = array();
|
859 |
-
foreach ( $terms as $term ) {
|
860 |
-
if( !in_array( $term->term_id, $event_cats ) ) {
|
861 |
-
$non_event_cats[] = $term->term_id;
|
862 |
-
}
|
863 |
-
}
|
864 |
-
wp_set_post_categories( $postId, $non_event_cats );
|
865 |
-
do_action( 'sp_events_event_clear', $postId );
|
866 |
-
}
|
867 |
-
}
|
868 |
-
|
869 |
-
/**
|
870 |
-
* Adds a style chooser to the write post page
|
871 |
-
*
|
872 |
-
* @return void
|
873 |
-
*/
|
874 |
-
public function EventsChooserBox( ) {
|
875 |
-
global $post;
|
876 |
-
$options = '';
|
877 |
-
$style = '';
|
878 |
-
$postId = $post->ID;
|
879 |
-
|
880 |
-
foreach ( $this->metaTags as $tag ) {
|
881 |
-
if ( $postId ) {
|
882 |
-
$$tag = get_post_meta( $postId, $tag, true );
|
883 |
-
} else {
|
884 |
-
$$tag = '';
|
885 |
-
}
|
886 |
-
}
|
887 |
-
$isEventChecked = ( $_isEvent == 'yes' ) ? 'checked' : '';
|
888 |
-
$isNotEventChecked = ( $_isEvent == 'no' || $_isEvent == '' ) ? 'checked' : '';
|
889 |
-
$isEventAllDay = ( $_EventAllDay == 'yes' ) ? 'checked' : '';
|
890 |
-
$startDayOptions = array(
|
891 |
-
31 => $this->getDayOptions( $_EventStartDate, 31 ),
|
892 |
-
30 => $this->getDayOptions( $_EventStartDate, 30 ),
|
893 |
-
29 => $this->getDayOptions( $_EventStartDate, 29 ),
|
894 |
-
28 => $this->getDayOptions( $_EventStartDate, 28 )
|
895 |
-
);
|
896 |
-
$endDayOptions = array(
|
897 |
-
31 => $this->getDayOptions( $_EventEndDate, 31 ),
|
898 |
-
30 => $this->getDayOptions( $_EventEndDate, 30 ),
|
899 |
-
29 => $this->getDayOptions( $_EventEndDate, 29 ),
|
900 |
-
28 => $this->getDayOptions( $_EventEndDate, 28 )
|
901 |
-
);
|
902 |
-
$startMonthOptions = $this->getMonthOptions( $_EventStartDate );
|
903 |
-
$endMonthOptions = $this->getMonthOptions( $_EventEndDate );
|
904 |
-
$startYearOptions = $this->getYearOptions( $_EventStartDate );
|
905 |
-
$endYearOptions = $this->getYearOptions( $_EventEndDate );
|
906 |
-
$startMinuteOptions = $this->getMinuteOptions( $_EventStartDate );
|
907 |
-
$endMinuteOptions = $this->getMinuteOptions( $_EventEndDate );
|
908 |
-
$startHourOptions = $this->getHourOptions( $_EventStartDate );
|
909 |
-
$endHourOptions = $this->getHourOptions( $_EventEndDate );
|
910 |
-
$startMeridianOptions = $this->getMeridianOptions( $_EventStartDate );
|
911 |
-
$endMeridianOptions = $this->getMeridianOptions( $_EventEndDate );
|
912 |
-
include( dirname( __FILE__ ) . '/views/events-meta-box.php' );
|
913 |
-
}
|
914 |
-
/**
|
915 |
-
* Given a date (YYYY-MM-DD), returns the first of the next month
|
916 |
-
*
|
917 |
-
* @param date
|
918 |
-
* @return date
|
919 |
-
*/
|
920 |
-
public function nextMonth( $date ) {
|
921 |
-
$dateParts = split( '-', $date );
|
922 |
-
if ( $dateParts[1] == 12 ) {
|
923 |
-
$dateParts[0]++;
|
924 |
-
$dateParts[1] = "01";
|
925 |
-
$dateParts[2] = "01";
|
926 |
-
} else {
|
927 |
-
$dateParts[1]++;
|
928 |
-
$dateParts[2] = "01";
|
929 |
-
}
|
930 |
-
if ( $dateParts[1] < 10 && strlen( $dateParts[1] ) == 1 ) {
|
931 |
-
$dateParts[1] = "0" . $dateParts[1];
|
932 |
-
}
|
933 |
-
$return = $dateParts[0] . '-' . $dateParts[1];
|
934 |
-
return $return;
|
935 |
-
}
|
936 |
-
/**
|
937 |
-
* Given a date (YYYY-MM-DD), return the first of the previous month
|
938 |
-
*
|
939 |
-
* @param date
|
940 |
-
* @return date
|
941 |
-
*/
|
942 |
-
public function previousMonth( $date ) {
|
943 |
-
$dateParts = split( '-', $date );
|
944 |
-
|
945 |
-
if ( $dateParts[1] == 1 ) {
|
946 |
-
$dateParts[0]--;
|
947 |
-
$dateParts[1] = "12";
|
948 |
-
$dateParts[2] = "01";
|
949 |
-
} else {
|
950 |
-
$dateParts[1]--;
|
951 |
-
$dateParts[2] = "01";
|
952 |
-
}
|
953 |
-
if ( $dateParts[1] < 10 ) {
|
954 |
-
$dateParts[1] = "0" . $dateParts[1];
|
955 |
-
}
|
956 |
-
$return = $dateParts[0] . '-' . $dateParts[1];
|
957 |
-
|
958 |
-
return $return;
|
959 |
-
}
|
960 |
-
|
961 |
-
/**
|
962 |
-
* Callback for adding the Meta box to the admin page
|
963 |
-
* @return void
|
964 |
-
*/
|
965 |
-
public function addEventBox( ) {
|
966 |
-
add_meta_box( 'Event Details', __( 'The Events Calendar', 'Events_textdomain' ),
|
967 |
-
array( $this, 'EventsChooserBox' ), 'post', 'normal', 'high' );
|
968 |
-
}
|
969 |
-
/**
|
970 |
-
* Builds a set of options for diplaying a meridian chooser
|
971 |
-
*
|
972 |
-
* @param string YYYY-MM-DD HH:MM:SS to select (optional)
|
973 |
-
* @return string a set of HTML options with all meridians
|
974 |
-
*/
|
975 |
-
public function getMeridianOptions( $date = "" ) {
|
976 |
-
if( strstr( get_option( 'time_format', self::TIMEFORMAT ), 'A' ) ) {
|
977 |
-
$a = 'A';
|
978 |
-
$meridians = array( "AM", "PM" );
|
979 |
-
} else {
|
980 |
-
$a = 'a';
|
981 |
-
$meridians = array( "am", "pm" );
|
982 |
-
}
|
983 |
-
if ( empty( $date ) ) {
|
984 |
-
$meridian = date_i18n($a);
|
985 |
-
} else {
|
986 |
-
$meridian = date($a, strtotime( $date ) );
|
987 |
-
}
|
988 |
-
$return = '';
|
989 |
-
foreach ( $meridians as $m ) {
|
990 |
-
$return .= "<option value='$m'";
|
991 |
-
if ( $m == $meridian ) {
|
992 |
-
$return .= ' selected="selected"';
|
993 |
-
}
|
994 |
-
$return .= ">$m</option>\n";
|
995 |
-
}
|
996 |
-
return $return;
|
997 |
-
}
|
998 |
-
/**
|
999 |
-
* Builds a set of options for displaying a month chooser
|
1000 |
-
* @param string the current date to select (optional)
|
1001 |
-
* @return string a set of HTML options with all months (current month selected)
|
1002 |
-
*/
|
1003 |
-
public function getMonthOptions( $date = "" ) {
|
1004 |
-
$months = $this->monthNames();
|
1005 |
-
$options = '';
|
1006 |
-
if ( empty( $date ) ) {
|
1007 |
-
$month = date_i18n( 'F' );
|
1008 |
-
} else {
|
1009 |
-
$month = date( 'F', strtotime( $date ) );
|
1010 |
-
}
|
1011 |
-
$monthIndex = 1;
|
1012 |
-
foreach ( $months as $englishMonth => $monthText ) {
|
1013 |
-
if ( $monthIndex < 10 ) {
|
1014 |
-
$monthIndex = "0" . $monthIndex; // need a leading zero in the month
|
1015 |
-
}
|
1016 |
-
if ( $month == $englishMonth ) {
|
1017 |
-
$selected = 'selected="selected"';
|
1018 |
-
} else {
|
1019 |
-
$selected = '';
|
1020 |
-
}
|
1021 |
-
$options .= "<option value='$monthIndex' $selected>$monthText</option>\n";
|
1022 |
-
$monthIndex++;
|
1023 |
-
}
|
1024 |
-
return $options;
|
1025 |
-
}
|
1026 |
-
/**
|
1027 |
-
* Builds a set of options for displaying a day chooser
|
1028 |
-
* @param int number of days in the month
|
1029 |
-
* @param string the current date (optional)
|
1030 |
-
* @return string a set of HTML options with all days (current day selected)
|
1031 |
-
*/
|
1032 |
-
public function getDayOptions( $date = "", $totalDays = 31 ) {
|
1033 |
-
$days = $this->days( $totalDays );
|
1034 |
-
$options = '';
|
1035 |
-
if ( empty ( $date ) ) {
|
1036 |
-
$day = date_i18n( 'd' );
|
1037 |
-
} else {
|
1038 |
-
$day = date( 'd', strtotime( $date) );
|
1039 |
-
}
|
1040 |
-
foreach ( $days as $dayText ) {
|
1041 |
-
if ( $dayText < 10 ) {
|
1042 |
-
$dayText = "0" . $dayText; // need a leading zero in the day
|
1043 |
-
}
|
1044 |
-
if ( $day == $dayText ) {
|
1045 |
-
$selected = 'selected="selected"';
|
1046 |
-
} else {
|
1047 |
-
$selected = '';
|
1048 |
-
}
|
1049 |
-
$options .= "<option value='$dayText' $selected>$dayText</option>\n";
|
1050 |
-
}
|
1051 |
-
return $options;
|
1052 |
-
}
|
1053 |
-
/**
|
1054 |
-
* Builds a set of options for displaying a year chooser
|
1055 |
-
* @param string the current date (optional)
|
1056 |
-
* @return string a set of HTML options with adjacent years (current year selected)
|
1057 |
-
*/
|
1058 |
-
public function getYearOptions( $date = "" ) {
|
1059 |
-
$years = $this->years();
|
1060 |
-
$options = '';
|
1061 |
-
if ( empty ( $date ) ) {
|
1062 |
-
$year = date_i18n( 'Y' );
|
1063 |
-
} else {
|
1064 |
-
$year = date( 'Y', strtotime( $date ) );
|
1065 |
-
}
|
1066 |
-
foreach ( $years as $yearText ) {
|
1067 |
-
if ( $year == $yearText ) {
|
1068 |
-
$selected = 'selected="selected"';
|
1069 |
-
} else {
|
1070 |
-
$selected = '';
|
1071 |
-
}
|
1072 |
-
$options .= "<option value='$yearText' $selected>$yearText</option>\n";
|
1073 |
-
}
|
1074 |
-
return $options;
|
1075 |
-
}
|
1076 |
-
/**
|
1077 |
-
* Builds a set of options for displaying an hour chooser
|
1078 |
-
* @param string the current date (optional)
|
1079 |
-
* @return string a set of HTML options with hours (current hour selected)
|
1080 |
-
*/
|
1081 |
-
public function getHourOptions( $date = "" ) {
|
1082 |
-
$hours = $this->hours();
|
1083 |
-
if( count($hours) == 12 ) $h = 'h';
|
1084 |
-
else $h = 'H';
|
1085 |
-
$options = '';
|
1086 |
-
if ( empty ( $date ) ) {
|
1087 |
-
$hour = date_i18n( $h );
|
1088 |
-
} else {
|
1089 |
-
$timestamp = strtotime( $date );
|
1090 |
-
$hour = date( $h, $timestamp );
|
1091 |
-
// fix hours if time_format has changed from what is saved
|
1092 |
-
if( preg_match('(pm|PM)', $timestamp) && $h == 'H') $hour = $hour + 12;
|
1093 |
-
if( $hour > 12 && $h == 'h' ) $hour = $hour - 12;
|
1094 |
-
|
1095 |
-
}
|
1096 |
-
foreach ( $hours as $hourText ) {
|
1097 |
-
if ( $hour == $hourText ) {
|
1098 |
-
$selected = 'selected="selected"';
|
1099 |
-
} else {
|
1100 |
-
$selected = '';
|
1101 |
-
}
|
1102 |
-
$options .= "<option value='$hourText' $selected>$hourText</option>\n";
|
1103 |
-
}
|
1104 |
-
return $options;
|
1105 |
-
}
|
1106 |
-
/**
|
1107 |
-
* Builds a set of options for displaying a minute chooser
|
1108 |
-
* @param string the current date (optional)
|
1109 |
-
* @return string a set of HTML options with minutes (current minute selected)
|
1110 |
-
*/
|
1111 |
-
public function getMinuteOptions( $date = "" ) {
|
1112 |
-
$minutes = $this->minutes();
|
1113 |
-
$options = '';
|
1114 |
-
if ( empty ( $date ) ) {
|
1115 |
-
$minute = '00';
|
1116 |
-
} else {
|
1117 |
-
$minute = date( 'i', strtotime( $date ) );
|
1118 |
-
}
|
1119 |
-
foreach ( $minutes as $minuteText ) {
|
1120 |
-
if ( $minute == $minuteText ) {
|
1121 |
-
$selected = 'selected="selected"';
|
1122 |
-
} else {
|
1123 |
-
$selected = '';
|
1124 |
-
}
|
1125 |
-
$options .= "<option value='$minuteText' $selected>$minuteText</option>\n";
|
1126 |
-
}
|
1127 |
-
return $options;
|
1128 |
-
}
|
1129 |
-
/**
|
1130 |
-
* Helper method to return an array of 1-12 for hours
|
1131 |
-
*/
|
1132 |
-
public function hours() {
|
1133 |
-
$hours = array();
|
1134 |
-
$rangeMax = ( strstr( get_option( 'time_format', self::TIMEFORMAT ), 'H' ) ) ? 23 : 12;
|
1135 |
-
foreach(range(1,$rangeMax) as $hour) {
|
1136 |
-
if ( $hour < 10 ) {
|
1137 |
-
$hour = "0".$hour;
|
1138 |
-
}
|
1139 |
-
$hours[$hour] = $hour;
|
1140 |
-
}
|
1141 |
-
return $hours;
|
1142 |
-
}
|
1143 |
-
/**
|
1144 |
-
* Helper method to return an array of 00-59 for minutes
|
1145 |
-
*/
|
1146 |
-
public static function minutes( ) {
|
1147 |
-
$minutes = array();
|
1148 |
-
for($minute=0; $minute < 60; $minute+=5) {
|
1149 |
-
if ($minute < 10) {
|
1150 |
-
$minute = "0" . $minute;
|
1151 |
-
}
|
1152 |
-
$minutes[$minute] = $minute;
|
1153 |
-
}
|
1154 |
-
return $minutes;
|
1155 |
-
}
|
1156 |
-
/**
|
1157 |
-
* Sets event options based on the current query string
|
1158 |
-
*
|
1159 |
-
* @return void
|
1160 |
-
*/
|
1161 |
-
public function setOptions( ) {
|
1162 |
-
global $wp_query;
|
1163 |
-
$display = ( isset( $wp_query->query_vars['eventDisplay'] ) ) ? $wp_query->query_vars['eventDisplay'] : eventsGetOptionValue('viewOption','month');
|
1164 |
-
switch ( $display ) {
|
1165 |
-
case "past":
|
1166 |
-
$this->displaying = "past";
|
1167 |
-
$this->startOperator = "<=";
|
1168 |
-
$this->order = "DESC";
|
1169 |
-
$this->date = date_i18n( The_Events_Calendar::DBDATETIMEFORMAT );
|
1170 |
-
break;
|
1171 |
-
case "upcoming":
|
1172 |
-
$this->displaying = "upcoming";
|
1173 |
-
$this->startOperator = ">=";
|
1174 |
-
$this->order = "ASC";
|
1175 |
-
$this->date = date_i18n( The_Events_Calendar::DBDATETIMEFORMAT );
|
1176 |
-
break;
|
1177 |
-
case "month":
|
1178 |
-
case "default":
|
1179 |
-
$this->displaying = "month";
|
1180 |
-
$this->startOperator = ">=";
|
1181 |
-
$this->order = "ASC";
|
1182 |
-
// TODO date set to YYYY-MM
|
1183 |
-
// TODO store DD as an anchor to the URL
|
1184 |
-
if ( isset ( $wp_query->query_vars['eventDate'] ) ) {
|
1185 |
-
$this->date = $wp_query->query_vars['eventDate'] . "-01";
|
1186 |
-
} else {
|
1187 |
-
$date = date_i18n( The_Events_Calendar::DBDATEFORMAT );
|
1188 |
-
$this->date = substr_replace( $date, '01', -2 );
|
1189 |
-
}
|
1190 |
-
break;
|
1191 |
-
}
|
1192 |
-
}
|
1193 |
-
public function getDateString( $date ) {
|
1194 |
-
$dateParts = split( '-', $date );
|
1195 |
-
$timestamp = mktime( 0, 0, 0, $dateParts[1], 1, $dateParts[0] );
|
1196 |
-
return date( "F Y", $timestamp );
|
1197 |
-
}
|
1198 |
-
} // end The_Events_Calendar class
|
1199 |
-
} // end if !class_exists The_Events_Calendar
|
1200 |
-
|
1201 |
-
if( class_exists( 'The_Events_Calendar' ) && !function_exists( 'get_event_style' ) ) {
|
1202 |
-
global $spEvents;
|
1203 |
-
$spEvents = new The_Events_Calendar();
|
1204 |
-
|
1205 |
-
/**
|
1206 |
-
* retrieve specific key from options array, optionally provide a default return value
|
1207 |
-
*
|
1208 |
-
* @param string option key
|
1209 |
-
* @param string default return value (optional)
|
1210 |
-
* @return string option value or default
|
1211 |
-
*/
|
1212 |
-
function eventsGetOptionValue($optionName, $default = '') {
|
1213 |
-
global $spEvents;
|
1214 |
-
if($optionName) {
|
1215 |
-
if( $spEvents->latestOptions ) {
|
1216 |
-
return $spEvents->latestOptions[$optionName];
|
1217 |
-
}
|
1218 |
-
$options = $spEvents->getOptions();
|
1219 |
-
return ( $options[$optionName] ) ? $options[$optionName] : $default;
|
1220 |
-
}
|
1221 |
-
}
|
1222 |
-
|
1223 |
-
/**
|
1224 |
-
* Output function: Prints the events calendar 'grid view'
|
1225 |
-
*
|
1226 |
-
* @return void
|
1227 |
-
*/
|
1228 |
-
function event_grid_view( ) {
|
1229 |
-
global $spEvents;
|
1230 |
-
global $wp_query;
|
1231 |
-
$wp_query->set( 'eventDisplay', 'bydate' );
|
1232 |
-
$eventPosts = get_events();
|
1233 |
-
$monthView = events_by_month( $eventPosts, $spEvents->date );
|
1234 |
-
list( $year, $month ) = split( '-', $spEvents->date );
|
1235 |
-
$date = mktime(12, 0, 0, $month, 1, $year); // 1st day of month as unix stamp
|
1236 |
-
$daysInMonth = date("t", $date);
|
1237 |
-
$startOfWeek = get_option( 'start_of_week', 0 );
|
1238 |
-
$rawOffset = date("w", $date) - $startOfWeek;
|
1239 |
-
$offset = ( $rawOffset < 0 ) ? $rawOffset + 7 : $rawOffset; // month begins on day x
|
1240 |
-
$rows = 1;
|
1241 |
-
require( dirname( __FILE__ ) . '/views/table.php' );
|
1242 |
-
}
|
1243 |
-
/**
|
1244 |
-
* Maps events to days
|
1245 |
-
*
|
1246 |
-
* @param array of events from get_events()
|
1247 |
-
* @param string date of the
|
1248 |
-
* @return array days of the month with events as values
|
1249 |
-
*/
|
1250 |
-
function events_by_month( $results, $date ) {
|
1251 |
-
if( preg_match( '/(\d{4})-(\d{2})/', $date, $matches ) ) {
|
1252 |
-
$queryYear = $matches[1];
|
1253 |
-
$queryMonth = $matches[2];
|
1254 |
-
} else {
|
1255 |
-
return false; // second argument not a date we recognize
|
1256 |
-
}
|
1257 |
-
$monthView = array();
|
1258 |
-
for( $i = 1; $i <= 31; $i++ ) {
|
1259 |
-
$monthView[$i] = array();
|
1260 |
-
}
|
1261 |
-
foreach ( $results as $event ) {
|
1262 |
-
$started = false;
|
1263 |
-
list( $startYear, $startMonth, $startDay, $garbage ) = explode( '-', $event->EventStartDate );
|
1264 |
-
list( $endYear, $endMonth, $endDay, $garbage ) = explode( '-', $event->EventEndDate );
|
1265 |
-
list( $startDay, $garbage ) = explode( ' ', $startDay );
|
1266 |
-
list( $endDay, $garbage ) = explode( ' ', $endDay );
|
1267 |
-
for( $i = 1; $i <= 31 ; $i++ ) {
|
1268 |
-
if ( ( $i == $startDay && $startMonth == $queryMonth ) || strtotime( $startYear.'-'.$startMonth ) < strtotime( $queryYear.'-'.$queryMonth ) ) {
|
1269 |
-
$started = true;
|
1270 |
-
}
|
1271 |
-
if ( $started ) {
|
1272 |
-
$monthView[$i][] = $event;
|
1273 |
-
}
|
1274 |
-
if( $i == $endDay && $endMonth == $queryMonth ) {
|
1275 |
-
continue 2;
|
1276 |
-
}
|
1277 |
-
}
|
1278 |
-
}
|
1279 |
-
return $monthView;
|
1280 |
-
}
|
1281 |
-
/**
|
1282 |
-
* Output function: Prints the selected event style
|
1283 |
-
*
|
1284 |
-
* @param string $post_id
|
1285 |
-
* @return void
|
1286 |
-
*/
|
1287 |
-
function event_style( $postId = null ) {
|
1288 |
-
echo get_event_style( $postId );
|
1289 |
-
}
|
1290 |
-
|
1291 |
-
/**
|
1292 |
-
* Template function:
|
1293 |
-
* @return boolean
|
1294 |
-
*/
|
1295 |
-
function is_event( $postId = null ) {
|
1296 |
-
if ( $postId === null || !is_numeric( $postId ) ) {
|
1297 |
-
global $post;
|
1298 |
-
$postId = $post->ID;
|
1299 |
-
}
|
1300 |
-
if (get_post_meta( $postId, '_isEvent', true )) {
|
1301 |
-
return true;
|
1302 |
-
}
|
1303 |
-
return false;
|
1304 |
-
}
|
1305 |
-
/**
|
1306 |
-
* Returns a link to google maps for the given event
|
1307 |
-
*
|
1308 |
-
* @param string $postId
|
1309 |
-
* @return string a fully qualified link to http://maps.google.com/ for this event
|
1310 |
-
*/
|
1311 |
-
function get_event_google_map_link( $postId = null ) {
|
1312 |
-
if ( $postId === null || !is_numeric( $postId ) ) {
|
1313 |
-
global $post;
|
1314 |
-
$postId = $post->ID;
|
1315 |
-
}
|
1316 |
-
if ( !is_event( $postId ) ) {
|
1317 |
-
return false;
|
1318 |
-
}
|
1319 |
-
$address = get_post_meta( $postId, '_EventAddress', true );
|
1320 |
-
$city = get_post_meta( $postId, '_EventCity', true );
|
1321 |
-
$state = get_post_meta( $postId, '_EventState', true );
|
1322 |
-
$province = get_post_meta($postId, '_EventProvince', true );
|
1323 |
-
$zip = get_post_meta( $postId, '_EventZip', true );
|
1324 |
-
$country = get_post_meta($postId, '_EventCountry', true );
|
1325 |
-
$google_url = "http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=";
|
1326 |
-
if ( $country == "United States" && !empty( $address ) && !empty( $city ) && !empty( $state) && !empty( $zip ) ) {
|
1327 |
-
return $google_url . urlencode( $address . " " . $city . " " . $state . " " . $zip . " " . $country);
|
1328 |
-
} elseif ( !empty( $country ) && !empty( $address ) && !empty( $city ) && !empty( $province ) && !empty( $zip ) ) {
|
1329 |
-
return $google_url . urlencode( $address . " " . $city . " " . $province . " " . $zip . " " . $country);
|
1330 |
-
}
|
1331 |
-
return "";
|
1332 |
-
}
|
1333 |
-
/**
|
1334 |
-
* Displays a link to google maps for the given event
|
1335 |
-
*
|
1336 |
-
* @param string $postId
|
1337 |
-
* @return void
|
1338 |
-
*/
|
1339 |
-
function event_google_map_link( $postId = null ) {
|
1340 |
-
echo get_event_google_map_link( $postId );
|
1341 |
-
}
|
1342 |
-
/**
|
1343 |
-
* Returns an embeded google maps for the given event
|
1344 |
-
*
|
1345 |
-
* @param string $postId
|
1346 |
-
* @param int $width
|
1347 |
-
* @param int $height
|
1348 |
-
* @return string - an iframe pulling http://maps.google.com/ for this event
|
1349 |
-
*/
|
1350 |
-
function get_event_google_map_embed( $postId = null, $width = '100%', $height = '350' ) {
|
1351 |
-
if ( $postId === null || !is_numeric( $postId ) ) {
|
1352 |
-
global $post;
|
1353 |
-
$postId = $post->ID;
|
1354 |
-
}
|
1355 |
-
if ( !is_event( $postId ) ) {
|
1356 |
-
return false;
|
1357 |
-
}
|
1358 |
-
$address = get_post_meta( $postId, '_EventAddress', true );
|
1359 |
-
$city = get_post_meta( $postId, '_EventCity', true );
|
1360 |
-
$state = get_post_meta( $postId, '_EventState', true );
|
1361 |
-
$province = get_post_meta($postId, '_EventProvince', true );
|
1362 |
-
$zip = get_post_meta( $postId, '_EventZip', true );
|
1363 |
-
$country = get_post_meta($postId, '_EventCountry', true );
|
1364 |
-
if (!$height){
|
1365 |
-
$height = eventsGetOptionValue('embedGoogleMapsHeight','350');}
|
1366 |
-
if (!$width){
|
1367 |
-
$width = eventsGetOptionValue('embedGoogleMapsWidth','100%');}
|
1368 |
-
|
1369 |
-
if ( $country == "United States" && !empty( $address ) && !empty( $city ) && !empty( $state) && !empty( $zip ) ) {
|
1370 |
-
$googleaddress = urlencode( $address . " " . $city . " " . $state . " " . $zip . " " . $country);
|
1371 |
-
} elseif ( !empty( $country ) && !empty( $address ) && !empty( $city ) && !empty( $province ) && !empty( $zip ) ) {
|
1372 |
-
$googleaddress = urlencode( $address . " " . $city . " " . $province . " " . $zip . " " . $country);
|
1373 |
-
};
|
1374 |
-
|
1375 |
-
if ($googleaddress) {
|
1376 |
-
|
1377 |
-
$google_iframe = '<div id="googlemaps"><iframe width="'.$width.'" height="'.$height.'" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://www.google.com/maps?f=q&source=s_q&hl=en&geocode=&q='.$googleaddress.'?>&output=embed"></iframe><br /><small><a href="http://www.google.com/maps?f=q&source=embed&hl=en&geocode=&q='.$googleaddress.'" style="color:#0000FF;text-align:left">View Larger Map</a></small></div>';
|
1378 |
-
return $google_iframe;
|
1379 |
-
}
|
1380 |
-
else {
|
1381 |
-
return '';
|
1382 |
-
};
|
1383 |
-
|
1384 |
-
}
|
1385 |
-
/**
|
1386 |
-
* Displays an embeded google map for the given event
|
1387 |
-
*
|
1388 |
-
* @param string $postId
|
1389 |
-
* @param int $width
|
1390 |
-
* @param int $height
|
1391 |
-
* @return void
|
1392 |
-
*/
|
1393 |
-
function event_google_map_embed( $postId = null, $width = null, $height = null ) {
|
1394 |
-
if (eventsGetOptionValue('embedGoogleMaps') == 'on'){ echo get_event_google_map_embed( $postId, $width, $height );};
|
1395 |
-
}
|
1396 |
-
/**
|
1397 |
-
* Prints out the javascript required to control the datepicker (onChange of the id='datepicker')
|
1398 |
-
*
|
1399 |
-
* @param string a prefix to add to the ID of the calendar elements. This allows you to reuse the calendar on the same page.
|
1400 |
-
* @return void
|
1401 |
-
*/
|
1402 |
-
function get_jump_to_date_calendar( $prefix = '' ) {
|
1403 |
-
global $spEvents, $wp_query;
|
1404 |
-
if ( isset ( $wp_query->query_vars['eventDate'] ) ) {
|
1405 |
-
$date = $wp_query->query_vars['eventDate'] . "-01";
|
1406 |
-
} else {
|
1407 |
-
$date = date_i18n( The_Events_Calendar::DBDATEFORMAT );
|
1408 |
-
}
|
1409 |
-
$monthOptions = $spEvents->getMonthOptions( $date );
|
1410 |
-
$yearOptions = $spEvents->getYearOptions( $date );
|
1411 |
-
include('views/datepicker.php');
|
1412 |
-
}
|
1413 |
-
/**
|
1414 |
-
* Returns the event start date
|
1415 |
-
*
|
1416 |
-
* @param int post id
|
1417 |
-
* @param bool display time?
|
1418 |
-
* @param string date format
|
1419 |
-
* @return string date
|
1420 |
-
*/
|
1421 |
-
function the_event_start_date( $postId = null, $showtime = 'true', $dateFormat = '' ) {
|
1422 |
-
global $spEvents, $post;
|
1423 |
-
if ( $postId === null || !is_numeric( $postId ) ) {
|
1424 |
-
global $post;
|
1425 |
-
$postId = $post->ID;
|
1426 |
-
}
|
1427 |
-
if( $dateFormat ) $format = $dateFormat;
|
1428 |
-
else $format = get_option( 'date_format', The_Events_Calendar::DATEONLYFORMAT );
|
1429 |
-
if( the_event_all_day( $postId ) ) {
|
1430 |
-
$showtime = false;
|
1431 |
-
}
|
1432 |
-
if ( $showtime ) {
|
1433 |
-
$format = $spEvents->getTimeFormat( $format );
|
1434 |
-
}
|
1435 |
-
$shortMonthNames = ( strstr( $format, 'M' ) ) ? true : false;
|
1436 |
-
$date = date ( $format, strtotime( get_post_meta( $postId, '_EventStartDate', true ) ) );
|
1437 |
-
return str_replace( array_keys($spEvents->monthNames( $shortMonthNames )), $spEvents->monthNames( $shortMonthNames ), $date);
|
1438 |
-
}
|
1439 |
-
/**
|
1440 |
-
* Returns the event end date
|
1441 |
-
*
|
1442 |
-
* @param int post id
|
1443 |
-
* @param bool display time?
|
1444 |
-
* @param string date format
|
1445 |
-
* @return string date
|
1446 |
-
*/
|
1447 |
-
function the_event_end_date( $postId = null, $showtime = 'true', $dateFormat = '' ) {
|
1448 |
-
global $spEvents, $post;
|
1449 |
-
if ( $postId === null || !is_numeric( $postId ) ) {
|
1450 |
-
$postId = $post->ID;
|
1451 |
-
}
|
1452 |
-
if( $dateFormat ) $format = $dateFormat;
|
1453 |
-
else $format = get_option( 'date_format', The_Events_Calendar::DATEONLYFORMAT );
|
1454 |
-
if( the_event_all_day( $postId ) ) {
|
1455 |
-
$showtime = false;
|
1456 |
-
}
|
1457 |
-
if ( $showtime ) {
|
1458 |
-
$format = $spEvents->getTimeFormat( $format );
|
1459 |
-
}
|
1460 |
-
$date = date ( $format, strtotime( get_post_meta( $postId, '_EventEndDate', true ) ) );
|
1461 |
-
return str_replace( array_keys($spEvents->monthNames()), $spEvents->monthNames(), $date);
|
1462 |
-
}
|
1463 |
-
/**
|
1464 |
-
* If EventBrite plugin is active
|
1465 |
-
* If the event is registered in eventbrite, and has one ticket. Return the cost of that ticket.
|
1466 |
-
* If the event is registered in eventbrite, and there are many tickets, return "Varies"
|
1467 |
-
* If the event is not registered in eventbrite, and there is meta, return that.
|
1468 |
-
* If the event is not registered in eventbrite, and there is no meta, return ""
|
1469 |
-
*
|
1470 |
-
* @param mixed post id or null if used in the loop
|
1471 |
-
* @return string
|
1472 |
-
*/
|
1473 |
-
function the_event_cost( $postId = null) {
|
1474 |
-
global $spEvents;
|
1475 |
-
if ( $postId === null || !is_numeric( $postId ) ) {
|
1476 |
-
global $post;
|
1477 |
-
$postId = $post->ID;
|
1478 |
-
}
|
1479 |
-
if( class_exists( 'Eventbrite_for_The_Events_Calendar' ) ) {
|
1480 |
-
global $spEventBrite;
|
1481 |
-
$returned = $spEventBrite->the_event_cost($postId);
|
1482 |
-
if($returned) {
|
1483 |
-
return $returned;
|
1484 |
-
}
|
1485 |
-
}
|
1486 |
-
if ( $cost = get_post_meta( $postId, '_EventCost', true ) ) {
|
1487 |
-
return $cost;
|
1488 |
-
} else {
|
1489 |
-
return "";
|
1490 |
-
}
|
1491 |
-
}
|
1492 |
-
/**
|
1493 |
-
* Returns the event venue
|
1494 |
-
*
|
1495 |
-
* @return string venue
|
1496 |
-
*/
|
1497 |
-
function the_event_venue( $postId = null) {
|
1498 |
-
if ( $postId === null || !is_numeric( $postId ) ) {
|
1499 |
-
global $post;
|
1500 |
-
$postId = $post->ID;
|
1501 |
-
}
|
1502 |
-
return get_post_meta( $postId, '_EventVenue', true );
|
1503 |
-
}
|
1504 |
-
/**
|
1505 |
-
* Returns the event country
|
1506 |
-
*
|
1507 |
-
* @return string country
|
1508 |
-
*/
|
1509 |
-
function the_event_country( $postId = null) {
|
1510 |
-
if ( $postId === null || !is_numeric( $postId ) ) {
|
1511 |
-
global $post;
|
1512 |
-
$postId = $post->ID;
|
1513 |
-
}
|
1514 |
-
return get_post_meta( $postId, '_EventCountry', true );
|
1515 |
-
}
|
1516 |
-
/**
|
1517 |
-
* Returns the event address
|
1518 |
-
*
|
1519 |
-
* @return string address
|
1520 |
-
*/
|
1521 |
-
function the_event_address( $postId = null) {
|
1522 |
-
if ( $postId === null || !is_numeric( $postId ) ) {
|
1523 |
-
global $post;
|
1524 |
-
$postId = $post->ID;
|
1525 |
-
}
|
1526 |
-
return get_post_meta( $postId, '_EventAddress', true );
|
1527 |
-
}
|
1528 |
-
/**
|
1529 |
-
* Returns the event city
|
1530 |
-
*
|
1531 |
-
* @return string city
|
1532 |
-
*/
|
1533 |
-
function the_event_city( $postId = null) {
|
1534 |
-
if ( $postId === null || !is_numeric( $postId ) ) {
|
1535 |
-
global $post;
|
1536 |
-
$postId = $post->ID;
|
1537 |
-
}
|
1538 |
-
return get_post_meta( $postId, '_EventCity', true );
|
1539 |
-
}
|
1540 |
-
/**
|
1541 |
-
* Returns the event state
|
1542 |
-
*
|
1543 |
-
* @return string state
|
1544 |
-
*/
|
1545 |
-
function the_event_state( $postId = null) {
|
1546 |
-
if ( $postId === null || !is_numeric( $postId ) ) {
|
1547 |
-
global $post;
|
1548 |
-
$postId = $post->ID;
|
1549 |
-
}
|
1550 |
-
return get_post_meta( $postId, '_EventState', true );
|
1551 |
-
}
|
1552 |
-
/**
|
1553 |
-
* Returns the event province
|
1554 |
-
*
|
1555 |
-
* @return string province
|
1556 |
-
*/
|
1557 |
-
function the_event_province( $postId = null) {
|
1558 |
-
if ( $postId === null || !is_numeric( $postId ) ) {
|
1559 |
-
global $post;
|
1560 |
-
$postId = $post->ID;
|
1561 |
-
}
|
1562 |
-
return get_post_meta( $postId, '_EventProvince', true );
|
1563 |
-
}
|
1564 |
-
/**
|
1565 |
-
* Returns the event zip code
|
1566 |
-
*
|
1567 |
-
* @return string zip code
|
1568 |
-
*/
|
1569 |
-
function the_event_zip( $postId = null) {
|
1570 |
-
if ( $postId === null || !is_numeric( $postId ) ) {
|
1571 |
-
global $post;
|
1572 |
-
$postId = $post->ID;
|
1573 |
-
}
|
1574 |
-
return get_post_meta( $postId, '_EventZip', true );
|
1575 |
-
}
|
1576 |
-
/**
|
1577 |
-
* Returns the event phone number
|
1578 |
-
*
|
1579 |
-
* @return string phone number
|
1580 |
-
*/
|
1581 |
-
function the_event_phone( $postId = null) {
|
1582 |
-
if ( $postId === null || !is_numeric( $postId ) ) {
|
1583 |
-
global $post;
|
1584 |
-
$postId = $post->ID;
|
1585 |
-
}
|
1586 |
-
return get_post_meta( $postId, '_EventPhone', true );
|
1587 |
-
}
|
1588 |
-
/**
|
1589 |
-
* Returns a list of lectures that are associated with this event
|
1590 |
-
*
|
1591 |
-
* @param int optional post id
|
1592 |
-
* @return mixed array of posts or false
|
1593 |
-
*/
|
1594 |
-
function the_event_lectures( $postId = null ) {
|
1595 |
-
if ( $postId === null || !is_numeric( $postId ) ) {
|
1596 |
-
global $post;
|
1597 |
-
$postId = $post->ID;
|
1598 |
-
}
|
1599 |
-
if( !is_event( $postId ) ) {
|
1600 |
-
return false;
|
1601 |
-
}
|
1602 |
-
global $wpdb;
|
1603 |
-
$query = "SELECT * FROM {$wpdb->postmeta} WHERE meta_key = '_lectureEvent' AND meta_value = '{$postId}'";
|
1604 |
-
$results = $wpdb->get_results( $query );
|
1605 |
-
if( empty( $results ) ) {
|
1606 |
-
return $results;
|
1607 |
-
}
|
1608 |
-
$lectures = array();
|
1609 |
-
foreach ( $results as $lecture ) {
|
1610 |
-
$lectures[] = $lecture->post_id;
|
1611 |
-
}
|
1612 |
-
$lectures = array_unique( $lectures );
|
1613 |
-
$results = array();
|
1614 |
-
foreach ( $lectures as $lectureId ) {
|
1615 |
-
$results[] = get_post( $lectureId );
|
1616 |
-
}
|
1617 |
-
return $results;
|
1618 |
-
|
1619 |
-
}
|
1620 |
-
|
1621 |
-
/**
|
1622 |
-
* Helper function to load XML using cURL
|
1623 |
-
*
|
1624 |
-
* @return array with xml data
|
1625 |
-
*/
|
1626 |
-
function load_xml($url) {
|
1627 |
-
|
1628 |
-
$ch = curl_init($url);
|
1629 |
-
|
1630 |
-
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
1631 |
-
curl_setopt($ch, CURLOPT_HEADER, 0);
|
1632 |
-
|
1633 |
-
$data = simplexml_load_string(curl_exec($ch));
|
1634 |
-
|
1635 |
-
curl_close($ch);
|
1636 |
-
|
1637 |
-
return $data;
|
1638 |
-
}
|
1639 |
-
|
1640 |
-
/**
|
1641 |
-
* Called inside of the loop, returns true if the current post's meta_value (EventStartDate)
|
1642 |
-
* is different than the previous post. Will always return true for the first event in the loop.
|
1643 |
-
*
|
1644 |
-
* @return bool
|
1645 |
-
*/
|
1646 |
-
function is_new_event_day( ) {
|
1647 |
-
global $spEvents, $post;
|
1648 |
-
$retval = false;
|
1649 |
-
$now = time();
|
1650 |
-
$postTimestamp = strtotime( $post->EventStartDate, $now );
|
1651 |
-
$postTimestamp = strtotime( date( The_Events_Calendar::DBDATEFORMAT, $postTimestamp ), $now); // strip the time
|
1652 |
-
if ( $postTimestamp != $spEvents->currentPostTimestamp ) {
|
1653 |
-
$retval = true;
|
1654 |
-
}
|
1655 |
-
$spEvents->currentPostTimestamp = $postTimestamp;
|
1656 |
-
return $retval;
|
1657 |
-
}
|
1658 |
-
/**
|
1659 |
-
* Call this function in a template to query the events and start the loop. Do not
|
1660 |
-
* subsequently call the_post() in your template, as this will start the loop twice and then
|
1661 |
-
* you're in trouble.
|
1662 |
-
*
|
1663 |
-
* http://codex.wordpress.org/Displaying_Posts_Using_a_Custom_Select_Query#Query_based_on_Custom_Field_and_Category
|
1664 |
-
*
|
1665 |
-
* @param int number of results to display for upcoming or past modes (default 10)
|
1666 |
-
* @uses $wpdb
|
1667 |
-
* @uses $wp_query
|
1668 |
-
* @return array results
|
1669 |
-
*/
|
1670 |
-
function get_events( $numResults = null ) {
|
1671 |
-
if( !$numResults ) $numResults = get_option( 'posts_per_page', 10 );
|
1672 |
-
global $wpdb, $wp_query, $spEvents;
|
1673 |
-
$spEvents->setOptions();
|
1674 |
-
$categoryId = get_cat_id( The_Events_Calendar::CATEGORYNAME );
|
1675 |
-
|
1676 |
-
$extraSelectClause ='';
|
1677 |
-
$extraJoinEndDate ='';
|
1678 |
-
if ( events_displaying_month() ) {
|
1679 |
-
$extraSelectClause = ", d2.meta_value as EventEndDate ";
|
1680 |
-
$extraJoinEndDate = " LEFT JOIN $wpdb->postmeta as d2 ON($wpdb->posts.ID = d2.post_id) ";
|
1681 |
-
$whereClause = " AND d1.meta_key = '_EventStartDate' AND d2.meta_key = '_EventEndDate' ";
|
1682 |
-
// does this event start in this month?
|
1683 |
-
$whereClause .= " AND ((d1.meta_value >= '".$spEvents->date."' AND d1.meta_value < '".$spEvents->nextMonth( $spEvents->date )."') ";
|
1684 |
-
// Or does it end in this month?
|
1685 |
-
$whereClause .= " OR (d2.meta_value >= '".$spEvents->date."' AND d2.meta_value < '".$spEvents->nextMonth( $spEvents->date )."' ) ";
|
1686 |
-
// Or does the event start sometime in the past and end sometime in the distant future?
|
1687 |
-
$whereClause .= " OR (d1.meta_value <= '".$spEvents->date."' AND d2.meta_value > '".$spEvents->nextMonth( $spEvents->date )."' ) ) ";
|
1688 |
-
$numResults = 999999999;
|
1689 |
-
}
|
1690 |
-
if ( events_displaying_upcoming() ) {
|
1691 |
-
$extraSelectClause = ", d2.meta_value as EventEndDate ";
|
1692 |
-
$extraJoinEndDate = " LEFT JOIN $wpdb->postmeta as d2 ON($wpdb->posts.ID = d2.post_id) ";
|
1693 |
-
$whereClause = " AND d1.meta_key = '_EventStartDate' AND d2.meta_key = '_EventEndDate' ";
|
1694 |
-
// Is the start date in the future?
|
1695 |
-
$whereClause .= ' AND ( d1.meta_value > "'.$spEvents->date.'" ';
|
1696 |
-
// Or is the start date in the past but the end date in the future? (meaning the event is currently ongoing)
|
1697 |
-
$whereClause .= ' OR ( d1.meta_value < "'.$spEvents->date.'" AND d2.meta_value > "'.$spEvents->date.'" ) ) ';
|
1698 |
-
}
|
1699 |
-
$eventsQuery = "
|
1700 |
-
SELECT $wpdb->posts.*, d1.meta_value as EventStartDate
|
1701 |
-
$extraSelectClause
|
1702 |
-
FROM $wpdb->posts
|
1703 |
-
LEFT JOIN $wpdb->postmeta as d1 ON($wpdb->posts.ID = d1.post_id)
|
1704 |
-
$extraJoinEndDate
|
1705 |
-
LEFT JOIN $wpdb->term_relationships ON($wpdb->posts.ID = $wpdb->term_relationships.object_id)
|
1706 |
-
LEFT JOIN $wpdb->term_taxonomy ON($wpdb->term_relationships.term_taxonomy_id = $wpdb->term_taxonomy.term_taxonomy_id)
|
1707 |
-
WHERE $wpdb->term_taxonomy.term_id = $categoryId
|
1708 |
-
AND $wpdb->term_taxonomy.taxonomy = 'category'
|
1709 |
-
AND $wpdb->posts.post_status = 'publish'
|
1710 |
-
$whereClause
|
1711 |
-
ORDER BY d1.meta_value ".$spEvents->order."
|
1712 |
-
LIMIT $numResults";
|
1713 |
-
$return = $wpdb->get_results($eventsQuery, OBJECT);
|
1714 |
-
if ( $return ) {
|
1715 |
-
$wp_query->in_the_loop = true;
|
1716 |
-
do_action('loop_start');
|
1717 |
-
}
|
1718 |
-
return $return;
|
1719 |
-
}
|
1720 |
-
/**
|
1721 |
-
* template tag to get an array of all events, regardless of the current query terms
|
1722 |
-
*
|
1723 |
-
* @param string field to order by (default is start date);
|
1724 |
-
* @param string sort order (default is ASC)
|
1725 |
-
* @return array of events
|
1726 |
-
*/
|
1727 |
-
function get_all_events( $orderby = 'd1.meta_value', $sort = 'DESC', $limit = 100 ) {
|
1728 |
-
global $wpdb;
|
1729 |
-
$categoryId = get_cat_id( The_Events_Calendar::CATEGORYNAME );
|
1730 |
-
$eventsQuery = "
|
1731 |
-
SELECT $wpdb->posts.*, d1.meta_value as EventStartDate
|
1732 |
-
FROM $wpdb->posts
|
1733 |
-
LEFT JOIN $wpdb->postmeta as d1 ON($wpdb->posts.ID = d1.post_id)
|
1734 |
-
LEFT JOIN $wpdb->term_relationships ON($wpdb->posts.ID = $wpdb->term_relationships.object_id)
|
1735 |
-
LEFT JOIN $wpdb->term_taxonomy ON($wpdb->term_relationships.term_taxonomy_id = $wpdb->term_taxonomy.term_taxonomy_id)
|
1736 |
-
WHERE $wpdb->term_taxonomy.term_id = $categoryId
|
1737 |
-
AND $wpdb->term_taxonomy.taxonomy = 'category'
|
1738 |
-
AND $wpdb->posts.post_status = 'publish'
|
1739 |
-
AND d1.meta_key = '_EventStartDate'
|
1740 |
-
ORDER BY $orderby $sort
|
1741 |
-
LIMIT $limit
|
1742 |
-
";
|
1743 |
-
return $wpdb->get_results($eventsQuery, OBJECT);
|
1744 |
-
}
|
1745 |
-
/**
|
1746 |
-
* Returns true if the query is set for past events, false otherwise
|
1747 |
-
*
|
1748 |
-
* @return bool
|
1749 |
-
*/
|
1750 |
-
function events_displaying_past() {
|
1751 |
-
global $spEvents;
|
1752 |
-
return ($spEvents->displaying == "past") ? true : false;
|
1753 |
-
}
|
1754 |
-
/**
|
1755 |
-
* Returns true if the query is set for upcoming events, false otherwise
|
1756 |
-
*
|
1757 |
-
* @return bool
|
1758 |
-
*/
|
1759 |
-
function events_displaying_upcoming() {
|
1760 |
-
global $spEvents;
|
1761 |
-
return ($spEvents->displaying == "upcoming") ? true : false;
|
1762 |
-
}
|
1763 |
-
/**
|
1764 |
-
* Returns true if the query is set for month display (as opposed to Upcoming / Past)
|
1765 |
-
*
|
1766 |
-
* @return bool
|
1767 |
-
*/
|
1768 |
-
function events_displaying_month() {
|
1769 |
-
global $spEvents;
|
1770 |
-
return ( $spEvents->displaying == "month" ) ? true : false;
|
1771 |
-
}
|
1772 |
-
/**
|
1773 |
-
* Returns a link to the previous events in list view
|
1774 |
-
*
|
1775 |
-
* @return string
|
1776 |
-
*/
|
1777 |
-
function events_get_past_link() {
|
1778 |
-
global $spEvents;
|
1779 |
-
if( '' == get_option('permalink_structure') ) {
|
1780 |
-
return trailingslashit( get_bloginfo('url') ) . '?cat=' . $spEvents->eventCategory() . '&eventDisplay=past';
|
1781 |
-
} else {
|
1782 |
-
return get_bloginfo( 'url' ) . '/'. $spEvents->getCategoryBase() . '/' . strtolower( The_Events_Calendar::CATEGORYNAME ) . '/past/';
|
1783 |
-
}
|
1784 |
-
}
|
1785 |
-
/**
|
1786 |
-
* Returns a link to the upcoming events in list view
|
1787 |
-
*
|
1788 |
-
* @return string
|
1789 |
-
*/
|
1790 |
-
function events_get_upcoming_link() {
|
1791 |
-
global $spEvents;
|
1792 |
-
if( '' == get_option('permalink_structure') ) {
|
1793 |
-
return trailingslashit( get_bloginfo('url') ) . '?cat=' . $spEvents->eventCategory() . '&eventDisplay=upcoming';
|
1794 |
-
} else {
|
1795 |
-
return get_bloginfo( 'url' ) . '/'. $spEvents->getCategoryBase() . '/' . strtolower( The_Events_Calendar::CATEGORYNAME ) . '/upcoming/';
|
1796 |
-
}
|
1797 |
-
}
|
1798 |
-
/**
|
1799 |
-
* Returns a link to the next month's events page
|
1800 |
-
*
|
1801 |
-
* @return string
|
1802 |
-
*/
|
1803 |
-
function events_get_next_month_link() {
|
1804 |
-
global $spEvents;
|
1805 |
-
if( '' == get_option('permalink_structure') ) {
|
1806 |
-
return trailingslashit( get_bloginfo('url') ) . '?cat=' . $spEvents->eventCategory() . '&eventDate=' . $spEvents->nextMonth( $spEvents->date );
|
1807 |
-
} else {
|
1808 |
-
return get_bloginfo( 'url' ) . '/'. $spEvents->getCategoryBase() . '/' . strtolower( The_Events_Calendar::CATEGORYNAME ) . '/' . $spEvents->nextMonth( $spEvents->date );
|
1809 |
-
}
|
1810 |
-
}
|
1811 |
-
/**
|
1812 |
-
* Returns a link to the previous month's events page
|
1813 |
-
*
|
1814 |
-
* @return string
|
1815 |
-
*/
|
1816 |
-
function events_get_previous_month_link() {
|
1817 |
-
global $spEvents;
|
1818 |
-
if( '' == get_option('permalink_structure') ) {
|
1819 |
-
return trailingslashit( get_bloginfo('url') ) . '?cat=' . $spEvents->eventCategory() . '&eventDate=' . $spEvents->previousMonth( $spEvents->date );
|
1820 |
-
} else {
|
1821 |
-
return get_bloginfo( 'url' ) . '/' . $spEvents->getCategoryBase() . '/' . strtolower( The_Events_Calendar::CATEGORYNAME ) . '/' . $spEvents->previousMonth( $spEvents->date );
|
1822 |
-
}
|
1823 |
-
}
|
1824 |
-
/**
|
1825 |
-
* Returns a link to the events category
|
1826 |
-
*
|
1827 |
-
* @return string
|
1828 |
-
*/
|
1829 |
-
function events_get_events_link() {
|
1830 |
-
global $spEvents;
|
1831 |
-
if( '' == get_option('permalink_structure') ) {
|
1832 |
-
return trailingslashit( get_bloginfo('url') ) . '?cat=' . $spEvents->eventCategory();
|
1833 |
-
} else {
|
1834 |
-
return get_bloginfo( 'url' ) . '/' . $spEvents->getCategoryBase() . '/' . strtolower( The_Events_Calendar::CATEGORYNAME ) . '/';
|
1835 |
-
}
|
1836 |
-
}
|
1837 |
-
|
1838 |
-
function events_get_gridview_link( ) {
|
1839 |
-
global $spEvents;
|
1840 |
-
if( '' == get_option('permalink_structure') ) {
|
1841 |
-
return trailingslashit( get_bloginfo('url') ) . '?cat=' . $spEvents->eventCategory() . '&eventDisplay=month';
|
1842 |
-
} else {
|
1843 |
-
return trailingslashit( get_bloginfo('url') ) . $spEvents->getCategoryBase() . '/' . strtolower( The_Events_Calendar::CATEGORYNAME ) . '/month';
|
1844 |
-
}
|
1845 |
-
}
|
1846 |
-
|
1847 |
-
function events_get_listview_link( ) {
|
1848 |
-
global $spEvents;
|
1849 |
-
if( '' == get_option('permalink_structure') ) {
|
1850 |
-
return trailingslashit( get_bloginfo('url') ) . '?cat=' . $spEvents->eventCategory() . '&eventDisplay=upcoming';
|
1851 |
-
} else {
|
1852 |
-
return trailingslashit( get_bloginfo('url') ) . $spEvents->getCategoryBase() . '/' . strtolower( The_Events_Calendar::CATEGORYNAME ) . '/upcoming';
|
1853 |
-
}
|
1854 |
-
}
|
1855 |
-
function events_get_listview_past_link( ) {
|
1856 |
-
global $spEvents;
|
1857 |
-
if( '' == get_option('permalink_structure') ) {
|
1858 |
-
return trailingslashit( get_bloginfo('url') ) . '?cat=' . $spEvents->eventCategory() . '&eventDisplay=past';
|
1859 |
-
} else {
|
1860 |
-
return trailingslashit( get_bloginfo('url') ) . $spEvents->getCategoryBase() . '/' . strtolower( The_Events_Calendar::CATEGORYNAME ) . '/past';
|
1861 |
-
}
|
1862 |
-
}
|
1863 |
-
|
1864 |
-
/**
|
1865 |
-
* Returns a textual description of the previous month
|
1866 |
-
*
|
1867 |
-
* @return string
|
1868 |
-
*/
|
1869 |
-
function events_get_previous_month_text() {
|
1870 |
-
global $spEvents;
|
1871 |
-
return $spEvents->getDateString( $spEvents->previousMonth( $spEvents->date ) );
|
1872 |
-
}
|
1873 |
-
/**
|
1874 |
-
* Returns a texual description of the current month
|
1875 |
-
*
|
1876 |
-
* @return string
|
1877 |
-
*/
|
1878 |
-
function events_get_current_month_text( ){
|
1879 |
-
global $spEvents;
|
1880 |
-
return date( 'F', strtotime( $spEvents->date ) );
|
1881 |
-
}
|
1882 |
-
/**
|
1883 |
-
* Returns a textual description of the next month
|
1884 |
-
*
|
1885 |
-
* @return string
|
1886 |
-
*/
|
1887 |
-
function events_get_next_month_text() {
|
1888 |
-
global $spEvents;
|
1889 |
-
return $spEvents->getDateString( $spEvents->nextMonth( $spEvents->date ) );
|
1890 |
-
}
|
1891 |
-
/**
|
1892 |
-
* Returns a formatted date string of the currently displayed month (in "jump to month" mode)
|
1893 |
-
*
|
1894 |
-
* @return string
|
1895 |
-
*/
|
1896 |
-
function events_get_displayed_month() {
|
1897 |
-
global $spEvents;
|
1898 |
-
if ( $spEvents->displaying == "month" ) {
|
1899 |
-
return $spEvents->getDateString( $spEvents->date );
|
1900 |
-
}
|
1901 |
-
return " ";
|
1902 |
-
}
|
1903 |
-
/**
|
1904 |
-
* Returns a link to the currently displayed month (if in "jump to month" mode)
|
1905 |
-
*
|
1906 |
-
* @return string
|
1907 |
-
*/
|
1908 |
-
function events_get_this_month_link() {
|
1909 |
-
global $spEvents;
|
1910 |
-
if ( $spEvents->displaying == "month" ) {
|
1911 |
-
return get_bloginfo( 'url' ) . '/' . strtolower( The_Events_Calendar::CATEGORYNAME ) . '/' . $spEvents->date;
|
1912 |
-
}
|
1913 |
-
return false;
|
1914 |
-
}
|
1915 |
-
/**
|
1916 |
-
* Returns the state or province for US or non-US addresses
|
1917 |
-
*
|
1918 |
-
* @return string
|
1919 |
-
*/
|
1920 |
-
function the_event_region() {
|
1921 |
-
if (get_post_meta($postId, '_EventCountry', true ) == 'United States') {
|
1922 |
-
return the_event_state();
|
1923 |
-
} else {
|
1924 |
-
return the_event_province();
|
1925 |
-
}
|
1926 |
-
}
|
1927 |
-
/**
|
1928 |
-
* Returns true if the event is an all day event
|
1929 |
-
*
|
1930 |
-
* @return bool
|
1931 |
-
*/
|
1932 |
-
function the_event_all_day( $postId = null ) {
|
1933 |
-
if ( $postId === null || !is_numeric( $postId ) ) {
|
1934 |
-
global $post;
|
1935 |
-
$postId = $post->ID;
|
1936 |
-
}
|
1937 |
-
return get_post_meta( $postId, '_EventAllDay', true );
|
1938 |
-
}
|
1939 |
-
} // end if class_exists('The-Events-Calendar')
|
1940 |
-
|
1941 |
-
if( !class_exists( 'Events_List_Widget' ) ) {
|
1942 |
-
/**
|
1943 |
-
* Event List Widget
|
1944 |
-
*
|
1945 |
-
* Creates a widget that displays the next upcoming x events
|
1946 |
-
*/
|
1947 |
-
|
1948 |
-
class Events_List_Widget extends WP_Widget {
|
1949 |
-
|
1950 |
-
public $pluginDomain = 'the-events-calendar';
|
1951 |
-
|
1952 |
-
function Events_List_Widget() {
|
1953 |
-
/* Widget settings. */
|
1954 |
-
$widget_ops = array( 'classname' => 'eventsListWidget', 'description' => __( 'A widget that displays the next upcoming x events.', $this->pluginDomain) );
|
1955 |
-
|
1956 |
-
/* Widget control settings. */
|
1957 |
-
$control_ops = array( 'id_base' => 'events-list-widget' );
|
1958 |
-
|
1959 |
-
/* Create the widget. */
|
1960 |
-
$this->WP_Widget( 'events-list-widget', 'Events List Widget', $widget_ops, $control_ops );
|
1961 |
-
}
|
1962 |
-
|
1963 |
-
function widget( $args, $instance ) {
|
1964 |
-
global $wp_query;
|
1965 |
-
extract( $args );
|
1966 |
-
|
1967 |
-
/* User-selected settings. */
|
1968 |
-
$title = apply_filters('widget_title', $instance['title'] );
|
1969 |
-
$limit = $instance['limit'];
|
1970 |
-
$start = $instance['start'];
|
1971 |
-
$end = $instance['end'];
|
1972 |
-
$venue = $instance['venue'];
|
1973 |
-
$address = $instance['address'];
|
1974 |
-
$city = $instance['city'];
|
1975 |
-
$state = $instance['state'];
|
1976 |
-
$province = $instance['province'];
|
1977 |
-
$zip = $instance['zip'];
|
1978 |
-
$country = $instance['country'];
|
1979 |
-
$phone = $instance['phone'];
|
1980 |
-
$cost = $instance['cost'];
|
1981 |
-
|
1982 |
-
if ( eventsGetOptionValue('viewOption') == 'upcoming') {
|
1983 |
-
$event_url = events_get_listview_link();
|
1984 |
-
} else {
|
1985 |
-
$event_url = events_get_gridview_link();
|
1986 |
-
}
|
1987 |
-
|
1988 |
-
/* Before widget (defined by themes). */
|
1989 |
-
echo $before_widget;
|
1990 |
-
|
1991 |
-
/* Title of widget (before and after defined by themes). */
|
1992 |
-
if ( $title )
|
1993 |
-
echo $before_title . $title . $after_title;
|
1994 |
-
|
1995 |
-
/* Display link to all events */
|
1996 |
-
echo '<div class="dig-in"><a href="' . $event_url . '">' . __('View All Events', $this->pluginDomain ) . '</a></div>';
|
1997 |
-
|
1998 |
-
/* Display list of events. */
|
1999 |
-
if( function_exists( 'get_events' ) ) {
|
2000 |
-
$old_display = $wp_query->get('eventDisplay');
|
2001 |
-
$wp_query->set('eventDisplay', 'upcoming');
|
2002 |
-
$posts = get_events($limit);
|
2003 |
-
//print_r($posts);
|
2004 |
-
if ($posts) :
|
2005 |
-
|
2006 |
-
echo "<ul class='upcoming'>";
|
2007 |
-
foreach( $posts as $post ) :
|
2008 |
-
setup_postdata($post);
|
2009 |
-
if (file_exists(TEMPLATEPATH.'/events/events-list-load-widget-display.php') ) {
|
2010 |
-
include (TEMPLATEPATH.'/events/events-list-load-widget-display.php');
|
2011 |
-
} else {
|
2012 |
-
include( dirname( __FILE__ ) . '/views/events-list-load-widget-display.php' );
|
2013 |
-
}
|
2014 |
-
endforeach;
|
2015 |
-
echo "</ul>";
|
2016 |
-
|
2017 |
-
else:
|
2018 |
-
echo "no events";
|
2019 |
-
endif;
|
2020 |
-
$wp_query->set('eventDisplay', $old_display);
|
2021 |
-
}
|
2022 |
-
|
2023 |
-
|
2024 |
-
/* After widget (defined by themes). */
|
2025 |
-
echo $after_widget;
|
2026 |
-
}
|
2027 |
-
|
2028 |
-
function update( $new_instance, $old_instance ) {
|
2029 |
-
$instance = $old_instance;
|
2030 |
-
|
2031 |
-
/* Strip tags (if needed) and update the widget settings. */
|
2032 |
-
$instance['title'] = strip_tags( $new_instance['title'] );
|
2033 |
-
$instance['limit'] = strip_tags( $new_instance['limit'] );
|
2034 |
-
$instance['start'] = strip_tags( $new_instance['start'] );
|
2035 |
-
$instance['end'] = strip_tags( $new_instance['end'] );
|
2036 |
-
$instance['venue'] = strip_tags( $new_instance['venue'] );
|
2037 |
-
$instance['country'] = strip_tags( $new_instance['country'] );
|
2038 |
-
$instance['address'] = strip_tags( $new_instance['address'] );
|
2039 |
-
$instance['city'] = strip_tags( $new_instance['city'] );
|
2040 |
-
$instance['state'] = strip_tags( $new_instance['state'] );
|
2041 |
-
$instance['province'] = strip_tags( $new_instance['province'] );
|
2042 |
-
$instance['zip'] = strip_tags( $new_instance['zip'] );
|
2043 |
-
$instance['phone'] = strip_tags( $new_instance['phone'] );
|
2044 |
-
$instance['cost'] = strip_tags( $new_instance['cost'] );
|
2045 |
-
|
2046 |
-
return $instance;
|
2047 |
-
}
|
2048 |
-
|
2049 |
-
function form( $instance ) {
|
2050 |
-
/* Set up default widget settings. */
|
2051 |
-
$defaults = array( 'title' => 'Upcoming Events', 'limit' => '5', 'start' => true, 'end' => false, 'venue' => false, 'country' => true, 'address' => false, 'city' => true, 'state' => true, 'province' => true, 'zip' => false, 'phone' => false, 'cost' => false);
|
2052 |
-
$instance = wp_parse_args( (array) $instance, $defaults );
|
2053 |
-
include( dirname( __FILE__ ) . '/views/events-list-load-widget-admin.php' );
|
2054 |
-
}
|
2055 |
-
}
|
2056 |
-
|
2057 |
-
/* Add function to the widgets_ hook. */
|
2058 |
-
add_action( 'widgets_init', 'events_list_load_widgets' );
|
2059 |
-
|
2060 |
-
/* Function that registers widget. */
|
2061 |
-
function events_list_load_widgets() {
|
2062 |
-
global $pluginDomain;
|
2063 |
-
register_widget( 'Events_List_Widget' );
|
2064 |
-
// load text domain after class registration
|
2065 |
-
load_plugin_textdomain( $pluginDomain, false, basename(dirname(__FILE__)) . '/lang/');
|
2066 |
-
}
|
2067 |
}
|
2068 |
|
2069 |
-
|
2070 |
-
|
2071 |
-
|
2072 |
-
|
2073 |
-
|
2074 |
-
|
2075 |
-
|
2076 |
-
|
2077 |
-
|
2078 |
-
|
2079 |
-
|
2080 |
-
|
2081 |
-
$widget_ops = array('classname' => 'events_calendar_widget', 'description' => __( 'A calendar of your events') );
|
2082 |
-
$this->WP_Widget('calendar', __('Events Calendar'), $widget_ops);
|
2083 |
-
}
|
2084 |
-
|
2085 |
-
function widget( $args, $instance ) {
|
2086 |
-
extract($args);
|
2087 |
-
$title = apply_filters('widget_title', empty($instance['title']) ? ' ' : $instance['title']);
|
2088 |
-
echo $before_widget;
|
2089 |
-
if ( $title )
|
2090 |
-
echo $before_title . $title . $after_title;
|
2091 |
-
echo '<div id="calendar_wrap">';
|
2092 |
-
//echo get_calendar_custom(); /* 5 is the category id I have for event */
|
2093 |
-
echo '</div>';
|
2094 |
-
echo $after_widget;
|
2095 |
-
}
|
2096 |
-
|
2097 |
-
function update( $new_instance, $old_instance ) {
|
2098 |
-
$instance = $old_instance;
|
2099 |
-
$instance['title'] = strip_tags($new_instance['title']);
|
2100 |
-
|
2101 |
-
return $instance;
|
2102 |
-
}
|
2103 |
-
|
2104 |
-
function form( $instance ) {
|
2105 |
-
$instance = wp_parse_args( (array) $instance, array( 'title' => '' ) );
|
2106 |
-
$title = strip_tags($instance['title']);
|
2107 |
-
?>
|
2108 |
-
<p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:'); ?></label>
|
2109 |
-
<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></p>
|
2110 |
-
<?php
|
2111 |
-
}
|
2112 |
-
|
2113 |
-
}
|
2114 |
-
|
2115 |
-
/* Add function to the widgets_ hook. */
|
2116 |
-
add_action( 'widgets_init', 'events_calendar_load_widgets' );
|
2117 |
-
//add_action( 'widgets_init', 'get_calendar_custom' );
|
2118 |
-
|
2119 |
-
//function get_calendar_custom(){echo "hi";}
|
2120 |
-
|
2121 |
-
/* Function that registers widget. */
|
2122 |
-
function events_calendar_load_widgets() {
|
2123 |
-
global $pluginDomain;
|
2124 |
-
register_widget( 'Events_Calendar_Widget' );
|
2125 |
-
// load text domain after class registration
|
2126 |
-
load_plugin_textdomain( $pluginDomain, false, basename(dirname(__FILE__)) . '/lang/');
|
2127 |
-
}
|
2128 |
}
|
2129 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
/*
|
3 |
Plugin Name: The Events Calendar
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/the-events-calendar/
|
5 |
+
Description: The Events Calendar plugin enables you to rapidly create and manage events using the post editor. Features include optional Eventbrite integration, Google Maps integration as well as default calendar grid and list templates for streamlined one click installation. When updating The Events Calendar, if EventBrite for The Events Calendar is being used, the two plugins must be updated together. Requires PHP 5.1 or above.
|
6 |
+
Version: 1.6
|
7 |
Author: Shane & Peter, Inc.
|
8 |
Author URI: http://www.shaneandpeter.com/
|
9 |
Text Domain: the-events-calendar
|
10 |
*/
|
11 |
|
|
|
12 |
|
13 |
+
register_activation_hook(__FILE__, 'the_events_calendar_activate');
|
14 |
+
add_action( 'admin_head', 'the_events_calendar_version_check' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
|
16 |
+
function the_events_calendar_version_check() {
|
17 |
+
if ( version_compare( PHP_VERSION, "5.1", "<") ) {
|
18 |
+
echo "<div class='error'>The Events Calendar requires PHP 5.1 or greater. Please de-activate The Events Calendar.</div>";
|
19 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
}
|
21 |
|
22 |
+
function the_events_calendar_activate() {
|
23 |
+
if ( version_compare( PHP_VERSION, "5.1", "<") ) {
|
24 |
+
trigger_error('', E_USER_ERROR);
|
25 |
+
} else {
|
26 |
+
require_once(dirname(__FILE__) . "/the-events-calendar.class.php");
|
27 |
+
require_once(dirname(__FILE__) . "/the-events-calendar-exception.class.php");
|
28 |
+
require_once(dirname(__FILE__) . "/events-calendar-widget.class.php");
|
29 |
+
require_once(dirname(__FILE__) . "/events-list-widget.class.php");
|
30 |
+
require_once(dirname(__FILE__) . "/template-tags.php");
|
31 |
+
global $spEvents;
|
32 |
+
$spEvents->on_activate();
|
33 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
}
|
35 |
+
|
36 |
+
if (version_compare(phpversion(), "5.1", ">=")) {
|
37 |
+
require_once(dirname(__FILE__) . "/the-events-calendar.class.php");
|
38 |
+
require_once(dirname(__FILE__) . "/the-events-calendar-exception.class.php");
|
39 |
+
require_once(dirname(__FILE__) . "/events-calendar-widget.class.php");
|
40 |
+
require_once(dirname(__FILE__) . "/events-list-widget.class.php");
|
41 |
+
require_once(dirname(__FILE__) . "/template-tags.php");
|
42 |
+
}
|
uninstall.php
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
delete_option( 'sp_events_calendar_options' );
|
3 |
+
global $wp_rewrite;
|
4 |
+
$wp_rewrite->flush_rules();
|
views/datepicker.php
CHANGED
@@ -1,18 +1,17 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
6 |
}
|
7 |
?>
|
8 |
<script type="text/javascript" charset="utf-8">
|
9 |
-
jQuery(document).ready(function(){
|
10 |
-
jQuery('.<?php echo $prefix; ?>events-dropdown').change(function(
|
11 |
-
|
12 |
-
yearSelect = jQuery('#<?php echo $prefix; ?>events-year');
|
13 |
-
jumpMonth = monthSelect.attr("options")[monthSelect.attr("selectedIndex")].value;
|
14 |
-
jumpYear = yearSelect.attr("options")[yearSelect.attr("selectedIndex")].value;
|
15 |
-
location.href = '<?php echo $link; ?>' + jumpYear + '-' + jumpMonth;
|
16 |
});
|
17 |
});
|
18 |
</script>
|
@@ -21,4 +20,4 @@ if( '' == get_option('permalink_structure') ) {
|
|
21 |
</select>
|
22 |
<select id='<?php echo $prefix; ?>events-year' name='EventJumpToYear' class='<?php echo $prefix; ?>events-dropdown'>
|
23 |
<?php echo $yearOptions; ?>
|
24 |
-
</select>
|
1 |
<?php
|
2 |
+
$cat_id = get_query_var( 'cat' );
|
3 |
+
if( !$cat_id ) {
|
4 |
+
$cat_id = $spEvents->eventCategory();
|
5 |
+
}
|
6 |
+
$link = get_category_link( $cat_id );
|
7 |
+
if( '' == get_option('permalink_structure') || 'off' == eventsGetOptionValue('useRewriteRules','on') ) {
|
8 |
+
$link .= '&eventDisplay=month&eventDate=';
|
9 |
}
|
10 |
?>
|
11 |
<script type="text/javascript" charset="utf-8">
|
12 |
+
jQuery(document).ready(function() {
|
13 |
+
jQuery('.<?php echo $prefix; ?>events-dropdown').change(function() {
|
14 |
+
location.href = '<?php echo $link; ?>' + jQuery('#<?php echo $prefix; ?>events-year').val() + '-' + jQuery('#<?php echo $prefix; ?>events-month').val();
|
|
|
|
|
|
|
|
|
15 |
});
|
16 |
});
|
17 |
</script>
|
20 |
</select>
|
21 |
<select id='<?php echo $prefix; ?>events-year' name='EventJumpToYear' class='<?php echo $prefix; ?>events-dropdown'>
|
22 |
<?php echo $yearOptions; ?>
|
23 |
+
</select>
|
views/events-list-load-widget-admin.php
CHANGED
@@ -11,6 +11,11 @@
|
|
11 |
<option <?php if ( $i == $instance['limit'] ) {echo 'selected="selected"';}?> > <?php echo $i;?> </option>
|
12 |
<?php } ?>
|
13 |
</select>
|
|
|
|
|
|
|
|
|
|
|
14 |
</p>
|
15 |
|
16 |
<p><?php _e( 'Display:', $this->pluginDomain ); ?><br/>
|
11 |
<option <?php if ( $i == $instance['limit'] ) {echo 'selected="selected"';}?> > <?php echo $i;?> </option>
|
12 |
<?php } ?>
|
13 |
</select>
|
14 |
+
</p>
|
15 |
+
<label for="<?php echo $this->get_field_id( 'no_upcoming_events' ); ?>"><?php _e('Don\'t show the widget if there are no upcoming events:',$this->pluginDomain);?></label>
|
16 |
+
<input id="<?php echo $this->get_field_id( 'no_upcoming_events' ); ?>" name="<?php echo $this->get_field_name( 'no_upcoming_events' ); ?>" type="checkbox" <?php checked( $instance['no_upcoming_events'], 1 ); ?> value="1" />
|
17 |
+
<p>
|
18 |
+
|
19 |
</p>
|
20 |
|
21 |
<p><?php _e( 'Display:', $this->pluginDomain ); ?><br/>
|
views/events-list-load-widget-display.php
CHANGED
@@ -4,8 +4,6 @@
|
|
4 |
* There is currently no default styling, which is highly needed.
|
5 |
* @return string
|
6 |
*/
|
7 |
-
// let's make time
|
8 |
-
$start_time = strtotime(get_post_meta( $post->ID, '_EventStartDate', true ));
|
9 |
$EventCity = get_post_meta( $post->ID, '_EventCity', true );
|
10 |
$EventCountry = get_post_meta( $post->ID, '_EventCountry', true );
|
11 |
$EventState = get_post_meta( $post->ID, '_EventState', true );
|
@@ -14,10 +12,11 @@ $EventProvince = get_post_meta( $post->ID, '_EventProvince', true );
|
|
14 |
|
15 |
<li class="<?php echo $alt_text ?>">
|
16 |
<div class="when">
|
17 |
-
|
18 |
-
|
|
|
|
|
19 |
</div>
|
20 |
-
<div class="event"><?php echo $post->post_title ?></div>
|
21 |
<div class="loc"><?php
|
22 |
$space = false;
|
23 |
$output = '';
|
4 |
* There is currently no default styling, which is highly needed.
|
5 |
* @return string
|
6 |
*/
|
|
|
|
|
7 |
$EventCity = get_post_meta( $post->ID, '_EventCity', true );
|
8 |
$EventCountry = get_post_meta( $post->ID, '_EventCountry', true );
|
9 |
$EventState = get_post_meta( $post->ID, '_EventState', true );
|
12 |
|
13 |
<li class="<?php echo $alt_text ?>">
|
14 |
<div class="when">
|
15 |
+
<?php echo the_event_start_date( $post->ID, false ); ?>
|
16 |
+
</div>
|
17 |
+
<div class="event">
|
18 |
+
<a href="<?php echo get_permalink($post->ID) ?>"><?php echo $post->post_title ?></a>
|
19 |
</div>
|
|
|
20 |
<div class="loc"><?php
|
21 |
$space = false;
|
22 |
$output = '';
|
views/events-meta-box.php
CHANGED
@@ -16,8 +16,8 @@
|
|
16 |
jQuery("#EventTimeFormatDiv").toggle();
|
17 |
});
|
18 |
if( jQuery('#allDayCheckbox').attr('checked') == true ) {
|
19 |
-
jQuery(".timeofdayoptions").addClass("
|
20 |
-
jQuery("#EventTimeFormatDiv").addClass("
|
21 |
}
|
22 |
// Set the initial state of the event detail and EB ticketing div
|
23 |
jQuery("input[name='isEvent']").each(function(){
|
@@ -31,22 +31,26 @@
|
|
31 |
//show state/province input based on first option in countries list, or based on user input of country
|
32 |
function spShowHideCorrectStateProvinceInput(country) {
|
33 |
if (country == 'US') {
|
34 |
-
jQuery("#USA").removeClass("
|
35 |
-
jQuery("#International").addClass("
|
36 |
-
|
37 |
-
else {
|
38 |
-
jQuery("#International").removeClass("
|
39 |
-
jQuery("#USA").addClass("
|
|
|
|
|
|
|
|
|
|
|
40 |
}
|
41 |
}
|
42 |
|
43 |
-
spShowHideCorrectStateProvinceInput(jQuery("#EventCountry > option:first").attr('label'));
|
44 |
|
45 |
jQuery("#EventCountry").change(function() {
|
46 |
-
var
|
47 |
-
|
48 |
-
|
49 |
-
else spShowHideCorrectStateProvinceInput(null);
|
50 |
});
|
51 |
|
52 |
var spDaysPerMonth = [29,31,28,31,30,31,30,31,31,30,31,30,31];
|
@@ -56,14 +60,14 @@
|
|
56 |
var spEndDays = [ jQuery('#28EndDays'), jQuery('#29EndDays'), jQuery('#30EndDays'), jQuery('#31EndDays') ];
|
57 |
|
58 |
jQuery("select[name='EventStartMonth'], select[name='EventEndMonth']").change(function() {
|
59 |
-
var
|
|
|
60 |
// get changed select field
|
61 |
if( startEnd == 'EventStartMonth' ) startEnd = 'Start';
|
62 |
else startEnd = 'End';
|
63 |
// show/hide date lists according to month
|
64 |
-
var chosenMonth =
|
65 |
if( chosenMonth.charAt(0) == '0' ) chosenMonth = chosenMonth.replace('0', '');
|
66 |
-
else chosenMonth = chosenMonth;
|
67 |
// leap year
|
68 |
var remainder = jQuery("select[name='Event" + startEnd + "Year']").attr("value") % 4;
|
69 |
if( chosenMonth == 2 && remainder == 0 ) chosenMonth = 0;
|
@@ -91,6 +95,49 @@
|
|
91 |
jQuery("select[name='EventEndYear']").change(function() {
|
92 |
jQuery("select[name='EventEndMonth']").change();
|
93 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
|
95 |
});
|
96 |
</script>
|
@@ -103,9 +150,6 @@
|
|
103 |
.eventForm select, .eventForm input {
|
104 |
font-size:11px;
|
105 |
}
|
106 |
-
.eventForm .hide {
|
107 |
-
display:none;
|
108 |
-
}
|
109 |
.eventForm h4 {
|
110 |
font-size:1.2em;
|
111 |
margin:2em 0 1em;
|
@@ -151,47 +195,67 @@
|
|
151 |
<?php endif; ?>
|
152 |
</style>
|
153 |
<div id="eventIntro">
|
154 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
155 |
<p>
|
156 |
<?php _e('Is this post an event?',$this->pluginDomain); ?>
|
157 |
-
<input tabindex="
|
158 |
-
<input tabindex="
|
159 |
</p>
|
160 |
</div>
|
161 |
<div id='eventDetails' class="inside eventForm">
|
162 |
-
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
163 |
<table cellspacing="0" cellpadding="0" id="EventInfo">
|
164 |
<tr>
|
165 |
<td colspan="2" class="snp_sectionheader"><h4 class="event-time"><?php _e('Event Time & Date', $this->pluginDomain); ?></h4></td>
|
166 |
</tr>
|
167 |
<tr>
|
168 |
<td><?php _e('All day event?', $this->pluginDomain); ?></td>
|
169 |
-
<td><input tabindex="
|
170 |
</tr>
|
171 |
<tr>
|
172 |
<td style="width:125px;"><?php _e('Start Date / Time:',$this->pluginDomain); ?></td>
|
173 |
<td>
|
174 |
-
<select tabindex="
|
175 |
<?php echo $startMonthOptions; ?>
|
176 |
</select>
|
177 |
<?php foreach( $startDayOptions as $key => $val ) : ?>
|
178 |
-
<select id="<?php echo $key; ?>StartDays" class="eventStartDateField" tabindex="
|
179 |
<?php echo $val; ?>
|
180 |
</select>
|
181 |
<?php endforeach; ?>
|
182 |
-
<select tabindex="
|
183 |
<?php echo $startYearOptions; ?>
|
184 |
</select>
|
185 |
<span class='timeofdayoptions'>
|
186 |
<?php _e('@',$this->pluginDomain); ?>
|
187 |
-
<select tabindex="
|
188 |
<?php echo $startHourOptions; ?>
|
189 |
</select>
|
190 |
-
<select tabindex="
|
191 |
<?php echo $startMinuteOptions; ?>
|
192 |
</select>
|
193 |
<?php if ( !strstr( get_option( 'time_format', The_Events_Calendar::TIMEFORMAT ), 'H' ) ) : ?>
|
194 |
-
<select tabindex="
|
195 |
<?php echo $startMeridianOptions; ?>
|
196 |
</select>
|
197 |
<?php endif; ?>
|
@@ -201,27 +265,27 @@
|
|
201 |
<tr>
|
202 |
<td><?php _e('End Date / Time:',$this->pluginDomain); ?></td>
|
203 |
<td>
|
204 |
-
<select tabindex="
|
205 |
<?php echo $endMonthOptions; ?>
|
206 |
</select>
|
207 |
<?php foreach( $endDayOptions as $key => $val ) : ?>
|
208 |
-
<select id="<?php echo $key; ?>EndDays" class="eventEndDateField" tabindex="
|
209 |
<?php echo $val; ?>
|
210 |
</select>
|
211 |
<?php endforeach; ?>
|
212 |
-
<select tabindex="
|
213 |
<?php echo $endYearOptions; ?>
|
214 |
</select>
|
215 |
<span class='timeofdayoptions'>
|
216 |
<?php _e('@',$this->pluginDomain); ?>
|
217 |
-
<select class="spEventsInput"tabindex="
|
218 |
<?php echo $endHourOptions; ?>
|
219 |
</select>
|
220 |
-
<select tabindex="
|
221 |
<?php echo $endMinuteOptions; ?>
|
222 |
</select>
|
223 |
<?php if ( !strstr( get_option( 'time_format', The_Events_Calendar::TIMEFORMAT ), 'H' ) ) : ?>
|
224 |
-
<select tabindex="
|
225 |
<?php echo $endMeridianOptions; ?>
|
226 |
</select>
|
227 |
<?php endif; ?>
|
@@ -234,42 +298,62 @@
|
|
234 |
<tr>
|
235 |
<td><?php _e('Venue:',$this->pluginDomain); ?></td>
|
236 |
<td>
|
237 |
-
<input tabindex="
|
238 |
</td>
|
239 |
</tr>
|
240 |
<tr>
|
241 |
<td><?php _e('Country:',$this->pluginDomain); ?></td>
|
242 |
<td>
|
243 |
-
<select tabindex="
|
244 |
-
<?php
|
245 |
-
$this->constructCountries();
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
253 |
?>
|
254 |
</select>
|
|
|
255 |
</td>
|
256 |
</tr>
|
257 |
<tr>
|
258 |
<td><?php _e('Address:',$this->pluginDomain); ?></td>
|
259 |
-
<td><input tabindex="
|
260 |
</tr>
|
261 |
<tr>
|
262 |
<td><?php _e('City:',$this->pluginDomain); ?></td>
|
263 |
-
<td><input tabindex="
|
264 |
</tr>
|
265 |
-
<
|
|
|
266 |
<td><?php _e('Province:',$this->pluginDomain); ?></td>
|
267 |
-
<td><input tabindex="
|
268 |
</tr>
|
269 |
-
<tr id="USA" <?php if($_EventCountry !== 'United States')
|
270 |
<td><?php _e('State:',$this->pluginDomain); ?></td>
|
271 |
<td>
|
272 |
-
<select tabindex="
|
273 |
<option value=""><?php _e('Select a State:',$this->pluginDomain); ?></option>
|
274 |
<?php $states = array (
|
275 |
"AL" => __("Alabama", $this->pluginDomain),
|
@@ -337,18 +421,35 @@
|
|
337 |
</tr>
|
338 |
<tr>
|
339 |
<td><?php _e('Postal Code:',$this->pluginDomain); ?></td>
|
340 |
-
<td><input tabindex="
|
341 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
342 |
<tr>
|
343 |
<td><?php _e('Phone:',$this->pluginDomain); ?></td>
|
344 |
-
<td><input tabindex="
|
345 |
</tr>
|
346 |
<tr>
|
347 |
<td colspan="2" class="snp_sectionheader"><h4><?php _e('Event Cost', $this->pluginDomain); ?></h4></td>
|
348 |
</tr>
|
349 |
<tr>
|
350 |
<td><?php _e('Cost:',$this->pluginDomain); ?></td>
|
351 |
-
<td><input tabindex="
|
352 |
</tr>
|
353 |
<tr>
|
354 |
<td></td>
|
@@ -368,9 +469,16 @@
|
|
368 |
|
369 |
</table>
|
370 |
</div>
|
371 |
-
|
372 |
-
|
373 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
374 |
<div id="mainDonateRow" class="eventForm">
|
375 |
<?php _e('<h4>If You Like This Plugin - Help Support It</h4><p>We spend a lot of time and effort building robust plugins and we love to share them with the community. If you use this plugin consider making a donation to help support its\' continued development. You may remove this message on the <a href="/wp-admin/options-general.php?page=the-events-calendar.php">settings page</a>.</p>', $this->pluginDomain); ?>
|
376 |
<div id="snp_thanks">
|
@@ -379,19 +487,12 @@
|
|
379 |
<a href="http://www.shaneandpeter.com?source=events-plugin" target="_blank">www.shaneandpeter.com</a>
|
380 |
</div>
|
381 |
<div id="snp_donate">
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
<input type="hidden" name="item_name" value="Events Post Editor">
|
386 |
-
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
|
387 |
-
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
|
388 |
-
<label id="submitLabel" for="submit">
|
389 |
-
</label>
|
390 |
-
</form>
|
391 |
</div>
|
392 |
-
<div style="clear:both;"></div>
|
393 |
-
</div><!-- end
|
394 |
-
|
395 |
<style>
|
396 |
#eventDetails h4,
|
397 |
#EventBriteDetailDiv h4 {
|
@@ -399,39 +500,32 @@
|
|
399 |
border-bottom: 1px solid #e5e5e5;
|
400 |
padding-bottom: 6px;
|
401 |
}
|
402 |
-
|
403 |
.eventForm td {
|
404 |
padding-bottom: 10px !important;
|
405 |
padding-top: 0 !important;
|
406 |
}
|
407 |
-
|
408 |
.eventForm .snp_sectionheader {
|
409 |
padding-bottom: 5px !important;
|
410 |
}
|
411 |
-
|
412 |
#snp_thanks {
|
413 |
float: left;
|
414 |
width: 200px;
|
415 |
margin: 5px 0 0 0;
|
416 |
}
|
417 |
-
|
418 |
.snp_brand {
|
419 |
font-weight: normal;
|
420 |
margin: 8px 0;
|
421 |
font-family: Georgia !important;
|
422 |
font-size: 17px !important;
|
423 |
}
|
424 |
-
|
425 |
.eventForm p {
|
426 |
margin: 0 0 10px 0!important;
|
427 |
}
|
428 |
-
|
429 |
#eventDetails small,
|
430 |
#EventBriteDetailDiv small {
|
431 |
color: #a3a3a3;
|
432 |
font-size: 10px;
|
433 |
}
|
434 |
-
|
435 |
#eventBriteTicketing,
|
436 |
#mainDonateRow {
|
437 |
background: url(<?php echo WP_PLUGIN_URL . '/the-events-calendar/resources/images/bg_fade.png';
|
@@ -449,32 +543,31 @@
|
|
449 |
border-radius: 3px;
|
450 |
margin: -11px 6px 0;
|
451 |
}
|
452 |
-
|
453 |
#eventBriteTicketing h2 {
|
454 |
-
background: url(<?php echo WP_PLUGIN_URL . '/the-events-calendar/resources/images/
|
455 |
?>) no-repeat top right;
|
456 |
-
height:
|
457 |
margin: 0;
|
458 |
}
|
459 |
-
|
460 |
.eventForm {
|
461 |
margin-top: -20px;
|
462 |
}
|
463 |
-
|
464 |
-
.eventForm .description_input {
|
465 |
-
border: 1px solid #dfdfdf;
|
466 |
-
width: 95%;
|
467 |
-
height: 45px;
|
468 |
-
}
|
469 |
-
|
470 |
#EventInfo,
|
471 |
table.eventForm {
|
472 |
width: 100%;
|
473 |
}
|
474 |
-
|
475 |
td.snp_message {
|
476 |
padding-bottom: 10px !important;
|
477 |
}
|
478 |
</style>
|
479 |
-
|
480 |
-
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
jQuery("#EventTimeFormatDiv").toggle();
|
17 |
});
|
18 |
if( jQuery('#allDayCheckbox').attr('checked') == true ) {
|
19 |
+
jQuery(".timeofdayoptions").addClass("tec_hide")
|
20 |
+
jQuery("#EventTimeFormatDiv").addClass("tec_hide");
|
21 |
}
|
22 |
// Set the initial state of the event detail and EB ticketing div
|
23 |
jQuery("input[name='isEvent']").each(function(){
|
31 |
//show state/province input based on first option in countries list, or based on user input of country
|
32 |
function spShowHideCorrectStateProvinceInput(country) {
|
33 |
if (country == 'US') {
|
34 |
+
jQuery("#USA").removeClass("tec_hide");
|
35 |
+
jQuery("#International").addClass("tec_hide");
|
36 |
+
jQuery('input[name="EventStateExists"]').val(1);
|
37 |
+
} else if ( country != '' ) {
|
38 |
+
jQuery("#International").removeClass("tec_hide");
|
39 |
+
jQuery("#USA").addClass("tec_hide");
|
40 |
+
jQuery('input[name="EventStateExists"]').val(0);
|
41 |
+
} else {
|
42 |
+
jQuery("#International").addClass("tec_hide");
|
43 |
+
jQuery("#USA").addClass("tec_hide");
|
44 |
+
jQuery('input[name="EventStateExists"]').val(0);
|
45 |
}
|
46 |
}
|
47 |
|
48 |
+
spShowHideCorrectStateProvinceInput( jQuery("#EventCountry > option:first").attr('label') );
|
49 |
|
50 |
jQuery("#EventCountry").change(function() {
|
51 |
+
var countryLabel = jQuery(this).find('option:selected').attr('label');
|
52 |
+
jQuery('input[name="EventCountryLabel"]').val(countryLabel);
|
53 |
+
spShowHideCorrectStateProvinceInput( countryLabel );
|
|
|
54 |
});
|
55 |
|
56 |
var spDaysPerMonth = [29,31,28,31,30,31,30,31,31,30,31,30,31];
|
60 |
var spEndDays = [ jQuery('#28EndDays'), jQuery('#29EndDays'), jQuery('#30EndDays'), jQuery('#31EndDays') ];
|
61 |
|
62 |
jQuery("select[name='EventStartMonth'], select[name='EventEndMonth']").change(function() {
|
63 |
+
var t = jQuery(this);
|
64 |
+
var startEnd = t.attr("name");
|
65 |
// get changed select field
|
66 |
if( startEnd == 'EventStartMonth' ) startEnd = 'Start';
|
67 |
else startEnd = 'End';
|
68 |
// show/hide date lists according to month
|
69 |
+
var chosenMonth = t.attr("value");
|
70 |
if( chosenMonth.charAt(0) == '0' ) chosenMonth = chosenMonth.replace('0', '');
|
|
|
71 |
// leap year
|
72 |
var remainder = jQuery("select[name='Event" + startEnd + "Year']").attr("value") % 4;
|
73 |
if( chosenMonth == 2 && remainder == 0 ) chosenMonth = 0;
|
95 |
jQuery("select[name='EventEndYear']").change(function() {
|
96 |
jQuery("select[name='EventEndMonth']").change();
|
97 |
});
|
98 |
+
// hide / show google map toggles
|
99 |
+
var tecAddressExists = false;
|
100 |
+
var tecAddressInputs = ["EventAddress","EventCity","EventZip"];
|
101 |
+
function tecShowHideGoogleMapToggles() {
|
102 |
+
var selectValExists = false;
|
103 |
+
var inputValExists = false;
|
104 |
+
if(jQuery('input[name="EventCountryLabel"]').val()) selectValExists = true;
|
105 |
+
jQuery.each( tecAddressInputs, function(key, val) {
|
106 |
+
if( jQuery('input[name="' + val + '"]').val() ) {
|
107 |
+
inputValExists = true;
|
108 |
+
return false;
|
109 |
+
}
|
110 |
+
});
|
111 |
+
if( selectValExists || inputValExists ) jQuery('tr#google_map_link_toggle,tr#google_map_toggle').removeClass('tec_hide');
|
112 |
+
else jQuery('tr#google_map_link_toggle,tr#google_map_toggle').addClass('tec_hide');
|
113 |
+
}
|
114 |
+
jQuery.each( tecAddressInputs, function(key, val) {
|
115 |
+
jQuery('input[name="' + val + '"]').bind('keyup', function(event) {
|
116 |
+
var textLength = event.currentTarget.textLength;
|
117 |
+
if(textLength == 0) tecShowHideGoogleMapToggles();
|
118 |
+
else if(textLength == 1) tecShowHideGoogleMapToggles();
|
119 |
+
});
|
120 |
+
});
|
121 |
+
jQuery('select[name="EventCountry"]').bind('change', function(event) {
|
122 |
+
if(event.currentTarget.selectedIndex) tecShowHideGoogleMapToggles();
|
123 |
+
else tecShowHideGoogleMapToggles();
|
124 |
+
});
|
125 |
+
tecShowHideGoogleMapToggles();
|
126 |
+
// Form validation
|
127 |
+
jQuery("form[name='post']").submit(function() {
|
128 |
+
if( jQuery("#isEventNo").attr('checked') == true ) {
|
129 |
+
// do not validate since this is not an event
|
130 |
+
return true;
|
131 |
+
}
|
132 |
+
var event_phone = jQuery('#EventPhone');
|
133 |
+
|
134 |
+
if( event_phone.length > 0 && event_phone.val().length && !event_phone.val().match(/^((\+\d{1,3}(-| )?\(?\d\)?(-| )?\d{1,5})|(\(?\d{2,6}\)?))(-| )?(\d{3,4})(-| )?(\d{4})(( x| ext)\d{1,5}){0,1}$/) ) {
|
135 |
+
event_phone.focus();
|
136 |
+
alert('<?php _e('Phone',$this->pluginDomain); ?> <?php _e('is not valid.', $this->pluginDomain); ?> <?php _e('Valid values are local format (eg. 02 1234 5678 or 123 123 4567) or international format (eg. +61 (0) 2 1234 5678 or +1 123 123 4567). You may also use an optional extension of up to five digits prefixed by x or ext (eg. 123 123 4567 x89)'); ?> ');
|
137 |
+
return false;
|
138 |
+
}
|
139 |
+
return true;
|
140 |
+
});
|
141 |
|
142 |
});
|
143 |
</script>
|
150 |
.eventForm select, .eventForm input {
|
151 |
font-size:11px;
|
152 |
}
|
|
|
|
|
|
|
153 |
.eventForm h4 {
|
154 |
font-size:1.2em;
|
155 |
margin:2em 0 1em;
|
195 |
<?php endif; ?>
|
196 |
</style>
|
197 |
<div id="eventIntro">
|
198 |
+
<div id="tec-post-error" class="tec-events-error error"></div>
|
199 |
+
<?php
|
200 |
+
try {
|
201 |
+
do_action('sp_events_post_errors', $postId );
|
202 |
+
if( !$this->postExceptionThrown ) delete_post_meta( $postId, self::EVENTSERROROPT );
|
203 |
+
} catch ( TEC_Post_Exception $e) {
|
204 |
+
$this->postExceptionThrown = true;
|
205 |
+
update_post_meta( $postId, self::EVENTSERROROPT, trim( $e->getMessage() ) );
|
206 |
+
$e->displayMessage( $postId );
|
207 |
+
}
|
208 |
+
?>
|
209 |
<p>
|
210 |
<?php _e('Is this post an event?',$this->pluginDomain); ?>
|
211 |
+
<label><input tabindex="<?php $this->tabIndex(); ?>" type='radio' name='isEvent' value='yes' <?php echo $isEventChecked; ?> /> <b><?php _e('Yes', $this->pluginDomain); ?></b></label>
|
212 |
+
<label><input tabindex="<?php $this->tabIndex(); ?>" type='radio' name='isEvent' value='no' <?php echo $isNotEventChecked; ?> /> <b><?php _e('No', $this->pluginDomain); ?></b></label>
|
213 |
</p>
|
214 |
</div>
|
215 |
<div id='eventDetails' class="inside eventForm">
|
216 |
+
<?php
|
217 |
+
try {
|
218 |
+
do_action('sp_events_detail_top', $postId );
|
219 |
+
if( !$this->postExceptionThrown ) delete_post_meta( $postId, self::EVENTSERROROPT );
|
220 |
+
} catch ( TEC_Post_Exception $e) {
|
221 |
+
$this->postExceptionThrown = true;
|
222 |
+
update_post_meta( $postId, self::EVENTSERROROPT, trim( $e->getMessage() ) );
|
223 |
+
$e->displayMessage( $postId );
|
224 |
+
}
|
225 |
+
|
226 |
+
?>
|
227 |
<table cellspacing="0" cellpadding="0" id="EventInfo">
|
228 |
<tr>
|
229 |
<td colspan="2" class="snp_sectionheader"><h4 class="event-time"><?php _e('Event Time & Date', $this->pluginDomain); ?></h4></td>
|
230 |
</tr>
|
231 |
<tr>
|
232 |
<td><?php _e('All day event?', $this->pluginDomain); ?></td>
|
233 |
+
<td><input tabindex="<?php $this->tabIndex(); ?>" type='checkbox' id='allDayCheckbox' name='EventAllDay' value='yes' <?php echo $isEventAllDay; ?> /></td>
|
234 |
</tr>
|
235 |
<tr>
|
236 |
<td style="width:125px;"><?php _e('Start Date / Time:',$this->pluginDomain); ?></td>
|
237 |
<td>
|
238 |
+
<select tabindex="<?php $this->tabIndex(); ?>" name='EventStartMonth'>
|
239 |
<?php echo $startMonthOptions; ?>
|
240 |
</select>
|
241 |
<?php foreach( $startDayOptions as $key => $val ) : ?>
|
242 |
+
<select id="<?php echo $key; ?>StartDays" class="eventStartDateField" tabindex="<?php $this->tabIndex(); ?>" name='EventStartDay'>
|
243 |
<?php echo $val; ?>
|
244 |
</select>
|
245 |
<?php endforeach; ?>
|
246 |
+
<select tabindex="<?php $this->tabIndex(); ?>" name='EventStartYear'>
|
247 |
<?php echo $startYearOptions; ?>
|
248 |
</select>
|
249 |
<span class='timeofdayoptions'>
|
250 |
<?php _e('@',$this->pluginDomain); ?>
|
251 |
+
<select tabindex="<?php $this->tabIndex(); ?>" name='EventStartHour'>
|
252 |
<?php echo $startHourOptions; ?>
|
253 |
</select>
|
254 |
+
<select tabindex="<?php $this->tabIndex(); ?>" name='EventStartMinute'>
|
255 |
<?php echo $startMinuteOptions; ?>
|
256 |
</select>
|
257 |
<?php if ( !strstr( get_option( 'time_format', The_Events_Calendar::TIMEFORMAT ), 'H' ) ) : ?>
|
258 |
+
<select tabindex="<?php $this->tabIndex(); ?>" name='EventStartMeridian'>
|
259 |
<?php echo $startMeridianOptions; ?>
|
260 |
</select>
|
261 |
<?php endif; ?>
|
265 |
<tr>
|
266 |
<td><?php _e('End Date / Time:',$this->pluginDomain); ?></td>
|
267 |
<td>
|
268 |
+
<select tabindex="<?php $this->tabIndex(); ?>" name='EventEndMonth'>
|
269 |
<?php echo $endMonthOptions; ?>
|
270 |
</select>
|
271 |
<?php foreach( $endDayOptions as $key => $val ) : ?>
|
272 |
+
<select id="<?php echo $key; ?>EndDays" class="eventEndDateField" tabindex="<?php $this->tabIndex(); ?>" name='EventEndDay'>
|
273 |
<?php echo $val; ?>
|
274 |
</select>
|
275 |
<?php endforeach; ?>
|
276 |
+
<select tabindex="<?php $this->tabIndex(); ?>" name='EventEndYear'>
|
277 |
<?php echo $endYearOptions; ?>
|
278 |
</select>
|
279 |
<span class='timeofdayoptions'>
|
280 |
<?php _e('@',$this->pluginDomain); ?>
|
281 |
+
<select class="spEventsInput"tabindex="<?php $this->tabIndex(); ?>" name='EventEndHour'>
|
282 |
<?php echo $endHourOptions; ?>
|
283 |
</select>
|
284 |
+
<select tabindex="<?php $this->tabIndex(); ?>" name='EventEndMinute'>
|
285 |
<?php echo $endMinuteOptions; ?>
|
286 |
</select>
|
287 |
<?php if ( !strstr( get_option( 'time_format', The_Events_Calendar::TIMEFORMAT ), 'H' ) ) : ?>
|
288 |
+
<select tabindex="<?php $this->tabIndex(); ?>" name='EventEndMeridian'>
|
289 |
<?php echo $endMeridianOptions; ?>
|
290 |
</select>
|
291 |
<?php endif; ?>
|
298 |
<tr>
|
299 |
<td><?php _e('Venue:',$this->pluginDomain); ?></td>
|
300 |
<td>
|
301 |
+
<input tabindex="<?php $this->tabIndex(); ?>" type='text' name='EventVenue' size='25' value='<?php echo $_EventVenue; ?>' />
|
302 |
</td>
|
303 |
</tr>
|
304 |
<tr>
|
305 |
<td><?php _e('Country:',$this->pluginDomain); ?></td>
|
306 |
<td>
|
307 |
+
<select tabindex="<?php $this->tabIndex(); ?>" name="EventCountry" id="EventCountry">
|
308 |
+
<?php
|
309 |
+
$this->constructCountries( $postId );
|
310 |
+
$defaultCountry = eventsGetOptionValue('defaultCountry');
|
311 |
+
if( $_EventCountry ) {
|
312 |
+
foreach ($this->countries as $abbr => $fullname) {
|
313 |
+
echo '<option label="' . $abbr . '" value="' . $fullname . '" ';
|
314 |
+
if ($_EventCountry == $fullname) {
|
315 |
+
echo 'selected="selected" ';
|
316 |
+
$eventCountryLabel = $abbr;
|
317 |
+
}
|
318 |
+
echo '>' . $fullname . '</option>';
|
319 |
+
}
|
320 |
+
} elseif( $defaultCountry && !get_post_custom_keys( $postId ) ) {
|
321 |
+
foreach ($this->countries as $abbr => $fullname) {
|
322 |
+
echo '<option label="' . $abbr . '" value="' . $fullname . '" ';
|
323 |
+
if ($defaultCountry[1] == $fullname) {
|
324 |
+
echo 'selected="selected" ';
|
325 |
+
$eventCountryLabel = $abbr;
|
326 |
+
}
|
327 |
+
echo '>' . $fullname . '</option>';
|
328 |
+
}
|
329 |
+
} else {
|
330 |
+
$eventCountryLabel = "";
|
331 |
+
foreach ($this->countries as $abbr => $fullname) {
|
332 |
+
echo '<option label="' . $abbr . '" value="' . $fullname . '" >' . $fullname . '</option>';
|
333 |
+
}
|
334 |
+
}
|
335 |
?>
|
336 |
</select>
|
337 |
+
<input name="EventCountryLabel" type="hidden" value="<?php echo $eventCountryLabel; ?>" />
|
338 |
</td>
|
339 |
</tr>
|
340 |
<tr>
|
341 |
<td><?php _e('Address:',$this->pluginDomain); ?></td>
|
342 |
+
<td><input tabindex="<?php $this->tabIndex(); ?>" type='text' name='EventAddress' size='25' value='<?php echo $_EventAddress; ?>' /></td>
|
343 |
</tr>
|
344 |
<tr>
|
345 |
<td><?php _e('City:',$this->pluginDomain); ?></td>
|
346 |
+
<td><input tabindex="<?php $this->tabIndex(); ?>" type='text' name='EventCity' size='25' value='<?php echo $_EventCity; ?>' /></td>
|
347 |
</tr>
|
348 |
+
<input name="EventStateExists" type="hidden" value="<?php echo ($_EventCountry !== 'United States') ? 0 : 1; ?>">
|
349 |
+
<tr id="International" <?php if($_EventCountry == 'United States' || $_EventCountry == '' ) echo('class="tec_hide"'); ?>>
|
350 |
<td><?php _e('Province:',$this->pluginDomain); ?></td>
|
351 |
+
<td><input tabindex="<?php $this->tabIndex(); ?>" type='text' name='EventProvince' size='10' value='<?php echo $_EventProvince; ?>' /></td>
|
352 |
</tr>
|
353 |
+
<tr id="USA" <?php if($_EventCountry !== 'United States') echo('class="tec_hide"'); ?>>
|
354 |
<td><?php _e('State:',$this->pluginDomain); ?></td>
|
355 |
<td>
|
356 |
+
<select tabindex="<?php $this->tabIndex(); ?>" name="EventState">
|
357 |
<option value=""><?php _e('Select a State:',$this->pluginDomain); ?></option>
|
358 |
<?php $states = array (
|
359 |
"AL" => __("Alabama", $this->pluginDomain),
|
421 |
</tr>
|
422 |
<tr>
|
423 |
<td><?php _e('Postal Code:',$this->pluginDomain); ?></td>
|
424 |
+
<td><input tabindex="<?php $this->tabIndex(); ?>" type='text' id='EventZip' name='EventZip' size='6' value='<?php echo $_EventZip; ?>' /></td>
|
425 |
</tr>
|
426 |
+
<tr id="google_map_link_toggle"<?php if( !tec_address_exists( $postId ) ) echo ' class="tec_hide"'; ?>>
|
427 |
+
<td><?php _e('Show Google Map Link:',$this->pluginDomain); ?></td>
|
428 |
+
<td>
|
429 |
+
<?php // is the post new?
|
430 |
+
$tecPostCustomKeys = get_post_custom_keys($postId);
|
431 |
+
$tecHasCustomKeys = count( $tecPostCustomKeys );
|
432 |
+
$tecNewPost = ( $tecHasCustomKeys ) ? !in_array( "_EventShowMapLink", $tecPostCustomKeys ) : true;
|
433 |
+
?>
|
434 |
+
<input tabindex="<?php $this->tabIndex(); ?>" type="checkbox" id="EventShowMapLink" name="EventShowMapLink" size="6" value="true" <?php if( $tecNewPost || get_post_meta( $postId, '_EventShowMapLink', true ) == 'true' ) echo 'checked="checked"'?> />
|
435 |
+
</td>
|
436 |
+
</tr>
|
437 |
+
<?php if( eventsGetOptionValue('embedGoogleMaps') == 'on' ) : ?>
|
438 |
+
<tr id="google_map_toggle"<?php if( !tec_address_exists( $postId ) ) echo ' class="tec_hide"'; ?>>
|
439 |
+
<td><?php _e('Show Google Map:',$this->pluginDomain); ?></td>
|
440 |
+
<td><input tabindex="<?php $this->tabIndex(); ?>" type="checkbox" id="EventShowMap" name="EventShowMap" size="6" value="true" <?php if( $tecNewPost || get_post_meta( $postId, '_EventShowMap', true ) == 'true' ) echo 'checked="checked"'; ?> /></td>
|
441 |
+
</tr>
|
442 |
+
<?php endif; ?>
|
443 |
<tr>
|
444 |
<td><?php _e('Phone:',$this->pluginDomain); ?></td>
|
445 |
+
<td><input tabindex="<?php $this->tabIndex(); ?>" type='text' id='EventPhone' name='EventPhone' size='14' value='<?php echo $_EventPhone; ?>' /></td>
|
446 |
</tr>
|
447 |
<tr>
|
448 |
<td colspan="2" class="snp_sectionheader"><h4><?php _e('Event Cost', $this->pluginDomain); ?></h4></td>
|
449 |
</tr>
|
450 |
<tr>
|
451 |
<td><?php _e('Cost:',$this->pluginDomain); ?></td>
|
452 |
+
<td><input tabindex="<?php $this->tabIndex(); ?>" type='text' id='EventCost' name='EventCost' size='6' value='<?php echo $_EventCost; ?>' /></td>
|
453 |
</tr>
|
454 |
<tr>
|
455 |
<td></td>
|
469 |
|
470 |
</table>
|
471 |
</div>
|
472 |
+
<?php
|
473 |
+
try {
|
474 |
+
do_action( 'sp_events_above_donate', $postId );
|
475 |
+
if( !$this->postExceptionThrown ) delete_post_meta( $postId, self::EVENTSERROROPT );
|
476 |
+
} catch ( TEC_Post_Exception $e) {
|
477 |
+
$this->postExceptionThrown = true;
|
478 |
+
update_post_meta( $postId, self::EVENTSERROROPT, trim( $e->getMessage() ) );
|
479 |
+
$e->displayMessage( $postId );
|
480 |
+
}
|
481 |
+
?>
|
482 |
<div id="mainDonateRow" class="eventForm">
|
483 |
<?php _e('<h4>If You Like This Plugin - Help Support It</h4><p>We spend a lot of time and effort building robust plugins and we love to share them with the community. If you use this plugin consider making a donation to help support its\' continued development. You may remove this message on the <a href="/wp-admin/options-general.php?page=the-events-calendar.php">settings page</a>.</p>', $this->pluginDomain); ?>
|
484 |
<div id="snp_thanks">
|
487 |
<a href="http://www.shaneandpeter.com?source=events-plugin" target="_blank">www.shaneandpeter.com</a>
|
488 |
</div>
|
489 |
<div id="snp_donate">
|
490 |
+
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=10750983&item_name=Events%20Post%20Editor" target="_blank">
|
491 |
+
<image src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" alt="" />
|
492 |
+
</a>
|
|
|
|
|
|
|
|
|
|
|
|
|
493 |
</div>
|
494 |
+
<div style="clear:both;"></div>
|
495 |
+
</div><!-- end mainDonateRow -->
|
|
|
496 |
<style>
|
497 |
#eventDetails h4,
|
498 |
#EventBriteDetailDiv h4 {
|
500 |
border-bottom: 1px solid #e5e5e5;
|
501 |
padding-bottom: 6px;
|
502 |
}
|
|
|
503 |
.eventForm td {
|
504 |
padding-bottom: 10px !important;
|
505 |
padding-top: 0 !important;
|
506 |
}
|
|
|
507 |
.eventForm .snp_sectionheader {
|
508 |
padding-bottom: 5px !important;
|
509 |
}
|
|
|
510 |
#snp_thanks {
|
511 |
float: left;
|
512 |
width: 200px;
|
513 |
margin: 5px 0 0 0;
|
514 |
}
|
|
|
515 |
.snp_brand {
|
516 |
font-weight: normal;
|
517 |
margin: 8px 0;
|
518 |
font-family: Georgia !important;
|
519 |
font-size: 17px !important;
|
520 |
}
|
|
|
521 |
.eventForm p {
|
522 |
margin: 0 0 10px 0!important;
|
523 |
}
|
|
|
524 |
#eventDetails small,
|
525 |
#EventBriteDetailDiv small {
|
526 |
color: #a3a3a3;
|
527 |
font-size: 10px;
|
528 |
}
|
|
|
529 |
#eventBriteTicketing,
|
530 |
#mainDonateRow {
|
531 |
background: url(<?php echo WP_PLUGIN_URL . '/the-events-calendar/resources/images/bg_fade.png';
|
543 |
border-radius: 3px;
|
544 |
margin: -11px 6px 0;
|
545 |
}
|
|
|
546 |
#eventBriteTicketing h2 {
|
547 |
+
background: url(<?php echo WP_PLUGIN_URL . '/the-events-calendar/resources/images/eb_press_little.gif';
|
548 |
?>) no-repeat top right;
|
549 |
+
height: 80px;
|
550 |
margin: 0;
|
551 |
}
|
|
|
552 |
.eventForm {
|
553 |
margin-top: -20px;
|
554 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
555 |
#EventInfo,
|
556 |
table.eventForm {
|
557 |
width: 100%;
|
558 |
}
|
|
|
559 |
td.snp_message {
|
560 |
padding-bottom: 10px !important;
|
561 |
}
|
562 |
</style>
|
563 |
+
|
564 |
+
<?php
|
565 |
+
try {
|
566 |
+
do_action( 'sp_events_details_bottom', $postId );
|
567 |
+
if( !$this->postExceptionThrown ) delete_post_meta( $postId, self::EVENTSERROROPT );
|
568 |
+
} catch ( TEC_Post_Exception $e) {
|
569 |
+
$this->postExceptionThrown = true;
|
570 |
+
update_post_meta( $postId, self::EVENTSERROROPT, trim( $e->getMessage() ) );
|
571 |
+
$e->displayMessage( $postId );
|
572 |
+
}
|
573 |
+
?>
|
views/events-options.php
CHANGED
@@ -6,9 +6,14 @@ jQuery(document).ready(function() {
|
|
6 |
jQuery('#secondDonateRow').show();
|
7 |
}
|
8 |
jQuery('#hideDonateButton').click(function() {
|
9 |
-
jQuery.post( '<?php bloginfo('
|
10 |
});
|
11 |
|
|
|
|
|
|
|
|
|
|
|
12 |
});
|
13 |
</script>
|
14 |
<style type="text/css">
|
@@ -28,7 +33,7 @@ jQuery(document).ready(function() {
|
|
28 |
#hideDonateButton {}
|
29 |
#checkBoxLabel {}
|
30 |
.form-table form #secondSubmit {
|
31 |
-
background:#f2f2f2 url(<?php bloginfo('
|
32 |
text-decoration: none;
|
33 |
font-size: 11px;
|
34 |
line-height: 16px;
|
@@ -50,11 +55,11 @@ jQuery(document).ready(function() {
|
|
50 |
text-transform: uppercase;
|
51 |
}
|
52 |
.form-table form #secondSubmit {
|
53 |
-
background: #f2f2f2 url(<?php bloginfo('
|
54 |
}
|
55 |
|
56 |
.form-table form #secondSubmit:active {
|
57 |
-
background: #eee url(<?php bloginfo('
|
58 |
}
|
59 |
|
60 |
.form-table form #secondSubmit:hover {
|
@@ -67,9 +72,28 @@ div.snp_settings{
|
|
67 |
</style>
|
68 |
<div class="snp_settings wrap">
|
69 |
<h2><?php _e('The Events Calendar Settings',$this->pluginDomain); ?></h2>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
<div class="form">
|
71 |
<h3><?php _e('Need a hand?',$this->pluginDomain); ?></h3>
|
72 |
<p><?php _e('If you\'re stuck on these options, please <a href="http://wordpress.org/extend/plugins/the-events-calendar/">check out the documentation</a>. If you\'re still wondering what\'s going on, be sure to stop by the support <a href="http://wordpress.org/tags/the-events-calendar?forum_id=10">forum</a> and ask for help. The open source community is full of kind folks who are happy to help.',$this->pluginDomain); ?></p>
|
|
|
73 |
<table class="form-table">
|
74 |
<tr id="mainDonateRow">
|
75 |
<th scope="row"><?php _e('Donate',$this->pluginDomain); ?></th>
|
@@ -186,7 +210,27 @@ div.snp_settings{
|
|
186 |
<?php
|
187 |
$embedGoogleMapsValue = eventsGetOptionValue('embedGoogleMaps','off');
|
188 |
?>
|
189 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
|
191 |
<tr>
|
192 |
<th scope="row"><?php _e('Embed Google Maps',$this->pluginDomain); ?></th>
|
@@ -247,16 +291,55 @@ div.snp_settings{
|
|
247 |
</fieldset>
|
248 |
</td>
|
249 |
</tr>
|
250 |
-
|
251 |
-
|
252 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
253 |
<tr>
|
254 |
<td>
|
255 |
<input id="saveEventsCalendarOptions" class="button-primary" type="submit" name="saveEventsCalendarOptions" value="<?php _e('Save Changes', $this->pluginDomain); ?>" />
|
256 |
</td>
|
257 |
</tr>
|
258 |
-
|
259 |
-
|
260 |
</table>
|
261 |
|
262 |
</form>
|
@@ -269,12 +352,9 @@ function showstuff(boxid){
|
|
269 |
function hidestuff(boxid){
|
270 |
document.getElementById(boxid).style.visibility="hidden";
|
271 |
}
|
272 |
-
|
273 |
<?php if( $embedGoogleMapsValue == 'off' ) { ?>
|
274 |
hidestuff('googleEmbedSize');
|
275 |
<?php }; ?>
|
276 |
-
|
277 |
</script>
|
278 |
</div>
|
279 |
-
|
280 |
</div>
|
6 |
jQuery('#secondDonateRow').show();
|
7 |
}
|
8 |
jQuery('#hideDonateButton').click(function() {
|
9 |
+
jQuery.post( '<?php bloginfo('wpurl'); ?>/wp-admin/admin-ajax.php', { donateHidden: true, action: 'hideDonate' }, theEventsCalendarHideDonateButton, 'json' );
|
10 |
});
|
11 |
|
12 |
+
function displayOptionsError() {
|
13 |
+
$.post('<?php bloginfo('wpurl'); ?>/wp-admin/admin-ajax.php', { action: 'getOptionsError' }, function(error) {
|
14 |
+
$('#tec-options-error').append('<h3>Error</h3><p>' + error + '</p>')
|
15 |
+
});
|
16 |
+
}
|
17 |
});
|
18 |
</script>
|
19 |
<style type="text/css">
|
33 |
#hideDonateButton {}
|
34 |
#checkBoxLabel {}
|
35 |
.form-table form #secondSubmit {
|
36 |
+
background:#f2f2f2 url(<?php bloginfo('wpurl'); ?>/images/white-grad-active.png) repeat-x scroll left top;
|
37 |
text-decoration: none;
|
38 |
font-size: 11px;
|
39 |
line-height: 16px;
|
55 |
text-transform: uppercase;
|
56 |
}
|
57 |
.form-table form #secondSubmit {
|
58 |
+
background: #f2f2f2 url(<?php bloginfo('wpurl'); ?>/wp-admin/images/white-grad.png) repeat-x scroll left top;
|
59 |
}
|
60 |
|
61 |
.form-table form #secondSubmit:active {
|
62 |
+
background: #eee url(<?php bloginfo('wpurl'); ?>/wp-admin/images/white-grad-active.png) repeat-x scroll left top;
|
63 |
}
|
64 |
|
65 |
.form-table form #secondSubmit:hover {
|
72 |
</style>
|
73 |
<div class="snp_settings wrap">
|
74 |
<h2><?php _e('The Events Calendar Settings',$this->pluginDomain); ?></h2>
|
75 |
+
<div id="tec-options-error" class="tec-events-error error"></div>
|
76 |
+
<?php
|
77 |
+
try {
|
78 |
+
do_action( 'sp_events_options_top' );
|
79 |
+
if ( !$this->optionsExceptionThrown ) {
|
80 |
+
//TODO error saving is breaking options saving, to be fixed and uncommented later
|
81 |
+
//$allOptions = $this->getOptions();
|
82 |
+
//$allOptions['error'] = "";
|
83 |
+
//$this->saveOptions( $allOptions );
|
84 |
+
}
|
85 |
+
} catch( TEC_WP_Options_Exception $e ) {
|
86 |
+
$this->optionsExceptionThrown = true;
|
87 |
+
//$allOptions = $this->getOptions();
|
88 |
+
//$allOptions['error'] = $e->getMessage();
|
89 |
+
//$this->saveOptions( $allOptions );
|
90 |
+
//$e->displayMessage(); //
|
91 |
+
}
|
92 |
+
?>
|
93 |
<div class="form">
|
94 |
<h3><?php _e('Need a hand?',$this->pluginDomain); ?></h3>
|
95 |
<p><?php _e('If you\'re stuck on these options, please <a href="http://wordpress.org/extend/plugins/the-events-calendar/">check out the documentation</a>. If you\'re still wondering what\'s going on, be sure to stop by the support <a href="http://wordpress.org/tags/the-events-calendar?forum_id=10">forum</a> and ask for help. The open source community is full of kind folks who are happy to help.',$this->pluginDomain); ?></p>
|
96 |
+
<p><?php _e('Here is the iCal feed URL for your events: ' ,$this->pluginDomain); ?><code><?php bloginfo('home'); ?>/?ical</code></p>
|
97 |
<table class="form-table">
|
98 |
<tr id="mainDonateRow">
|
99 |
<th scope="row"><?php _e('Donate',$this->pluginDomain); ?></th>
|
210 |
<?php
|
211 |
$embedGoogleMapsValue = eventsGetOptionValue('embedGoogleMaps','off');
|
212 |
?>
|
213 |
+
<tr>
|
214 |
+
<th scope="row"><?php _e('Display Events on Homepage',$this->pluginDomain); ?></th>
|
215 |
+
<td>
|
216 |
+
<fieldset>
|
217 |
+
<legend class="screen-reader-text">
|
218 |
+
<span><?php _e('Display Events on Homepage',$this->pluginDomain); ?></span>
|
219 |
+
</legend>
|
220 |
+
<label title='Yes'>
|
221 |
+
<?php
|
222 |
+
$displayEventsOnHomepage = eventsGetOptionValue('displayEventsOnHomepage','on');
|
223 |
+
?>
|
224 |
+
<input type="radio" name="displayEventsOnHomepage" value="off" <?php checked($displayEventsOnHomepage, 'off'); ?> />
|
225 |
+
<?php _e('Off',$this->pluginDomain); ?>
|
226 |
+
</label>
|
227 |
+
<label title='List View'>
|
228 |
+
<input type="radio" name="displayEventsOnHomepage" value="on" <?php checked($displayEventsOnHomepage, 'on'); ?> />
|
229 |
+
<?php _e('On',$this->pluginDomain); ?>
|
230 |
+
</label>
|
231 |
+
</fieldset>
|
232 |
+
</td>
|
233 |
+
</tr>
|
234 |
|
235 |
<tr>
|
236 |
<th scope="row"><?php _e('Embed Google Maps',$this->pluginDomain); ?></th>
|
291 |
</fieldset>
|
292 |
</td>
|
293 |
</tr>
|
294 |
+
<?php if( '' != get_option('permalink_structure') ) : ?>
|
295 |
+
<tr>
|
296 |
+
<th scope="row"><?php _e('Use Pretty URLs',$this->pluginDomain); ?></th>
|
297 |
+
<td>
|
298 |
+
<fieldset>
|
299 |
+
<legend class="screen-reader-text">
|
300 |
+
<span><?php _e('Use Pretty URLs',$this->pluginDomain); ?></span>
|
301 |
+
</legend>
|
302 |
+
<label title='Yes'>
|
303 |
+
<?php
|
304 |
+
$useRewriteRules = eventsGetOptionValue('useRewriteRules','on');
|
305 |
+
?>
|
306 |
+
<input type="radio" name="useRewriteRules" value="off" <?php checked($useRewriteRules, 'off'); ?> />
|
307 |
+
<?php _e('Off',$this->pluginDomain); ?>
|
308 |
+
</label>
|
309 |
+
<label title='List View'>
|
310 |
+
<input type="radio" name="useRewriteRules" value="on" <?php checked($useRewriteRules, 'on'); ?> />
|
311 |
+
<?php _e('On',$this->pluginDomain); ?>
|
312 |
+
</label>
|
313 |
+
<div>
|
314 |
+
<?php _e('Pretty URLs (ie, http://site/category/events/upcoming) may interfere with custom themes or plugins.',$this->pluginDomain); ?>
|
315 |
+
</div>
|
316 |
+
<br />
|
317 |
+
</fieldset>
|
318 |
+
</td>
|
319 |
+
</tr>
|
320 |
+
<?php endif; // permalink structure ?>
|
321 |
+
<?php
|
322 |
+
try {
|
323 |
+
do_action( 'sp_events_options_bottom' );
|
324 |
+
if ( !$this->optionsExceptionThrown ) {
|
325 |
+
//TODO error saving is breaking options saving, to be fixed and uncommented later
|
326 |
+
//$allOptions = $this->getOptions();
|
327 |
+
//$allOptions['error'] = "";
|
328 |
+
//$this->saveOptions( $allOptions );
|
329 |
+
}
|
330 |
+
} catch( TEC_WP_Options_Exception $e ) {
|
331 |
+
$this->optionsExceptionThrown = true;
|
332 |
+
//$allOptions = $this->getOptions();
|
333 |
+
//$allOptions['error'] = $e->getMessage();
|
334 |
+
//$this->saveOptions( $allOptions );
|
335 |
+
//$e->displayMessage();
|
336 |
+
}
|
337 |
+
?>
|
338 |
<tr>
|
339 |
<td>
|
340 |
<input id="saveEventsCalendarOptions" class="button-primary" type="submit" name="saveEventsCalendarOptions" value="<?php _e('Save Changes', $this->pluginDomain); ?>" />
|
341 |
</td>
|
342 |
</tr>
|
|
|
|
|
343 |
</table>
|
344 |
|
345 |
</form>
|
352 |
function hidestuff(boxid){
|
353 |
document.getElementById(boxid).style.visibility="hidden";
|
354 |
}
|
|
|
355 |
<?php if( $embedGoogleMapsValue == 'off' ) { ?>
|
356 |
hidestuff('googleEmbedSize');
|
357 |
<?php }; ?>
|
|
|
358 |
</script>
|
359 |
</div>
|
|
|
360 |
</div>
|
views/gridview-day.php
DELETED
@@ -1,26 +0,0 @@
|
|
1 |
-
<?php global $post; $post = $event; ?>
|
2 |
-
<div id='event_<?php echo $eventId; ?>' class="tec-event
|
3 |
-
<?php
|
4 |
-
foreach((get_the_category()) as $category) {
|
5 |
-
echo 'cat_' . $category->cat_name . ' ';
|
6 |
-
}
|
7 |
-
?>
|
8 |
-
">
|
9 |
-
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
|
10 |
-
|
11 |
-
<div id='tooltip_<?php echo $eventId; ?>' class="tec-tooltip" style="display:none;">
|
12 |
-
<h5 class="tec-event-title"><?php _e($event->post_title);?></h5>
|
13 |
-
<div class="tec-event-body">
|
14 |
-
<?php if ( !the_event_all_day($event->ID) ) : ?>
|
15 |
-
<div class="tec-event-date">
|
16 |
-
<?php if ( !empty( $start ) ) echo $start; ?>
|
17 |
-
<?php if ( !empty( $end ) && $start !== $end ) echo " – " . $end . '<br />'; ?>
|
18 |
-
</div>
|
19 |
-
<?php endif; ?>
|
20 |
-
<?php echo The_Events_Calendar::truncate($event->post_content, 30); ?>
|
21 |
-
|
22 |
-
</div>
|
23 |
-
<span class="tec-arrow"></span>
|
24 |
-
</div>
|
25 |
-
|
26 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
views/gridview.php
CHANGED
@@ -1,24 +1,37 @@
|
|
1 |
<?php
|
2 |
global $spEvents;
|
3 |
-
$spEvents->
|
4 |
-
|
5 |
-
include (TEMPLATEPATH.'/header.php'); ?>
|
6 |
|
|
|
|
|
7 |
<div id="tec-content" class="grid">
|
8 |
<div id='tec-events-calendar-header' class="clearfix">
|
9 |
<h2 class="tec-cal-title"><?php _e('Calendar of Events', $spEvents->pluginDomain) ?></h2>
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
|
11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
|
13 |
<span class='tec-calendar-buttons'>
|
14 |
<a class='tec-button-off' href='<?php echo events_get_listview_link(); ?>'><?php _e('Event List', $spEvents->pluginDomain)?></a>
|
15 |
<a class='tec-button-on' href='<?php echo events_get_gridview_link(); ?>'><?php _e('Calendar', $spEvents->pluginDomain)?></a>
|
16 |
</span>
|
17 |
|
18 |
-
</div
|
19 |
|
20 |
<?php event_grid_view( ); // See the plugins/the-events-calendar/views/table.php template for customization ?>
|
21 |
</div>
|
22 |
|
23 |
<?php
|
24 |
-
|
1 |
<?php
|
2 |
global $spEvents;
|
3 |
+
$spEvents->loadDomainStylesScripts();
|
|
|
|
|
4 |
|
5 |
+
get_header();
|
6 |
+
?>
|
7 |
<div id="tec-content" class="grid">
|
8 |
<div id='tec-events-calendar-header' class="clearfix">
|
9 |
<h2 class="tec-cal-title"><?php _e('Calendar of Events', $spEvents->pluginDomain) ?></h2>
|
10 |
+
<span class='tec-month-nav'>
|
11 |
+
<span class='tec-prev-month'>
|
12 |
+
<a href='<?php echo events_get_previous_month_link(); ?>'>
|
13 |
+
← <?php echo events_get_previous_month_text(); ?>
|
14 |
+
</a>
|
15 |
+
</span>
|
16 |
|
17 |
+
<?php get_jump_to_date_calendar( "tec-" ); ?>
|
18 |
+
|
19 |
+
<span class='tec-next-month'>
|
20 |
+
<a href='<?php echo events_get_next_month_link(); ?>'>
|
21 |
+
<?php echo events_get_next_month_text(); ?> →
|
22 |
+
</a>
|
23 |
+
</span>
|
24 |
+
</span>
|
25 |
|
26 |
<span class='tec-calendar-buttons'>
|
27 |
<a class='tec-button-off' href='<?php echo events_get_listview_link(); ?>'><?php _e('Event List', $spEvents->pluginDomain)?></a>
|
28 |
<a class='tec-button-on' href='<?php echo events_get_gridview_link(); ?>'><?php _e('Calendar', $spEvents->pluginDomain)?></a>
|
29 |
</span>
|
30 |
|
31 |
+
</div><!-- tec-events-calendar-header -->
|
32 |
|
33 |
<?php event_grid_view( ); // See the plugins/the-events-calendar/views/table.php template for customization ?>
|
34 |
</div>
|
35 |
|
36 |
<?php
|
37 |
+
get_footer();
|
views/list.php
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
global $spEvents;
|
3 |
-
$spEvents->
|
4 |
-
|
5 |
-
include (TEMPLATEPATH.'/header.php'); ?>
|
6 |
|
|
|
|
|
7 |
<div id="tec-content" class="upcoming">
|
8 |
<div id='tec-events-calendar-header' class="clearfix">
|
9 |
<h2 class="tec-cal-title"><?php _e('Calendar of Events', $spEvents->pluginDomain) ?></h2>
|
@@ -55,13 +55,13 @@
|
|
55 |
<td class="tec-event-meta-value"><?php echo $phone; ?></td>
|
56 |
</tr>
|
57 |
<?php endif; ?>
|
58 |
-
<?php
|
59 |
-
$address = the_event_address(); $city = the_event_city(); $state = the_event_state(); $zip = the_event_zip();
|
60 |
-
if (!empty( $address ) && !empty( $city ) && !empty( $state ) && !empty( $zip ) ) :
|
61 |
-
?>
|
62 |
<tr>
|
63 |
-
|
64 |
-
|
|
|
|
|
|
|
65 |
</tr>
|
66 |
<?php endif; ?>
|
67 |
<?php
|
@@ -114,4 +114,4 @@
|
|
114 |
|
115 |
|
116 |
<?php
|
117 |
-
|
1 |
<?php
|
2 |
global $spEvents;
|
3 |
+
$spEvents->loadDomainStylesScripts();
|
|
|
|
|
4 |
|
5 |
+
get_header();
|
6 |
+
?>
|
7 |
<div id="tec-content" class="upcoming">
|
8 |
<div id='tec-events-calendar-header' class="clearfix">
|
9 |
<h2 class="tec-cal-title"><?php _e('Calendar of Events', $spEvents->pluginDomain) ?></h2>
|
55 |
<td class="tec-event-meta-value"><?php echo $phone; ?></td>
|
56 |
</tr>
|
57 |
<?php endif; ?>
|
58 |
+
<?php if (tec_address_exists( $post->ID ) ) : ?>
|
|
|
|
|
|
|
59 |
<tr>
|
60 |
+
<td class="tec-event-meta-desc"><?php _e('Address:', $spEvents->pluginDomain); ?><br />
|
61 |
+
<?php if( get_post_meta( $post->ID, '_EventShowMapLink', true ) == 'true' ) : ?>
|
62 |
+
<a class="gmap" href="<?php event_google_map_link(); ?>" title="Click to view a Google Map" target="_blank"><?php _e('Google Map', $spEvents->pluginDomain ); ?></a>
|
63 |
+
<?php endif; ?></td>
|
64 |
+
<td class="tec-event-meta-value"><?php tec_event_address( $post->ID ); ?></td>
|
65 |
</tr>
|
66 |
<?php endif; ?>
|
67 |
<?php
|
114 |
|
115 |
|
116 |
<?php
|
117 |
+
get_footer();
|
views/single.php
CHANGED
@@ -1,11 +1,12 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
|
4 |
-
|
|
|
5 |
<div id="tec-content" class="tec-event widecolumn">
|
6 |
-
<?php the_post(); global $post
|
7 |
<div id="post-<?php the_ID() ?>" <?php post_class() ?>>
|
8 |
-
<span class="back"><a href="<?php echo
|
9 |
<h2 class="entry-title"><?php the_title() ?></h2>
|
10 |
<?php if (the_event_end_date() > time() ) { ?><small><?php _e('This event has passed.', $spEvents->pluginDomain) ?></small> <?php } ?>
|
11 |
<div id="tec-event-meta">
|
@@ -26,35 +27,36 @@
|
|
26 |
<dt><?php _e('Venue:', $spEvents->pluginDomain) ?></dt>
|
27 |
<dd><?php echo the_event_venue(); ?></dd>
|
28 |
<?php endif; ?>
|
29 |
-
<?php if(
|
30 |
-
<dt><?php _e('
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
<dd>
|
32 |
-
<?php $
|
33 |
-
$address .= (the_event_city())? ', ' . the_event_city() : '';
|
34 |
-
$address .= (the_event_region()) ? ', ' . the_event_region() : '';
|
35 |
-
$address .= (the_event_country()) ? ', ' . the_event_country() : '';
|
36 |
-
$address .= (the_event_zip()) ? ', ' . the_event_zip() : '';
|
37 |
-
|
38 |
-
$address = str_replace(' ,', ',', $address);
|
39 |
-
echo $address;
|
40 |
-
|
41 |
-
$googleaddress = str_replace(' ', '+', $address);
|
42 |
-
?>
|
43 |
</dd>
|
44 |
<?php endif; ?>
|
45 |
</dl>
|
46 |
</div>
|
47 |
-
<?php if(
|
|
|
|
|
48 |
<div class="entry">
|
49 |
<?php the_content() ?>
|
50 |
<?php if (function_exists('the_event_ticket_form')) { the_event_ticket_form(); } ?>
|
51 |
</div>
|
52 |
<?php edit_post_link('Edit', '<span class="edit-link">', '</span>'); ?>
|
53 |
-
</div><!--
|
54 |
|
55 |
<?php if(eventsGetOptionValue('showComments','no') == 'yes'){ comments_template();} ?>
|
56 |
|
57 |
-
</div><!--
|
58 |
|
59 |
<?php
|
60 |
-
|
1 |
+
<?php
|
2 |
+
global $spEvents;
|
3 |
+
$spEvents->loadDomainStylesScripts();
|
4 |
+
get_header();
|
5 |
+
?>
|
6 |
<div id="tec-content" class="tec-event widecolumn">
|
7 |
+
<?php the_post(); global $post; ?>
|
8 |
<div id="post-<?php the_ID() ?>" <?php post_class() ?>>
|
9 |
+
<span class="back"><a href="<?php echo events_get_events_link(); ?>"><?php _e('« Back to Events', $spEvents->pluginDomain); ?></a></span>
|
10 |
<h2 class="entry-title"><?php the_title() ?></h2>
|
11 |
<?php if (the_event_end_date() > time() ) { ?><small><?php _e('This event has passed.', $spEvents->pluginDomain) ?></small> <?php } ?>
|
12 |
<div id="tec-event-meta">
|
27 |
<dt><?php _e('Venue:', $spEvents->pluginDomain) ?></dt>
|
28 |
<dd><?php echo the_event_venue(); ?></dd>
|
29 |
<?php endif; ?>
|
30 |
+
<?php if(the_event_phone()) : ?>
|
31 |
+
<dt><?php _e('Phone:', $spEvents->pluginDomain) ?></dt>
|
32 |
+
<dd><?php echo the_event_phone(); ?></dd>
|
33 |
+
<?php endif; ?>
|
34 |
+
<?php if( tec_address_exists( $post->ID ) ) : ?>
|
35 |
+
<dt>
|
36 |
+
<?php _e('Address:', $spEvents->pluginDomain) ?><br />
|
37 |
+
<?php if( get_post_meta( $post->ID, '_EventShowMapLink', true ) == 'true' ) : ?>
|
38 |
+
<a class="gmap" href="<?php event_google_map_link() ?>" title="<?php _e('Click to view a Google Map', $spEvents->pluginDomain); ?>" target="_blank"><?php _e('Google Map', $spEvents->pluginDomain ); ?></a>
|
39 |
+
<?php endif; ?>
|
40 |
+
</dt>
|
41 |
<dd>
|
42 |
+
<?php tec_event_address( $post->ID ); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
</dd>
|
44 |
<?php endif; ?>
|
45 |
</dl>
|
46 |
</div>
|
47 |
+
<?php if( get_post_meta( $post->ID, '_EventShowMap', true ) == 'true' ) : ?>
|
48 |
+
<?php if( tec_address_exists( $post->ID ) ) event_google_map_embed(); ?>
|
49 |
+
<?php endif; ?>
|
50 |
<div class="entry">
|
51 |
<?php the_content() ?>
|
52 |
<?php if (function_exists('the_event_ticket_form')) { the_event_ticket_form(); } ?>
|
53 |
</div>
|
54 |
<?php edit_post_link('Edit', '<span class="edit-link">', '</span>'); ?>
|
55 |
+
</div><!-- post -->
|
56 |
|
57 |
<?php if(eventsGetOptionValue('showComments','no') == 'yes'){ comments_template();} ?>
|
58 |
|
59 |
+
</div><!-- tec-content -->
|
60 |
|
61 |
<?php
|
62 |
+
get_footer();
|
views/table.php
CHANGED
@@ -1,3 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<table class="tec-calendar" id="big">
|
2 |
<thead>
|
3 |
<tr>
|
@@ -18,7 +31,7 @@
|
|
18 |
echo "<td class='tec-othermonth'></td>";
|
19 |
}
|
20 |
// output this month
|
21 |
-
for( $day = 1; $day <= $
|
22 |
if( ($day + $offset - 1) % 7 == 0 && $day != 1) {
|
23 |
echo "</tr>\n\t<tr>";
|
24 |
$rows++;
|
@@ -44,7 +57,7 @@
|
|
44 |
$ppf = ' tec-future';
|
45 |
} else { $ppf = false; }
|
46 |
|
47 |
-
echo "<td class='tec-thismonth" . $ppf . "'
|
48 |
echo display_day( $day, $monthView );
|
49 |
echo "</td>";
|
50 |
}
|
@@ -59,23 +72,77 @@
|
|
59 |
</tbody>
|
60 |
</table>
|
61 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
function display_day( $day, $monthView ) {
|
|
|
63 |
$output = '';
|
64 |
-
|
65 |
-
|
66 |
-
$
|
67 |
-
|
68 |
-
$
|
69 |
-
$
|
70 |
-
$
|
71 |
-
$
|
72 |
-
$
|
73 |
-
$
|
74 |
-
$
|
75 |
-
|
76 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
echo "<hr />";
|
78 |
}
|
79 |
}
|
80 |
-
}
|
81 |
-
?>
|
1 |
+
<?php
|
2 |
+
global $spEvents;
|
3 |
+
$eventPosts = get_events();
|
4 |
+
$daysInMonth = date("t", $date);
|
5 |
+
$startOfWeek = get_option( 'start_of_week', 0 );
|
6 |
+
list( $year, $month ) = split( '-', $spEvents->date );
|
7 |
+
$date = mktime(12, 0, 0, $month, 1, $year); // 1st day of month as unix stamp
|
8 |
+
$monthView = events_by_month( $eventPosts, $spEvents->date );
|
9 |
+
$rawOffset = date("w", $date) - $startOfWeek;
|
10 |
+
$offset = ( $rawOffset < 0 ) ? $rawOffset + 7 : $rawOffset; // month begins on day x
|
11 |
+
$rows = 1;
|
12 |
+
$monthView = events_by_month( $eventPosts, $spEvents->date );
|
13 |
+
?>
|
14 |
<table class="tec-calendar" id="big">
|
15 |
<thead>
|
16 |
<tr>
|
31 |
echo "<td class='tec-othermonth'></td>";
|
32 |
}
|
33 |
// output this month
|
34 |
+
for( $day = 1; $day <= date("t", $date); $day++ ) {
|
35 |
if( ($day + $offset - 1) % 7 == 0 && $day != 1) {
|
36 |
echo "</tr>\n\t<tr>";
|
37 |
$rows++;
|
57 |
$ppf = ' tec-future';
|
58 |
} else { $ppf = false; }
|
59 |
|
60 |
+
echo "<td class='tec-thismonth" . $ppf . "'>" . display_day_title( $day, $monthView ) . "\n";
|
61 |
echo display_day( $day, $monthView );
|
62 |
echo "</td>";
|
63 |
}
|
72 |
</tbody>
|
73 |
</table>
|
74 |
<?php
|
75 |
+
/**
|
76 |
+
* Each day in the calendar grid view will only display posts_per_page events.
|
77 |
+
* If the day has more events than will be displayed, we show all of the events
|
78 |
+
* as a tooltip in the day header
|
79 |
+
*/
|
80 |
+
function display_day_title( $day, $monthView ) {
|
81 |
+
$return = "<div class='daynum tec-event' id='daynum_$day'>";
|
82 |
+
if( !count( $monthView[$day] ) || count( $monthView[$day] ) < get_option( 'posts_per_page' ) ) {
|
83 |
+
$return .= $day;
|
84 |
+
} else {
|
85 |
+
global $post;
|
86 |
+
$return .= "<a class='tec-multi-event-day'>$day</a>";
|
87 |
+
$return .= "<div id='tooltip_day_$day' class='tec-tooltip' style='display:none;'>";
|
88 |
+
for( $i = 0; $i < count( $monthView[$day] ); $i++ ) {
|
89 |
+
$post = $monthView[$day][$i];
|
90 |
+
setup_postdata( $post );
|
91 |
+
$return .= '<h5 class="tec-event-title">' . get_the_title() . '</h5>';
|
92 |
+
}
|
93 |
+
$return .= '<span class="tec-arrow"></span>';
|
94 |
+
$return .= '</div>';
|
95 |
+
}
|
96 |
+
$return .= "</div>";
|
97 |
+
return $return;
|
98 |
+
}
|
99 |
+
/**
|
100 |
+
* Each day in the calendar grid view will only display posts_per_page events.
|
101 |
+
* Each event will have a tooltip for more information on that event.
|
102 |
+
*/
|
103 |
function display_day( $day, $monthView ) {
|
104 |
+
global $post;
|
105 |
$output = '';
|
106 |
+
$posts_per_page = get_option( 'posts_per_page' );
|
107 |
+
for( $i = 0; $i < count( $monthView[$day] ) && $i < $posts_per_page; $i++ ) {
|
108 |
+
$post = $monthView[$day][$i];
|
109 |
+
setup_postdata( $post );
|
110 |
+
$eventId = $post->ID.'-'.$day;
|
111 |
+
$start = the_event_start_date( $post->ID );
|
112 |
+
$end = the_event_end_date( $post->ID );
|
113 |
+
$cost = the_event_cost( $post->ID );
|
114 |
+
$address = the_event_address( $post->ID );
|
115 |
+
$city = the_event_city( $post->ID );
|
116 |
+
$state = the_event_state( $post->ID );
|
117 |
+
$province = the_event_province( $post->ID );
|
118 |
+
$country = the_event_country( $post->ID );
|
119 |
+
?>
|
120 |
+
<div id='event_<?php echo $eventId; ?>' class="tec-event
|
121 |
+
<?php
|
122 |
+
foreach((get_the_category()) as $category) {
|
123 |
+
echo 'cat_' . $category->cat_name . ' ';
|
124 |
+
}
|
125 |
+
?>
|
126 |
+
">
|
127 |
+
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
|
128 |
+
<div id='tooltip_<?php echo $eventId; ?>' class="tec-tooltip" style="display:none;">
|
129 |
+
<h5 class="tec-event-title"><?php the_title();?></h5>
|
130 |
+
<div class="tec-event-body">
|
131 |
+
<?php if ( !the_event_all_day($post->ID) ) : ?>
|
132 |
+
<div class="tec-event-date">
|
133 |
+
<?php if ( !empty( $start ) ) echo $start; ?>
|
134 |
+
<?php if ( !empty( $end ) && $start !== $end ) echo " – " . $end . '<br />'; ?>
|
135 |
+
</div>
|
136 |
+
<?php endif; ?>
|
137 |
+
<?php echo The_Events_Calendar::truncate(the_content(), 30); ?>
|
138 |
+
|
139 |
+
</div>
|
140 |
+
<span class="tec-arrow"></span>
|
141 |
+
</div>
|
142 |
+
</div>
|
143 |
+
<?php
|
144 |
+
if( $i < $posts_per_page - 1 && $i < count( $monthView[$day] ) - 1 ) {
|
145 |
echo "<hr />";
|
146 |
}
|
147 |
}
|
148 |
+
}
|
|