Version Description
- Improved support for international date formats (big props to jeroenjoosen on the forums for the original report on this!)
- Localization improvements for displaying the event cost field (thanks to mastafu on the forums for the heads up!)
- List view will now link to a page of previous events if there are indeed previous events to show (props to oceanfilm on the forums for pointing this out!)
- Fixed an issue with empty category views that could result in a fatal error (thanks to mastafu on the forums for this one, too!)
- Fixed an issue where titles for single events were empty in some installations
- Fixes for the tribe_get_the_day_link_date() function (thanks to @nathanielks on Twitter for catching + patching this one for us!)
- Fixed admin menu highlighting when editing tags for events
- Google maps will now be included properly on pages with https URLs (thanks to bmitchellini on the forums for the first report here!)
- Tag queries that don't specify a post type will no longer be modified to be an events query (thanks to Jason on the forums for reporting this first!)
- Fixed an issue that caused some events not to show on month view when viewing a category (thanks to yorkshiretots on the forum for catching this!)
- All day events are now saved with a start/end time that is determined by the end of day cutoff. This fix will not modify previously created all day events (thanks to wallyglenn on the forums for spotting this!)
- Fixed a lot of strings that were not getting included in our language files and updated our POT file
- Removed an invalid iCal link from the markup to prevent it being indexed by search engines (Thanks to Kevin Lisota for the original report!)
- Fixed an XSS vulnerability in the Tribe Bar (Mega props to Yasser Khan and Chuck Tsang for the research and responsible disclosure!)
- Implemented performance improvements in some queries for large amounts of data
- Fixed a bug that was making our date pickers ignore the start-of-the-week setting in WordPress core (thanks to Katarina for the original report!)
- Added CSS classes to the list widget events (thanks to Andy Fragen for requesting these!)
- Fixed some small CSS bugs
- Incorporated updated German translation files, courtesy of Oliver Heinrich
- Incorporated updated French translation files, courtesy of Bastien BC
Download this release
Release Info
Developer | jazbek |
Plugin | The Events Calendar |
Version | 3.3 |
Comparing to | |
See all releases |
Code changes from version 3.2 to 3.3
- admin-views/event-map.php +1 -1
- admin-views/events-meta-box.php +14 -2
- admin-views/no-comments.php +0 -0
- admin-views/tickets/meta-box.php +4 -4
- admin-views/tribe-options-general.php +7 -0
- admin-views/tribe-options-help.php +57 -42
- lang/hu_HU.mo +0 -0
- lang/hu_HU.po +0 -2909
- lang/tribe-events-calendar-de_DE.mo +0 -0
- lang/tribe-events-calendar-de_DE.po +2229 -2129
- lang/tribe-events-calendar-fr_FR.mo +0 -0
- lang/tribe-events-calendar-fr_FR.po +771 -450
- lang/tribe-events-calendar.pot +158 -382
- lib/io/csv/admin-views/import.php +23 -7
- lib/template-classes/month.php +1 -1
- lib/the-events-calendar.class.php +102 -46
- lib/tickets/tribe-tickets-attendees.php +1 -1
- lib/tickets/tribe-tickets-metabox.php +2 -2
- lib/tickets/tribe-tickets-pro.php +4 -4
- lib/tribe-app-shop.class.php +2 -3
- lib/tribe-debug-bar.class.php +1 -1
- lib/tribe-event-api.class.php +2 -2
- lib/tribe-event-query.class.php +10 -5
- lib/tribe-field.class.php +37 -23
- lib/tribe-settings-tab.class.php +1 -1
- lib/tribe-template-factory.class.php +12 -36
- lib/tribe-templates.class.php +47 -17
- license.txt +0 -0
- public/advanced-functions/event.php +0 -0
- public/advanced-functions/meta.php +54 -42
- public/advanced-functions/organizer.php +0 -0
- public/advanced-functions/venue.php +0 -0
- public/template-tags/date.php +9 -1
- public/template-tags/general.php +66 -14
- public/template-tags/loop.php +24 -1
- public/template-tags/meta.php +1 -1
- public/template-tags/options.php +0 -0
- readme.txt +44 -16
- resources/app-shop.js +0 -0
- resources/debugger.css +0 -0
- resources/events-admin.css +2 -0
- resources/events-admin.js +8 -1
- resources/events-admin.min.css +1 -1
- resources/events-admin.min.js +7 -7
- resources/jquery-ecp-plugins.js +0 -0
- resources/tickets.css +5 -1
- resources/tickets.js +25 -7
- resources/tickets.min.css +1 -1
- resources/tickets.min.js +10 -10
- resources/tribe-events-full.css +0 -4
- resources/tribe-events-full.min.css +1 -1
- resources/tribe-settings.js +0 -0
- resources/warning.png +0 -0
- the-events-calendar.php +3 -1
- views/list/nav.php +2 -1
- views/modules/address.php +2 -0
- views/modules/bar.php +4 -1
- views/month/single-event.php +1 -1
- views/widgets/list-widget.php +1 -1
admin-views/event-map.php
CHANGED
@@ -8,7 +8,7 @@ if ( !defined('ABSPATH') ) { die('-1'); }
|
|
8 |
|
9 |
?>
|
10 |
<div id="tribe-events-gmap" style="height: <?php echo is_numeric($height) ? "{$height}px" : $height ?>; width: <?php echo is_numeric($width) ? "{$width}px" : $width ?>; margin-bottom: 15px;"></div><!-- #tribe-events-gmap -->
|
11 |
-
<script type="text/javascript" src="
|
12 |
<script type="text/javascript">
|
13 |
var event_address;
|
14 |
|
8 |
|
9 |
?>
|
10 |
<div id="tribe-events-gmap" style="height: <?php echo is_numeric($height) ? "{$height}px" : $height ?>; width: <?php echo is_numeric($width) ? "{$width}px" : $width ?>; margin-bottom: 15px;"></div><!-- #tribe-events-gmap -->
|
11 |
+
<script type="text/javascript" src="//maps.google.com/maps/api/js?sensor=false"></script>
|
12 |
<script type="text/javascript">
|
13 |
var event_address;
|
14 |
|
admin-views/events-meta-box.php
CHANGED
@@ -37,7 +37,7 @@ if ( !defined('ABSPATH') ) { die('-1'); }
|
|
37 |
</tr>
|
38 |
<tr>
|
39 |
<td style="width:175px;"><?php _e('Start Date & Time:','tribe-events-calendar'); ?></td>
|
40 |
-
<td>
|
41 |
<input autocomplete="off" tabindex="<?php tribe_events_tab_index(); ?>" type="text" class="datepicker" name="EventStartDate" id="EventStartDate" value="<?php echo esc_attr($EventStartDate) ?>" />
|
42 |
<span class="helper-text hide-if-js"><?php _e('YYYY-MM-DD', 'tribe-events-calendar') ?></span>
|
43 |
<span class='timeofdayoptions'>
|
@@ -116,7 +116,19 @@ if ( !defined('ABSPATH') ) { die('-1'); }
|
|
116 |
</tr>
|
117 |
<tr>
|
118 |
<td><?php _e('Currency Symbol:','tribe-events-calendar'); ?></td>
|
119 |
-
<td
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
120 |
</tr>
|
121 |
<tr>
|
122 |
<td><?php _e('Cost:','tribe-events-calendar'); ?></td>
|
37 |
</tr>
|
38 |
<tr>
|
39 |
<td style="width:175px;"><?php _e('Start Date & Time:','tribe-events-calendar'); ?></td>
|
40 |
+
<td id="tribe-event-datepickers" data-startofweek="<?php echo get_option( 'start_of_week' ); ?>">
|
41 |
<input autocomplete="off" tabindex="<?php tribe_events_tab_index(); ?>" type="text" class="datepicker" name="EventStartDate" id="EventStartDate" value="<?php echo esc_attr($EventStartDate) ?>" />
|
42 |
<span class="helper-text hide-if-js"><?php _e('YYYY-MM-DD', 'tribe-events-calendar') ?></span>
|
43 |
<span class='timeofdayoptions'>
|
116 |
</tr>
|
117 |
<tr>
|
118 |
<td><?php _e('Currency Symbol:','tribe-events-calendar'); ?></td>
|
119 |
+
<td>
|
120 |
+
<input tabindex="<?php tribe_events_tab_index(); ?>" type='text' id='EventCurrencySymbol' name='EventCurrencySymbol' size='2' value='<?php echo (isset($_EventCurrencySymbol)) ? esc_attr($_EventCurrencySymbol) : tribe_get_option( 'defaultCurrencySymbol', '$' ); ?>' />
|
121 |
+
<select tabindex="<?php tribe_events_tab_index(); ?>" id="EventCurrencyPosition" name="EventCurrencyPosition">
|
122 |
+
<?php
|
123 |
+
if ( isset($_EventCurrencyPosition) && 'suffix' === $_EventCurrencyPosition ) $suffix = true;
|
124 |
+
elseif ( isset($_EventCurrencyPosition) && 'prefix' === $_EventCurrencyPosition ) $suffix = false;
|
125 |
+
elseif ( true === tribe_get_option( 'reverseCurrencyPosition', false ) ) $suffix = true;
|
126 |
+
else $suffix = false;
|
127 |
+
?>
|
128 |
+
<option value="prefix"> <?php _ex( 'Before cost', 'Currency symbol position', 'tribe-events-calendar' ) ?> </option>
|
129 |
+
<option value="suffix"<?php if ( $suffix ) echo ' selected="selected"' ?>> <?php _ex( 'After cost', 'Currency symbol position', 'tribe-events-calendar' ) ?> </option>
|
130 |
+
</select>
|
131 |
+
</td>
|
132 |
</tr>
|
133 |
<tr>
|
134 |
<td><?php _e('Cost:','tribe-events-calendar'); ?></td>
|
admin-views/no-comments.php
CHANGED
File without changes
|
admin-views/tickets/meta-box.php
CHANGED
@@ -115,7 +115,7 @@ $modules = TribeEventsTickets::modules();
|
|
115 |
<input type='text' id='ticket_price' name='ticket_price' class="ticket_field" size='7'
|
116 |
value='' />
|
117 |
|
118 |
-
|
119 |
</td>
|
120 |
</tr>
|
121 |
|
@@ -126,7 +126,7 @@ $modules = TribeEventsTickets::modules();
|
|
126 |
<td>
|
127 |
<input autocomplete="off" type="text" class="ticket_field" size='7' name="ticket_start_date"
|
128 |
id="ticket_start_date" value="">
|
129 |
-
<span class=''>
|
130 |
@
|
131 |
<select name='ticket_start_hour' id='ticket_start_hour' class="ticket_field">
|
132 |
<?php echo $startHourOptions; ?>
|
@@ -151,7 +151,7 @@ $modules = TribeEventsTickets::modules();
|
|
151 |
<input autocomplete="off" type="text" class="ticket_field" size='7' name="ticket_end_date"
|
152 |
id="ticket_end_date" value="">
|
153 |
|
154 |
-
<span class=''>
|
155 |
@
|
156 |
<select name='ticket_end_hour' id='ticket_end_hour' class="ticket_field">
|
157 |
<?php echo $endHourOptions; ?>
|
@@ -192,4 +192,4 @@ $modules = TribeEventsTickets::modules();
|
|
192 |
</td>
|
193 |
</tr>
|
194 |
|
195 |
-
</table>
|
115 |
<input type='text' id='ticket_price' name='ticket_price' class="ticket_field" size='7'
|
116 |
value='' />
|
117 |
|
118 |
+
<p class="description"><?php echo __( "(0 or empty for free tickets)", "tribe-events-calendar" ); ?></p>
|
119 |
</td>
|
120 |
</tr>
|
121 |
|
126 |
<td>
|
127 |
<input autocomplete="off" type="text" class="ticket_field" size='7' name="ticket_start_date"
|
128 |
id="ticket_start_date" value="">
|
129 |
+
<span class='ticket_start_time ticket_time'>
|
130 |
@
|
131 |
<select name='ticket_start_hour' id='ticket_start_hour' class="ticket_field">
|
132 |
<?php echo $startHourOptions; ?>
|
151 |
<input autocomplete="off" type="text" class="ticket_field" size='7' name="ticket_end_date"
|
152 |
id="ticket_end_date" value="">
|
153 |
|
154 |
+
<span class='ticket_end_time ticket_time'>
|
155 |
@
|
156 |
<select name='ticket_end_hour' id='ticket_end_hour' class="ticket_field">
|
157 |
<?php echo $endHourOptions; ?>
|
192 |
</td>
|
193 |
</tr>
|
194 |
|
195 |
+
</table>
|
admin-views/tribe-options-general.php
CHANGED
@@ -146,6 +146,13 @@ $generalTab = array(
|
|
146 |
'size' => 'small',
|
147 |
'default' => '$',
|
148 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
'tribeEventsDisplayTitle' => array(
|
150 |
'type' => 'html',
|
151 |
'html' => '<h3>' . __( 'Map Settings', 'tribe-events-calendar' ) . '</h3>',
|
146 |
'size' => 'small',
|
147 |
'default' => '$',
|
148 |
),
|
149 |
+
'reverseCurrencyPosition' => array(
|
150 |
+
'type' => 'checkbox_bool',
|
151 |
+
'label' => __( 'Currency symbol follows value', 'tribe-events-calendar' ),
|
152 |
+
'tooltip' => __( 'The currency symbol normally precedes the value. Enabling this option positions the symbol after the value.', 'tribe-events-calendar' ),
|
153 |
+
'default' => false,
|
154 |
+
'validation_type' => 'boolean',
|
155 |
+
),
|
156 |
'tribeEventsDisplayTitle' => array(
|
157 |
'type' => 'html',
|
158 |
'html' => '<h3>' . __( 'Map Settings', 'tribe-events-calendar' ) . '</h3>',
|
admin-views/tribe-options-help.php
CHANGED
@@ -39,29 +39,44 @@ $ga_query_string = '?utm_source=helptab&utm_medium=plugin-tec&utm_campaign=in-ap
|
|
39 |
|
40 |
$premium_add_ons = array();
|
41 |
$premium_add_ons[] = array(
|
42 |
-
|
43 |
-
|
44 |
-
);
|
45 |
-
$premium_add_ons[] = array(
|
46 |
-
|
47 |
-
|
48 |
-
);
|
49 |
-
$premium_add_ons[] = array(
|
50 |
-
|
51 |
-
|
52 |
-
);
|
53 |
-
$premium_add_ons[] = array(
|
54 |
-
|
55 |
-
|
56 |
-
);
|
57 |
-
$premium_add_ons[] = array(
|
58 |
-
|
59 |
-
|
60 |
-
);
|
61 |
-
|
62 |
-
$premium_add_ons[] = array(
|
63 |
-
|
64 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
);
|
66 |
$premium_add_ons = (array) apply_filters( 'tribe_help_tab_premium_addons', $premium_add_ons ); // TODO should we replace this with an RSS feed??
|
67 |
|
@@ -93,46 +108,46 @@ $resources[] = array(
|
|
93 |
);
|
94 |
$resources = (array) apply_filters( 'tribe_help_tab_resources', $resources );
|
95 |
|
96 |
-
$getting_started_text =
|
97 |
$getting_started_text = apply_filters( 'tribe_help_tab_getting_started_text', $getting_started_text );
|
98 |
|
99 |
-
$intro_text[] = '<p>' . __(
|
100 |
$intro_text[] = '<ul>';
|
101 |
$intro_text[] = '<li>';
|
102 |
-
$intro_text[] = sprintf( __ (
|
103 |
$intro_text[] = '</li><li>';
|
104 |
-
$intro_text[] = sprintf( __(
|
105 |
$intro_text[] = '</li><li>';
|
106 |
-
$intro_text[] = sprintf( __(
|
107 |
$intro_text[] = '</li></ul><p>';
|
108 |
-
$intro_text[] = __(
|
109 |
$intro_text[] = '</p>';
|
110 |
$intro_text = implode( $intro_text );
|
111 |
|
112 |
-
$support_text[] = '<p>' . sprintf( __(
|
113 |
$support_text[] = '<ul><li>';
|
114 |
-
$support_text[] = sprintf( __(
|
115 |
$support_text[] = '</li><li>';
|
116 |
-
$support_text[] = sprintf( __(
|
117 |
$support_text[] = '</li><li>';
|
118 |
-
$support_text[] = sprintf( __(
|
119 |
$support_text[] = '</li><li>';
|
120 |
-
$support_text[] = __(
|
121 |
$support_text[] = '</li><li>';
|
122 |
-
$support_text[] = sprintf( __(
|
123 |
$support_text[] = '</li></ul>';
|
124 |
-
$support_text[] =
|
125 |
$support_text = implode( $support_text );
|
126 |
|
127 |
|
128 |
-
$forum_text[] = '<p>' . sprintf( __(
|
129 |
-
$forum_text[] = '<p>' . sprintf( __(
|
130 |
-
$forum_text[] = '<p>' . __(
|
131 |
-
$forum_text[] = '<p>' . sprintf( __(
|
132 |
$forum_text = implode( $forum_text );
|
133 |
|
134 |
|
135 |
-
$outro_text = '<p>' . sprintf( __(
|
136 |
$more_text = __('More...', 'tribe-events-calendar');
|
137 |
|
138 |
|
@@ -192,7 +207,7 @@ $more_text = __('More...', 'tribe-events-calendar');
|
|
192 |
<ul>
|
193 |
<?php foreach ($premium_add_ons as $addon) :
|
194 |
echo '<li>';
|
195 |
-
if ( isset($addon['link']) ) echo '<a href="'.$addon['link'].'">';
|
196 |
echo $addon['title'];
|
197 |
if ( isset($addon['coming_soon']) ) echo ( is_string($addon['coming_soon']) ) ? ' '.$addon['coming_soon'] : ' '.__('(Coming Soon!)', 'tribe-events-calendar');
|
198 |
if ( isset($addon['link']) ) echo '</a>';
|
39 |
|
40 |
$premium_add_ons = array();
|
41 |
$premium_add_ons[] = array(
|
42 |
+
'title' => __('The Events Calendar PRO', 'tribe-events-calendar'),
|
43 |
+
'link' => apply_filters('tribe_help_tab_ecp_tribe_url', 'http://m.tri.be/dr'),
|
44 |
+
);
|
45 |
+
$premium_add_ons[] = array(
|
46 |
+
'title' => __('The Events Calendar: Eventbrite Tickets', 'tribe-events-calendar'),
|
47 |
+
'link' => apply_filters('tribe_help_tab_eventbrite_tribe_url', 'http://m.tri.be/ds'),
|
48 |
+
);
|
49 |
+
$premium_add_ons[] = array(
|
50 |
+
'title' => __('The Events Calendar: Community Events', 'tribe-events-calendar'),
|
51 |
+
'link' => apply_filters('tribe_help_tab_community_events_tribe_url', 'http://m.tri.be/dt'),
|
52 |
+
);
|
53 |
+
$premium_add_ons[] = array(
|
54 |
+
'title' => __('The Events Calendar: Facebook Events', 'tribe-events-calendar'),
|
55 |
+
'link' => apply_filters('tribe_help_tab_facebook_events_tribe_url', 'http://m.tri.be/du'),
|
56 |
+
);
|
57 |
+
$premium_add_ons[] = array(
|
58 |
+
'title' => __('The Events Calendar: WooCommerce Tickets', 'tribe-events-calendar'),
|
59 |
+
'link' => apply_filters('tribe_help_tab_wootickets_tribe_url', 'http://m.tri.be/dv'),
|
60 |
+
);
|
61 |
+
|
62 |
+
$premium_add_ons[] = array(
|
63 |
+
'title' => __('The Events Calendar: EDD Tickets', 'tribe-events-calendar'),
|
64 |
+
'link' => apply_filters('tribe_help_tab_eddtickets_tribe_url', 'http://m.tri.be/dw'),
|
65 |
+
);
|
66 |
+
|
67 |
+
$premium_add_ons[] = array(
|
68 |
+
'title' => __('The Events Calendar: WPEC Tickets', 'tribe-events-calendar'),
|
69 |
+
'link' => apply_filters('tribe_help_tab_wpectickets_tribe_url', 'http://m.tri.be/dx'),
|
70 |
+
);
|
71 |
+
|
72 |
+
$premium_add_ons[] = array(
|
73 |
+
'title' => __('The Events Calendar: Shopp Tickets', 'tribe-events-calendar'),
|
74 |
+
'link' => apply_filters('tribe_help_tab_shopptickets_tribe_url', 'http://m.tri.be/dy'),
|
75 |
+
);
|
76 |
+
|
77 |
+
$premium_add_ons[] = array(
|
78 |
+
'title' => __('The Events Calendar: Filter Bar (coming early 2014)', 'tribe-events-calendar'),
|
79 |
+
// 'link' => apply_filters('tribe_help_tab_wootickets_tribe_url', TribeEvents::$tribeUrl . 'shop/faceted-filters/' . $ga_query_string), // TODO make sure this link is correct
|
80 |
);
|
81 |
$premium_add_ons = (array) apply_filters( 'tribe_help_tab_premium_addons', $premium_add_ons ); // TODO should we replace this with an RSS feed??
|
82 |
|
108 |
);
|
109 |
$resources = (array) apply_filters( 'tribe_help_tab_resources', $resources );
|
110 |
|
111 |
+
$getting_started_text = "If you're looking for help with The Events Calendar, you've come to the right place. We are committed to helping make your calendar kick ass...and hope the resources provided below will help get you there.";
|
112 |
$getting_started_text = apply_filters( 'tribe_help_tab_getting_started_text', $getting_started_text );
|
113 |
|
114 |
+
$intro_text[] = '<p>' . __("If this is your first time using The Events Calendar, you're in for a treat and are already well on your way to creating a first event. Here are some basics we've found helpful for users jumping into it for the first time:", 'tribe-events-calendar') . '</p>';
|
115 |
$intro_text[] = '<ul>';
|
116 |
$intro_text[] = '<li>';
|
117 |
+
$intro_text[] = sprintf( __ ("%sOur New User Primer%s was designed for folks in your exact position. Featuring both step-by-step videos and written walkthroughs that feature accompanying screenshots, the primer aims to take you from zero to hero in no time.", "tribe-events-calendar"), '<a href="' . TribeEvents::$tribeUrl . 'support/documentation/events-calendar-pro-new-user-primer/' . $ga_query_string . '" target="blank">', '</a>' );
|
118 |
$intro_text[] = '</li><li>';
|
119 |
+
$intro_text[] = sprintf( __("%sInstallation/Setup FAQs%s from our support page can help give an overview of what the plugin can and cannot do. This section of the FAQs may be helpful as it aims to address any basic install questions not addressed by the new user primer.", "tribe-events-calendar"), '<a href="' . TribeEvents::$tribeUrl . 'support/faqs/' . $ga_query_string . '" target="blank">','</a>' );
|
120 |
$intro_text[] = '</li><li>';
|
121 |
+
$intro_text[] = sprintf( __("Are you developer looking to build your own frontend view? We created an example plugin that demonstrates how to register a new view. You can %sdownload the plugin at GitHub%s to get started.", "tribe-events-calendar"), '<a href="https://github.com/moderntribe/tribe-events-agenda-view" target="blank">', '</a>' );
|
122 |
$intro_text[] = '</li></ul><p>';
|
123 |
+
$intro_text[] = __("Otherwise, if you're feeling adventurous, you can get started by heading to the Events menu and adding your first event.", "tribe-events-calendar");
|
124 |
$intro_text[] = '</p>';
|
125 |
$intro_text = implode( $intro_text );
|
126 |
|
127 |
+
$support_text[] = '<p>' . sprintf( __("We've redone our support page from the ground up in an effort to better help our users. Head over to our %sSupport Page%s and you'll find lots of great resources, including:", "tribe-events-calendar"), '<a href="' . TribeEvents::$tribeUrl . 'support/' . $ga_query_string . '" target="blank">', '</a>' ) . '</p>';
|
128 |
$support_text[] = '<ul><li>';
|
129 |
+
$support_text[] = sprintf( __("%sTemplate tags, functions, and hooks & filters%s for The Events Calendar & Events Calendar PRO", "tribe-events-calendar" ), '<a href="' . TribeEvents::$tribeUrl . 'support/documentation/' . $ga_query_string . '" target="blank">', '</a>' );
|
130 |
$support_text[] = '</li><li>';
|
131 |
+
$support_text[] = sprintf( __("%sFrequently Asked Questions%s ranging from the most basic setup questions to advanced themer tweaks", "tribe-events-calendar"), '<a href="' . TribeEvents::$tribeUrl . 'support/faqs/' . $ga_query_string . '" target="blank">', '</a>' );
|
132 |
$support_text[] = '</li><li>';
|
133 |
+
$support_text[] = sprintf( __("%sTutorials%s written by both members of our team and users from the community, covering custom queries, integration with third-party themes and plugins, etc.", "tribe-events-calendar"), '<a href="' . TribeEvents::$tribeUrl . 'the-events-calendar-for-wordpress-tutorials/' . $ga_query_string . '" target="blank">', '</a>' );
|
134 |
$support_text[] = '</li><li>';
|
135 |
+
$support_text[] = __("Release notes for painting an overall picture of the plugin's lifecycle and when features/bug fixes were introduced.", "tribe-events-calendar");
|
136 |
$support_text[] = '</li><li>';
|
137 |
+
$support_text[] = sprintf( __("%sAdd-on documentation%s for all of Modern Tribe's official extensions for The Events Calendar (including WooTickets, Community Events, Eventbrite Tickets, Facebook Events, etc)", "tribe-events-calendar" ), '<a href="' . TribeEvents::$tribeUrl . 'support/documentation/' . $ga_query_string . '" target="blank">', '</a>' );
|
138 |
$support_text[] = '</li></ul>';
|
139 |
+
$support_text[] = "<p>" . sprintf( __("We've also got a %sModern Tribe UserVoice%s page where we're actively watching for feature ideas from the community. If after playing with the plugin and reviewing the resources above, you're finding a feature isn't present that should be, let us know. Vote up existing feature requests or add your own, and help us shape the future of the products business in a way that best meets the community's needs.", "tribe-events-calendar"), '<a href="http://tribe.uservoice.com/" target="blank">', '</a>' ) . '</p>';
|
140 |
$support_text = implode( $support_text );
|
141 |
|
142 |
|
143 |
+
$forum_text[] = '<p>' . sprintf( __("Written documentation can only take things so far...sometimes, you need help from a real person. This is where our %ssupport forums%s come into play.", "tribe-events-calendar"), '<a href="http://wordpress.org/support/plugin/the-events-calendar" target="blank">', '</a>') . '</p>';
|
144 |
+
$forum_text[] = '<p>' . sprintf( __("Users of the free The Events Calendar should post their support concerns to the plugin's %sWordPress.org support forum%s. While we are happy to help identify and fix bugs that are reported at WordPress.org, please make sure to read our %ssupport expectations sticky thread%s before posting so you understand our limitations.", "tribe-events-calendar"), '<a href="http://wordpress.org/support/plugin/the-events-calendar" target="blank">', '</a>', '<a href="http://wordpress.org/support/topic/welcome-the-events-calendar-users-read-this-first?replies=1" target="blank">', '</a>' ) . '</p>';
|
145 |
+
$forum_text[] = '<p>' . __("We hit the WordPress.org forum throughout the week, watching for bugs. If you report a legitimate bug that we're able to reproduce, we will log it and patch for an upcoming release. However we are unfortunately unable to provide customization tips or assist in integrating with 3rd party plugins or themes.", "tribe-events-calendar") . "</p>";
|
146 |
+
$forum_text[] = '<p>' . sprintf( __("If you're a user of The Events Calendar and would like more support, please %spurchase a PRO license%s. We hit the PRO forums daily, and can provide a deeper level of customization/integration support for paying users than we can on WordPress.org.", "tribe-events-calendar"), '<a href="' . TribeEvents::$tribeUrl . 'shop/wordpress-events-calendar-pro/' . $ga_query_string . '" target="blank">', '</a>') . '</p>';
|
147 |
$forum_text = implode( $forum_text );
|
148 |
|
149 |
|
150 |
+
$outro_text = '<p>' . sprintf( __("If you find that you aren't getting the level of service you've come to expect from Modern Tribe, shoot us an email at %s or tweet %s and tell us why. We'll do what we can to make it right.", "tribe-events-calendar"), '<a href="mailto:pro@tri.be">pro@tri.be</a>', '<a href="http://www.twitter.com/moderntribeinc" target="blank">@moderntribeinc</a>' ) . '</p>';
|
151 |
$more_text = __('More...', 'tribe-events-calendar');
|
152 |
|
153 |
|
207 |
<ul>
|
208 |
<?php foreach ($premium_add_ons as $addon) :
|
209 |
echo '<li>';
|
210 |
+
if ( isset($addon['link']) ) echo '<a href="'.$addon['link'].'" target="_blank">';
|
211 |
echo $addon['title'];
|
212 |
if ( isset($addon['coming_soon']) ) echo ( is_string($addon['coming_soon']) ) ? ' '.$addon['coming_soon'] : ' '.__('(Coming Soon!)', 'tribe-events-calendar');
|
213 |
if ( isset($addon['link']) ) echo '</a>';
|
lang/hu_HU.mo
DELETED
Binary file
|
lang/hu_HU.po
DELETED
@@ -1,2909 +0,0 @@
|
|
1 |
-
# POT for The Events Calendar 2.0 by Modern Tribe, Inc..
|
2 |
-
# Copyright (C) 2011 Shane & Peter, Inc.
|
3 |
-
# This file is distributed under the same license as the The Events Calendar package.
|
4 |
-
msgid ""
|
5 |
-
msgstr ""
|
6 |
-
"Project-Id-Version: The Events Calendar 2.0\n"
|
7 |
-
"Report-Msgid-Bugs-To: \n"
|
8 |
-
"POT-Creation-Date: 2012-11-08 16:24-0500\n"
|
9 |
-
"PO-Revision-Date: 2012-12-14 15:29-0800\n"
|
10 |
-
"Last-Translator: Rob <rob@shaneandpeter.com>\n"
|
11 |
-
"Language-Team: \n"
|
12 |
-
"MIME-Version: 1.0\n"
|
13 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
-
"Content-Transfer-Encoding: 8bit\n"
|
15 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
-
"X-Poedit-Basepath: ./\n"
|
18 |
-
"X-Generator: Poedit 1.5.4\n"
|
19 |
-
"X-Poedit-SearchPath-0: ..\n"
|
20 |
-
|
21 |
-
#: ../admin-views/app-shop.php:4
|
22 |
-
msgid "Tribe Event Add-Ons"
|
23 |
-
msgstr ""
|
24 |
-
|
25 |
-
#: ../admin-views/app-shop.php:56
|
26 |
-
msgid "Version"
|
27 |
-
msgstr ""
|
28 |
-
|
29 |
-
#: ../admin-views/app-shop.php:59
|
30 |
-
msgid "Last Update"
|
31 |
-
msgstr ""
|
32 |
-
|
33 |
-
#: ../admin-views/event-sidebar-options.php:11
|
34 |
-
msgid "Hide From Upcoming Events List"
|
35 |
-
msgstr ""
|
36 |
-
|
37 |
-
#: ../admin-views/events-audit-trail.php:41
|
38 |
-
msgid "Auditing Information"
|
39 |
-
msgstr ""
|
40 |
-
|
41 |
-
#: ../admin-views/events-audit-trail.php:44
|
42 |
-
msgid "Created by:"
|
43 |
-
msgstr ""
|
44 |
-
|
45 |
-
#: ../admin-views/events-audit-trail.php:48
|
46 |
-
msgid "Audit Trail:"
|
47 |
-
msgstr ""
|
48 |
-
|
49 |
-
#: ../admin-views/events-meta-box.php:26
|
50 |
-
msgid "Event Time & Date"
|
51 |
-
msgstr ""
|
52 |
-
|
53 |
-
#: ../admin-views/events-meta-box.php:29
|
54 |
-
msgid ""
|
55 |
-
"You have changed the recurrence rules of this event. Saving the event will "
|
56 |
-
"update all future events. If you did not mean to change all events, then "
|
57 |
-
"please refresh the page."
|
58 |
-
msgstr ""
|
59 |
-
|
60 |
-
#: ../admin-views/events-meta-box.php:32
|
61 |
-
msgid "All day event?"
|
62 |
-
msgstr ""
|
63 |
-
|
64 |
-
#: ../admin-views/events-meta-box.php:36
|
65 |
-
msgid "* Start Date / Time:"
|
66 |
-
msgstr ""
|
67 |
-
|
68 |
-
#: ../admin-views/events-meta-box.php:39 ../admin-views/events-meta-box.php:60
|
69 |
-
msgid "YYYY-MM-DD"
|
70 |
-
msgstr ""
|
71 |
-
|
72 |
-
#: ../admin-views/events-meta-box.php:41 ../admin-views/events-meta-box.php:62
|
73 |
-
#: ../admin-views/tickets-meta-box.php:97
|
74 |
-
#: ../admin-views/tickets-meta-box.php:122
|
75 |
-
msgid "@"
|
76 |
-
msgstr ""
|
77 |
-
|
78 |
-
#: ../admin-views/events-meta-box.php:57
|
79 |
-
msgid "* End Date / Time:"
|
80 |
-
msgstr ""
|
81 |
-
|
82 |
-
#: ../admin-views/events-meta-box.php:79
|
83 |
-
msgid "Event Location Details"
|
84 |
-
msgstr ""
|
85 |
-
|
86 |
-
#: ../admin-views/events-meta-box.php:85
|
87 |
-
msgid "Show Google Maps Link:"
|
88 |
-
msgstr ""
|
89 |
-
|
90 |
-
#: ../admin-views/events-meta-box.php:92
|
91 |
-
msgid "Show Google Map:"
|
92 |
-
msgstr ""
|
93 |
-
|
94 |
-
#: ../admin-views/events-meta-box.php:101
|
95 |
-
msgid "Event Organizer Details"
|
96 |
-
msgstr ""
|
97 |
-
|
98 |
-
#: ../admin-views/events-meta-box.php:110
|
99 |
-
msgid "Event Cost"
|
100 |
-
msgstr ""
|
101 |
-
|
102 |
-
#: ../admin-views/events-meta-box.php:113 ../views/list.php:105
|
103 |
-
#: ../views/single.php:31
|
104 |
-
msgid "Cost:"
|
105 |
-
msgstr ""
|
106 |
-
|
107 |
-
#: ../admin-views/events-meta-box.php:118
|
108 |
-
msgid "Leave blank to hide the field. Enter a 0 for events that are free."
|
109 |
-
msgstr ""
|
110 |
-
|
111 |
-
#: ../admin-views/organizer-meta-box.php:11
|
112 |
-
msgid "Organizer Name:"
|
113 |
-
msgstr ""
|
114 |
-
|
115 |
-
#: ../admin-views/organizer-meta-box.php:17
|
116 |
-
#: ../admin-views/venue-meta-box.php:81 ../views/list.php:87
|
117 |
-
#: ../views/single.php:43 ../views/single.php:71
|
118 |
-
msgid "Phone:"
|
119 |
-
msgstr ""
|
120 |
-
|
121 |
-
#: ../admin-views/organizer-meta-box.php:21
|
122 |
-
msgid "Website:"
|
123 |
-
msgstr ""
|
124 |
-
|
125 |
-
#: ../admin-views/organizer-meta-box.php:25 ../views/single.php:47
|
126 |
-
msgid "Email:"
|
127 |
-
msgstr ""
|
128 |
-
|
129 |
-
#: ../admin-views/recurrence-dialog.php:11
|
130 |
-
msgid ""
|
131 |
-
"Would you like to change only this instance of the event, or all future "
|
132 |
-
"events in this series?"
|
133 |
-
msgstr ""
|
134 |
-
|
135 |
-
#: ../admin-views/recurrence-dialog.php:13
|
136 |
-
#: ../admin-views/recurrence-dialog.php:21
|
137 |
-
msgid "Only This Event:"
|
138 |
-
msgstr ""
|
139 |
-
|
140 |
-
#: ../admin-views/recurrence-dialog.php:13
|
141 |
-
msgid "All other future events in the series will remain the same."
|
142 |
-
msgstr ""
|
143 |
-
|
144 |
-
#: ../admin-views/recurrence-dialog.php:14
|
145 |
-
#: ../admin-views/recurrence-dialog.php:22
|
146 |
-
msgid "All Events:"
|
147 |
-
msgstr ""
|
148 |
-
|
149 |
-
#: ../admin-views/recurrence-dialog.php:14
|
150 |
-
msgid ""
|
151 |
-
"All future events in the series will be changed. Any changes made to other "
|
152 |
-
"events will be kept."
|
153 |
-
msgstr ""
|
154 |
-
|
155 |
-
#: ../admin-views/recurrence-dialog.php:19
|
156 |
-
msgid ""
|
157 |
-
"Would you like to delete only this instance of the event, or all future "
|
158 |
-
"events in this series?"
|
159 |
-
msgstr ""
|
160 |
-
|
161 |
-
#: ../admin-views/recurrence-dialog.php:21
|
162 |
-
msgid "All other future events in the series will not be deleted."
|
163 |
-
msgstr ""
|
164 |
-
|
165 |
-
#: ../admin-views/recurrence-dialog.php:22
|
166 |
-
msgid "All future events in the series will be deleted."
|
167 |
-
msgstr ""
|
168 |
-
|
169 |
-
#: ../admin-views/tickets-attendees.php:3 ../admin-views/tickets-list.php:39
|
170 |
-
#: ../lib/tickets/tribe-tickets.php:446
|
171 |
-
msgid "Attendees"
|
172 |
-
msgstr ""
|
173 |
-
|
174 |
-
#: ../admin-views/tickets-attendees.php:7
|
175 |
-
msgid "Summary"
|
176 |
-
msgstr ""
|
177 |
-
|
178 |
-
#: ../admin-views/tickets-attendees.php:41 ../admin-views/tickets-list.php:62
|
179 |
-
#, php-format
|
180 |
-
msgid "Sold %d of %d"
|
181 |
-
msgstr ""
|
182 |
-
|
183 |
-
#: ../admin-views/tickets-list.php:22
|
184 |
-
#, php-format
|
185 |
-
msgid "<span><a href='%s'>Edit in %s</a></span>"
|
186 |
-
msgstr ""
|
187 |
-
|
188 |
-
#: ../admin-views/tickets-meta-box.php:14
|
189 |
-
msgid ""
|
190 |
-
"This event was created using Community Events. Are you sure you want to sell "
|
191 |
-
"tickets for it?"
|
192 |
-
msgstr ""
|
193 |
-
|
194 |
-
#: ../admin-views/tickets-meta-box.php:30
|
195 |
-
#: ../admin-views/tickets-meta-box.php:40
|
196 |
-
msgid "Add new ticket"
|
197 |
-
msgstr ""
|
198 |
-
|
199 |
-
#: ../admin-views/tickets-meta-box.php:41
|
200 |
-
msgid "Edit ticket"
|
201 |
-
msgstr ""
|
202 |
-
|
203 |
-
#: ../admin-views/tickets-meta-box.php:47
|
204 |
-
msgid "Sell using:"
|
205 |
-
msgstr ""
|
206 |
-
|
207 |
-
#: ../admin-views/tickets-meta-box.php:64
|
208 |
-
msgid "Ticket Name:"
|
209 |
-
msgstr ""
|
210 |
-
|
211 |
-
#: ../admin-views/tickets-meta-box.php:71
|
212 |
-
msgid "Ticket Description:"
|
213 |
-
msgstr ""
|
214 |
-
|
215 |
-
#: ../admin-views/tickets-meta-box.php:80
|
216 |
-
msgid "Price:"
|
217 |
-
msgstr ""
|
218 |
-
|
219 |
-
#: ../admin-views/tickets-meta-box.php:91
|
220 |
-
msgid "Start sale:"
|
221 |
-
msgstr ""
|
222 |
-
|
223 |
-
#: ../admin-views/tickets-meta-box.php:115
|
224 |
-
msgid "End sale:"
|
225 |
-
msgstr ""
|
226 |
-
|
227 |
-
#: ../admin-views/tickets-meta-box.php:135
|
228 |
-
msgid ""
|
229 |
-
"When will ticket sales occur? If you don't set a start/end date for sales, "
|
230 |
-
"tickets will be available from now until the event ends."
|
231 |
-
msgstr ""
|
232 |
-
|
233 |
-
#: ../admin-views/tribe-options-general.php:19
|
234 |
-
msgid "Finding & extending your calendar."
|
235 |
-
msgstr ""
|
236 |
-
|
237 |
-
#: ../admin-views/tribe-options-general.php:24
|
238 |
-
msgid "Finding your calendar."
|
239 |
-
msgstr ""
|
240 |
-
|
241 |
-
#: ../admin-views/tribe-options-general.php:29
|
242 |
-
msgid "Where's my calendar?"
|
243 |
-
msgstr ""
|
244 |
-
|
245 |
-
#: ../admin-views/tribe-options-general.php:29
|
246 |
-
msgid "Right here"
|
247 |
-
msgstr ""
|
248 |
-
|
249 |
-
#: ../admin-views/tribe-options-general.php:33
|
250 |
-
#: ../lib/the-events-calendar.class.php:2646
|
251 |
-
msgid ""
|
252 |
-
"Looking for additional functionality including recurring events, custom "
|
253 |
-
"meta, community events, ticket sales and more?"
|
254 |
-
msgstr ""
|
255 |
-
|
256 |
-
#: ../admin-views/tribe-options-general.php:33
|
257 |
-
msgid "Check out the available Add-Ons"
|
258 |
-
msgstr ""
|
259 |
-
|
260 |
-
#: ../admin-views/tribe-options-general.php:38
|
261 |
-
msgid "We hope our plugin is helping you out."
|
262 |
-
msgstr ""
|
263 |
-
|
264 |
-
#: ../admin-views/tribe-options-general.php:42
|
265 |
-
#: ../admin-views/tribe-options-general.php:47
|
266 |
-
msgid ""
|
267 |
-
"Are you thinking \"Wow, this plugin is amazing! I should say thanks to "
|
268 |
-
"Modern Tribe for all their hard work.\" The greatest thanks we could ask for "
|
269 |
-
"is recognition. Add a small text only link at the bottom of your calendar "
|
270 |
-
"pointing to The Events Calendar project."
|
271 |
-
msgstr ""
|
272 |
-
|
273 |
-
#: ../admin-views/tribe-options-general.php:42
|
274 |
-
#: ../admin-views/tribe-options-general.php:47
|
275 |
-
msgid "See an example of the link"
|
276 |
-
msgstr ""
|
277 |
-
|
278 |
-
#: ../admin-views/tribe-options-general.php:52
|
279 |
-
msgid "Show Events Calendar Link"
|
280 |
-
msgstr ""
|
281 |
-
|
282 |
-
#: ../admin-views/tribe-options-general.php:62
|
283 |
-
msgid "Default view for the Events"
|
284 |
-
msgstr ""
|
285 |
-
|
286 |
-
#: ../admin-views/tribe-options-general.php:69
|
287 |
-
#: ../admin-views/tribe-options-general.php:75
|
288 |
-
msgid "Events URL slug"
|
289 |
-
msgstr ""
|
290 |
-
|
291 |
-
#: ../admin-views/tribe-options-general.php:70
|
292 |
-
msgid ""
|
293 |
-
"You cannot edit the slug for your events page as you do not have pretty "
|
294 |
-
"permalinks enabled. The current URL for your events page is <a href=\" "
|
295 |
-
msgstr ""
|
296 |
-
|
297 |
-
#: ../admin-views/tribe-options-general.php:82
|
298 |
-
#: ../public/template-tags/options.php:20
|
299 |
-
msgid "The slug used for building the events URL."
|
300 |
-
msgstr ""
|
301 |
-
|
302 |
-
#: ../admin-views/tribe-options-general.php:82
|
303 |
-
#: ../public/template-tags/options.php:20
|
304 |
-
#, php-format
|
305 |
-
msgid "Your current Events URL is %s"
|
306 |
-
msgstr ""
|
307 |
-
|
308 |
-
#: ../admin-views/tribe-options-general.php:87
|
309 |
-
#: ../public/template-tags/options.php:43
|
310 |
-
msgid "Here is the iCal feed URL for your events:"
|
311 |
-
msgstr ""
|
312 |
-
|
313 |
-
#: ../admin-views/tribe-options-general.php:92
|
314 |
-
msgid "Single Event URL slug"
|
315 |
-
msgstr ""
|
316 |
-
|
317 |
-
#: ../admin-views/tribe-options-general.php:99
|
318 |
-
#: ../public/template-tags/options.php:31
|
319 |
-
#, php-format
|
320 |
-
msgid ""
|
321 |
-
"You <strong>cannot</strong> use the same slug as above. The above should "
|
322 |
-
"ideally be plural, and this singular.<br />Your single Event URL is like: %s"
|
323 |
-
msgstr ""
|
324 |
-
|
325 |
-
#: ../admin-views/tribe-options-general.php:104
|
326 |
-
msgid "Number of events to show per page"
|
327 |
-
msgstr ""
|
328 |
-
|
329 |
-
#: ../admin-views/tribe-options-general.php:111
|
330 |
-
msgid "Show Comments"
|
331 |
-
msgstr ""
|
332 |
-
|
333 |
-
#: ../admin-views/tribe-options-general.php:112
|
334 |
-
msgid "Enable commenting on an event."
|
335 |
-
msgstr ""
|
336 |
-
|
337 |
-
#: ../admin-views/tribe-options-general.php:118
|
338 |
-
msgid "Multiday Event Cutoff"
|
339 |
-
msgstr ""
|
340 |
-
|
341 |
-
#: ../admin-views/tribe-options-general.php:119
|
342 |
-
msgid "Hide final day from grid view if multi-day event ends before this time."
|
343 |
-
msgstr ""
|
344 |
-
|
345 |
-
#: ../admin-views/tribe-options-general.php:127
|
346 |
-
msgid "Enable Google Maps"
|
347 |
-
msgstr ""
|
348 |
-
|
349 |
-
#: ../admin-views/tribe-options-general.php:128
|
350 |
-
msgid "Turn on to enable backend map preview and frontend map."
|
351 |
-
msgstr ""
|
352 |
-
|
353 |
-
#: ../admin-views/tribe-options-general.php:135
|
354 |
-
msgid "Google Maps Embed Height"
|
355 |
-
msgstr ""
|
356 |
-
|
357 |
-
#: ../admin-views/tribe-options-general.php:138
|
358 |
-
msgid "Enter a number."
|
359 |
-
msgstr ""
|
360 |
-
|
361 |
-
#: ../admin-views/tribe-options-general.php:144
|
362 |
-
msgid "Google Maps Embed Width"
|
363 |
-
msgstr ""
|
364 |
-
|
365 |
-
#: ../admin-views/tribe-options-general.php:146
|
366 |
-
msgid "Enter a number or %."
|
367 |
-
msgstr ""
|
368 |
-
|
369 |
-
#: ../admin-views/tribe-options-general.php:153
|
370 |
-
msgid "Google Maps Default Zoom Level"
|
371 |
-
msgstr ""
|
372 |
-
|
373 |
-
#: ../admin-views/tribe-options-general.php:154
|
374 |
-
msgid "0 = zoomed out; 21 = zoomed in."
|
375 |
-
msgstr ""
|
376 |
-
|
377 |
-
#: ../admin-views/tribe-options-general.php:162
|
378 |
-
msgid "Send PressTrends Data"
|
379 |
-
msgstr ""
|
380 |
-
|
381 |
-
#: ../admin-views/tribe-options-general.php:163
|
382 |
-
msgid ""
|
383 |
-
"Help us out by sending analytics data about your usage of The Events "
|
384 |
-
"Calendar."
|
385 |
-
msgstr ""
|
386 |
-
|
387 |
-
#: ../admin-views/tribe-options-general.php:169
|
388 |
-
msgid "Debug Mode"
|
389 |
-
msgstr ""
|
390 |
-
|
391 |
-
#: ../admin-views/tribe-options-general.php:170
|
392 |
-
#, php-format
|
393 |
-
msgid ""
|
394 |
-
"Enable this option to log debug information. By default this will log to "
|
395 |
-
"your server PHP error log. If you'd like to see the log messages in your "
|
396 |
-
"browser, then we recommend that you install the %s and look for the \"Tribe"
|
397 |
-
"\" tab in the debug output."
|
398 |
-
msgstr ""
|
399 |
-
|
400 |
-
#: ../admin-views/tribe-options-general.php:170
|
401 |
-
msgid "Debug Bar Plugin"
|
402 |
-
msgstr ""
|
403 |
-
|
404 |
-
#: ../admin-views/tribe-options-general.php:180
|
405 |
-
msgid ""
|
406 |
-
"Would you like to help us out and send analytics about your usage of The "
|
407 |
-
"Events Calendar?"
|
408 |
-
msgstr ""
|
409 |
-
|
410 |
-
#: ../admin-views/tribe-options-help.php:15
|
411 |
-
msgid "You need to upgrade!"
|
412 |
-
msgstr ""
|
413 |
-
|
414 |
-
#: ../admin-views/tribe-options-help.php:15
|
415 |
-
msgid "You are up to date!"
|
416 |
-
msgstr ""
|
417 |
-
|
418 |
-
#: ../admin-views/tribe-options-help.php:41
|
419 |
-
msgid "Advanced Post Manager"
|
420 |
-
msgstr ""
|
421 |
-
|
422 |
-
#: ../admin-views/tribe-options-help.php:45
|
423 |
-
msgid "Event Importer"
|
424 |
-
msgstr ""
|
425 |
-
|
426 |
-
#: ../admin-views/tribe-options-help.php:52
|
427 |
-
msgid "The Events Calendar PRO"
|
428 |
-
msgstr ""
|
429 |
-
|
430 |
-
#: ../admin-views/tribe-options-help.php:56
|
431 |
-
msgid "Eventbrite Tickets"
|
432 |
-
msgstr ""
|
433 |
-
|
434 |
-
#: ../admin-views/tribe-options-help.php:60
|
435 |
-
msgid "Community Events"
|
436 |
-
msgstr ""
|
437 |
-
|
438 |
-
#: ../admin-views/tribe-options-help.php:64
|
439 |
-
msgid "Facebook Events"
|
440 |
-
msgstr ""
|
441 |
-
|
442 |
-
#: ../admin-views/tribe-options-help.php:68
|
443 |
-
msgid "WooTickets"
|
444 |
-
msgstr ""
|
445 |
-
|
446 |
-
#: ../admin-views/tribe-options-help.php:70
|
447 |
-
#: ../admin-views/tribe-options-help.php:75
|
448 |
-
msgid "(coming later in 2012)"
|
449 |
-
msgstr ""
|
450 |
-
|
451 |
-
#: ../admin-views/tribe-options-help.php:73
|
452 |
-
msgid "Conference Manager"
|
453 |
-
msgstr ""
|
454 |
-
|
455 |
-
#: ../admin-views/tribe-options-help.php:82
|
456 |
-
msgid "Documentation"
|
457 |
-
msgstr ""
|
458 |
-
|
459 |
-
#: ../admin-views/tribe-options-help.php:86
|
460 |
-
msgid "FAQ"
|
461 |
-
msgstr ""
|
462 |
-
|
463 |
-
#: ../admin-views/tribe-options-help.php:90
|
464 |
-
#: ../lib/the-events-calendar.class.php:486
|
465 |
-
#: ../lib/the-events-calendar.class.php:2747
|
466 |
-
#: ../lib/the-events-calendar.class.php:2838
|
467 |
-
msgid "Help"
|
468 |
-
msgstr ""
|
469 |
-
|
470 |
-
#: ../admin-views/tribe-options-help.php:94
|
471 |
-
msgid "Tutorials"
|
472 |
-
msgstr ""
|
473 |
-
|
474 |
-
#: ../admin-views/tribe-options-help.php:98
|
475 |
-
msgid "Release Notes"
|
476 |
-
msgstr ""
|
477 |
-
|
478 |
-
#: ../admin-views/tribe-options-help.php:102
|
479 |
-
msgid "Forums"
|
480 |
-
msgstr ""
|
481 |
-
|
482 |
-
#: ../admin-views/tribe-options-help.php:107
|
483 |
-
#, php-format
|
484 |
-
msgid ""
|
485 |
-
"If this is your first time using The Events Calendar, you're in for a treat. "
|
486 |
-
"You're going to find it super-easy to get up and running with managing your "
|
487 |
-
"events. Here are some ways to get started:</p><ul><li><strong>Feeling "
|
488 |
-
"adventurous?</strong> Jump right into it by visiting the Events menu to "
|
489 |
-
"%sadd your first event%s.</li><li><strong>Want to get the low-down first?</"
|
490 |
-
"strong> Visit our <a href=\"http://tri.be/support/documentation/events-"
|
491 |
-
"calendar-pro-new-user-primer/"
|
492 |
-
msgstr ""
|
493 |
-
|
494 |
-
#: ../admin-views/tribe-options-help.php:110
|
495 |
-
#, php-format
|
496 |
-
msgid ""
|
497 |
-
"We love all our users and want to help free & PRO customers alike. If you're "
|
498 |
-
"running the latest version of The Events Calendar and are having problems, "
|
499 |
-
"post a thread the %s at WordPress.org. We hit the forum a few times a week "
|
500 |
-
"and do what we can to assist users."
|
501 |
-
msgstr ""
|
502 |
-
|
503 |
-
#: ../admin-views/tribe-options-help.php:110
|
504 |
-
msgid "forum for The Events Calendar"
|
505 |
-
msgstr ""
|
506 |
-
|
507 |
-
#: ../admin-views/tribe-options-help.php:112
|
508 |
-
#, php-format
|
509 |
-
msgid ""
|
510 |
-
"%sSupport is available for both free and PRO customers. If you're running "
|
511 |
-
"the latest version of the Events Calendar and have run into problems, post a "
|
512 |
-
"forum thread on our %sWordPress.org support forum%s. We visit the forums a "
|
513 |
-
"few times a week and will do what we can to help you.%s"
|
514 |
-
msgstr ""
|
515 |
-
|
516 |
-
#: ../admin-views/tribe-options-help.php:113
|
517 |
-
#, php-format
|
518 |
-
msgid "%sA few things to keep in mind before posting:%s"
|
519 |
-
msgstr ""
|
520 |
-
|
521 |
-
#: ../admin-views/tribe-options-help.php:114
|
522 |
-
#, php-format
|
523 |
-
msgid ""
|
524 |
-
"%sSearch recent threads before posting a new one to check that there isn't "
|
525 |
-
"already a discussion about your issue.%s"
|
526 |
-
msgstr ""
|
527 |
-
|
528 |
-
#: ../admin-views/tribe-options-help.php:115
|
529 |
-
#, php-format
|
530 |
-
msgid ""
|
531 |
-
"%sCheck whether the issue is a conflict with another plugin or your theme. "
|
532 |
-
"This can be tested easily on a staging site by deactivating other plugins "
|
533 |
-
"one-by-one, and reverting to the default Twenty Eleven theme to see if "
|
534 |
-
"conflicts can be easily identified. If you find a conflict note it on your "
|
535 |
-
"support thread.%s"
|
536 |
-
msgstr ""
|
537 |
-
|
538 |
-
#: ../admin-views/tribe-options-help.php:116
|
539 |
-
#, php-format
|
540 |
-
msgid ""
|
541 |
-
"%sSometimes, just resaving your permalinks (under Settings > Permalinks) can "
|
542 |
-
"resolve events-related problems on your site. Before creating a new thread "
|
543 |
-
"try the out.%s"
|
544 |
-
msgstr ""
|
545 |
-
|
546 |
-
#: ../admin-views/tribe-options-help.php:117
|
547 |
-
#, php-format
|
548 |
-
msgid ""
|
549 |
-
"%sWhile we are happy to help with bugs and provide light integration tips "
|
550 |
-
"for users of The Events Calendar, on the WordPress.org support forums we're "
|
551 |
-
"not able to provide customization tips or assist in integration with 3rd "
|
552 |
-
"party plugins.%s"
|
553 |
-
msgstr ""
|
554 |
-
|
555 |
-
#: ../admin-views/tribe-options-help.php:119
|
556 |
-
#, php-format
|
557 |
-
msgid ""
|
558 |
-
"%sShoot us an email at %s or tweet %s and tell us why. We'll do what we can "
|
559 |
-
"to make it right.%s"
|
560 |
-
msgstr ""
|
561 |
-
|
562 |
-
#: ../admin-views/tribe-options-help.php:119
|
563 |
-
msgid "pro@tri.be"
|
564 |
-
msgstr ""
|
565 |
-
|
566 |
-
#: ../admin-views/tribe-options-help.php:119
|
567 |
-
msgid "@moderntribeinc"
|
568 |
-
msgstr ""
|
569 |
-
|
570 |
-
#: ../admin-views/tribe-options-help.php:120
|
571 |
-
msgid "More..."
|
572 |
-
msgstr ""
|
573 |
-
|
574 |
-
#: ../admin-views/tribe-options-help.php:127
|
575 |
-
msgid ""
|
576 |
-
"Hi! We are Modern Tribe and we are here to help you kick ass. Thanks so much "
|
577 |
-
"for installing our labor of love!"
|
578 |
-
msgstr ""
|
579 |
-
|
580 |
-
#: ../admin-views/tribe-options-help.php:129
|
581 |
-
msgid "Getting Started"
|
582 |
-
msgstr ""
|
583 |
-
|
584 |
-
#: ../admin-views/tribe-options-help.php:134
|
585 |
-
msgid "Resources to Help You Kick Ass"
|
586 |
-
msgstr ""
|
587 |
-
|
588 |
-
#: ../admin-views/tribe-options-help.php:146
|
589 |
-
msgid "Everyone Needs a Buddy"
|
590 |
-
msgstr ""
|
591 |
-
|
592 |
-
#: ../admin-views/tribe-options-help.php:149
|
593 |
-
msgid "Still Not Satisfied?"
|
594 |
-
msgstr ""
|
595 |
-
|
596 |
-
#: ../admin-views/tribe-options-help.php:156
|
597 |
-
#: ../lib/the-events-calendar.class.php:296
|
598 |
-
#: ../lib/tribe-settings.class.php:129
|
599 |
-
msgid "The Events Calendar"
|
600 |
-
msgstr ""
|
601 |
-
|
602 |
-
#: ../admin-views/tribe-options-help.php:160
|
603 |
-
msgid "Latest Version:"
|
604 |
-
msgstr ""
|
605 |
-
|
606 |
-
#: ../admin-views/tribe-options-help.php:161
|
607 |
-
msgid "Author:"
|
608 |
-
msgstr ""
|
609 |
-
|
610 |
-
#: ../admin-views/tribe-options-help.php:161
|
611 |
-
msgid "Modern Tribe Inc"
|
612 |
-
msgstr ""
|
613 |
-
|
614 |
-
#: ../admin-views/tribe-options-help.php:162
|
615 |
-
msgid "Requires:"
|
616 |
-
msgstr ""
|
617 |
-
|
618 |
-
#: ../admin-views/tribe-options-help.php:162
|
619 |
-
msgid "WordPress "
|
620 |
-
msgstr ""
|
621 |
-
|
622 |
-
#: ../admin-views/tribe-options-help.php:163
|
623 |
-
msgid "Wordpress.org Plugin Page"
|
624 |
-
msgstr ""
|
625 |
-
|
626 |
-
#: ../admin-views/tribe-options-help.php:166
|
627 |
-
msgid "Average Rating"
|
628 |
-
msgstr ""
|
629 |
-
|
630 |
-
#: ../admin-views/tribe-options-help.php:175
|
631 |
-
msgid "Rating currently unavailable :("
|
632 |
-
msgstr ""
|
633 |
-
|
634 |
-
#: ../admin-views/tribe-options-help.php:181
|
635 |
-
msgid "Give us 5 stars!"
|
636 |
-
msgstr ""
|
637 |
-
|
638 |
-
#: ../admin-views/tribe-options-help.php:183
|
639 |
-
msgid "Free Add-Ons"
|
640 |
-
msgstr ""
|
641 |
-
|
642 |
-
#: ../admin-views/tribe-options-help.php:189
|
643 |
-
#: ../admin-views/tribe-options-help.php:202
|
644 |
-
msgid "(Coming Soon!)"
|
645 |
-
msgstr ""
|
646 |
-
|
647 |
-
#: ../admin-views/tribe-options-help.php:196
|
648 |
-
msgid "Premium Add-Ons"
|
649 |
-
msgstr ""
|
650 |
-
|
651 |
-
#: ../admin-views/tribe-options-help.php:209
|
652 |
-
msgid "News and Tutorials"
|
653 |
-
msgstr ""
|
654 |
-
|
655 |
-
#: ../admin-views/tribe-options-templates.php:4
|
656 |
-
msgid "Default Events Template"
|
657 |
-
msgstr ""
|
658 |
-
|
659 |
-
#: ../admin-views/tribe-options-templates.php:5
|
660 |
-
msgid "Default Page Template"
|
661 |
-
msgstr ""
|
662 |
-
|
663 |
-
#: ../admin-views/tribe-options-templates.php:22
|
664 |
-
msgid "Template Settings"
|
665 |
-
msgstr ""
|
666 |
-
|
667 |
-
#: ../admin-views/tribe-options-templates.php:26
|
668 |
-
msgid ""
|
669 |
-
"You can apply different page templates to The Events Calendar. Page "
|
670 |
-
"templates control the layout of individual pages. The Events Calendar comes "
|
671 |
-
"with a Default Events Template. However, you can apply any page template "
|
672 |
-
"that is available in your WordPress Theme. If you are having problems "
|
673 |
-
"getting your Events Calendar to display correctly, switching the page "
|
674 |
-
"template may solve the problem.</p><p>We make every effort to ensure that "
|
675 |
-
"the Plugin is compatible with as many Themes as possible but there may be "
|
676 |
-
"situations in which none of the below templating options will look 100% "
|
677 |
-
"perfect. Check out our <a href=\"http://tri.be/support/documentation/events-"
|
678 |
-
"calendar-themers-guide/\">our themer's guide</a> to figure out what approach "
|
679 |
-
"is best for you."
|
680 |
-
msgstr ""
|
681 |
-
|
682 |
-
#: ../admin-views/tribe-options-templates.php:34
|
683 |
-
msgid "Events Template"
|
684 |
-
msgstr ""
|
685 |
-
|
686 |
-
#: ../admin-views/tribe-options-templates.php:35
|
687 |
-
msgid "Choose a page template to control the look and feel of your calendar."
|
688 |
-
msgstr ""
|
689 |
-
|
690 |
-
#: ../admin-views/tribe-options-templates.php:43
|
691 |
-
msgid "Add HTML before calendar"
|
692 |
-
msgstr ""
|
693 |
-
|
694 |
-
#: ../admin-views/tribe-options-templates.php:44
|
695 |
-
msgid ""
|
696 |
-
"If you are familiar with CSS you can use this box to add extra divs before "
|
697 |
-
"the calendar list. Some Themes may require this to help with styling."
|
698 |
-
msgstr ""
|
699 |
-
|
700 |
-
#: ../admin-views/tribe-options-templates.php:50
|
701 |
-
msgid "Add HTML after calendar"
|
702 |
-
msgstr ""
|
703 |
-
|
704 |
-
#: ../admin-views/tribe-options-templates.php:51
|
705 |
-
msgid ""
|
706 |
-
"If you are familiar with CSS you can use this box to add extra divs after "
|
707 |
-
"the calendar list. Some Themes may require this to help with styling."
|
708 |
-
msgstr ""
|
709 |
-
|
710 |
-
#: ../admin-views/venue-meta-box.php:12
|
711 |
-
msgid "Venue Name:"
|
712 |
-
msgstr ""
|
713 |
-
|
714 |
-
#: ../admin-views/venue-meta-box.php:19 ../views/list.php:93
|
715 |
-
#: ../views/single.php:76
|
716 |
-
msgid "Address:"
|
717 |
-
msgstr ""
|
718 |
-
|
719 |
-
#: ../admin-views/venue-meta-box.php:23
|
720 |
-
msgid "City:"
|
721 |
-
msgstr ""
|
722 |
-
|
723 |
-
#: ../admin-views/venue-meta-box.php:27
|
724 |
-
msgid "Country:"
|
725 |
-
msgstr ""
|
726 |
-
|
727 |
-
#: ../admin-views/venue-meta-box.php:59
|
728 |
-
msgid "State or Province:"
|
729 |
-
msgstr ""
|
730 |
-
|
731 |
-
#: ../admin-views/venue-meta-box.php:62
|
732 |
-
msgid "Select a State:"
|
733 |
-
msgstr ""
|
734 |
-
|
735 |
-
#: ../admin-views/venue-meta-box.php:77
|
736 |
-
msgid "Postal Code:"
|
737 |
-
msgstr ""
|
738 |
-
|
739 |
-
#: ../admin-views/widget-admin-list.php:11
|
740 |
-
msgid "Title:"
|
741 |
-
msgstr ""
|
742 |
-
|
743 |
-
#: ../admin-views/widget-admin-list.php:16
|
744 |
-
msgid "Show:"
|
745 |
-
msgstr ""
|
746 |
-
|
747 |
-
#: ../admin-views/widget-admin-list.php:24
|
748 |
-
msgid "Show widget only if there are upcoming events:"
|
749 |
-
msgstr ""
|
750 |
-
|
751 |
-
#: ../admin-views/widget-admin-list.php:30
|
752 |
-
#, php-format
|
753 |
-
msgid "Want to modify the display of this widget? Try a %stemplate override%s."
|
754 |
-
msgstr ""
|
755 |
-
|
756 |
-
#: ../lib/the-events-calendar.class.php:299
|
757 |
-
#: ../lib/the-events-calendar.class.php:1435
|
758 |
-
msgid "category"
|
759 |
-
msgstr ""
|
760 |
-
|
761 |
-
#: ../lib/the-events-calendar.class.php:300
|
762 |
-
#: ../lib/the-events-calendar.class.php:1436
|
763 |
-
msgid "tag"
|
764 |
-
msgstr ""
|
765 |
-
|
766 |
-
#: ../lib/the-events-calendar.class.php:301
|
767 |
-
msgid "month"
|
768 |
-
msgstr ""
|
769 |
-
|
770 |
-
#: ../lib/the-events-calendar.class.php:302
|
771 |
-
msgid "upcoming"
|
772 |
-
msgstr ""
|
773 |
-
|
774 |
-
#: ../lib/the-events-calendar.class.php:303
|
775 |
-
msgid "past"
|
776 |
-
msgstr ""
|
777 |
-
|
778 |
-
#: ../lib/the-events-calendar.class.php:305
|
779 |
-
msgid "venue"
|
780 |
-
msgstr ""
|
781 |
-
|
782 |
-
#: ../lib/the-events-calendar.class.php:316
|
783 |
-
#, php-format
|
784 |
-
msgid "Initializing Tribe Events on %s"
|
785 |
-
msgstr ""
|
786 |
-
|
787 |
-
#: ../lib/the-events-calendar.class.php:408
|
788 |
-
#, php-format
|
789 |
-
msgid ""
|
790 |
-
"Your version of The Events Calendar is not up-to-date with one of your The "
|
791 |
-
"Events Calendar add-ons. Please %supdate now.%s"
|
792 |
-
msgstr ""
|
793 |
-
|
794 |
-
#: ../lib/the-events-calendar.class.php:422
|
795 |
-
#, php-format
|
796 |
-
msgid ""
|
797 |
-
"The following plugins are out of date: <b>%s</b>. Please %supdate now%s. All "
|
798 |
-
"add-ons contain dependencies on The Events Calendar and will not function "
|
799 |
-
"properly unless paired with the right version. %sWant to pair an older "
|
800 |
-
"version%s?"
|
801 |
-
msgstr ""
|
802 |
-
|
803 |
-
#: ../lib/the-events-calendar.class.php:467
|
804 |
-
#: ../lib/the-events-calendar.class.php:483
|
805 |
-
msgid "Licenses"
|
806 |
-
msgstr ""
|
807 |
-
|
808 |
-
#: ../lib/the-events-calendar.class.php:471
|
809 |
-
msgid ""
|
810 |
-
"The license key you received when completing your purchase will grant you "
|
811 |
-
"access to support and updates. You do not need to enter the key below for "
|
812 |
-
"the plugins to work, but you will need to enter it to get automatic updates, "
|
813 |
-
"and our support team won't be able to help you out unless it is added and "
|
814 |
-
"current.</p><p>Each plugin/add-on has its own unique license key. Simply "
|
815 |
-
"paste the key into its appropriate field on the list below, and give it a "
|
816 |
-
"moment to validate. You know you're set when a green expiration date appears "
|
817 |
-
"alongside a \"valid\" message.</p><p>If you're seeing a red message telling "
|
818 |
-
"you that your key isn't valid or is out of installs, it means that your key "
|
819 |
-
"was not accepted. Visit <a href=\"http://tri.be\">http://tri.be</a>, log in "
|
820 |
-
"and navigate to <i>Account Central > Licenses</i> on the tri.be site to see "
|
821 |
-
"if the key is tied to another site or past its expiration date. For more on "
|
822 |
-
"automatic updates and using your license key, please see <a href=\"http://"
|
823 |
-
"tri.be/updating-the-plugin/\">this blog post</a>.</p><p>Not seeing an update "
|
824 |
-
"but expecting one? In WordPress go to <i>Dashboard > Updates</i> and click "
|
825 |
-
"\"Check Again\"."
|
826 |
-
msgstr ""
|
827 |
-
|
828 |
-
#: ../lib/the-events-calendar.class.php:479
|
829 |
-
msgid "General"
|
830 |
-
msgstr ""
|
831 |
-
|
832 |
-
#: ../lib/the-events-calendar.class.php:480
|
833 |
-
msgid "Template"
|
834 |
-
msgstr ""
|
835 |
-
|
836 |
-
#: ../lib/the-events-calendar.class.php:520
|
837 |
-
#, php-format
|
838 |
-
msgid ""
|
839 |
-
"Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade "
|
840 |
-
"your WordPress install."
|
841 |
-
msgstr ""
|
842 |
-
|
843 |
-
#: ../lib/the-events-calendar.class.php:523
|
844 |
-
#, php-format
|
845 |
-
msgid ""
|
846 |
-
"Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host "
|
847 |
-
"about moving you to a newer version of PHP."
|
848 |
-
msgstr ""
|
849 |
-
|
850 |
-
#: ../lib/the-events-calendar.class.php:648
|
851 |
-
#: ../public/template-tags/loop.php:133
|
852 |
-
msgid "Upcoming Events"
|
853 |
-
msgstr ""
|
854 |
-
|
855 |
-
#: ../lib/the-events-calendar.class.php:650
|
856 |
-
msgid "Past Events"
|
857 |
-
msgstr ""
|
858 |
-
|
859 |
-
#: ../lib/the-events-calendar.class.php:655
|
860 |
-
#: ../lib/the-events-calendar.class.php:662
|
861 |
-
#, php-format
|
862 |
-
msgid "Events for %s"
|
863 |
-
msgstr ""
|
864 |
-
|
865 |
-
#: ../lib/the-events-calendar.class.php:657
|
866 |
-
msgid "Events this month"
|
867 |
-
msgstr ""
|
868 |
-
|
869 |
-
#: ../lib/the-events-calendar.class.php:668
|
870 |
-
#, php-format
|
871 |
-
msgid "Events at %s"
|
872 |
-
msgstr ""
|
873 |
-
|
874 |
-
#: ../lib/the-events-calendar.class.php:681
|
875 |
-
msgid "No description has been entered for this event."
|
876 |
-
msgstr ""
|
877 |
-
|
878 |
-
#: ../lib/the-events-calendar.class.php:925
|
879 |
-
#: ../lib/the-events-calendar.class.php:2678
|
880 |
-
#: ../lib/the-events-calendar.class.php:2738
|
881 |
-
msgid "Events"
|
882 |
-
msgstr ""
|
883 |
-
|
884 |
-
#: ../lib/the-events-calendar.class.php:926
|
885 |
-
msgid "Event"
|
886 |
-
msgstr ""
|
887 |
-
|
888 |
-
#: ../lib/the-events-calendar.class.php:927
|
889 |
-
#: ../lib/the-events-calendar.class.php:940
|
890 |
-
#: ../lib/the-events-calendar.class.php:953
|
891 |
-
msgid "Add New"
|
892 |
-
msgstr ""
|
893 |
-
|
894 |
-
#: ../lib/the-events-calendar.class.php:928
|
895 |
-
msgid "Add New Event"
|
896 |
-
msgstr ""
|
897 |
-
|
898 |
-
#: ../lib/the-events-calendar.class.php:929
|
899 |
-
msgid "Edit Event"
|
900 |
-
msgstr ""
|
901 |
-
|
902 |
-
#: ../lib/the-events-calendar.class.php:930
|
903 |
-
msgid "New Event"
|
904 |
-
msgstr ""
|
905 |
-
|
906 |
-
#: ../lib/the-events-calendar.class.php:931
|
907 |
-
msgid "View Event"
|
908 |
-
msgstr ""
|
909 |
-
|
910 |
-
#: ../lib/the-events-calendar.class.php:932
|
911 |
-
msgid "Search Events"
|
912 |
-
msgstr ""
|
913 |
-
|
914 |
-
#: ../lib/the-events-calendar.class.php:933
|
915 |
-
msgid "No events found"
|
916 |
-
msgstr ""
|
917 |
-
|
918 |
-
#: ../lib/the-events-calendar.class.php:934
|
919 |
-
msgid "No events found in Trash"
|
920 |
-
msgstr ""
|
921 |
-
|
922 |
-
#: ../lib/the-events-calendar.class.php:938
|
923 |
-
msgid "Venues"
|
924 |
-
msgstr ""
|
925 |
-
|
926 |
-
#: ../lib/the-events-calendar.class.php:939
|
927 |
-
msgid "Venue"
|
928 |
-
msgstr ""
|
929 |
-
|
930 |
-
#: ../lib/the-events-calendar.class.php:941
|
931 |
-
msgid "Add New Venue"
|
932 |
-
msgstr ""
|
933 |
-
|
934 |
-
#: ../lib/the-events-calendar.class.php:942
|
935 |
-
msgid "Edit Venue"
|
936 |
-
msgstr ""
|
937 |
-
|
938 |
-
#: ../lib/the-events-calendar.class.php:943
|
939 |
-
msgid "New Venue"
|
940 |
-
msgstr ""
|
941 |
-
|
942 |
-
#: ../lib/the-events-calendar.class.php:944
|
943 |
-
#: ../lib/the-events-calendar.class.php:957
|
944 |
-
msgid "View Venue"
|
945 |
-
msgstr ""
|
946 |
-
|
947 |
-
#: ../lib/the-events-calendar.class.php:945
|
948 |
-
msgid "Search Venues"
|
949 |
-
msgstr ""
|
950 |
-
|
951 |
-
#: ../lib/the-events-calendar.class.php:946
|
952 |
-
msgid "No venue found"
|
953 |
-
msgstr ""
|
954 |
-
|
955 |
-
#: ../lib/the-events-calendar.class.php:947
|
956 |
-
msgid "No venues found in Trash"
|
957 |
-
msgstr ""
|
958 |
-
|
959 |
-
#: ../lib/the-events-calendar.class.php:951
|
960 |
-
msgid "Organizers"
|
961 |
-
msgstr ""
|
962 |
-
|
963 |
-
#: ../lib/the-events-calendar.class.php:952
|
964 |
-
msgid "Organizer"
|
965 |
-
msgstr ""
|
966 |
-
|
967 |
-
#: ../lib/the-events-calendar.class.php:954
|
968 |
-
msgid "Add New Organizer"
|
969 |
-
msgstr ""
|
970 |
-
|
971 |
-
#: ../lib/the-events-calendar.class.php:955
|
972 |
-
msgid "Edit Organizer"
|
973 |
-
msgstr ""
|
974 |
-
|
975 |
-
#: ../lib/the-events-calendar.class.php:956
|
976 |
-
msgid "New Organizer"
|
977 |
-
msgstr ""
|
978 |
-
|
979 |
-
#: ../lib/the-events-calendar.class.php:958
|
980 |
-
msgid "Search Organizers"
|
981 |
-
msgstr ""
|
982 |
-
|
983 |
-
#: ../lib/the-events-calendar.class.php:959
|
984 |
-
msgid "No organizer found"
|
985 |
-
msgstr ""
|
986 |
-
|
987 |
-
#: ../lib/the-events-calendar.class.php:960
|
988 |
-
msgid "No organizers found in Trash"
|
989 |
-
msgstr ""
|
990 |
-
|
991 |
-
#: ../lib/the-events-calendar.class.php:964
|
992 |
-
#: ../lib/tribe-admin-events-list.class.php:172
|
993 |
-
msgid "Event Categories"
|
994 |
-
msgstr ""
|
995 |
-
|
996 |
-
#: ../lib/the-events-calendar.class.php:965
|
997 |
-
msgid "Event Category"
|
998 |
-
msgstr ""
|
999 |
-
|
1000 |
-
#: ../lib/the-events-calendar.class.php:966
|
1001 |
-
msgid "Search Event Categories"
|
1002 |
-
msgstr ""
|
1003 |
-
|
1004 |
-
#: ../lib/the-events-calendar.class.php:967
|
1005 |
-
msgid "All Event Categories"
|
1006 |
-
msgstr ""
|
1007 |
-
|
1008 |
-
#: ../lib/the-events-calendar.class.php:968
|
1009 |
-
msgid "Parent Event Category"
|
1010 |
-
msgstr ""
|
1011 |
-
|
1012 |
-
#: ../lib/the-events-calendar.class.php:969
|
1013 |
-
msgid "Parent Event Category:"
|
1014 |
-
msgstr ""
|
1015 |
-
|
1016 |
-
#: ../lib/the-events-calendar.class.php:970
|
1017 |
-
msgid "Edit Event Category"
|
1018 |
-
msgstr ""
|
1019 |
-
|
1020 |
-
#: ../lib/the-events-calendar.class.php:971
|
1021 |
-
msgid "Update Event Category"
|
1022 |
-
msgstr ""
|
1023 |
-
|
1024 |
-
#: ../lib/the-events-calendar.class.php:972
|
1025 |
-
msgid "Add New Event Category"
|
1026 |
-
msgstr ""
|
1027 |
-
|
1028 |
-
#: ../lib/the-events-calendar.class.php:973
|
1029 |
-
msgid "New Event Category Name"
|
1030 |
-
msgstr ""
|
1031 |
-
|
1032 |
-
#: ../lib/the-events-calendar.class.php:983
|
1033 |
-
#, php-format
|
1034 |
-
msgid "Event updated. <a href=\"%s\">View event</a>"
|
1035 |
-
msgstr ""
|
1036 |
-
|
1037 |
-
#: ../lib/the-events-calendar.class.php:984
|
1038 |
-
#: ../lib/the-events-calendar.class.php:1001
|
1039 |
-
#: ../lib/the-events-calendar.class.php:1018
|
1040 |
-
msgid "Custom field updated."
|
1041 |
-
msgstr ""
|
1042 |
-
|
1043 |
-
#: ../lib/the-events-calendar.class.php:985
|
1044 |
-
#: ../lib/the-events-calendar.class.php:1002
|
1045 |
-
#: ../lib/the-events-calendar.class.php:1019
|
1046 |
-
msgid "Custom field deleted."
|
1047 |
-
msgstr ""
|
1048 |
-
|
1049 |
-
#: ../lib/the-events-calendar.class.php:986
|
1050 |
-
msgid "Event updated."
|
1051 |
-
msgstr ""
|
1052 |
-
|
1053 |
-
#: ../lib/the-events-calendar.class.php:988
|
1054 |
-
#, php-format
|
1055 |
-
msgid "Event restored to revision from %s"
|
1056 |
-
msgstr ""
|
1057 |
-
|
1058 |
-
#: ../lib/the-events-calendar.class.php:989
|
1059 |
-
#, php-format
|
1060 |
-
msgid "Event published. <a href=\"%s\">View event</a>"
|
1061 |
-
msgstr ""
|
1062 |
-
|
1063 |
-
#: ../lib/the-events-calendar.class.php:990
|
1064 |
-
msgid "Event saved."
|
1065 |
-
msgstr ""
|
1066 |
-
|
1067 |
-
#: ../lib/the-events-calendar.class.php:991
|
1068 |
-
#, php-format
|
1069 |
-
msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
1070 |
-
msgstr ""
|
1071 |
-
|
1072 |
-
#: ../lib/the-events-calendar.class.php:992
|
1073 |
-
#, php-format
|
1074 |
-
msgid ""
|
1075 |
-
"Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
|
1076 |
-
"\">Preview event</a>"
|
1077 |
-
msgstr ""
|
1078 |
-
|
1079 |
-
#: ../lib/the-events-calendar.class.php:994
|
1080 |
-
#: ../lib/the-events-calendar.class.php:1011
|
1081 |
-
#: ../lib/the-events-calendar.class.php:1028
|
1082 |
-
msgid "M j, Y @ G:i"
|
1083 |
-
msgstr ""
|
1084 |
-
|
1085 |
-
#: ../lib/the-events-calendar.class.php:995
|
1086 |
-
#, php-format
|
1087 |
-
msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
1088 |
-
msgstr ""
|
1089 |
-
|
1090 |
-
#: ../lib/the-events-calendar.class.php:1000
|
1091 |
-
#, php-format
|
1092 |
-
msgid "Venue updated. <a href=\"%s\">View venue</a>"
|
1093 |
-
msgstr ""
|
1094 |
-
|
1095 |
-
#: ../lib/the-events-calendar.class.php:1003
|
1096 |
-
msgid "Venue updated."
|
1097 |
-
msgstr ""
|
1098 |
-
|
1099 |
-
#: ../lib/the-events-calendar.class.php:1005
|
1100 |
-
#, php-format
|
1101 |
-
msgid "Venue restored to revision from %s"
|
1102 |
-
msgstr ""
|
1103 |
-
|
1104 |
-
#: ../lib/the-events-calendar.class.php:1006
|
1105 |
-
#, php-format
|
1106 |
-
msgid "Venue published. <a href=\"%s\">View venue</a>"
|
1107 |
-
msgstr ""
|
1108 |
-
|
1109 |
-
#: ../lib/the-events-calendar.class.php:1007
|
1110 |
-
msgid "Venue saved."
|
1111 |
-
msgstr ""
|
1112 |
-
|
1113 |
-
#: ../lib/the-events-calendar.class.php:1008
|
1114 |
-
#, php-format
|
1115 |
-
msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
|
1116 |
-
msgstr ""
|
1117 |
-
|
1118 |
-
#: ../lib/the-events-calendar.class.php:1009
|
1119 |
-
#, php-format
|
1120 |
-
msgid ""
|
1121 |
-
"Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
|
1122 |
-
"\">Preview venue</a>"
|
1123 |
-
msgstr ""
|
1124 |
-
|
1125 |
-
#: ../lib/the-events-calendar.class.php:1012
|
1126 |
-
#, php-format
|
1127 |
-
msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
|
1128 |
-
msgstr ""
|
1129 |
-
|
1130 |
-
#: ../lib/the-events-calendar.class.php:1017
|
1131 |
-
#, php-format
|
1132 |
-
msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
|
1133 |
-
msgstr ""
|
1134 |
-
|
1135 |
-
#: ../lib/the-events-calendar.class.php:1020
|
1136 |
-
msgid "Organizer updated."
|
1137 |
-
msgstr ""
|
1138 |
-
|
1139 |
-
#: ../lib/the-events-calendar.class.php:1022
|
1140 |
-
#, php-format
|
1141 |
-
msgid "Organizer restored to revision from %s"
|
1142 |
-
msgstr ""
|
1143 |
-
|
1144 |
-
#: ../lib/the-events-calendar.class.php:1023
|
1145 |
-
#, php-format
|
1146 |
-
msgid "Organizer published. <a href=\"%s\">View organizer</a>"
|
1147 |
-
msgstr ""
|
1148 |
-
|
1149 |
-
#: ../lib/the-events-calendar.class.php:1024
|
1150 |
-
msgid "Organizer saved."
|
1151 |
-
msgstr ""
|
1152 |
-
|
1153 |
-
#: ../lib/the-events-calendar.class.php:1025
|
1154 |
-
#, php-format
|
1155 |
-
msgid ""
|
1156 |
-
"Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
|
1157 |
-
msgstr ""
|
1158 |
-
|
1159 |
-
#: ../lib/the-events-calendar.class.php:1026
|
1160 |
-
#, php-format
|
1161 |
-
msgid ""
|
1162 |
-
"Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href="
|
1163 |
-
"\"%2$s\">Preview organizer</a>"
|
1164 |
-
msgstr ""
|
1165 |
-
|
1166 |
-
#: ../lib/the-events-calendar.class.php:1029
|
1167 |
-
#, php-format
|
1168 |
-
msgid ""
|
1169 |
-
"Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</"
|
1170 |
-
"a>"
|
1171 |
-
msgstr ""
|
1172 |
-
|
1173 |
-
#: ../lib/the-events-calendar.class.php:1125
|
1174 |
-
msgid "Next"
|
1175 |
-
msgstr ""
|
1176 |
-
|
1177 |
-
#: ../lib/the-events-calendar.class.php:1126
|
1178 |
-
msgid "Prev"
|
1179 |
-
msgstr ""
|
1180 |
-
|
1181 |
-
#: ../lib/the-events-calendar.class.php:1127
|
1182 |
-
msgid "Today"
|
1183 |
-
msgstr ""
|
1184 |
-
|
1185 |
-
#: ../lib/the-events-calendar.class.php:1128
|
1186 |
-
msgid "Done"
|
1187 |
-
msgstr ""
|
1188 |
-
|
1189 |
-
#: ../lib/the-events-calendar.class.php:2463
|
1190 |
-
msgid "Event Options"
|
1191 |
-
msgstr ""
|
1192 |
-
|
1193 |
-
#: ../lib/the-events-calendar.class.php:2465
|
1194 |
-
msgid "Venue Information"
|
1195 |
-
msgstr ""
|
1196 |
-
|
1197 |
-
#: ../lib/the-events-calendar.class.php:2466
|
1198 |
-
msgid "Organizer Information"
|
1199 |
-
msgstr ""
|
1200 |
-
|
1201 |
-
#: ../lib/the-events-calendar.class.php:2586
|
1202 |
-
msgid "Support"
|
1203 |
-
msgstr ""
|
1204 |
-
|
1205 |
-
#: ../lib/the-events-calendar.class.php:2589
|
1206 |
-
msgid "View All Add-Ons"
|
1207 |
-
msgstr ""
|
1208 |
-
|
1209 |
-
#: ../lib/the-events-calendar.class.php:2596
|
1210 |
-
msgid "News from Modern Tribe"
|
1211 |
-
msgstr ""
|
1212 |
-
|
1213 |
-
#: ../lib/the-events-calendar.class.php:2641
|
1214 |
-
msgid "Additional Functionality"
|
1215 |
-
msgstr ""
|
1216 |
-
|
1217 |
-
#: ../lib/the-events-calendar.class.php:2646
|
1218 |
-
#, php-format
|
1219 |
-
msgid "Check out the <a href=\"%s\">available add-ons</a>."
|
1220 |
-
msgstr ""
|
1221 |
-
|
1222 |
-
#: ../lib/the-events-calendar.class.php:2704
|
1223 |
-
#: ../lib/the-events-calendar.class.php:2795
|
1224 |
-
msgid "View Calendar"
|
1225 |
-
msgstr ""
|
1226 |
-
|
1227 |
-
#: ../lib/the-events-calendar.class.php:2712
|
1228 |
-
msgid "Add Event"
|
1229 |
-
msgstr ""
|
1230 |
-
|
1231 |
-
#: ../lib/the-events-calendar.class.php:2721
|
1232 |
-
msgid "Edit Events"
|
1233 |
-
msgstr ""
|
1234 |
-
|
1235 |
-
#: ../lib/the-events-calendar.class.php:2730
|
1236 |
-
#: ../lib/the-events-calendar.class.php:2831
|
1237 |
-
#: ../lib/tribe-settings.class.php:153
|
1238 |
-
msgid "Settings"
|
1239 |
-
msgstr ""
|
1240 |
-
|
1241 |
-
#: ../lib/the-events-calendar.class.php:2766
|
1242 |
-
#, php-format
|
1243 |
-
msgid ""
|
1244 |
-
"Welcome to The Events Calendar! Your events calendar can be found at %s. To "
|
1245 |
-
"change the events slug, visit %sEvents -> Settings%s."
|
1246 |
-
msgstr ""
|
1247 |
-
|
1248 |
-
#: ../lib/the-events-calendar.class.php:2832 ../views/gridview.php:35
|
1249 |
-
#: ../views/list.php:19
|
1250 |
-
msgid "Calendar"
|
1251 |
-
msgstr ""
|
1252 |
-
|
1253 |
-
#: ../lib/tribe-admin-events-list.class.php:40
|
1254 |
-
#, php-format
|
1255 |
-
msgid "View “%s”"
|
1256 |
-
msgstr ""
|
1257 |
-
|
1258 |
-
#: ../lib/tribe-admin-events-list.class.php:40
|
1259 |
-
msgid "View"
|
1260 |
-
msgstr ""
|
1261 |
-
|
1262 |
-
#: ../lib/tribe-admin-events-list.class.php:177
|
1263 |
-
msgid "Start Date"
|
1264 |
-
msgstr ""
|
1265 |
-
|
1266 |
-
#: ../lib/tribe-admin-events-list.class.php:178
|
1267 |
-
msgid "End Date"
|
1268 |
-
msgstr ""
|
1269 |
-
|
1270 |
-
#: ../lib/tribe-admin-events-list.class.php:180
|
1271 |
-
msgid "Recurring?"
|
1272 |
-
msgstr ""
|
1273 |
-
|
1274 |
-
#: ../lib/tribe-admin-events-list.class.php:224
|
1275 |
-
msgid "Yes"
|
1276 |
-
msgstr ""
|
1277 |
-
|
1278 |
-
#: ../lib/tribe-admin-events-list.class.php:224
|
1279 |
-
msgid "No"
|
1280 |
-
msgstr ""
|
1281 |
-
|
1282 |
-
#: ../lib/tribe-admin-events-list.class.php:278
|
1283 |
-
#, php-format
|
1284 |
-
msgid "All %s"
|
1285 |
-
msgstr ""
|
1286 |
-
|
1287 |
-
#: ../lib/tribe-app-shop.class.php:53 ../lib/tribe-app-shop.class.php:54
|
1288 |
-
#: ../lib/tribe-app-shop.class.php:72
|
1289 |
-
msgid "Event Add-Ons"
|
1290 |
-
msgstr ""
|
1291 |
-
|
1292 |
-
#: ../lib/tribe-debug-bar.class.php:18
|
1293 |
-
msgid "Tribe"
|
1294 |
-
msgstr ""
|
1295 |
-
|
1296 |
-
#: ../lib/tribe-event-exception.class.php:17
|
1297 |
-
#: ../lib/tribe-event-exception.class.php:34
|
1298 |
-
msgid "Error"
|
1299 |
-
msgstr ""
|
1300 |
-
|
1301 |
-
#: ../lib/tribe-field.class.php:161
|
1302 |
-
msgid "Invalid field type specified"
|
1303 |
-
msgstr ""
|
1304 |
-
|
1305 |
-
#: ../lib/tribe-field.class.php:388
|
1306 |
-
msgid "No radio options specified"
|
1307 |
-
msgstr ""
|
1308 |
-
|
1309 |
-
#: ../lib/tribe-field.class.php:425
|
1310 |
-
msgid "No checkbox options specified"
|
1311 |
-
msgstr ""
|
1312 |
-
|
1313 |
-
#: ../lib/tribe-field.class.php:479
|
1314 |
-
msgid "No select options specified"
|
1315 |
-
msgstr ""
|
1316 |
-
|
1317 |
-
#: ../lib/tribe-settings-tab.class.php:188
|
1318 |
-
msgid "There are no fields setup for this tab yet."
|
1319 |
-
msgstr ""
|
1320 |
-
|
1321 |
-
#: ../lib/tribe-settings.class.php:153
|
1322 |
-
msgid "The Events Calendar Settings"
|
1323 |
-
msgstr ""
|
1324 |
-
|
1325 |
-
#: ../lib/tribe-settings.class.php:207
|
1326 |
-
msgid "You've requested a non-existent tab."
|
1327 |
-
msgstr ""
|
1328 |
-
|
1329 |
-
#: ../lib/tribe-settings.class.php:215
|
1330 |
-
msgid " Save Changes"
|
1331 |
-
msgstr ""
|
1332 |
-
|
1333 |
-
#: ../lib/tribe-settings.class.php:263
|
1334 |
-
msgid "You don't have permission to do that."
|
1335 |
-
msgstr ""
|
1336 |
-
|
1337 |
-
#: ../lib/tribe-settings.class.php:269
|
1338 |
-
msgid "The request was sent insecurely."
|
1339 |
-
msgstr ""
|
1340 |
-
|
1341 |
-
#: ../lib/tribe-settings.class.php:275
|
1342 |
-
msgid "The request wasn't sent from this tab."
|
1343 |
-
msgstr ""
|
1344 |
-
|
1345 |
-
#: ../lib/tribe-settings.class.php:425
|
1346 |
-
msgid "Your form had the following errors:"
|
1347 |
-
msgstr ""
|
1348 |
-
|
1349 |
-
#: ../lib/tribe-settings.class.php:434
|
1350 |
-
msgid "None of your settings were saved. Please try again."
|
1351 |
-
msgstr ""
|
1352 |
-
|
1353 |
-
#: ../lib/tribe-settings.class.php:458
|
1354 |
-
msgid "Settings saved."
|
1355 |
-
msgstr ""
|
1356 |
-
|
1357 |
-
#: ../lib/tribe-the-events-calendar-import.class.php:44
|
1358 |
-
msgid ""
|
1359 |
-
"Welcome to Events 2.0! This is a HUGE upgrade from 1.6.5. Please make sure "
|
1360 |
-
"you have backed up before proceeding any further. You can easily <a href=\" "
|
1361 |
-
"http://wordpress.org/extend/plugins/the-events-calendar/download/\">revert "
|
1362 |
-
"to an old version</a> if you want to backup first. This upgrade includes two "
|
1363 |
-
"major steps, <a href=\"edit.php?post_type="
|
1364 |
-
msgstr ""
|
1365 |
-
|
1366 |
-
#: ../lib/tribe-the-events-calendar-import.class.php:54
|
1367 |
-
msgid "Upgrade from The Events Calendar"
|
1368 |
-
msgstr ""
|
1369 |
-
|
1370 |
-
#: ../lib/tribe-the-events-calendar-import.class.php:55
|
1371 |
-
msgid ""
|
1372 |
-
"It appears that you have some old events calendar data that needs to be "
|
1373 |
-
"upgraded. Please be sure to back up your database before initiating the "
|
1374 |
-
"upgrade. This process can not be undone."
|
1375 |
-
msgstr ""
|
1376 |
-
|
1377 |
-
#: ../lib/tribe-the-events-calendar-import.class.php:56
|
1378 |
-
msgid "Migrate Data!"
|
1379 |
-
msgstr ""
|
1380 |
-
|
1381 |
-
#: ../lib/tribe-the-events-calendar-import.class.php:132
|
1382 |
-
#, php-format
|
1383 |
-
msgid "You successfully migrated (%d) entries."
|
1384 |
-
msgstr ""
|
1385 |
-
|
1386 |
-
#: ../lib/tribe-the-events-calendar-import.class.php:203
|
1387 |
-
msgid "Install has 1 or more legacy event!"
|
1388 |
-
msgstr ""
|
1389 |
-
|
1390 |
-
#: ../lib/tribe-validate.class.php:77 ../lib/tribe-validate.class.php:115
|
1391 |
-
msgid "Invalid or incomplete field passed"
|
1392 |
-
msgstr ""
|
1393 |
-
|
1394 |
-
#: ../lib/tribe-validate.class.php:78 ../lib/tribe-validate.class.php:110
|
1395 |
-
#: ../lib/tribe-validate.class.php:116
|
1396 |
-
msgid "Field ID:"
|
1397 |
-
msgstr ""
|
1398 |
-
|
1399 |
-
#: ../lib/tribe-validate.class.php:109
|
1400 |
-
msgid "Non-existant field validation function passed"
|
1401 |
-
msgstr ""
|
1402 |
-
|
1403 |
-
#: ../lib/tribe-validate.class.php:135 ../lib/tribe-validate.class.php:153
|
1404 |
-
#, php-format
|
1405 |
-
msgid "%s must contain numbers and letters only"
|
1406 |
-
msgstr ""
|
1407 |
-
|
1408 |
-
#: ../lib/tribe-validate.class.php:171
|
1409 |
-
#, php-format
|
1410 |
-
msgid "%s must contain numbers, letters and dots only"
|
1411 |
-
msgstr ""
|
1412 |
-
|
1413 |
-
#: ../lib/tribe-validate.class.php:187
|
1414 |
-
#, php-format
|
1415 |
-
msgid "%s must be a positive number."
|
1416 |
-
msgstr ""
|
1417 |
-
|
1418 |
-
#: ../lib/tribe-validate.class.php:204
|
1419 |
-
#, php-format
|
1420 |
-
msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
|
1421 |
-
msgstr ""
|
1422 |
-
|
1423 |
-
#: ../lib/tribe-validate.class.php:221
|
1424 |
-
#, php-format
|
1425 |
-
msgid "%s must be a valid absolute URL."
|
1426 |
-
msgstr ""
|
1427 |
-
|
1428 |
-
#: ../lib/tribe-validate.class.php:239 ../lib/tribe-validate.class.php:258
|
1429 |
-
#: ../lib/tribe-validate.class.php:279
|
1430 |
-
#, php-format
|
1431 |
-
msgid "%s must have a value that's part of its options."
|
1432 |
-
msgstr ""
|
1433 |
-
|
1434 |
-
#: ../lib/tribe-validate.class.php:295
|
1435 |
-
#, php-format
|
1436 |
-
msgid ""
|
1437 |
-
"Comparison validation failed because no comparison value was provided, for "
|
1438 |
-
"field %s"
|
1439 |
-
msgstr ""
|
1440 |
-
|
1441 |
-
#: ../lib/tribe-validate.class.php:302
|
1442 |
-
#, php-format
|
1443 |
-
msgid "%s cannot be the same as %s."
|
1444 |
-
msgstr ""
|
1445 |
-
|
1446 |
-
#: ../lib/tribe-validate.class.php:304
|
1447 |
-
#, php-format
|
1448 |
-
msgid "%s cannot be a duplicate"
|
1449 |
-
msgstr ""
|
1450 |
-
|
1451 |
-
#: ../lib/tribe-validate.class.php:322
|
1452 |
-
#, php-format
|
1453 |
-
msgid "%s must be a number or percentage."
|
1454 |
-
msgstr ""
|
1455 |
-
|
1456 |
-
#: ../lib/tribe-validate.class.php:386
|
1457 |
-
#, php-format
|
1458 |
-
msgid "%s must be a number between 0 and 21."
|
1459 |
-
msgstr ""
|
1460 |
-
|
1461 |
-
#: ../lib/tribe-validate.class.php:404
|
1462 |
-
#, php-format
|
1463 |
-
msgid ""
|
1464 |
-
"%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
|
1465 |
-
msgstr ""
|
1466 |
-
|
1467 |
-
#: ../lib/tribe-validate.class.php:422
|
1468 |
-
#, php-format
|
1469 |
-
msgid "%s must consist of letters, spaces, apostrophes, and dashes."
|
1470 |
-
msgstr ""
|
1471 |
-
|
1472 |
-
#: ../lib/tribe-validate.class.php:438
|
1473 |
-
#, php-format
|
1474 |
-
msgid "%s must consist of 5 numbers."
|
1475 |
-
msgstr ""
|
1476 |
-
|
1477 |
-
#: ../lib/tribe-validate.class.php:454
|
1478 |
-
#, php-format
|
1479 |
-
msgid "%s must be a phone number."
|
1480 |
-
msgstr ""
|
1481 |
-
|
1482 |
-
#: ../lib/tribe-validate.class.php:472
|
1483 |
-
msgid ""
|
1484 |
-
"Country List must be formatted as one country per line in the following "
|
1485 |
-
"format: <br>US, United States <br> UK, United Kingdom."
|
1486 |
-
msgstr ""
|
1487 |
-
|
1488 |
-
#: ../lib/tribe-view-helpers.class.php:16
|
1489 |
-
#: ../lib/tribe-view-helpers.class.php:35
|
1490 |
-
msgid "Select a Country:"
|
1491 |
-
msgstr ""
|
1492 |
-
|
1493 |
-
#: ../lib/tribe-view-helpers.class.php:36
|
1494 |
-
#: ../public/template-tags/venue.php:231
|
1495 |
-
msgid "United States"
|
1496 |
-
msgstr ""
|
1497 |
-
|
1498 |
-
#: ../lib/tribe-view-helpers.class.php:37
|
1499 |
-
msgid "Afghanistan"
|
1500 |
-
msgstr ""
|
1501 |
-
|
1502 |
-
#: ../lib/tribe-view-helpers.class.php:38
|
1503 |
-
msgid "Albania"
|
1504 |
-
msgstr ""
|
1505 |
-
|
1506 |
-
#: ../lib/tribe-view-helpers.class.php:39
|
1507 |
-
msgid "Algeria"
|
1508 |
-
msgstr ""
|
1509 |
-
|
1510 |
-
#: ../lib/tribe-view-helpers.class.php:40
|
1511 |
-
msgid "American Samoa"
|
1512 |
-
msgstr ""
|
1513 |
-
|
1514 |
-
#: ../lib/tribe-view-helpers.class.php:41
|
1515 |
-
msgid "Andorra"
|
1516 |
-
msgstr ""
|
1517 |
-
|
1518 |
-
#: ../lib/tribe-view-helpers.class.php:42
|
1519 |
-
msgid "Angola"
|
1520 |
-
msgstr ""
|
1521 |
-
|
1522 |
-
#: ../lib/tribe-view-helpers.class.php:43
|
1523 |
-
msgid "Anguilla"
|
1524 |
-
msgstr ""
|
1525 |
-
|
1526 |
-
#: ../lib/tribe-view-helpers.class.php:44
|
1527 |
-
msgid "Antarctica"
|
1528 |
-
msgstr ""
|
1529 |
-
|
1530 |
-
#: ../lib/tribe-view-helpers.class.php:45
|
1531 |
-
msgid "Antigua And Barbuda"
|
1532 |
-
msgstr ""
|
1533 |
-
|
1534 |
-
#: ../lib/tribe-view-helpers.class.php:46
|
1535 |
-
msgid "Argentina"
|
1536 |
-
msgstr ""
|
1537 |
-
|
1538 |
-
#: ../lib/tribe-view-helpers.class.php:47
|
1539 |
-
msgid "Armenia"
|
1540 |
-
msgstr ""
|
1541 |
-
|
1542 |
-
#: ../lib/tribe-view-helpers.class.php:48
|
1543 |
-
msgid "Aruba"
|
1544 |
-
msgstr ""
|
1545 |
-
|
1546 |
-
#: ../lib/tribe-view-helpers.class.php:49
|
1547 |
-
msgid "Australia"
|
1548 |
-
msgstr ""
|
1549 |
-
|
1550 |
-
#: ../lib/tribe-view-helpers.class.php:50
|
1551 |
-
msgid "Austria"
|
1552 |
-
msgstr ""
|
1553 |
-
|
1554 |
-
#: ../lib/tribe-view-helpers.class.php:51
|
1555 |
-
msgid "Azerbaijan"
|
1556 |
-
msgstr ""
|
1557 |
-
|
1558 |
-
#: ../lib/tribe-view-helpers.class.php:52
|
1559 |
-
msgid "Bahamas"
|
1560 |
-
msgstr ""
|
1561 |
-
|
1562 |
-
#: ../lib/tribe-view-helpers.class.php:53
|
1563 |
-
msgid "Bahrain"
|
1564 |
-
msgstr ""
|
1565 |
-
|
1566 |
-
#: ../lib/tribe-view-helpers.class.php:54
|
1567 |
-
msgid "Bangladesh"
|
1568 |
-
msgstr ""
|
1569 |
-
|
1570 |
-
#: ../lib/tribe-view-helpers.class.php:55
|
1571 |
-
msgid "Barbados"
|
1572 |
-
msgstr ""
|
1573 |
-
|
1574 |
-
#: ../lib/tribe-view-helpers.class.php:56
|
1575 |
-
msgid "Belarus"
|
1576 |
-
msgstr ""
|
1577 |
-
|
1578 |
-
#: ../lib/tribe-view-helpers.class.php:57
|
1579 |
-
msgid "Belgium"
|
1580 |
-
msgstr ""
|
1581 |
-
|
1582 |
-
#: ../lib/tribe-view-helpers.class.php:58
|
1583 |
-
msgid "Belize"
|
1584 |
-
msgstr ""
|
1585 |
-
|
1586 |
-
#: ../lib/tribe-view-helpers.class.php:59
|
1587 |
-
msgid "Benin"
|
1588 |
-
msgstr ""
|
1589 |
-
|
1590 |
-
#: ../lib/tribe-view-helpers.class.php:60
|
1591 |
-
msgid "Bermuda"
|
1592 |
-
msgstr ""
|
1593 |
-
|
1594 |
-
#: ../lib/tribe-view-helpers.class.php:61
|
1595 |
-
msgid "Bhutan"
|
1596 |
-
msgstr ""
|
1597 |
-
|
1598 |
-
#: ../lib/tribe-view-helpers.class.php:62
|
1599 |
-
msgid "Bolivia"
|
1600 |
-
msgstr ""
|
1601 |
-
|
1602 |
-
#: ../lib/tribe-view-helpers.class.php:63
|
1603 |
-
msgid "Bosnia And Herzegowina"
|
1604 |
-
msgstr ""
|
1605 |
-
|
1606 |
-
#: ../lib/tribe-view-helpers.class.php:64
|
1607 |
-
msgid "Botswana"
|
1608 |
-
msgstr ""
|
1609 |
-
|
1610 |
-
#: ../lib/tribe-view-helpers.class.php:65
|
1611 |
-
msgid "Bouvet Island"
|
1612 |
-
msgstr ""
|
1613 |
-
|
1614 |
-
#: ../lib/tribe-view-helpers.class.php:66
|
1615 |
-
msgid "Brazil"
|
1616 |
-
msgstr ""
|
1617 |
-
|
1618 |
-
#: ../lib/tribe-view-helpers.class.php:67
|
1619 |
-
msgid "British Indian Ocean Territory"
|
1620 |
-
msgstr ""
|
1621 |
-
|
1622 |
-
#: ../lib/tribe-view-helpers.class.php:68
|
1623 |
-
msgid "Brunei Darussalam"
|
1624 |
-
msgstr ""
|
1625 |
-
|
1626 |
-
#: ../lib/tribe-view-helpers.class.php:69
|
1627 |
-
msgid "Bulgaria"
|
1628 |
-
msgstr ""
|
1629 |
-
|
1630 |
-
#: ../lib/tribe-view-helpers.class.php:70
|
1631 |
-
msgid "Burkina Faso"
|
1632 |
-
msgstr ""
|
1633 |
-
|
1634 |
-
#: ../lib/tribe-view-helpers.class.php:71
|
1635 |
-
msgid "Burundi"
|
1636 |
-
msgstr ""
|
1637 |
-
|
1638 |
-
#: ../lib/tribe-view-helpers.class.php:72
|
1639 |
-
msgid "Cambodia"
|
1640 |
-
msgstr ""
|
1641 |
-
|
1642 |
-
#: ../lib/tribe-view-helpers.class.php:73
|
1643 |
-
msgid "Cameroon"
|
1644 |
-
msgstr ""
|
1645 |
-
|
1646 |
-
#: ../lib/tribe-view-helpers.class.php:74
|
1647 |
-
msgid "Canada"
|
1648 |
-
msgstr ""
|
1649 |
-
|
1650 |
-
#: ../lib/tribe-view-helpers.class.php:75
|
1651 |
-
msgid "Cape Verde"
|
1652 |
-
msgstr ""
|
1653 |
-
|
1654 |
-
#: ../lib/tribe-view-helpers.class.php:76
|
1655 |
-
msgid "Cayman Islands"
|
1656 |
-
msgstr ""
|
1657 |
-
|
1658 |
-
#: ../lib/tribe-view-helpers.class.php:77
|
1659 |
-
msgid "Central African Republic"
|
1660 |
-
msgstr ""
|
1661 |
-
|
1662 |
-
#: ../lib/tribe-view-helpers.class.php:78
|
1663 |
-
msgid "Chad"
|
1664 |
-
msgstr ""
|
1665 |
-
|
1666 |
-
#: ../lib/tribe-view-helpers.class.php:79
|
1667 |
-
msgid "Chile"
|
1668 |
-
msgstr ""
|
1669 |
-
|
1670 |
-
#: ../lib/tribe-view-helpers.class.php:80
|
1671 |
-
msgid "China"
|
1672 |
-
msgstr ""
|
1673 |
-
|
1674 |
-
#: ../lib/tribe-view-helpers.class.php:81
|
1675 |
-
msgid "Christmas Island"
|
1676 |
-
msgstr ""
|
1677 |
-
|
1678 |
-
#: ../lib/tribe-view-helpers.class.php:82
|
1679 |
-
msgid "Cocos (Keeling) Islands"
|
1680 |
-
msgstr ""
|
1681 |
-
|
1682 |
-
#: ../lib/tribe-view-helpers.class.php:83
|
1683 |
-
msgid "Colombia"
|
1684 |
-
msgstr ""
|
1685 |
-
|
1686 |
-
#: ../lib/tribe-view-helpers.class.php:84
|
1687 |
-
msgid "Comoros"
|
1688 |
-
msgstr ""
|
1689 |
-
|
1690 |
-
#: ../lib/tribe-view-helpers.class.php:85
|
1691 |
-
msgid "Congo"
|
1692 |
-
msgstr ""
|
1693 |
-
|
1694 |
-
#: ../lib/tribe-view-helpers.class.php:86
|
1695 |
-
msgid "Congo, The Democratic Republic Of The"
|
1696 |
-
msgstr ""
|
1697 |
-
|
1698 |
-
#: ../lib/tribe-view-helpers.class.php:87
|
1699 |
-
msgid "Cook Islands"
|
1700 |
-
msgstr ""
|
1701 |
-
|
1702 |
-
#: ../lib/tribe-view-helpers.class.php:88
|
1703 |
-
msgid "Costa Rica"
|
1704 |
-
msgstr ""
|
1705 |
-
|
1706 |
-
#: ../lib/tribe-view-helpers.class.php:89
|
1707 |
-
msgid "Cote D'Ivoire"
|
1708 |
-
msgstr ""
|
1709 |
-
|
1710 |
-
#: ../lib/tribe-view-helpers.class.php:90
|
1711 |
-
msgid "Croatia (Local Name: Hrvatska)"
|
1712 |
-
msgstr ""
|
1713 |
-
|
1714 |
-
#: ../lib/tribe-view-helpers.class.php:91
|
1715 |
-
msgid "Cuba"
|
1716 |
-
msgstr ""
|
1717 |
-
|
1718 |
-
#: ../lib/tribe-view-helpers.class.php:92
|
1719 |
-
msgid "Cyprus"
|
1720 |
-
msgstr ""
|
1721 |
-
|
1722 |
-
#: ../lib/tribe-view-helpers.class.php:93
|
1723 |
-
msgid "Czech Republic"
|
1724 |
-
msgstr ""
|
1725 |
-
|
1726 |
-
#: ../lib/tribe-view-helpers.class.php:94
|
1727 |
-
msgid "Denmark"
|
1728 |
-
msgstr ""
|
1729 |
-
|
1730 |
-
#: ../lib/tribe-view-helpers.class.php:95
|
1731 |
-
msgid "Djibouti"
|
1732 |
-
msgstr ""
|
1733 |
-
|
1734 |
-
#: ../lib/tribe-view-helpers.class.php:96
|
1735 |
-
msgid "Dominica"
|
1736 |
-
msgstr ""
|
1737 |
-
|
1738 |
-
#: ../lib/tribe-view-helpers.class.php:97
|
1739 |
-
msgid "Dominican Republic"
|
1740 |
-
msgstr ""
|
1741 |
-
|
1742 |
-
#: ../lib/tribe-view-helpers.class.php:98
|
1743 |
-
msgid "East Timor"
|
1744 |
-
msgstr ""
|
1745 |
-
|
1746 |
-
#: ../lib/tribe-view-helpers.class.php:99
|
1747 |
-
msgid "Ecuador"
|
1748 |
-
msgstr ""
|
1749 |
-
|
1750 |
-
#: ../lib/tribe-view-helpers.class.php:100
|
1751 |
-
msgid "Egypt"
|
1752 |
-
msgstr ""
|
1753 |
-
|
1754 |
-
#: ../lib/tribe-view-helpers.class.php:101
|
1755 |
-
msgid "El Salvador"
|
1756 |
-
msgstr ""
|
1757 |
-
|
1758 |
-
#: ../lib/tribe-view-helpers.class.php:102
|
1759 |
-
msgid "Equatorial Guinea"
|
1760 |
-
msgstr ""
|
1761 |
-
|
1762 |
-
#: ../lib/tribe-view-helpers.class.php:103
|
1763 |
-
msgid "Eritrea"
|
1764 |
-
msgstr ""
|
1765 |
-
|
1766 |
-
#: ../lib/tribe-view-helpers.class.php:104
|
1767 |
-
msgid "Estonia"
|
1768 |
-
msgstr ""
|
1769 |
-
|
1770 |
-
#: ../lib/tribe-view-helpers.class.php:105
|
1771 |
-
msgid "Ethiopia"
|
1772 |
-
msgstr ""
|
1773 |
-
|
1774 |
-
#: ../lib/tribe-view-helpers.class.php:106
|
1775 |
-
msgid "Falkland Islands (Malvinas)"
|
1776 |
-
msgstr ""
|
1777 |
-
|
1778 |
-
#: ../lib/tribe-view-helpers.class.php:107
|
1779 |
-
msgid "Faroe Islands"
|
1780 |
-
msgstr ""
|
1781 |
-
|
1782 |
-
#: ../lib/tribe-view-helpers.class.php:108
|
1783 |
-
msgid "Fiji"
|
1784 |
-
msgstr ""
|
1785 |
-
|
1786 |
-
#: ../lib/tribe-view-helpers.class.php:109
|
1787 |
-
msgid "Finland"
|
1788 |
-
msgstr ""
|
1789 |
-
|
1790 |
-
#: ../lib/tribe-view-helpers.class.php:110
|
1791 |
-
msgid "France"
|
1792 |
-
msgstr ""
|
1793 |
-
|
1794 |
-
#: ../lib/tribe-view-helpers.class.php:111
|
1795 |
-
msgid "France, Metropolitan"
|
1796 |
-
msgstr ""
|
1797 |
-
|
1798 |
-
#: ../lib/tribe-view-helpers.class.php:112
|
1799 |
-
msgid "French Guiana"
|
1800 |
-
msgstr ""
|
1801 |
-
|
1802 |
-
#: ../lib/tribe-view-helpers.class.php:113
|
1803 |
-
msgid "French Polynesia"
|
1804 |
-
msgstr ""
|
1805 |
-
|
1806 |
-
#: ../lib/tribe-view-helpers.class.php:114
|
1807 |
-
msgid "French Southern Territories"
|
1808 |
-
msgstr ""
|
1809 |
-
|
1810 |
-
#: ../lib/tribe-view-helpers.class.php:115
|
1811 |
-
msgid "Gabon"
|
1812 |
-
msgstr ""
|
1813 |
-
|
1814 |
-
#: ../lib/tribe-view-helpers.class.php:116
|
1815 |
-
msgid "Gambia"
|
1816 |
-
msgstr ""
|
1817 |
-
|
1818 |
-
#: ../lib/tribe-view-helpers.class.php:117
|
1819 |
-
#: ../lib/tribe-view-helpers.class.php:305
|
1820 |
-
msgid "Georgia"
|
1821 |
-
msgstr ""
|
1822 |
-
|
1823 |
-
#: ../lib/tribe-view-helpers.class.php:118
|
1824 |
-
msgid "Germany"
|
1825 |
-
msgstr ""
|
1826 |
-
|
1827 |
-
#: ../lib/tribe-view-helpers.class.php:119
|
1828 |
-
msgid "Ghana"
|
1829 |
-
msgstr ""
|
1830 |
-
|
1831 |
-
#: ../lib/tribe-view-helpers.class.php:120
|
1832 |
-
msgid "Gibraltar"
|
1833 |
-
msgstr ""
|
1834 |
-
|
1835 |
-
#: ../lib/tribe-view-helpers.class.php:121
|
1836 |
-
msgid "Greece"
|
1837 |
-
msgstr ""
|
1838 |
-
|
1839 |
-
#: ../lib/tribe-view-helpers.class.php:122
|
1840 |
-
msgid "Greenland"
|
1841 |
-
msgstr ""
|
1842 |
-
|
1843 |
-
#: ../lib/tribe-view-helpers.class.php:123
|
1844 |
-
msgid "Grenada"
|
1845 |
-
msgstr ""
|
1846 |
-
|
1847 |
-
#: ../lib/tribe-view-helpers.class.php:124
|
1848 |
-
msgid "Guadeloupe"
|
1849 |
-
msgstr ""
|
1850 |
-
|
1851 |
-
#: ../lib/tribe-view-helpers.class.php:125
|
1852 |
-
msgid "Guam"
|
1853 |
-
msgstr ""
|
1854 |
-
|
1855 |
-
#: ../lib/tribe-view-helpers.class.php:126
|
1856 |
-
msgid "Guatemala"
|
1857 |
-
msgstr ""
|
1858 |
-
|
1859 |
-
#: ../lib/tribe-view-helpers.class.php:127
|
1860 |
-
msgid "Guinea"
|
1861 |
-
msgstr ""
|
1862 |
-
|
1863 |
-
#: ../lib/tribe-view-helpers.class.php:128
|
1864 |
-
msgid "Guinea-Bissau"
|
1865 |
-
msgstr ""
|
1866 |
-
|
1867 |
-
#: ../lib/tribe-view-helpers.class.php:129
|
1868 |
-
msgid "Guyana"
|
1869 |
-
msgstr ""
|
1870 |
-
|
1871 |
-
#: ../lib/tribe-view-helpers.class.php:130
|
1872 |
-
msgid "Haiti"
|
1873 |
-
msgstr ""
|
1874 |
-
|
1875 |
-
#: ../lib/tribe-view-helpers.class.php:131
|
1876 |
-
msgid "Heard And Mc Donald Islands"
|
1877 |
-
msgstr ""
|
1878 |
-
|
1879 |
-
#: ../lib/tribe-view-helpers.class.php:132
|
1880 |
-
msgid "Holy See (Vatican City State)"
|
1881 |
-
msgstr ""
|
1882 |
-
|
1883 |
-
#: ../lib/tribe-view-helpers.class.php:133
|
1884 |
-
msgid "Honduras"
|
1885 |
-
msgstr ""
|
1886 |
-
|
1887 |
-
#: ../lib/tribe-view-helpers.class.php:134
|
1888 |
-
msgid "Hong Kong"
|
1889 |
-
msgstr ""
|
1890 |
-
|
1891 |
-
#: ../lib/tribe-view-helpers.class.php:135
|
1892 |
-
msgid "Hungary"
|
1893 |
-
msgstr ""
|
1894 |
-
|
1895 |
-
#: ../lib/tribe-view-helpers.class.php:136
|
1896 |
-
msgid "Iceland"
|
1897 |
-
msgstr ""
|
1898 |
-
|
1899 |
-
#: ../lib/tribe-view-helpers.class.php:137
|
1900 |
-
msgid "India"
|
1901 |
-
msgstr ""
|
1902 |
-
|
1903 |
-
#: ../lib/tribe-view-helpers.class.php:138
|
1904 |
-
msgid "Indonesia"
|
1905 |
-
msgstr ""
|
1906 |
-
|
1907 |
-
#: ../lib/tribe-view-helpers.class.php:139
|
1908 |
-
msgid "Iran (Islamic Republic Of)"
|
1909 |
-
msgstr ""
|
1910 |
-
|
1911 |
-
#: ../lib/tribe-view-helpers.class.php:140
|
1912 |
-
msgid "Iraq"
|
1913 |
-
msgstr ""
|
1914 |
-
|
1915 |
-
#: ../lib/tribe-view-helpers.class.php:141
|
1916 |
-
msgid "Ireland"
|
1917 |
-
msgstr ""
|
1918 |
-
|
1919 |
-
#: ../lib/tribe-view-helpers.class.php:142
|
1920 |
-
msgid "Israel"
|
1921 |
-
msgstr ""
|
1922 |
-
|
1923 |
-
#: ../lib/tribe-view-helpers.class.php:143
|
1924 |
-
msgid "Italy"
|
1925 |
-
msgstr ""
|
1926 |
-
|
1927 |
-
#: ../lib/tribe-view-helpers.class.php:144
|
1928 |
-
msgid "Jamaica"
|
1929 |
-
msgstr ""
|
1930 |
-
|
1931 |
-
#: ../lib/tribe-view-helpers.class.php:145
|
1932 |
-
msgid "Japan"
|
1933 |
-
msgstr ""
|
1934 |
-
|
1935 |
-
#: ../lib/tribe-view-helpers.class.php:146
|
1936 |
-
msgid "Jordan"
|
1937 |
-
msgstr ""
|
1938 |
-
|
1939 |
-
#: ../lib/tribe-view-helpers.class.php:147
|
1940 |
-
msgid "Kazakhstan"
|
1941 |
-
msgstr ""
|
1942 |
-
|
1943 |
-
#: ../lib/tribe-view-helpers.class.php:148
|
1944 |
-
msgid "Kenya"
|
1945 |
-
msgstr ""
|
1946 |
-
|
1947 |
-
#: ../lib/tribe-view-helpers.class.php:149
|
1948 |
-
msgid "Kiribati"
|
1949 |
-
msgstr ""
|
1950 |
-
|
1951 |
-
#: ../lib/tribe-view-helpers.class.php:150
|
1952 |
-
msgid "Korea, Democratic People's Republic Of"
|
1953 |
-
msgstr ""
|
1954 |
-
|
1955 |
-
#: ../lib/tribe-view-helpers.class.php:151
|
1956 |
-
msgid "Korea, Republic Of"
|
1957 |
-
msgstr ""
|
1958 |
-
|
1959 |
-
#: ../lib/tribe-view-helpers.class.php:152
|
1960 |
-
msgid "Kuwait"
|
1961 |
-
msgstr ""
|
1962 |
-
|
1963 |
-
#: ../lib/tribe-view-helpers.class.php:153
|
1964 |
-
msgid "Kyrgyzstan"
|
1965 |
-
msgstr ""
|
1966 |
-
|
1967 |
-
#: ../lib/tribe-view-helpers.class.php:154
|
1968 |
-
msgid "Lao People's Democratic Republic"
|
1969 |
-
msgstr ""
|
1970 |
-
|
1971 |
-
#: ../lib/tribe-view-helpers.class.php:155
|
1972 |
-
msgid "Latvia"
|
1973 |
-
msgstr ""
|
1974 |
-
|
1975 |
-
#: ../lib/tribe-view-helpers.class.php:156
|
1976 |
-
msgid "Lebanon"
|
1977 |
-
msgstr ""
|
1978 |
-
|
1979 |
-
#: ../lib/tribe-view-helpers.class.php:157
|
1980 |
-
msgid "Lesotho"
|
1981 |
-
msgstr ""
|
1982 |
-
|
1983 |
-
#: ../lib/tribe-view-helpers.class.php:158
|
1984 |
-
msgid "Liberia"
|
1985 |
-
msgstr ""
|
1986 |
-
|
1987 |
-
#: ../lib/tribe-view-helpers.class.php:159
|
1988 |
-
msgid "Libya"
|
1989 |
-
msgstr ""
|
1990 |
-
|
1991 |
-
#: ../lib/tribe-view-helpers.class.php:160
|
1992 |
-
msgid "Liechtenstein"
|
1993 |
-
msgstr ""
|
1994 |
-
|
1995 |
-
#: ../lib/tribe-view-helpers.class.php:161
|
1996 |
-
msgid "Lithuania"
|
1997 |
-
msgstr ""
|
1998 |
-
|
1999 |
-
#: ../lib/tribe-view-helpers.class.php:162
|
2000 |
-
msgid "Luxembourg"
|
2001 |
-
msgstr ""
|
2002 |
-
|
2003 |
-
#: ../lib/tribe-view-helpers.class.php:163
|
2004 |
-
msgid "Macau"
|
2005 |
-
msgstr ""
|
2006 |
-
|
2007 |
-
#: ../lib/tribe-view-helpers.class.php:164
|
2008 |
-
msgid "Macedonia"
|
2009 |
-
msgstr ""
|
2010 |
-
|
2011 |
-
#: ../lib/tribe-view-helpers.class.php:165
|
2012 |
-
msgid "Madagascar"
|
2013 |
-
msgstr ""
|
2014 |
-
|
2015 |
-
#: ../lib/tribe-view-helpers.class.php:166
|
2016 |
-
msgid "Malawi"
|
2017 |
-
msgstr ""
|
2018 |
-
|
2019 |
-
#: ../lib/tribe-view-helpers.class.php:167
|
2020 |
-
msgid "Malaysia"
|
2021 |
-
msgstr ""
|
2022 |
-
|
2023 |
-
#: ../lib/tribe-view-helpers.class.php:168
|
2024 |
-
msgid "Maldives"
|
2025 |
-
msgstr ""
|
2026 |
-
|
2027 |
-
#: ../lib/tribe-view-helpers.class.php:169
|
2028 |
-
msgid "Mali"
|
2029 |
-
msgstr ""
|
2030 |
-
|
2031 |
-
#: ../lib/tribe-view-helpers.class.php:170
|
2032 |
-
msgid "Malta"
|
2033 |
-
msgstr ""
|
2034 |
-
|
2035 |
-
#: ../lib/tribe-view-helpers.class.php:171
|
2036 |
-
msgid "Marshall Islands"
|
2037 |
-
msgstr ""
|
2038 |
-
|
2039 |
-
#: ../lib/tribe-view-helpers.class.php:172
|
2040 |
-
msgid "Martinique"
|
2041 |
-
msgstr ""
|
2042 |
-
|
2043 |
-
#: ../lib/tribe-view-helpers.class.php:173
|
2044 |
-
msgid "Mauritania"
|
2045 |
-
msgstr ""
|
2046 |
-
|
2047 |
-
#: ../lib/tribe-view-helpers.class.php:174
|
2048 |
-
msgid "Mauritius"
|
2049 |
-
msgstr ""
|
2050 |
-
|
2051 |
-
#: ../lib/tribe-view-helpers.class.php:175
|
2052 |
-
msgid "Mayotte"
|
2053 |
-
msgstr ""
|
2054 |
-
|
2055 |
-
#: ../lib/tribe-view-helpers.class.php:176
|
2056 |
-
msgid "Mexico"
|
2057 |
-
msgstr ""
|
2058 |
-
|
2059 |
-
#: ../lib/tribe-view-helpers.class.php:177
|
2060 |
-
msgid "Micronesia, Federated States Of"
|
2061 |
-
msgstr ""
|
2062 |
-
|
2063 |
-
#: ../lib/tribe-view-helpers.class.php:178
|
2064 |
-
msgid "Moldova, Republic Of"
|
2065 |
-
msgstr ""
|
2066 |
-
|
2067 |
-
#: ../lib/tribe-view-helpers.class.php:179
|
2068 |
-
msgid "Monaco"
|
2069 |
-
msgstr ""
|
2070 |
-
|
2071 |
-
#: ../lib/tribe-view-helpers.class.php:180
|
2072 |
-
msgid "Mongolia"
|
2073 |
-
msgstr ""
|
2074 |
-
|
2075 |
-
#: ../lib/tribe-view-helpers.class.php:181
|
2076 |
-
msgid "Montenegro"
|
2077 |
-
msgstr ""
|
2078 |
-
|
2079 |
-
#: ../lib/tribe-view-helpers.class.php:182
|
2080 |
-
msgid "Montserrat"
|
2081 |
-
msgstr ""
|
2082 |
-
|
2083 |
-
#: ../lib/tribe-view-helpers.class.php:183
|
2084 |
-
msgid "Morocco"
|
2085 |
-
msgstr ""
|
2086 |
-
|
2087 |
-
#: ../lib/tribe-view-helpers.class.php:184
|
2088 |
-
msgid "Mozambique"
|
2089 |
-
msgstr ""
|
2090 |
-
|
2091 |
-
#: ../lib/tribe-view-helpers.class.php:185
|
2092 |
-
msgid "Myanmar"
|
2093 |
-
msgstr ""
|
2094 |
-
|
2095 |
-
#: ../lib/tribe-view-helpers.class.php:186
|
2096 |
-
msgid "Namibia"
|
2097 |
-
msgstr ""
|
2098 |
-
|
2099 |
-
#: ../lib/tribe-view-helpers.class.php:187
|
2100 |
-
msgid "Nauru"
|
2101 |
-
msgstr ""
|
2102 |
-
|
2103 |
-
#: ../lib/tribe-view-helpers.class.php:188
|
2104 |
-
msgid "Nepal"
|
2105 |
-
msgstr ""
|
2106 |
-
|
2107 |
-
#: ../lib/tribe-view-helpers.class.php:189
|
2108 |
-
msgid "Netherlands"
|
2109 |
-
msgstr ""
|
2110 |
-
|
2111 |
-
#: ../lib/tribe-view-helpers.class.php:190
|
2112 |
-
msgid "Netherlands Antilles"
|
2113 |
-
msgstr ""
|
2114 |
-
|
2115 |
-
#: ../lib/tribe-view-helpers.class.php:191
|
2116 |
-
msgid "New Caledonia"
|
2117 |
-
msgstr ""
|
2118 |
-
|
2119 |
-
#: ../lib/tribe-view-helpers.class.php:192
|
2120 |
-
msgid "New Zealand"
|
2121 |
-
msgstr ""
|
2122 |
-
|
2123 |
-
#: ../lib/tribe-view-helpers.class.php:193
|
2124 |
-
msgid "Nicaragua"
|
2125 |
-
msgstr ""
|
2126 |
-
|
2127 |
-
#: ../lib/tribe-view-helpers.class.php:194
|
2128 |
-
msgid "Niger"
|
2129 |
-
msgstr ""
|
2130 |
-
|
2131 |
-
#: ../lib/tribe-view-helpers.class.php:195
|
2132 |
-
msgid "Nigeria"
|
2133 |
-
msgstr ""
|
2134 |
-
|
2135 |
-
#: ../lib/tribe-view-helpers.class.php:196
|
2136 |
-
msgid "Niue"
|
2137 |
-
msgstr ""
|
2138 |
-
|
2139 |
-
#: ../lib/tribe-view-helpers.class.php:197
|
2140 |
-
msgid "Norfolk Island"
|
2141 |
-
msgstr ""
|
2142 |
-
|
2143 |
-
#: ../lib/tribe-view-helpers.class.php:198
|
2144 |
-
msgid "Northern Mariana Islands"
|
2145 |
-
msgstr ""
|
2146 |
-
|
2147 |
-
#: ../lib/tribe-view-helpers.class.php:199
|
2148 |
-
msgid "Norway"
|
2149 |
-
msgstr ""
|
2150 |
-
|
2151 |
-
#: ../lib/tribe-view-helpers.class.php:200
|
2152 |
-
msgid "Oman"
|
2153 |
-
msgstr ""
|
2154 |
-
|
2155 |
-
#: ../lib/tribe-view-helpers.class.php:201
|
2156 |
-
msgid "Pakistan"
|
2157 |
-
msgstr ""
|
2158 |
-
|
2159 |
-
#: ../lib/tribe-view-helpers.class.php:202
|
2160 |
-
msgid "Palau"
|
2161 |
-
msgstr ""
|
2162 |
-
|
2163 |
-
#: ../lib/tribe-view-helpers.class.php:203
|
2164 |
-
msgid "Panama"
|
2165 |
-
msgstr ""
|
2166 |
-
|
2167 |
-
#: ../lib/tribe-view-helpers.class.php:204
|
2168 |
-
msgid "Papua New Guinea"
|
2169 |
-
msgstr ""
|
2170 |
-
|
2171 |
-
#: ../lib/tribe-view-helpers.class.php:205
|
2172 |
-
msgid "Paraguay"
|
2173 |
-
msgstr ""
|
2174 |
-
|
2175 |
-
#: ../lib/tribe-view-helpers.class.php:206
|
2176 |
-
msgid "Peru"
|
2177 |
-
msgstr ""
|
2178 |
-
|
2179 |
-
#: ../lib/tribe-view-helpers.class.php:207
|
2180 |
-
msgid "Philippines"
|
2181 |
-
msgstr ""
|
2182 |
-
|
2183 |
-
#: ../lib/tribe-view-helpers.class.php:208
|
2184 |
-
msgid "Pitcairn"
|
2185 |
-
msgstr ""
|
2186 |
-
|
2187 |
-
#: ../lib/tribe-view-helpers.class.php:209
|
2188 |
-
msgid "Poland"
|
2189 |
-
msgstr ""
|
2190 |
-
|
2191 |
-
#: ../lib/tribe-view-helpers.class.php:210
|
2192 |
-
msgid "Portugal"
|
2193 |
-
msgstr ""
|
2194 |
-
|
2195 |
-
#: ../lib/tribe-view-helpers.class.php:211
|
2196 |
-
msgid "Puerto Rico"
|
2197 |
-
msgstr ""
|
2198 |
-
|
2199 |
-
#: ../lib/tribe-view-helpers.class.php:212
|
2200 |
-
msgid "Qatar"
|
2201 |
-
msgstr ""
|
2202 |
-
|
2203 |
-
#: ../lib/tribe-view-helpers.class.php:213
|
2204 |
-
msgid "Reunion"
|
2205 |
-
msgstr ""
|
2206 |
-
|
2207 |
-
#: ../lib/tribe-view-helpers.class.php:214
|
2208 |
-
msgid "Romania"
|
2209 |
-
msgstr ""
|
2210 |
-
|
2211 |
-
#: ../lib/tribe-view-helpers.class.php:215
|
2212 |
-
msgid "Russian Federation"
|
2213 |
-
msgstr ""
|
2214 |
-
|
2215 |
-
#: ../lib/tribe-view-helpers.class.php:216
|
2216 |
-
msgid "Rwanda"
|
2217 |
-
msgstr ""
|
2218 |
-
|
2219 |
-
#: ../lib/tribe-view-helpers.class.php:217
|
2220 |
-
msgid "Saint Kitts And Nevis"
|
2221 |
-
msgstr ""
|
2222 |
-
|
2223 |
-
#: ../lib/tribe-view-helpers.class.php:218
|
2224 |
-
msgid "Saint Lucia"
|
2225 |
-
msgstr ""
|
2226 |
-
|
2227 |
-
#: ../lib/tribe-view-helpers.class.php:219
|
2228 |
-
msgid "Saint Vincent And The Grenadines"
|
2229 |
-
msgstr ""
|
2230 |
-
|
2231 |
-
#: ../lib/tribe-view-helpers.class.php:220
|
2232 |
-
msgid "Samoa"
|
2233 |
-
msgstr ""
|
2234 |
-
|
2235 |
-
#: ../lib/tribe-view-helpers.class.php:221
|
2236 |
-
msgid "San Marino"
|
2237 |
-
msgstr ""
|
2238 |
-
|
2239 |
-
#: ../lib/tribe-view-helpers.class.php:222
|
2240 |
-
msgid "Sao Tome And Principe"
|
2241 |
-
msgstr ""
|
2242 |
-
|
2243 |
-
#: ../lib/tribe-view-helpers.class.php:223
|
2244 |
-
msgid "Saudi Arabia"
|
2245 |
-
msgstr ""
|
2246 |
-
|
2247 |
-
#: ../lib/tribe-view-helpers.class.php:224
|
2248 |
-
msgid "Senegal"
|
2249 |
-
msgstr ""
|
2250 |
-
|
2251 |
-
#: ../lib/tribe-view-helpers.class.php:225
|
2252 |
-
msgid "Serbia"
|
2253 |
-
msgstr ""
|
2254 |
-
|
2255 |
-
#: ../lib/tribe-view-helpers.class.php:226
|
2256 |
-
msgid "Seychelles"
|
2257 |
-
msgstr ""
|
2258 |
-
|
2259 |
-
#: ../lib/tribe-view-helpers.class.php:227
|
2260 |
-
msgid "Sierra Leone"
|
2261 |
-
msgstr ""
|
2262 |
-
|
2263 |
-
#: ../lib/tribe-view-helpers.class.php:228
|
2264 |
-
msgid "Singapore"
|
2265 |
-
msgstr ""
|
2266 |
-
|
2267 |
-
#: ../lib/tribe-view-helpers.class.php:229
|
2268 |
-
msgid "Slovakia (Slovak Republic)"
|
2269 |
-
msgstr ""
|
2270 |
-
|
2271 |
-
#: ../lib/tribe-view-helpers.class.php:230
|
2272 |
-
msgid "Slovenia"
|
2273 |
-
msgstr ""
|
2274 |
-
|
2275 |
-
#: ../lib/tribe-view-helpers.class.php:231
|
2276 |
-
msgid "Solomon Islands"
|
2277 |
-
msgstr ""
|
2278 |
-
|
2279 |
-
#: ../lib/tribe-view-helpers.class.php:232
|
2280 |
-
msgid "Somalia"
|
2281 |
-
msgstr ""
|
2282 |
-
|
2283 |
-
#: ../lib/tribe-view-helpers.class.php:233
|
2284 |
-
msgid "South Africa"
|
2285 |
-
msgstr ""
|
2286 |
-
|
2287 |
-
#: ../lib/tribe-view-helpers.class.php:234
|
2288 |
-
msgid "South Georgia, South Sandwich Islands"
|
2289 |
-
msgstr ""
|
2290 |
-
|
2291 |
-
#: ../lib/tribe-view-helpers.class.php:235
|
2292 |
-
msgid "Spain"
|
2293 |
-
msgstr ""
|
2294 |
-
|
2295 |
-
#: ../lib/tribe-view-helpers.class.php:236
|
2296 |
-
msgid "Sri Lanka"
|
2297 |
-
msgstr ""
|
2298 |
-
|
2299 |
-
#: ../lib/tribe-view-helpers.class.php:237
|
2300 |
-
msgid "St. Helena"
|
2301 |
-
msgstr ""
|
2302 |
-
|
2303 |
-
#: ../lib/tribe-view-helpers.class.php:238
|
2304 |
-
msgid "St. Pierre And Miquelon"
|
2305 |
-
msgstr ""
|
2306 |
-
|
2307 |
-
#: ../lib/tribe-view-helpers.class.php:239
|
2308 |
-
msgid "Sudan"
|
2309 |
-
msgstr ""
|
2310 |
-
|
2311 |
-
#: ../lib/tribe-view-helpers.class.php:240
|
2312 |
-
msgid "Suriname"
|
2313 |
-
msgstr ""
|
2314 |
-
|
2315 |
-
#: ../lib/tribe-view-helpers.class.php:241
|
2316 |
-
msgid "Svalbard And Jan Mayen Islands"
|
2317 |
-
msgstr ""
|
2318 |
-
|
2319 |
-
#: ../lib/tribe-view-helpers.class.php:242
|
2320 |
-
msgid "Swaziland"
|
2321 |
-
msgstr ""
|
2322 |
-
|
2323 |
-
#: ../lib/tribe-view-helpers.class.php:243
|
2324 |
-
msgid "Sweden"
|
2325 |
-
msgstr ""
|
2326 |
-
|
2327 |
-
#: ../lib/tribe-view-helpers.class.php:244
|
2328 |
-
msgid "Switzerland"
|
2329 |
-
msgstr ""
|
2330 |
-
|
2331 |
-
#: ../lib/tribe-view-helpers.class.php:245
|
2332 |
-
msgid "Syrian Arab Republic"
|
2333 |
-
msgstr ""
|
2334 |
-
|
2335 |
-
#: ../lib/tribe-view-helpers.class.php:246
|
2336 |
-
msgid "Taiwan"
|
2337 |
-
msgstr ""
|
2338 |
-
|
2339 |
-
#: ../lib/tribe-view-helpers.class.php:247
|
2340 |
-
msgid "Tajikistan"
|
2341 |
-
msgstr ""
|
2342 |
-
|
2343 |
-
#: ../lib/tribe-view-helpers.class.php:248
|
2344 |
-
msgid "Tanzania, United Republic Of"
|
2345 |
-
msgstr ""
|
2346 |
-
|
2347 |
-
#: ../lib/tribe-view-helpers.class.php:249
|
2348 |
-
msgid "Thailand"
|
2349 |
-
msgstr ""
|
2350 |
-
|
2351 |
-
#: ../lib/tribe-view-helpers.class.php:250
|
2352 |
-
msgid "Togo"
|
2353 |
-
msgstr ""
|
2354 |
-
|
2355 |
-
#: ../lib/tribe-view-helpers.class.php:251
|
2356 |
-
msgid "Tokelau"
|
2357 |
-
msgstr ""
|
2358 |
-
|
2359 |
-
#: ../lib/tribe-view-helpers.class.php:252
|
2360 |
-
msgid "Tonga"
|
2361 |
-
msgstr ""
|
2362 |
-
|
2363 |
-
#: ../lib/tribe-view-helpers.class.php:253
|
2364 |
-
msgid "Trinidad And Tobago"
|
2365 |
-
msgstr ""
|
2366 |
-
|
2367 |
-
#: ../lib/tribe-view-helpers.class.php:254
|
2368 |
-
msgid "Tunisia"
|
2369 |
-
msgstr ""
|
2370 |
-
|
2371 |
-
#: ../lib/tribe-view-helpers.class.php:255
|
2372 |
-
msgid "Turkey"
|
2373 |
-
msgstr ""
|
2374 |
-
|
2375 |
-
#: ../lib/tribe-view-helpers.class.php:256
|
2376 |
-
msgid "Turkmenistan"
|
2377 |
-
msgstr ""
|
2378 |
-
|
2379 |
-
#: ../lib/tribe-view-helpers.class.php:257
|
2380 |
-
msgid "Turks And Caicos Islands"
|
2381 |
-
msgstr ""
|
2382 |
-
|
2383 |
-
#: ../lib/tribe-view-helpers.class.php:258
|
2384 |
-
msgid "Tuvalu"
|
2385 |
-
msgstr ""
|
2386 |
-
|
2387 |
-
#: ../lib/tribe-view-helpers.class.php:259
|
2388 |
-
msgid "Uganda"
|
2389 |
-
msgstr ""
|
2390 |
-
|
2391 |
-
#: ../lib/tribe-view-helpers.class.php:260
|
2392 |
-
msgid "Ukraine"
|
2393 |
-
msgstr ""
|
2394 |
-
|
2395 |
-
#: ../lib/tribe-view-helpers.class.php:261
|
2396 |
-
msgid "United Arab Emirates"
|
2397 |
-
msgstr ""
|
2398 |
-
|
2399 |
-
#: ../lib/tribe-view-helpers.class.php:262
|
2400 |
-
msgid "United Kingdom"
|
2401 |
-
msgstr ""
|
2402 |
-
|
2403 |
-
#: ../lib/tribe-view-helpers.class.php:263
|
2404 |
-
msgid "United States Minor Outlying Islands"
|
2405 |
-
msgstr ""
|
2406 |
-
|
2407 |
-
#: ../lib/tribe-view-helpers.class.php:264
|
2408 |
-
msgid "Uruguay"
|
2409 |
-
msgstr ""
|
2410 |
-
|
2411 |
-
#: ../lib/tribe-view-helpers.class.php:265
|
2412 |
-
msgid "Uzbekistan"
|
2413 |
-
msgstr ""
|
2414 |
-
|
2415 |
-
#: ../lib/tribe-view-helpers.class.php:266
|
2416 |
-
msgid "Vanuatu"
|
2417 |
-
msgstr ""
|
2418 |
-
|
2419 |
-
#: ../lib/tribe-view-helpers.class.php:267
|
2420 |
-
msgid "Venezuela"
|
2421 |
-
msgstr ""
|
2422 |
-
|
2423 |
-
#: ../lib/tribe-view-helpers.class.php:268
|
2424 |
-
msgid "Viet Nam"
|
2425 |
-
msgstr ""
|
2426 |
-
|
2427 |
-
#: ../lib/tribe-view-helpers.class.php:269
|
2428 |
-
msgid "Virgin Islands (British)"
|
2429 |
-
msgstr ""
|
2430 |
-
|
2431 |
-
#: ../lib/tribe-view-helpers.class.php:270
|
2432 |
-
msgid "Virgin Islands (U.S.)"
|
2433 |
-
msgstr ""
|
2434 |
-
|
2435 |
-
#: ../lib/tribe-view-helpers.class.php:271
|
2436 |
-
msgid "Wallis And Futuna Islands"
|
2437 |
-
msgstr ""
|
2438 |
-
|
2439 |
-
#: ../lib/tribe-view-helpers.class.php:272
|
2440 |
-
msgid "Western Sahara"
|
2441 |
-
msgstr ""
|
2442 |
-
|
2443 |
-
#: ../lib/tribe-view-helpers.class.php:273
|
2444 |
-
msgid "Yemen"
|
2445 |
-
msgstr ""
|
2446 |
-
|
2447 |
-
#: ../lib/tribe-view-helpers.class.php:274
|
2448 |
-
msgid "Zambia"
|
2449 |
-
msgstr ""
|
2450 |
-
|
2451 |
-
#: ../lib/tribe-view-helpers.class.php:275
|
2452 |
-
msgid "Zimbabwe"
|
2453 |
-
msgstr ""
|
2454 |
-
|
2455 |
-
#: ../lib/tribe-view-helpers.class.php:295
|
2456 |
-
msgid "Alabama"
|
2457 |
-
msgstr ""
|
2458 |
-
|
2459 |
-
#: ../lib/tribe-view-helpers.class.php:296
|
2460 |
-
msgid "Alaska"
|
2461 |
-
msgstr ""
|
2462 |
-
|
2463 |
-
#: ../lib/tribe-view-helpers.class.php:297
|
2464 |
-
msgid "Arizona"
|
2465 |
-
msgstr ""
|
2466 |
-
|
2467 |
-
#: ../lib/tribe-view-helpers.class.php:298
|
2468 |
-
msgid "Arkansas"
|
2469 |
-
msgstr ""
|
2470 |
-
|
2471 |
-
#: ../lib/tribe-view-helpers.class.php:299
|
2472 |
-
msgid "California"
|
2473 |
-
msgstr ""
|
2474 |
-
|
2475 |
-
#: ../lib/tribe-view-helpers.class.php:300
|
2476 |
-
msgid "Colorado"
|
2477 |
-
msgstr ""
|
2478 |
-
|
2479 |
-
#: ../lib/tribe-view-helpers.class.php:301
|
2480 |
-
msgid "Connecticut"
|
2481 |
-
msgstr ""
|
2482 |
-
|
2483 |
-
#: ../lib/tribe-view-helpers.class.php:302
|
2484 |
-
msgid "Delaware"
|
2485 |
-
msgstr ""
|
2486 |
-
|
2487 |
-
#: ../lib/tribe-view-helpers.class.php:303
|
2488 |
-
msgid "District of Columbia"
|
2489 |
-
msgstr ""
|
2490 |
-
|
2491 |
-
#: ../lib/tribe-view-helpers.class.php:304
|
2492 |
-
msgid "Florida"
|
2493 |
-
msgstr ""
|
2494 |
-
|
2495 |
-
#: ../lib/tribe-view-helpers.class.php:306
|
2496 |
-
msgid "Hawaii"
|
2497 |
-
msgstr ""
|
2498 |
-
|
2499 |
-
#: ../lib/tribe-view-helpers.class.php:307
|
2500 |
-
msgid "Idaho"
|
2501 |
-
msgstr ""
|
2502 |
-
|
2503 |
-
#: ../lib/tribe-view-helpers.class.php:308
|
2504 |
-
msgid "Illinois"
|
2505 |
-
msgstr ""
|
2506 |
-
|
2507 |
-
#: ../lib/tribe-view-helpers.class.php:309
|
2508 |
-
msgid "Indiana"
|
2509 |
-
msgstr ""
|
2510 |
-
|
2511 |
-
#: ../lib/tribe-view-helpers.class.php:310
|
2512 |
-
msgid "Iowa"
|
2513 |
-
msgstr ""
|
2514 |
-
|
2515 |
-
#: ../lib/tribe-view-helpers.class.php:311
|
2516 |
-
msgid "Kansas"
|
2517 |
-
msgstr ""
|
2518 |
-
|
2519 |
-
#: ../lib/tribe-view-helpers.class.php:312
|
2520 |
-
msgid "Kentucky"
|
2521 |
-
msgstr ""
|
2522 |
-
|
2523 |
-
#: ../lib/tribe-view-helpers.class.php:313
|
2524 |
-
msgid "Louisiana"
|
2525 |
-
msgstr ""
|
2526 |
-
|
2527 |
-
#: ../lib/tribe-view-helpers.class.php:314
|
2528 |
-
msgid "Maine"
|
2529 |
-
msgstr ""
|
2530 |
-
|
2531 |
-
#: ../lib/tribe-view-helpers.class.php:315
|
2532 |
-
msgid "Maryland"
|
2533 |
-
msgstr ""
|
2534 |
-
|
2535 |
-
#: ../lib/tribe-view-helpers.class.php:316
|
2536 |
-
msgid "Massachusetts"
|
2537 |
-
msgstr ""
|
2538 |
-
|
2539 |
-
#: ../lib/tribe-view-helpers.class.php:317
|
2540 |
-
msgid "Michigan"
|
2541 |
-
msgstr ""
|
2542 |
-
|
2543 |
-
#: ../lib/tribe-view-helpers.class.php:318
|
2544 |
-
msgid "Minnesota"
|
2545 |
-
msgstr ""
|
2546 |
-
|
2547 |
-
#: ../lib/tribe-view-helpers.class.php:319
|
2548 |
-
msgid "Mississippi"
|
2549 |
-
msgstr ""
|
2550 |
-
|
2551 |
-
#: ../lib/tribe-view-helpers.class.php:320
|
2552 |
-
msgid "Missouri"
|
2553 |
-
msgstr ""
|
2554 |
-
|
2555 |
-
#: ../lib/tribe-view-helpers.class.php:321
|
2556 |
-
msgid "Montana"
|
2557 |
-
msgstr ""
|
2558 |
-
|
2559 |
-
#: ../lib/tribe-view-helpers.class.php:322
|
2560 |
-
msgid "Nebraska"
|
2561 |
-
msgstr ""
|
2562 |
-
|
2563 |
-
#: ../lib/tribe-view-helpers.class.php:323
|
2564 |
-
msgid "Nevada"
|
2565 |
-
msgstr ""
|
2566 |
-
|
2567 |
-
#: ../lib/tribe-view-helpers.class.php:324
|
2568 |
-
msgid "New Hampshire"
|
2569 |
-
msgstr ""
|
2570 |
-
|
2571 |
-
#: ../lib/tribe-view-helpers.class.php:325
|
2572 |
-
msgid "New Jersey"
|
2573 |
-
msgstr ""
|
2574 |
-
|
2575 |
-
#: ../lib/tribe-view-helpers.class.php:326
|
2576 |
-
msgid "New Mexico"
|
2577 |
-
msgstr ""
|
2578 |
-
|
2579 |
-
#: ../lib/tribe-view-helpers.class.php:327
|
2580 |
-
msgid "New York"
|
2581 |
-
msgstr ""
|
2582 |
-
|
2583 |
-
#: ../lib/tribe-view-helpers.class.php:328
|
2584 |
-
msgid "North Carolina"
|
2585 |
-
msgstr ""
|
2586 |
-
|
2587 |
-
#: ../lib/tribe-view-helpers.class.php:329
|
2588 |
-
msgid "North Dakota"
|
2589 |
-
msgstr ""
|
2590 |
-
|
2591 |
-
#: ../lib/tribe-view-helpers.class.php:330
|
2592 |
-
msgid "Ohio"
|
2593 |
-
msgstr ""
|
2594 |
-
|
2595 |
-
#: ../lib/tribe-view-helpers.class.php:331
|
2596 |
-
msgid "Oklahoma"
|
2597 |
-
msgstr ""
|
2598 |
-
|
2599 |
-
#: ../lib/tribe-view-helpers.class.php:332
|
2600 |
-
msgid "Oregon"
|
2601 |
-
msgstr ""
|
2602 |
-
|
2603 |
-
#: ../lib/tribe-view-helpers.class.php:333
|
2604 |
-
msgid "Pennsylvania"
|
2605 |
-
msgstr ""
|
2606 |
-
|
2607 |
-
#: ../lib/tribe-view-helpers.class.php:334
|
2608 |
-
msgid "Rhode Island"
|
2609 |
-
msgstr ""
|
2610 |
-
|
2611 |
-
#: ../lib/tribe-view-helpers.class.php:335
|
2612 |
-
msgid "South Carolina"
|
2613 |
-
msgstr ""
|
2614 |
-
|
2615 |
-
#: ../lib/tribe-view-helpers.class.php:336
|
2616 |
-
msgid "South Dakota"
|
2617 |
-
msgstr ""
|
2618 |
-
|
2619 |
-
#: ../lib/tribe-view-helpers.class.php:337
|
2620 |
-
msgid "Tennessee"
|
2621 |
-
msgstr ""
|
2622 |
-
|
2623 |
-
#: ../lib/tribe-view-helpers.class.php:338
|
2624 |
-
msgid "Texas"
|
2625 |
-
msgstr ""
|
2626 |
-
|
2627 |
-
#: ../lib/tribe-view-helpers.class.php:339
|
2628 |
-
msgid "Utah"
|
2629 |
-
msgstr ""
|
2630 |
-
|
2631 |
-
#: ../lib/tribe-view-helpers.class.php:340
|
2632 |
-
msgid "Vermont"
|
2633 |
-
msgstr ""
|
2634 |
-
|
2635 |
-
#: ../lib/tribe-view-helpers.class.php:341
|
2636 |
-
msgid "Virginia"
|
2637 |
-
msgstr ""
|
2638 |
-
|
2639 |
-
#: ../lib/tribe-view-helpers.class.php:342
|
2640 |
-
msgid "Washington"
|
2641 |
-
msgstr ""
|
2642 |
-
|
2643 |
-
#: ../lib/tribe-view-helpers.class.php:343
|
2644 |
-
msgid "West Virginia"
|
2645 |
-
msgstr ""
|
2646 |
-
|
2647 |
-
#: ../lib/tribe-view-helpers.class.php:344
|
2648 |
-
msgid "Wisconsin"
|
2649 |
-
msgstr ""
|
2650 |
-
|
2651 |
-
#: ../lib/tribe-view-helpers.class.php:345
|
2652 |
-
msgid "Wyoming"
|
2653 |
-
msgstr ""
|
2654 |
-
|
2655 |
-
#: ../lib/widget-list.class.php:16
|
2656 |
-
msgid "A widget that displays the next upcoming x events."
|
2657 |
-
msgstr ""
|
2658 |
-
|
2659 |
-
#: ../lib/widget-list.class.php:70
|
2660 |
-
msgid "View All Events"
|
2661 |
-
msgstr ""
|
2662 |
-
|
2663 |
-
#: ../lib/widget-list.class.php:73
|
2664 |
-
msgid "There are no upcoming events at this time."
|
2665 |
-
msgstr ""
|
2666 |
-
|
2667 |
-
#: ../lib/tickets/tribe-tickets-attendees.php:22
|
2668 |
-
msgid "Order #"
|
2669 |
-
msgstr ""
|
2670 |
-
|
2671 |
-
#: ../lib/tickets/tribe-tickets-attendees.php:23
|
2672 |
-
msgid "Order Status"
|
2673 |
-
msgstr ""
|
2674 |
-
|
2675 |
-
#: ../lib/tickets/tribe-tickets-attendees.php:24
|
2676 |
-
msgid "Ticket"
|
2677 |
-
msgstr ""
|
2678 |
-
|
2679 |
-
#: ../lib/tickets/tribe-tickets-attendees.php:25
|
2680 |
-
msgid "Ticket #"
|
2681 |
-
msgstr ""
|
2682 |
-
|
2683 |
-
#: ../lib/tickets/tribe-tickets-attendees.php:26
|
2684 |
-
msgid "Security Code"
|
2685 |
-
msgstr ""
|
2686 |
-
|
2687 |
-
#: ../lib/tickets/tribe-tickets-attendees.php:27
|
2688 |
-
#: ../lib/tickets/tribe-tickets-attendees.php:69
|
2689 |
-
#: ../lib/tickets/tribe-tickets-attendees.php:97
|
2690 |
-
msgid "Check in"
|
2691 |
-
msgstr ""
|
2692 |
-
|
2693 |
-
#: ../lib/tickets/tribe-tickets-attendees.php:70
|
2694 |
-
#: ../lib/tickets/tribe-tickets-attendees.php:97
|
2695 |
-
msgid "Undo Check in"
|
2696 |
-
msgstr ""
|
2697 |
-
|
2698 |
-
#: ../lib/tickets/tribe-tickets-attendees.php:92
|
2699 |
-
msgid "Filter by ticket #, order # or security code"
|
2700 |
-
msgstr ""
|
2701 |
-
|
2702 |
-
#: ../lib/tickets/tribe-tickets-metabox.php:10
|
2703 |
-
msgid "Tickets"
|
2704 |
-
msgstr ""
|
2705 |
-
|
2706 |
-
#: ../lib/tickets/tribe-tickets.php:162
|
2707 |
-
msgid "EVENT NAME:"
|
2708 |
-
msgstr ""
|
2709 |
-
|
2710 |
-
#: ../lib/tickets/tribe-tickets.php:181
|
2711 |
-
msgid "TICKET HOLDER:"
|
2712 |
-
msgstr ""
|
2713 |
-
|
2714 |
-
#: ../lib/tickets/tribe-tickets.php:183
|
2715 |
-
msgid "LOCATION:"
|
2716 |
-
msgstr ""
|
2717 |
-
|
2718 |
-
#: ../lib/tickets/tribe-tickets.php:234
|
2719 |
-
msgid "ORDER:"
|
2720 |
-
msgstr ""
|
2721 |
-
|
2722 |
-
#: ../lib/tickets/tribe-tickets.php:236
|
2723 |
-
msgid "TICKET:"
|
2724 |
-
msgstr ""
|
2725 |
-
|
2726 |
-
#: ../lib/tickets/tribe-tickets.php:238
|
2727 |
-
msgid "VERIFICATION:"
|
2728 |
-
msgstr ""
|
2729 |
-
|
2730 |
-
#: ../lib/tickets/tribe-tickets.php:322
|
2731 |
-
msgid "Your ticket has been saved."
|
2732 |
-
msgstr ""
|
2733 |
-
|
2734 |
-
#: ../lib/tickets/tribe-tickets.php:376
|
2735 |
-
msgid "Your ticket has been deleted."
|
2736 |
-
msgstr ""
|
2737 |
-
|
2738 |
-
#: ../lib/tickets/tribe-tickets.php:446
|
2739 |
-
msgid "See who purchased tickets to this event"
|
2740 |
-
msgstr ""
|
2741 |
-
|
2742 |
-
#: ../public/template-tags/general.php:120
|
2743 |
-
msgid "Category:"
|
2744 |
-
msgstr ""
|
2745 |
-
|
2746 |
-
#: ../public/template-tags/general.php:140
|
2747 |
-
msgid "Tags:"
|
2748 |
-
msgstr ""
|
2749 |
-
|
2750 |
-
#: ../public/template-tags/general.php:260
|
2751 |
-
msgid "Free"
|
2752 |
-
msgstr ""
|
2753 |
-
|
2754 |
-
#: ../public/template-tags/loop.php:130
|
2755 |
-
msgid "Calendar of Events"
|
2756 |
-
msgstr ""
|
2757 |
-
|
2758 |
-
#: ../vendor/wp-router/WP_Route.class.php:36
|
2759 |
-
#, php-format
|
2760 |
-
msgid "Missing %s"
|
2761 |
-
msgstr ""
|
2762 |
-
|
2763 |
-
#: ../vendor/wp-router/WP_Route.class.php:63
|
2764 |
-
#, php-format
|
2765 |
-
msgid "Property not found: %s."
|
2766 |
-
msgstr ""
|
2767 |
-
|
2768 |
-
#: ../vendor/wp-router/WP_Route.class.php:77
|
2769 |
-
#, php-format
|
2770 |
-
msgid "Invalid value for %s. Value may not be empty."
|
2771 |
-
msgstr ""
|
2772 |
-
|
2773 |
-
#: ../vendor/wp-router/WP_Route.class.php:80
|
2774 |
-
#, php-format
|
2775 |
-
msgid "Invalid value for %1$s: %2$s. Value must be an array."
|
2776 |
-
msgstr ""
|
2777 |
-
|
2778 |
-
#: ../vendor/wp-router/WP_Route.class.php:250
|
2779 |
-
msgid "You are not authorized to access this page"
|
2780 |
-
msgstr ""
|
2781 |
-
|
2782 |
-
#: ../vendor/wp-router/WP_Route.class.php:251
|
2783 |
-
msgid "Access Denied"
|
2784 |
-
msgstr ""
|
2785 |
-
|
2786 |
-
#: ../vendor/wp-router/WP_Router_Page.class.php:78
|
2787 |
-
msgid "WP Router Placeholder Page"
|
2788 |
-
msgstr ""
|
2789 |
-
|
2790 |
-
#: ../vendor/wp-router/WP_Router_Utility.class.php:49
|
2791 |
-
#, php-format
|
2792 |
-
msgid "%1$s requires WordPress %2$s or higher and PHP %3$s or higher."
|
2793 |
-
msgstr ""
|
2794 |
-
|
2795 |
-
#: ../views/ecp-single-template.php:24
|
2796 |
-
msgid "Edit"
|
2797 |
-
msgstr ""
|
2798 |
-
|
2799 |
-
#: ../views/events-list-load-widget-display.php:52
|
2800 |
-
msgid "All Day"
|
2801 |
-
msgstr ""
|
2802 |
-
|
2803 |
-
#: ../views/gridview.php:34 ../views/list.php:18
|
2804 |
-
msgid "Event List"
|
2805 |
-
msgstr ""
|
2806 |
-
|
2807 |
-
#: ../views/gridview.php:40 ../views/list.php:169 ../views/single.php:103
|
2808 |
-
msgid "iCal Import"
|
2809 |
-
msgstr ""
|
2810 |
-
|
2811 |
-
#: ../views/gridview.php:43
|
2812 |
-
#, php-format
|
2813 |
-
msgid "Calendar powered by %sThe Events Calendar%s"
|
2814 |
-
msgstr ""
|
2815 |
-
|
2816 |
-
#: ../views/list.php:53 ../views/single.php:22
|
2817 |
-
msgid "Start:"
|
2818 |
-
msgstr ""
|
2819 |
-
|
2820 |
-
#: ../views/list.php:57 ../views/single.php:24
|
2821 |
-
msgid "End:"
|
2822 |
-
msgstr ""
|
2823 |
-
|
2824 |
-
#: ../views/list.php:62 ../views/single.php:27
|
2825 |
-
msgid "Date:"
|
2826 |
-
msgstr ""
|
2827 |
-
|
2828 |
-
#: ../views/list.php:72 ../views/single.php:61
|
2829 |
-
msgid "Venue:"
|
2830 |
-
msgstr ""
|
2831 |
-
|
2832 |
-
#: ../views/list.php:95 ../views/single.php:78
|
2833 |
-
msgid "Google Map"
|
2834 |
-
msgstr ""
|
2835 |
-
|
2836 |
-
#: ../views/list.php:120
|
2837 |
-
#, php-format
|
2838 |
-
msgid ""
|
2839 |
-
" listed under %s. Check out past events for this category or view the full "
|
2840 |
-
"calendar."
|
2841 |
-
msgstr ""
|
2842 |
-
|
2843 |
-
#: ../views/list.php:122
|
2844 |
-
#, php-format
|
2845 |
-
msgid ""
|
2846 |
-
" listed under %s. Check out upcoming events for this category or view the "
|
2847 |
-
"full calendar."
|
2848 |
-
msgstr ""
|
2849 |
-
|
2850 |
-
#: ../views/list.php:127
|
2851 |
-
#, php-format
|
2852 |
-
msgid "No events scheduled for <strong>%s</strong>. Please try another day."
|
2853 |
-
msgstr ""
|
2854 |
-
|
2855 |
-
#: ../views/list.php:131
|
2856 |
-
msgid "No upcoming events"
|
2857 |
-
msgstr ""
|
2858 |
-
|
2859 |
-
#: ../views/list.php:135
|
2860 |
-
msgid "No previous events"
|
2861 |
-
msgstr ""
|
2862 |
-
|
2863 |
-
#: ../views/list.php:148 ../views/list.php:150 ../views/list.php:152
|
2864 |
-
msgid "« Previous Events"
|
2865 |
-
msgstr ""
|
2866 |
-
|
2867 |
-
#: ../views/list.php:159 ../views/list.php:161 ../views/list.php:163
|
2868 |
-
msgid "Next Events »"
|
2869 |
-
msgstr ""
|
2870 |
-
|
2871 |
-
#: ../views/single.php:12
|
2872 |
-
msgid "« Back to Events"
|
2873 |
-
msgstr ""
|
2874 |
-
|
2875 |
-
#: ../views/single.php:16
|
2876 |
-
msgid "This event has passed."
|
2877 |
-
msgstr ""
|
2878 |
-
|
2879 |
-
#: ../views/single.php:19
|
2880 |
-
msgid "Event:"
|
2881 |
-
msgstr ""
|
2882 |
-
|
2883 |
-
#: ../views/single.php:36 ../views/single.php:39
|
2884 |
-
msgid "Organizer:"
|
2885 |
-
msgstr ""
|
2886 |
-
|
2887 |
-
#: ../views/single.php:50
|
2888 |
-
msgid "Updated:"
|
2889 |
-
msgstr ""
|
2890 |
-
|
2891 |
-
#: ../views/single.php:53
|
2892 |
-
msgid "Schedule:"
|
2893 |
-
msgstr ""
|
2894 |
-
|
2895 |
-
#: ../views/single.php:78
|
2896 |
-
msgid "Click to view a Google Map"
|
2897 |
-
msgstr ""
|
2898 |
-
|
2899 |
-
#: ../views/single.php:106
|
2900 |
-
msgid "Add to Google Calendar"
|
2901 |
-
msgstr ""
|
2902 |
-
|
2903 |
-
#: ../views/single.php:106
|
2904 |
-
msgid "+ Google Calendar"
|
2905 |
-
msgstr ""
|
2906 |
-
|
2907 |
-
#: ../views/table-mini.php:117
|
2908 |
-
msgid "View all »"
|
2909 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/tribe-events-calendar-de_DE.mo
CHANGED
Binary file
|
lang/tribe-events-calendar-de_DE.po
CHANGED
@@ -1,4152 +1,4252 @@
|
|
1 |
-
# The Events Calendar by Modern Tribe, Inc.
|
2 |
-
# Copyright (C) Modern Tribe, Inc.
|
3 |
-
# This file is distributed under the same license as the The Events Calendar package.
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
-
"Project-Id-Version: The Events Calendar\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
"POT-Creation-Date: 2013-07-02 11:27-0800\n"
|
9 |
-
"PO-Revision-Date: 2013-
|
10 |
"Last-Translator: Thomas Butzek <ThomasButzek@live.de>\n"
|
11 |
"Language-Team: DECKERWEB <deckerweb.mobil@googlemail.com>\n"
|
12 |
-
"Language: de_DE\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
|
|
|
|
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
19 |
-
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
20 |
"X-Poedit-Basepath: ./\n"
|
21 |
-
"X-
|
22 |
-
"X-Generator: Poedit 1.5.7\n"
|
23 |
"X-Poedit-SearchPath-0: ..\n"
|
|
|
24 |
|
25 |
-
|
26 |
-
|
27 |
-
#: ../admin-views/app-shop.php:4
|
28 |
msgid "Tribe Event Add-Ons"
|
29 |
-
msgstr "Tribe
|
30 |
|
31 |
-
#:
|
|
|
32 |
msgid "Version"
|
33 |
msgstr "Version"
|
34 |
|
35 |
-
|
36 |
-
|
37 |
msgid "Last Update"
|
38 |
msgstr "Letzte Aktualisierung"
|
39 |
|
40 |
-
|
41 |
-
|
42 |
msgid "Hide From Event Listings"
|
43 |
msgstr "Auf der Veranstaltungsliste verstecken"
|
44 |
|
45 |
-
#:
|
|
|
46 |
msgid "Sticky in Calendar View"
|
47 |
msgstr "Hervorheben in der Kalenderansicht"
|
48 |
|
49 |
-
|
50 |
-
|
51 |
-
#: ../admin-views/events-audit-trail.php:41
|
52 |
msgid "Auditing Information"
|
53 |
msgstr "Informationen zur Prüfung"
|
54 |
|
55 |
-
#:
|
|
|
56 |
msgid "Created by:"
|
57 |
msgstr "Erstellt von"
|
58 |
|
59 |
-
#:
|
|
|
60 |
msgid "Audit Trail:"
|
61 |
-
msgstr "
|
62 |
|
63 |
-
|
64 |
-
|
65 |
msgid "Event Time & Date"
|
66 |
-
msgstr "Veranstaltungsdatum und
|
67 |
|
68 |
-
|
69 |
-
|
70 |
-
msgid ""
|
71 |
-
"
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
"Sie haben die Wiederholungs-Regeln für diese Veranstaltung verä"
|
76 |
-
"ndert. Wenn Sie die Veranstaltung nun damit speichern, werden auch alle "
|
77 |
-
"damit verbundenen und in der Zukunft liegenden Veranstaltungen so "
|
78 |
-
"aktualisiert. Wenn Sie dies nicht vorhatten, dann laden Sie bitte diese "
|
79 |
-
"Seite neu (aber nicht 'Speichern' / 'Aktualisieren')."
|
80 |
-
|
81 |
-
# @ tribe-events-calendar
|
82 |
-
#
|
83 |
-
#: ../admin-views/events-meta-box.php:35
|
84 |
msgid "All Day Event:"
|
85 |
msgstr "Ganztägige Veranstaltung"
|
86 |
|
87 |
-
|
88 |
-
|
89 |
-
#: ../admin-views/events-meta-box.php:39
|
90 |
msgid "Start Date & Time:"
|
91 |
-
msgstr "Anfangsdatum und
|
92 |
|
93 |
-
|
94 |
-
#:
|
|
|
95 |
msgid "YYYY-MM-DD"
|
96 |
msgstr "TT.MM.JJJJ"
|
97 |
|
98 |
-
|
99 |
-
|
100 |
-
#: ../admin-views/events-meta-box.php:60
|
101 |
msgid "End Date & Time:"
|
102 |
-
msgstr "Enddatum und
|
103 |
|
104 |
-
|
105 |
-
|
106 |
msgid "Event Location Details"
|
107 |
msgstr "Informationen zum Veranstaltungsort"
|
108 |
|
109 |
-
|
110 |
-
|
111 |
msgid "Event Organizer Details"
|
112 |
msgstr "Informationen zum Veranstalter"
|
113 |
|
114 |
-
|
115 |
-
|
116 |
-
#: ../admin-views/events-meta-box.php:101
|
117 |
msgid "Event Website"
|
118 |
msgstr "Veranstaltungswebseite"
|
119 |
|
120 |
-
#:
|
|
|
121 |
msgid "URL:"
|
122 |
msgstr "URL:"
|
123 |
|
124 |
-
|
125 |
-
#:
|
|
|
126 |
msgid "Event Cost"
|
127 |
-
msgstr "
|
128 |
|
129 |
-
#:
|
|
|
130 |
msgid "Currency Symbol:"
|
131 |
msgstr "Währungssymbol:"
|
132 |
|
133 |
-
|
134 |
-
#:
|
135 |
-
|
136 |
msgid "Cost:"
|
137 |
-
msgstr "
|
138 |
|
139 |
-
#:
|
|
|
140 |
msgid "Enter a 0 for events that are free or leave blank to hide the field."
|
141 |
-
msgstr ""
|
142 |
-
"Geben Sie 0 ein, für eine kostenlose Veranstaltung oder lassen Sie das Feld "
|
143 |
-
"frei, um es zu verbergen."
|
144 |
|
145 |
-
|
146 |
-
|
147 |
msgid "Organizer Name:"
|
148 |
-
msgstr "
|
149 |
-
|
150 |
-
|
151 |
-
#:
|
152 |
-
#:
|
153 |
-
#:
|
154 |
-
#:
|
155 |
-
|
156 |
msgid "Phone:"
|
157 |
msgstr "Telefon:"
|
158 |
|
159 |
-
|
160 |
-
#:
|
161 |
-
#:
|
162 |
-
#:
|
163 |
-
#:
|
164 |
-
#:
|
165 |
-
|
166 |
msgid "Website:"
|
167 |
msgstr "Webseite:"
|
168 |
|
169 |
-
|
170 |
-
#:
|
171 |
-
|
172 |
msgid "Email:"
|
173 |
msgstr "E-Mail:"
|
174 |
|
175 |
-
#:
|
176 |
-
|
177 |
-
"Would you like to change only this instance of the event, or all future "
|
178 |
-
"
|
179 |
-
msgstr ""
|
180 |
-
"Wollen Sie nur diese Veranstaltung ändern oder alle Veranstaltungen der Reihe"
|
181 |
|
182 |
-
#:
|
183 |
-
#:
|
|
|
184 |
msgid "Only This Event:"
|
185 |
msgstr "Nur diese Veranstaltung:"
|
186 |
|
187 |
-
#:
|
|
|
188 |
msgid "All other future events in the series will remain the same."
|
189 |
-
msgstr "Alle weiteren Veranstaltungen bleiben unverändert"
|
190 |
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
#: ../admin-views/recurrence-dialog.php:24
|
195 |
msgid "All Events:"
|
196 |
msgstr "Alle Veranstaltungen:"
|
197 |
|
198 |
-
#:
|
199 |
-
|
200 |
-
"All future events in the series will be changed. Any changes made to other "
|
201 |
-
"
|
202 |
-
msgstr "Alle Veranstaltungen der Reihe werden geändert."
|
203 |
|
204 |
-
#:
|
205 |
-
|
206 |
-
"Would you like to delete only this instance of the event, or all future "
|
207 |
-
"
|
208 |
-
msgstr ""
|
209 |
-
"Möchten Sie nur diese Veranstaktung der Reihe, oder alle Veranstaltungen der "
|
210 |
-
"Reihe löschen?"
|
211 |
|
212 |
-
#:
|
|
|
213 |
msgid "All other future events in the series will not be deleted."
|
214 |
-
msgstr "Alle weiteren
|
215 |
|
216 |
-
#:
|
|
|
217 |
msgid "All future events in the series will be deleted."
|
218 |
-
msgstr "Alle weiteren Veranstaltungen der
|
219 |
|
220 |
-
|
221 |
-
|
222 |
msgid "Default Events Template"
|
223 |
msgstr "Standard Veranstaltungsvorlage"
|
224 |
|
225 |
-
|
226 |
-
|
227 |
msgid "Default Page Template"
|
228 |
msgstr "Standard-Seitenvorlage (WordPress)"
|
229 |
|
230 |
-
|
231 |
-
|
232 |
-
#: ../admin-views/tribe-options-display.php:29
|
233 |
msgid "Display Settings"
|
234 |
-
msgstr "
|
235 |
|
236 |
-
#:
|
237 |
-
#, fuzzy, php-format
|
238 |
-
|
239 |
-
"<p>The settings below control the display of your calendar. If things don't "
|
240 |
-
"
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
"create a new view? Grab a copy of the <a href=\"%s\">Sample Agenda View "
|
245 |
-
"plugin from Github</a></p>"
|
246 |
-
msgstr ""
|
247 |
-
"<p>Die Einstellungen kontrollieren die Ansicht von Ihrem Kalender. Falls "
|
248 |
-
"etwas nicht richtig angezeigt wird, versuchen Sie zwischen den drei "
|
249 |
-
"Stylingoptionen zu wechseln oder nutzen Sie ein Template von Ihrem Theme.</"
|
250 |
-
"p><p>Das mitgelieferte Template wird nicht für jeden Zweck optimal passen. "
|
251 |
-
"Lesen Sie dazu <a href=\"%s\">Unseren \"Themer's guide\"</a> für "
|
252 |
-
"Informationen zu eigenen Modifikationen. Wenn Sie eine neue Ansichtsoption "
|
253 |
-
"erstellen wollen, nutzen Sie eine Kopie von <a href=\"%s\">Sample Agenda "
|
254 |
-
"View plugin from Github</a></p>"
|
255 |
-
|
256 |
-
# @ tribe-events-calendar
|
257 |
-
#
|
258 |
-
#: ../admin-views/tribe-options-display.php:49
|
259 |
msgid "Basic Template Settings"
|
260 |
-
msgstr "
|
261 |
|
262 |
-
|
263 |
-
|
264 |
-
#: ../admin-views/tribe-options-display.php:53
|
265 |
msgid "Default stylesheet used for events templates"
|
266 |
-
msgstr "Standard
|
267 |
|
268 |
-
#:
|
|
|
269 |
msgid "Skeleton Styles"
|
270 |
-
msgstr "
|
271 |
|
272 |
-
#:
|
273 |
-
|
274 |
-
"Only includes enough css to achieve complex layouts like calendar and week "
|
275 |
-
"
|
276 |
-
msgstr ""
|
277 |
|
278 |
-
#:
|
|
|
279 |
msgid "Full Styles"
|
280 |
msgstr "Kompletter Style"
|
281 |
|
282 |
-
#:
|
|
|
283 |
msgid "More detailed styling, tries to grab styles from your theme."
|
284 |
-
msgstr ""
|
285 |
|
286 |
-
|
287 |
-
|
288 |
-
#: ../admin-views/tribe-options-display.php:64
|
289 |
msgid "Tribe Events Styles"
|
290 |
-
msgstr "Tribe Style"
|
291 |
|
292 |
-
#:
|
|
|
293 |
msgid "A fully designed and styled theme for your events pages."
|
294 |
-
msgstr ""
|
295 |
|
296 |
-
|
297 |
-
|
298 |
-
#: ../admin-views/tribe-options-display.php:73
|
299 |
msgid "Events template"
|
300 |
-
msgstr "
|
301 |
|
302 |
-
|
303 |
-
|
304 |
-
msgid ""
|
305 |
-
"
|
306 |
-
"content."
|
307 |
-
msgstr ""
|
308 |
-
"Wählen Sie eine Seitentemplate in dem der Veranstaltungskalender angezeigt "
|
309 |
-
"wird."
|
310 |
|
311 |
-
#:
|
|
|
312 |
msgid "Enable event views"
|
313 |
msgstr "Veranstaltungsansicht wählen"
|
314 |
|
315 |
-
#:
|
|
|
316 |
msgid "You must select at least one view."
|
317 |
-
msgstr "Es muss mindestens eine Ansicht gewählt werden"
|
318 |
|
319 |
-
#:
|
|
|
320 |
msgid "Default view"
|
321 |
msgstr "Standardansicht"
|
322 |
|
323 |
-
#:
|
324 |
#, fuzzy
|
|
|
325 |
msgid "Disable the Event Search Bar"
|
326 |
-
msgstr "
|
327 |
|
328 |
-
#:
|
329 |
#, fuzzy
|
|
|
330 |
msgid "Check this to use the classic header."
|
331 |
-
msgstr "
|
332 |
|
333 |
-
|
334 |
-
|
335 |
-
#: ../admin-views/tribe-options-display.php:105
|
336 |
msgid "Advanced Template Settings"
|
337 |
-
msgstr "Erweiterte
|
338 |
|
339 |
-
|
340 |
-
|
341 |
-
#: ../admin-views/tribe-options-display.php:109
|
342 |
msgid "Add HTML before event content"
|
343 |
-
msgstr "
|
344 |
|
345 |
-
#:
|
346 |
-
|
347 |
-
"If you are familiar with HTML, you can add additional code before the event "
|
348 |
-
"
|
349 |
-
msgstr ""
|
350 |
-
"Wenn Sie mit HTML vertraut sind, können Sie Code vor dem "
|
351 |
-
"Veranstaltungstemplate einfügen. Bei einigen Themes kann dies erforderlich "
|
352 |
-
"sein, um es in das Layout einzufügen"
|
353 |
|
354 |
-
|
355 |
-
|
356 |
-
#: ../admin-views/tribe-options-display.php:115
|
357 |
msgid "Add HTML after event content"
|
358 |
-
msgstr "
|
359 |
|
360 |
-
#:
|
361 |
-
|
362 |
-
"If you are familiar with HTML, you can add additional code after the event "
|
363 |
-
"
|
364 |
-
msgstr ""
|
365 |
-
"Wenn Sie mit HTML vertraut sind, können Sie Code hinter dem "
|
366 |
-
"Veranstaltungstemplate einfügen. Bei einigen Themes kann dies erforderlich "
|
367 |
-
"sein, um es in das Layout einzufügen"
|
368 |
|
369 |
-
#:
|
|
|
370 |
msgid "Finding & extending your calendar."
|
371 |
msgstr "Ihren Kalender finden und erweitern."
|
372 |
|
373 |
-
#:
|
|
|
374 |
msgid "Finding your calendar."
|
375 |
msgstr "Ihren Kalender finden."
|
376 |
|
377 |
-
|
378 |
-
|
379 |
-
#: ../admin-views/tribe-options-general.php:24
|
380 |
msgid "Where's my calendar?"
|
381 |
msgstr "Wo ist mein Kalender?"
|
382 |
|
383 |
-
#:
|
|
|
384 |
msgid "Right here"
|
385 |
msgstr "Genau hier"
|
386 |
|
387 |
-
|
388 |
-
|
389 |
-
msgid ""
|
390 |
-
"
|
391 |
-
"meta, community events, ticket sales and more?"
|
392 |
-
msgstr ""
|
393 |
-
"Wünschen Sie erweiterte Funktionalität, einschließlich "
|
394 |
-
"wiederkehrender Veranstaltungen, benutzerdefinierten Meta-Informationen, "
|
395 |
-
"Community-Veranstaltungen, Ticketverkäufen und mehr?"
|
396 |
|
397 |
-
|
398 |
-
|
399 |
msgid "Check out the available add-ons"
|
400 |
msgstr "Schauen Sie sich die verfügbaren Erweiterungen an"
|
401 |
|
402 |
-
#:
|
|
|
403 |
msgid "We hope our plugin is helping you out."
|
404 |
-
msgstr "Wir hoffen,
|
405 |
|
406 |
-
#:
|
407 |
-
|
408 |
-
"Are you thinking \"Wow, this plugin is amazing! I should say thanks to "
|
409 |
-
"Modern Tribe
|
410 |
-
"is recognition. Add a small text-only link at the bottom of your calendar "
|
411 |
-
"pointing to The Events Calendar project."
|
412 |
-
msgstr ""
|
413 |
-
"Sie finden: \"Wow, das Plugin ist fantastisch! Ich sollte Modern Tribe dafür "
|
414 |
-
"danken!\" Der beste Dank ist ein kleiner Link zu uns, am unteren Ende der "
|
415 |
-
"Veranstaltungskalenders."
|
416 |
|
417 |
-
#:
|
418 |
-
#:
|
|
|
419 |
msgid "See an example of the link"
|
420 |
-
msgstr "
|
421 |
|
422 |
-
#:
|
423 |
-
|
424 |
-
"Are you thinking \"Wow, this plugin is amazing! I should say thanks to "
|
425 |
-
"Modern Tribe
|
426 |
-
"is recognition. Add a small text only link at the bottom of your calendar "
|
427 |
-
"pointing to The Events Calendar project."
|
428 |
-
msgstr ""
|
429 |
-
"Sie finden: \"Wow, das Plugin ist fantastisch! Ich sollte Modern Tribe dafür "
|
430 |
-
"danken!\" Der beste Dank ist ein kleiner Link zu uns, am unteren Ende der "
|
431 |
-
"Veranstaltungskalenders."
|
432 |
|
433 |
-
|
434 |
-
|
435 |
-
#: ../admin-views/tribe-options-general.php:47
|
436 |
msgid "Show The Events Calendar link"
|
437 |
-
msgstr "Den Link anzeigen"
|
438 |
|
439 |
-
|
440 |
-
|
441 |
-
#: ../admin-views/tribe-options-general.php:61
|
442 |
msgid "General Settings"
|
443 |
msgstr "Allgemeine Einstellungen"
|
444 |
|
445 |
-
#:
|
|
|
446 |
msgid "Number of events to show per page"
|
447 |
msgstr "Anzahl der Veranstaltungen pro Seite"
|
448 |
|
449 |
-
#:
|
450 |
-
|
451 |
-
msgstr "Javascript zum laden der Seite nutzen"
|
452 |
-
|
453 |
-
#: ../admin-views/tribe-options-general.php:73
|
454 |
-
msgid "Enable ajax to live refresh content."
|
455 |
-
msgstr "Aktivieren Sie Ajax und laden Sie neu."
|
456 |
-
|
457 |
-
# @ tribe-events-calendar
|
458 |
-
#
|
459 |
-
#: ../admin-views/tribe-options-general.php:79
|
460 |
msgid "Show comments"
|
461 |
msgstr "Kommentare anzeigen"
|
462 |
|
463 |
-
#:
|
|
|
464 |
msgid "Enable comments on event pages."
|
465 |
msgstr "Kommentare auf den Veranstaltungsseiten aktivieren."
|
466 |
|
467 |
-
#:
|
|
|
468 |
msgid "Include events in main blog loop"
|
469 |
-
msgstr "Veranstaltungen im
|
470 |
|
471 |
-
#:
|
472 |
-
|
473 |
-
"Show events with the site's other posts. When this box is checked, events "
|
474 |
-
"
|
475 |
-
msgstr "Veranstaltungen gemeinsam mit anderen Beiträgen anzeigen."
|
476 |
|
477 |
-
|
478 |
-
#:
|
479 |
-
|
480 |
msgid "Events URL slug"
|
481 |
msgstr "URL-Slug für Veranstaltungen (Permalink/ Titelform)"
|
482 |
|
483 |
-
#:
|
484 |
#, php-format
|
485 |
-
|
486 |
-
"You cannot edit the slug for your events page as you do not have pretty "
|
487 |
-
"
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
"Link zum Veranstaltungskalender nicht bearbeiten. Die aktuelle URL der "
|
493 |
-
"Veranstaltungsseite ist: <a href=\"%s\">%s</a>. Um die URL's zu ändern "
|
494 |
-
"gehen Si zu <a href=\"%soptions-permalink.php\">Benutzerdefinierte "
|
495 |
-
"Permalinks aktivieren</a>."
|
496 |
-
|
497 |
-
# @ tribe-events-calendar
|
498 |
-
#: ../admin-views/tribe-options-general.php:106
|
499 |
-
#: ../public/template-tags/options.php:20
|
500 |
msgid "The slug used for building the events URL."
|
501 |
-
msgstr "
|
502 |
|
503 |
-
|
504 |
-
#: ../admin-views/tribe-options-general.php:106
|
505 |
#, php-format
|
|
|
506 |
msgid "Your current events URL is: %s"
|
507 |
msgstr "Die aktuelle URL für Veranataltungen ist: %s"
|
508 |
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
#: ../public/template-tags/options.php:43
|
513 |
msgid "Here is the iCal feed URL for your events:"
|
514 |
-
msgstr "Hier befindet sich
|
515 |
|
516 |
-
|
517 |
-
|
518 |
-
#: ../admin-views/tribe-options-general.php:116
|
519 |
msgid "Single event URL slug"
|
520 |
-
msgstr "Die URL für einzelne Veranstaltungen
|
521 |
|
522 |
-
|
523 |
-
#: ../admin-views/tribe-options-general.php:123
|
524 |
#, php-format
|
525 |
-
|
526 |
-
"The above should ideally be plural, and this singular.<br />Your single "
|
527 |
-
"
|
528 |
-
msgstr ""
|
529 |
-
"Die obere sollte idealer Weise im Plural geschireben werden, diese im "
|
530 |
-
"Singular <br />Ihre Veranstaltungs URL ist: %s "
|
531 |
|
532 |
-
#:
|
|
|
533 |
msgid "End of day cutoff"
|
534 |
msgstr "Neuer Tag ab"
|
535 |
|
536 |
-
#:
|
537 |
-
|
538 |
-
"Have events that run past midnight? Control when your day official ends to "
|
539 |
-
"avoid awkwardly adding your event to the next day."
|
540 |
-
msgstr ""
|
541 |
-
"Sie haben Veranstaltung die bis nach Mitternacht gehen? Dann definieren Sie "
|
542 |
-
"hier den maximalen Endzeitpunkt, damit die Veranstaltung nicht an zwei Tagen "
|
543 |
-
"angezeigt wird."
|
544 |
-
|
545 |
-
#: ../admin-views/tribe-options-general.php:141
|
546 |
msgid "Default currency symbol"
|
547 |
msgstr "Standard Währungssymbol"
|
548 |
|
549 |
-
#:
|
550 |
-
|
551 |
-
"Set the default currency symbol for event costs. Note that this only impacts "
|
552 |
-
"
|
553 |
-
msgstr "Legen Sie das Standard Symbol für die Veranstaltungspreise fest."
|
554 |
|
555 |
-
|
556 |
-
|
557 |
-
#: ../admin-views/tribe-options-general.php:149
|
558 |
msgid "Map Settings"
|
559 |
msgstr "Karten Einstellungen"
|
560 |
|
561 |
-
|
562 |
-
|
563 |
msgid "Enable Google Maps"
|
564 |
msgstr "'Google Maps'-Karten aktivieren"
|
565 |
|
566 |
-
#:
|
|
|
567 |
msgid "Check to enable maps for events and venues."
|
568 |
-
msgstr ""
|
569 |
-
"Markieren um Veranstaltungen und Veranstaltungsorte in einer Karte an zu "
|
570 |
-
"zeigen."
|
571 |
|
572 |
-
#:
|
573 |
#, fuzzy
|
|
|
574 |
msgid "Google Maps default zoom level"
|
575 |
msgstr "Google Maps Standard Zoomstufe"
|
576 |
|
577 |
-
#:
|
|
|
578 |
msgid "0 = zoomed out; 21 = zoomed in."
|
579 |
-
msgstr "0 = max herausgezoomt, 21 = maximal
|
580 |
|
581 |
-
|
582 |
-
|
583 |
-
#: ../admin-views/tribe-options-general.php:170
|
584 |
msgid "Miscellaneous Settings"
|
585 |
msgstr "Verschiedene Einstellungen"
|
586 |
|
587 |
-
#:
|
|
|
588 |
msgid "Duplicate Venues & Organizers"
|
589 |
-
msgstr "
|
590 |
|
591 |
-
#:
|
592 |
-
#:
|
|
|
593 |
msgid "Merge Duplicates"
|
594 |
-
msgstr "
|
595 |
|
596 |
-
#:
|
597 |
-
|
598 |
-
"You might find duplicate venues and organizers when updating The Events "
|
599 |
-
"
|
600 |
-
"identical venues and organizers."
|
601 |
-
msgstr ""
|
602 |
-
"Sie können nach Dublikaten von Veranstalungsorten und Veranstalter suchen. "
|
603 |
-
"Klicken Sie den Knopf und es werden gleiche zusammen gefügt."
|
604 |
|
605 |
-
|
606 |
-
|
607 |
-
#: ../admin-views/tribe-options-general.php:179
|
608 |
msgid "Debug mode"
|
609 |
msgstr "Debug Modus"
|
610 |
|
611 |
-
|
612 |
-
#: ../admin-views/tribe-options-general.php:185
|
613 |
#, php-format
|
614 |
-
|
615 |
-
"Enable this option to log debug information. By default this will log to "
|
616 |
-
"
|
617 |
-
"browser, then we recommend that you install the %s and look for the \"Tribe"
|
618 |
-
"\" tab in the debug output."
|
619 |
-
msgstr ""
|
620 |
-
"Aktivieren Sie die Option, um Debuginformationen mit zu loggen. Wir "
|
621 |
-
"empfehlen den %s zu installieren Und nach dem \"Tribe\" Tab zu suchen. "
|
622 |
|
623 |
-
#:
|
|
|
624 |
msgid "Debug Bar Plugin"
|
625 |
msgstr "Debug Bar Plugin"
|
626 |
|
627 |
-
#:
|
|
|
628 |
msgctxt "not available"
|
629 |
msgid "n/a"
|
630 |
msgstr "nicht verfügbar"
|
631 |
|
632 |
-
#:
|
|
|
633 |
msgid "You need to upgrade!"
|
634 |
-
msgstr "Sie
|
635 |
|
636 |
-
#:
|
|
|
637 |
msgid "You are up to date!"
|
638 |
msgstr "Sie sind auf dem neuesten Stand!"
|
639 |
|
640 |
-
|
641 |
-
|
642 |
-
#: ../admin-views/tribe-options-help.php:42
|
643 |
msgid "The Events Calendar PRO"
|
644 |
msgstr "Der Events Calendar PRO"
|
645 |
|
646 |
-
#:
|
|
|
647 |
msgid "Eventbrite Tickets"
|
648 |
msgstr "Eventbrite Tickets"
|
649 |
|
650 |
-
|
651 |
-
|
652 |
-
#: ../admin-views/tribe-options-help.php:50
|
653 |
msgid "Community Events"
|
654 |
msgstr "Community Events"
|
655 |
|
656 |
-
|
657 |
-
|
658 |
-
#: ../admin-views/tribe-options-help.php:54
|
659 |
msgid "Facebook Events"
|
660 |
msgstr "Facebook Events"
|
661 |
|
662 |
-
#:
|
|
|
663 |
msgid "WooTickets"
|
664 |
msgstr "WooTickets"
|
665 |
|
666 |
-
#:
|
|
|
667 |
msgid "Faceted Filters"
|
668 |
msgstr "Faceted Filters"
|
669 |
|
670 |
-
#:
|
|
|
671 |
msgid "Documentation"
|
672 |
msgstr "Dokumentation"
|
673 |
|
674 |
-
#:
|
|
|
675 |
msgid "FAQ"
|
676 |
msgstr "FAQ"
|
677 |
|
678 |
-
#:
|
679 |
-
#:
|
680 |
-
#:
|
681 |
-
#:
|
|
|
682 |
msgid "Help"
|
683 |
msgstr "Hilfe"
|
684 |
|
685 |
-
#:
|
|
|
686 |
msgid "Tutorials"
|
687 |
msgstr "Tutorials"
|
688 |
|
689 |
-
#:
|
|
|
690 |
msgid "Release Notes"
|
691 |
msgstr "Release Notes"
|
692 |
|
693 |
-
#:
|
|
|
694 |
msgid "Forums"
|
695 |
msgstr "Foren"
|
696 |
|
697 |
-
#:
|
698 |
-
|
699 |
-
"If this is your first time using The Events Calendar, you're in for a treat "
|
700 |
-
"
|
701 |
-
"basics we've found helpful for users jumping into it for the first time:"
|
702 |
-
msgstr ""
|
703 |
|
704 |
-
#:
|
705 |
#, php-format
|
706 |
-
|
707 |
-
"%sOur New User Primer%s was designed for folks in your exact position. "
|
708 |
-
"
|
709 |
-
"accompanying screenshots, the primer aims to take you from zero to hero in "
|
710 |
-
"no time."
|
711 |
-
msgstr ""
|
712 |
|
713 |
-
#:
|
714 |
#, php-format
|
715 |
-
|
716 |
-
"%sInstallation/Setup FAQs%s from our support page can help give an overview "
|
717 |
-
"
|
718 |
-
"helpful as it aims to address any basic install questions not addressed by "
|
719 |
-
"the new user primer."
|
720 |
-
msgstr ""
|
721 |
|
722 |
-
#:
|
723 |
#, php-format
|
724 |
-
|
725 |
-
"Are you developer looking to build your own frontend view? We created an "
|
726 |
-
"
|
727 |
-
"%sdownload the plugin at GitHub%s to get started."
|
728 |
-
msgstr ""
|
729 |
|
730 |
-
#:
|
731 |
-
|
732 |
-
"Otherwise, if you're feeling adventurous, you can get started by heading to "
|
733 |
-
"
|
734 |
-
msgstr ""
|
735 |
|
736 |
-
#:
|
737 |
#, php-format
|
738 |
-
|
739 |
-
"We've redone our support page from the ground up in an effort to better help "
|
740 |
-
"
|
741 |
-
"resources, including:"
|
742 |
-
msgstr ""
|
743 |
|
744 |
-
#:
|
745 |
#, php-format
|
746 |
-
|
747 |
-
"%sTemplate tags, functions, and hooks & filters%s for The Events Calendar "
|
748 |
-
"& Events Calendar PRO"
|
749 |
-
msgstr ""
|
750 |
|
751 |
-
#:
|
752 |
#, php-format
|
753 |
-
|
754 |
-
"%sFrequently Asked Questions%s ranging from the most basic setup questions "
|
755 |
-
"
|
756 |
-
msgstr ""
|
757 |
|
758 |
-
#:
|
759 |
#, php-format
|
760 |
-
|
761 |
-
"%sTutorials%s written by both members of our team and users from the "
|
762 |
-
"
|
763 |
-
"plugins, etc."
|
764 |
-
msgstr ""
|
765 |
|
766 |
-
#:
|
767 |
-
|
768 |
-
"Release notes for painting an overall picture of the plugin's lifecycle and "
|
769 |
-
"
|
770 |
-
msgstr ""
|
771 |
|
772 |
-
#:
|
773 |
#, php-format
|
774 |
-
|
775 |
-
"%sAdd-on documentation%s for all of Modern Tribe's official extensions for "
|
776 |
-
"The Events Calendar (
|
777 |
-
"Tickets, Facebook Events, etc)"
|
778 |
-
msgstr ""
|
779 |
|
780 |
-
#:
|
781 |
#, php-format
|
782 |
-
|
783 |
-
"We've also got a %sModern Tribe UserVoice%s page where we're actively "
|
784 |
-
"
|
785 |
-
"plugin and reviewing the resources above, you're finding a feature isn't "
|
786 |
-
"present that should be, let us know. Vote up existing feature requests or "
|
787 |
-
"add your own, and help us shape the future of the products business in a way "
|
788 |
-
"that best meets the community's needs."
|
789 |
-
msgstr ""
|
790 |
|
791 |
-
#:
|
792 |
#, php-format
|
793 |
-
|
794 |
-
"Written documentation can only take things so far...sometimes, you need help "
|
795 |
-
"
|
796 |
-
msgstr ""
|
797 |
|
798 |
-
#:
|
799 |
#, php-format
|
800 |
-
|
801 |
-
"Users of the free The Events Calendar should post their support concerns to "
|
802 |
-
"
|
803 |
-
"identify and fix bugs that are reported at WordPress.org, please make sure "
|
804 |
-
"to read our %ssupport expectations sticky thread%s before posting so you "
|
805 |
-
"understand our limitations."
|
806 |
-
msgstr ""
|
807 |
|
808 |
-
#:
|
809 |
-
|
810 |
-
"We hit the WordPress.org forum throughout the week, watching for bugs. If "
|
811 |
-
"
|
812 |
-
"patch for an upcoming release. However we are unfortunately unable to "
|
813 |
-
"provide customization tips or assist in integrating with 3rd party plugins "
|
814 |
-
"or themes."
|
815 |
-
msgstr ""
|
816 |
|
817 |
-
#:
|
818 |
#, php-format
|
819 |
-
|
820 |
-
"If you're a user of The Events Calendar and would like more support, please "
|
821 |
-
"
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
"why. We'll do what we can to make it right."
|
832 |
-
msgstr ""
|
833 |
-
"Schicken Sie uns eine E-Mail an %s oder einen Tweet %s und sagen uns warum. "
|
834 |
-
"Wir werden unser Bestes geben um es richtig zu machen."
|
835 |
-
|
836 |
-
#: ../admin-views/tribe-options-help.php:136
|
837 |
msgid "More..."
|
838 |
msgstr "Mehr..."
|
839 |
|
840 |
-
#:
|
841 |
-
|
842 |
-
"Hi! We are Modern Tribe and we are here to help you kick ass. Thanks so much "
|
843 |
-
"
|
844 |
-
msgstr "Hallo! Wir sind Modern Tribe. Vielen dank für die Installation! "
|
845 |
|
846 |
-
#:
|
|
|
847 |
msgid "Getting Started"
|
848 |
-
msgstr "
|
849 |
|
850 |
-
#:
|
851 |
#, fuzzy
|
|
|
852 |
msgid "Support Resources To Help You Kick Ass"
|
853 |
-
msgstr "
|
854 |
|
855 |
-
#:
|
856 |
#, fuzzy
|
|
|
857 |
msgid "Forums: Because Everyone Needs A Buddy"
|
858 |
-
msgstr "
|
859 |
|
860 |
-
#:
|
|
|
861 |
msgid "Not getting help?"
|
862 |
-
msgstr ""
|
863 |
|
864 |
-
|
865 |
-
#:
|
866 |
-
#:
|
867 |
-
|
868 |
msgid "The Events Calendar"
|
869 |
msgstr "Veranstaltungskalender"
|
870 |
|
871 |
-
#:
|
|
|
872 |
msgid "Latest Version:"
|
873 |
msgstr "Neueste Version:"
|
874 |
|
875 |
-
#:
|
|
|
876 |
msgid "Author:"
|
877 |
msgstr "Autor:"
|
878 |
|
879 |
-
#:
|
|
|
880 |
msgid "Modern Tribe Inc"
|
881 |
msgstr "Modern Tribe Inc"
|
882 |
|
883 |
-
#:
|
|
|
884 |
msgid "Requires:"
|
885 |
msgstr "Benötigt:"
|
886 |
|
887 |
-
#:
|
|
|
888 |
msgid "WordPress "
|
889 |
msgstr "WordPress "
|
890 |
|
891 |
-
#:
|
|
|
892 |
msgid "Wordpress.org Plugin Page"
|
893 |
-
msgstr "Wordpress.org Plugin
|
894 |
|
895 |
-
#:
|
|
|
896 |
msgid "Average Rating"
|
897 |
msgstr "Durchschnittliche Bewertung"
|
898 |
|
899 |
-
#:
|
900 |
#, php-format
|
|
|
901 |
msgid "Based on %d rating"
|
902 |
msgid_plural "Based on %d ratings"
|
903 |
msgstr[0] "Basierend auf %d Bewertung"
|
904 |
msgstr[1] "Basierend auf %d Bewertungen"
|
905 |
|
906 |
-
#:
|
|
|
907 |
msgid "Give us 5 stars!"
|
908 |
msgstr "Geben Sie uns 5 Sterne!"
|
909 |
|
910 |
-
#:
|
|
|
911 |
msgid "Premium Add-Ons"
|
912 |
msgstr "Premium Add-Ons"
|
913 |
|
914 |
-
#:
|
|
|
915 |
msgid "(Coming Soon!)"
|
916 |
-
msgstr "(
|
917 |
|
918 |
-
#:
|
|
|
919 |
msgid "News and Tutorials"
|
920 |
msgstr "News und Tutorials"
|
921 |
|
922 |
-
|
923 |
-
|
924 |
-
#: ../admin-views/tribe-options-network.php:14
|
925 |
msgid "Network Settings"
|
926 |
msgstr "Netzwerkeinstellungen"
|
927 |
|
928 |
-
#:
|
929 |
-
|
930 |
-
"This is where all of the global network settings for Modern Tribe's The "
|
931 |
-
"Events Calendar
|
932 |
-
msgstr ""
|
933 |
-
"Hier werden alle Netzwerkeinstellungen für den Modern Tribe Events Calendar "
|
934 |
-
"eingestellt"
|
935 |
|
936 |
-
#:
|
|
|
937 |
msgid "Hide the following settings tabs on every site:"
|
938 |
msgstr "Versteken Sie die folgenden Einstellungen auf der Seite:"
|
939 |
|
940 |
-
|
941 |
-
|
942 |
msgid "Venue Name:"
|
943 |
msgstr "Veranstaltungsort:"
|
944 |
|
945 |
-
|
946 |
-
#:
|
947 |
-
|
948 |
msgid "Address:"
|
949 |
msgstr "Anschrift:"
|
950 |
|
951 |
-
|
952 |
-
|
953 |
msgid "City:"
|
954 |
msgstr "Ort:"
|
955 |
|
956 |
-
|
957 |
-
|
958 |
msgid "Country:"
|
959 |
msgstr "Land:"
|
960 |
|
961 |
-
|
962 |
-
|
963 |
msgid "State or Province:"
|
964 |
msgstr "Bundesland/Kanton/Provinz:"
|
965 |
|
966 |
-
|
967 |
-
|
968 |
msgid "Select a State:"
|
969 |
msgstr "Staat auswählen:"
|
970 |
|
971 |
-
|
972 |
-
|
973 |
msgid "Postal Code:"
|
974 |
msgstr "PLZ:"
|
975 |
|
976 |
-
|
977 |
-
#:
|
|
|
978 |
msgid "Show Google Map:"
|
979 |
msgstr "'Google Maps'-Karte anzeigen:"
|
980 |
|
981 |
-
|
982 |
-
#:
|
|
|
983 |
msgid "Show Google Maps Link:"
|
984 |
msgstr "'Google Maps'-Link anzeigen:"
|
985 |
|
986 |
-
|
987 |
-
|
988 |
msgid "Title:"
|
989 |
msgstr "Titel:"
|
990 |
|
991 |
-
|
992 |
-
|
993 |
msgid "Show:"
|
994 |
-
msgstr "
|
995 |
|
996 |
-
|
997 |
-
|
998 |
msgid "Show widget only if there are upcoming events:"
|
999 |
msgstr "Das Widget nur anzeigen, wenn es bevorstehende Veranstaltungen gibt:"
|
1000 |
|
1001 |
-
#:
|
1002 |
-
#:
|
|
|
|
|
1003 |
msgid "Attendees"
|
1004 |
msgstr "Teilnehmer"
|
1005 |
|
1006 |
-
|
1007 |
-
|
1008 |
-
#: ../admin-views/tickets/attendees.php:14
|
1009 |
msgid "Event Summary"
|
1010 |
msgstr "Veranstaltungszusammenfassung"
|
1011 |
|
1012 |
-
|
1013 |
-
|
1014 |
-
#: ../admin-views/tickets/attendees.php:22
|
1015 |
msgid "Event Details"
|
1016 |
msgstr "Veranstaltungsdetails"
|
1017 |
|
1018 |
-
|
1019 |
-
|
1020 |
msgid "Start Date / Time:"
|
1021 |
-
msgstr "Anfangsdatum
|
1022 |
|
1023 |
-
|
1024 |
-
|
1025 |
msgid "End Date / Time:"
|
1026 |
-
msgstr "Enddatum
|
1027 |
|
1028 |
-
|
1029 |
-
|
1030 |
msgid "Venue:"
|
1031 |
msgstr "Ort:"
|
1032 |
|
1033 |
-
#:
|
|
|
1034 |
msgid "Ticket Sales"
|
1035 |
msgstr "Kartenverkäufe"
|
1036 |
|
1037 |
-
#:
|
|
|
1038 |
#, php-format
|
|
|
1039 |
msgid "Sold %d"
|
1040 |
msgstr "%d verkauft"
|
1041 |
|
1042 |
-
#:
|
|
|
1043 |
#, php-format
|
|
|
1044 |
msgid "Sold %d of %d"
|
1045 |
msgstr "%d von %d verkauft"
|
1046 |
|
1047 |
-
#:
|
|
|
1048 |
msgid "Tickets sold:"
|
1049 |
msgstr "Karten verkauft:"
|
1050 |
|
1051 |
-
#:
|
|
|
1052 |
msgid "Checked in:"
|
1053 |
msgstr "Eingecheckt in:"
|
1054 |
|
1055 |
-
#:
|
|
|
1056 |
msgid "Send the attendee list by email"
|
1057 |
msgstr "Die Teilnehmerliste per E-Mail versenden"
|
1058 |
|
1059 |
-
|
1060 |
-
|
1061 |
-
#: ../admin-views/tickets/attendees.php:109
|
1062 |
msgid "Select a User:"
|
1063 |
msgstr "Nutzer wählen:"
|
1064 |
|
1065 |
-
#:
|
|
|
1066 |
msgid "Select..."
|
1067 |
msgstr "Wählen..."
|
1068 |
|
1069 |
-
#:
|
|
|
1070 |
msgid "or"
|
1071 |
msgstr "oder"
|
1072 |
|
1073 |
-
|
1074 |
-
|
1075 |
-
#: ../admin-views/tickets/attendees.php:114
|
1076 |
msgid "Email Address:"
|
1077 |
msgstr "E-Mail Adresse:"
|
1078 |
|
1079 |
-
|
1080 |
-
|
1081 |
msgid "Edit"
|
1082 |
msgstr "Bearbeiten"
|
1083 |
|
1084 |
-
#:
|
|
|
1085 |
msgid "Delete"
|
1086 |
msgstr "Löschen"
|
1087 |
|
1088 |
-
|
1089 |
-
#: ../admin-views/tickets/list.php:24
|
1090 |
#, php-format
|
|
|
1091 |
msgid "Edit in %s"
|
1092 |
msgstr "Bearbeiten in %s"
|
1093 |
|
1094 |
-
#:
|
1095 |
-
#:
|
|
|
1096 |
msgid "View"
|
1097 |
msgstr "Ansehen"
|
1098 |
|
1099 |
-
#:
|
|
|
|
|
1100 |
msgid "See who purchased tickets to this event"
|
1101 |
-
msgstr "
|
1102 |
|
1103 |
-
#:
|
1104 |
-
|
1105 |
-
"This event was created using Community Events. Are you sure you want to sell "
|
1106 |
-
"
|
1107 |
-
msgstr ""
|
1108 |
-
"Diese Veranataltung wurd durch Community Events erstellt. Wollen Sie "
|
1109 |
-
"wirklich Karten dafür veraufen?"
|
1110 |
|
1111 |
-
#:
|
|
|
1112 |
msgid "Upload image for the ticket header"
|
1113 |
-
msgstr "Laden Sie ein Bild für
|
1114 |
|
1115 |
-
#:
|
1116 |
-
|
1117 |
-
"The maximum image size in the email will be 580px wide by any height, and "
|
1118 |
-
"
|
1119 |
-
"sized to 1160px wide."
|
1120 |
-
msgstr ""
|
1121 |
-
"Die maximale Bildgröße in der E-Mail beträgt 580px in Höhe und Breite. Es "
|
1122 |
-
"wird für Mobilgeräte verkleinert."
|
1123 |
|
1124 |
-
|
1125 |
-
|
1126 |
-
#: ../admin-views/tickets/meta-box.php:36
|
1127 |
msgid "Select an Image"
|
1128 |
msgstr "Ein Bild auswählen"
|
1129 |
|
1130 |
-
#:
|
|
|
1131 |
msgid "Remove"
|
1132 |
msgstr "Entfernen"
|
1133 |
|
1134 |
-
|
1135 |
-
|
1136 |
-
|
1137 |
-
#: ../admin-views/tickets/meta-box.php:72
|
1138 |
msgid "Add new ticket"
|
1139 |
msgstr "Eine Neue Karte erstellen"
|
1140 |
|
1141 |
-
|
1142 |
-
|
1143 |
-
#: ../admin-views/tickets/meta-box.php:73
|
1144 |
msgid "Edit ticket"
|
1145 |
msgstr "Karte bearbeiten"
|
1146 |
|
1147 |
-
#:
|
|
|
1148 |
msgid "Sell using:"
|
1149 |
msgstr "Verkaufen mit:"
|
1150 |
|
1151 |
-
|
1152 |
-
|
1153 |
-
#: ../admin-views/tickets/meta-box.php:96
|
1154 |
msgid "Ticket Name:"
|
1155 |
msgstr "Karten Name:"
|
1156 |
|
1157 |
-
#:
|
|
|
1158 |
msgid "Ticket Description:"
|
1159 |
msgstr "Karten Beschreibung:"
|
1160 |
|
1161 |
-
#:
|
|
|
1162 |
msgid "Price:"
|
1163 |
msgstr "Preis:"
|
1164 |
|
1165 |
-
|
1166 |
-
|
1167 |
-
#: ../admin-views/tickets/meta-box.php:124
|
1168 |
msgid "Start sale:"
|
1169 |
msgstr "Verkaufsstart:"
|
1170 |
|
1171 |
-
|
1172 |
-
|
1173 |
-
#: ../admin-views/tickets/meta-box.php:148
|
1174 |
msgid "End sale:"
|
1175 |
msgstr "Verkaufsende:"
|
1176 |
|
1177 |
-
#:
|
1178 |
-
|
1179 |
-
"When will ticket sales occur? If you don't set a start/end date for sales, "
|
1180 |
-
"
|
1181 |
-
msgstr ""
|
1182 |
-
"Wenn kein Verkaufsstart und- Ende festgelegt wird, werden Karten bis zum "
|
1183 |
-
"Veranstaltungsende angeboten."
|
1184 |
|
1185 |
-
|
1186 |
-
|
1187 |
msgid "month"
|
1188 |
-
msgstr "
|
1189 |
|
1190 |
-
|
1191 |
-
|
1192 |
msgid "upcoming"
|
1193 |
-
msgstr "
|
1194 |
|
1195 |
-
|
1196 |
-
|
1197 |
msgid "past"
|
1198 |
msgstr "vergangen"
|
1199 |
|
1200 |
-
|
1201 |
-
|
1202 |
msgid "venue"
|
1203 |
msgstr "Ort"
|
1204 |
|
1205 |
-
|
1206 |
-
#: ../lib/the-events-calendar.class.php:509
|
1207 |
#, php-format
|
|
|
1208 |
msgid "Initializing Tribe Events on %s"
|
1209 |
-
msgstr "Tribe Events
|
1210 |
|
1211 |
-
#:
|
1212 |
#, php-format
|
1213 |
-
|
1214 |
-
"Your version of The Events Calendar is not up-to-date with one of your The "
|
1215 |
-
"Events Calendar
|
1216 |
-
|
1217 |
-
|
1218 |
-
|
1219 |
-
|
1220 |
-
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
1224 |
-
|
1225 |
-
|
1226 |
-
|
1227 |
-
"Die folgenden Plugins sid veraltet: <b>%s</b>. Bitte %supdateen Sie jetzt"
|
1228 |
-
"%s. Alle Erweiterungen sind mit dem Events Calendar verbunden und "
|
1229 |
-
"funktionieren nicht richtig, wenn die Versionen nicht zusammen passen. %sMit "
|
1230 |
-
"einer älteren Version verbinden%s?"
|
1231 |
-
|
1232 |
-
#: ../lib/the-events-calendar.class.php:703
|
1233 |
-
#: ../lib/the-events-calendar.class.php:738
|
1234 |
-
#: ../lib/the-events-calendar.class.php:740
|
1235 |
msgid "Licenses"
|
1236 |
msgstr "Lizenzen"
|
1237 |
|
1238 |
-
#:
|
1239 |
#, php-format
|
1240 |
-
|
1241 |
-
"<p>The license key you received when completing your purchase from %s will "
|
1242 |
-
"
|
1243 |
-
|
1244 |
-
|
1245 |
-
|
1246 |
-
"unique license key. Simply paste the key into its appropriate field on "
|
1247 |
-
"below, and give it a moment to validate. You know you're set when a green "
|
1248 |
-
"expiration date appears alongside a \"valid\" message.</p> <p>If you're "
|
1249 |
-
"seeing a red message telling you that your key isn't valid or is out of "
|
1250 |
-
"installs, visit <a href=\"%s\" target=\"_blank\">%s</a> to manage your "
|
1251 |
-
"installs or renew / upgrade your license.</p><p>Not seeing an update but "
|
1252 |
-
"expecting one? In WordPress, go to <a href=\"%s\">Dashboard > Updates</a> "
|
1253 |
-
"and click \"Check Again\".</p>"
|
1254 |
-
msgstr ""
|
1255 |
-
"<p>Der Lizenzschlüssel von %s, den Sie erhalten haben wird Ihnen Zugriff auf "
|
1256 |
-
"das Supportforum gewähren bis er abgelaufen ist. Sie müssen den Schüssel "
|
1257 |
-
"nicht eingeben damit die Plugins funktionieren aber um Updates zu erhalten "
|
1258 |
-
"muss der Schüssel eingegeben sein. Sie finden Ihren Lizenzschlüssel unter <a "
|
1259 |
-
"href=\"%s\">%s</a>.</p> <p>Jedes bezahlte Plugin hat einen einzigartigen "
|
1260 |
-
"Lizenzschlüssel. Fügen Sie den Schlüssel einfach in das Feld ein und warten "
|
1261 |
-
"Sie einen Moment bis er verifiziert ist. </p><p>Wenn Sie sehen, eine rote "
|
1262 |
-
"Meldung, dass Ihre Schlüssel nicht gültig ist oder aus installiert sind, "
|
1263 |
-
"gehen Sie zu <a href=\"%s\" target=\"_blank\">%s</a> Ihre Installationen zu "
|
1264 |
-
"verwalten oder zu erneuern / aktualisieren Sie Ihre Lizenz.</p><p>Kein "
|
1265 |
-
"Update obwohl der Schüssel passt? In WordPress, gehen Sie zu <a href=\"%s"
|
1266 |
-
"\">Dashboard > Updates</a> und klicken \"Erneut prüfen\".</p>"
|
1267 |
-
|
1268 |
-
#: ../lib/the-events-calendar.class.php:730
|
1269 |
msgid "General"
|
1270 |
msgstr "Allgemein"
|
1271 |
|
1272 |
-
#:
|
|
|
1273 |
msgid "Display"
|
1274 |
-
msgstr "
|
1275 |
|
1276 |
-
|
1277 |
-
#: ../lib/the-events-calendar.class.php:782
|
1278 |
#, php-format
|
1279 |
-
|
1280 |
-
"Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade "
|
1281 |
-
"
|
1282 |
-
msgstr ""
|
1283 |
-
"Entschuldigung, das The Events Calendar Plugin erfordert WordPress Version "
|
1284 |
-
"%s oder höher. Bitte aktualisieren Sie Ihre WordPress-Installation "
|
1285 |
-
"entsprechend, bevor Sie fortfahren."
|
1286 |
|
1287 |
-
|
1288 |
-
#: ../lib/the-events-calendar.class.php:785
|
1289 |
#, php-format
|
1290 |
-
|
1291 |
-
"Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host "
|
1292 |
-
"
|
1293 |
-
|
1294 |
-
|
1295 |
-
|
1296 |
-
|
1297 |
-
|
1298 |
-
# @ tribe-events-calendar
|
1299 |
-
#: ../lib/the-events-calendar.class.php:1000 ../lib/widget-list.class.php:151
|
1300 |
-
#: ../public/template-tags/loop.php:137
|
1301 |
msgid "Upcoming Events"
|
1302 |
-
msgstr "
|
1303 |
|
1304 |
-
|
1305 |
-
#:
|
1306 |
-
|
1307 |
msgid "Past Events"
|
1308 |
msgstr "Vergangene Veranstaltungen"
|
1309 |
|
1310 |
-
|
1311 |
-
#:
|
1312 |
-
#:
|
1313 |
#, php-format
|
|
|
1314 |
msgid "Events for %s"
|
1315 |
-
msgstr "Veranstaltungen
|
1316 |
|
1317 |
-
|
1318 |
-
|
1319 |
msgid "Events this month"
|
1320 |
msgstr "Veranstaltungen diesen Monat"
|
1321 |
|
1322 |
-
|
1323 |
-
#: ../lib/the-events-calendar.class.php:1022
|
1324 |
#, php-format
|
|
|
1325 |
msgid "Events at %s"
|
1326 |
msgstr "Veranstaltungen im %s"
|
1327 |
|
1328 |
-
|
1329 |
-
|
1330 |
msgid "No description has been entered for this event."
|
1331 |
-
msgstr "
|
1332 |
|
1333 |
-
|
1334 |
-
|
1335 |
msgid "category"
|
1336 |
-
msgstr "
|
1337 |
|
1338 |
-
#:
|
|
|
1339 |
msgid "tag"
|
1340 |
msgstr "Tag"
|
1341 |
|
1342 |
-
|
1343 |
-
#:
|
1344 |
-
#:
|
1345 |
-
#:
|
|
|
1346 |
msgid "Events"
|
1347 |
msgstr "Veranstaltungen"
|
1348 |
|
1349 |
-
|
1350 |
-
|
1351 |
msgid "Event"
|
1352 |
msgstr "Veranstaltung"
|
1353 |
|
1354 |
-
|
1355 |
-
#:
|
1356 |
-
#:
|
1357 |
-
|
1358 |
msgid "Add New"
|
1359 |
-
msgstr "
|
1360 |
|
1361 |
-
|
1362 |
-
|
1363 |
msgid "Add New Event"
|
1364 |
-
msgstr "Neue Veranstaltung
|
1365 |
|
1366 |
-
|
1367 |
-
|
1368 |
msgid "Edit Event"
|
1369 |
msgstr "Veranstaltung bearbeiten"
|
1370 |
|
1371 |
-
|
1372 |
-
|
1373 |
msgid "New Event"
|
1374 |
msgstr "Neue Veranstaltung"
|
1375 |
|
1376 |
-
|
1377 |
-
|
1378 |
msgid "View Event"
|
1379 |
msgstr "Veranstaltung ansehen"
|
1380 |
|
1381 |
-
|
1382 |
-
|
1383 |
msgid "Search Events"
|
1384 |
-
msgstr "
|
1385 |
|
1386 |
-
|
1387 |
-
|
1388 |
msgid "No events found"
|
1389 |
msgstr "Es wurden keine Veranstaltungen gefunden"
|
1390 |
|
1391 |
-
|
1392 |
-
|
1393 |
msgid "No events found in Trash"
|
1394 |
msgstr "Es befinden sich keine Veranstaltungen im Papierkorb"
|
1395 |
|
1396 |
-
|
1397 |
-
#:
|
1398 |
-
#:
|
|
|
1399 |
msgid "Venues"
|
1400 |
msgstr "Veranstaltungsorte"
|
1401 |
|
1402 |
-
|
1403 |
-
#:
|
1404 |
-
#:
|
|
|
1405 |
msgid "Venue"
|
1406 |
msgstr "Veranstaltungsort"
|
1407 |
|
1408 |
-
|
1409 |
-
|
1410 |
msgid "Add New Venue"
|
1411 |
-
msgstr "Neuen Veranstaltungsort
|
1412 |
|
1413 |
-
|
1414 |
-
|
1415 |
msgid "Edit Venue"
|
1416 |
msgstr "Veranstaltungsort bearbeiten"
|
1417 |
|
1418 |
-
|
1419 |
-
|
1420 |
msgid "New Venue"
|
1421 |
msgstr "Neuer Veranstaltungsort"
|
1422 |
|
1423 |
-
|
1424 |
-
|
1425 |
msgid "View Venue"
|
1426 |
msgstr "Veranstaltungsort anzeigen"
|
1427 |
|
1428 |
-
|
1429 |
-
|
1430 |
msgid "Search Venues"
|
1431 |
msgstr "Veranstaltungsorte suchen"
|
1432 |
|
1433 |
-
|
1434 |
-
|
1435 |
msgid "No venue found"
|
1436 |
msgstr "Es wurde kein Veranstaltungsort gefunden"
|
1437 |
|
1438 |
-
|
1439 |
-
|
1440 |
msgid "No venues found in Trash"
|
1441 |
msgstr "Es befinden sich keine Veranstaltungsorte im Papierkorb"
|
1442 |
|
1443 |
-
|
1444 |
-
#:
|
1445 |
-
#:
|
|
|
1446 |
msgid "Organizers"
|
1447 |
msgstr "Veranstalter"
|
1448 |
|
1449 |
-
|
1450 |
-
#:
|
1451 |
-
#:
|
|
|
1452 |
msgid "Organizer"
|
1453 |
msgstr "Veranstalter"
|
1454 |
|
1455 |
-
|
1456 |
-
|
1457 |
msgid "Add New Organizer"
|
1458 |
-
msgstr "Neuen Veranstalter
|
1459 |
|
1460 |
-
|
1461 |
-
|
1462 |
msgid "Edit Organizer"
|
1463 |
msgstr "Veranstalter bearbeiten"
|
1464 |
|
1465 |
-
|
1466 |
-
|
1467 |
msgid "New Organizer"
|
1468 |
msgstr "Neuer Veranstalter"
|
1469 |
|
1470 |
-
|
1471 |
-
|
1472 |
-
#: ../lib/the-events-calendar.class.php:1372
|
1473 |
msgid "View Organizer"
|
1474 |
msgstr "Veranstalter ansehen"
|
1475 |
|
1476 |
-
|
1477 |
-
|
1478 |
msgid "Search Organizers"
|
1479 |
msgstr "Veranstalter suchen"
|
1480 |
|
1481 |
-
|
1482 |
-
|
1483 |
msgid "No organizer found"
|
1484 |
msgstr "Es wurde kein Veranstalter gefunden"
|
1485 |
|
1486 |
-
|
1487 |
-
|
1488 |
msgid "No organizers found in Trash"
|
1489 |
msgstr "Es befinden sich keine Veranstalter im Papierkorb"
|
1490 |
|
1491 |
-
|
1492 |
-
#:
|
1493 |
-
|
1494 |
msgid "Event Categories"
|
1495 |
msgstr "Veranstalt.-Kategorien"
|
1496 |
|
1497 |
-
|
1498 |
-
|
1499 |
-
#: ../public/template-tags/general.php:276
|
1500 |
-
msgid "Event Category"
|
1501 |
-
msgstr "Veranstaltungskategorie"
|
1502 |
-
|
1503 |
-
# @ tribe-events-calendar
|
1504 |
-
#: ../lib/the-events-calendar.class.php:1381
|
1505 |
msgid "Search Event Categories"
|
1506 |
msgstr "Veranstaltungskategorien suchen"
|
1507 |
|
1508 |
-
|
1509 |
-
|
1510 |
msgid "All Event Categories"
|
1511 |
msgstr "Alle Veranstaltungskategorien"
|
1512 |
|
1513 |
-
|
1514 |
-
|
1515 |
msgid "Parent Event Category"
|
1516 |
-
msgstr "
|
1517 |
|
1518 |
-
|
1519 |
-
|
1520 |
msgid "Parent Event Category:"
|
1521 |
-
msgstr "
|
1522 |
|
1523 |
-
|
1524 |
-
|
1525 |
msgid "Edit Event Category"
|
1526 |
msgstr "Veranstaltungskategorie bearbeiten"
|
1527 |
|
1528 |
-
|
1529 |
-
|
1530 |
msgid "Update Event Category"
|
1531 |
msgstr "Veranstaltungskategorie aktualisieren"
|
1532 |
|
1533 |
-
|
1534 |
-
|
1535 |
msgid "Add New Event Category"
|
1536 |
-
msgstr "Neue Veranstaltungskategorie
|
1537 |
|
1538 |
-
|
1539 |
-
|
1540 |
msgid "New Event Category Name"
|
1541 |
msgstr "Neuer Veranstaltungskategorie-Name"
|
1542 |
|
1543 |
-
|
1544 |
-
#: ../lib/the-events-calendar.class.php:1404
|
1545 |
#, php-format
|
|
|
1546 |
msgid "Event updated. <a href=\"%s\">View event</a>"
|
1547 |
-
msgstr ""
|
1548 |
-
"Veranstaltung aktualisiert. <a href=\"%s\">Diese Veranstaltung ansehen</a>"
|
1549 |
|
1550 |
-
|
1551 |
-
#:
|
1552 |
-
#:
|
1553 |
-
|
1554 |
msgid "Custom field updated."
|
1555 |
msgstr "Benutzerdefiniertes Feld aktualisiert."
|
1556 |
|
1557 |
-
|
1558 |
-
#:
|
1559 |
-
#:
|
1560 |
-
|
1561 |
msgid "Custom field deleted."
|
1562 |
msgstr "Benutzerdefiniertes Feld gelöscht."
|
1563 |
|
1564 |
-
|
1565 |
-
|
1566 |
msgid "Event updated."
|
1567 |
msgstr "Veranstaltung aktualisiert."
|
1568 |
|
1569 |
-
|
1570 |
-
#:
|
1571 |
#, php-format
|
|
|
1572 |
msgid "Event restored to revision from %s"
|
1573 |
msgstr "Veranstaltung wiederhergestellt mit der Revision von %s"
|
1574 |
|
1575 |
-
|
1576 |
-
#: ../lib/the-events-calendar.class.php:1410
|
1577 |
#, php-format
|
|
|
1578 |
msgid "Event published. <a href=\"%s\">View event</a>"
|
1579 |
-
msgstr ""
|
1580 |
-
"Veranstaltung veröffentlicht. <a href=\"%s\">Diese Veranstaltung "
|
1581 |
-
"ansehen</a>"
|
1582 |
|
1583 |
-
|
1584 |
-
|
1585 |
msgid "Event saved."
|
1586 |
msgstr "Veranstaltung gespeichert."
|
1587 |
|
1588 |
-
|
1589 |
-
#: ../lib/the-events-calendar.class.php:1412
|
1590 |
#, php-format
|
|
|
1591 |
msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
1592 |
-
msgstr ""
|
1593 |
-
"Veranstaltung hinzugefügt. <a target=\"_blank\" href=\"%s\">Vorschau</a>"
|
1594 |
|
1595 |
-
|
1596 |
-
#: ../lib/the-events-calendar.class.php:1413
|
1597 |
#, php-format
|
1598 |
-
|
1599 |
-
"Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
|
1600 |
-
"\">
|
1601 |
-
|
1602 |
-
|
1603 |
-
|
1604 |
-
|
1605 |
-
|
1606 |
-
#: ../lib/the-events-calendar.class.php:1415
|
1607 |
-
#: ../lib/the-events-calendar.class.php:1432
|
1608 |
-
#: ../lib/the-events-calendar.class.php:1449
|
1609 |
msgid "M j, Y @ G:i"
|
1610 |
msgstr "M j, Y @ G:i"
|
1611 |
|
1612 |
-
|
1613 |
-
#: ../lib/the-events-calendar.class.php:1416
|
1614 |
#, php-format
|
|
|
1615 |
msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
1616 |
-
msgstr ""
|
1617 |
-
"Veranstaltungsentwurf aktualisiert. <a target=\"_blank\" href=\"%s"
|
1618 |
-
"\">Vorschau</a>"
|
1619 |
|
1620 |
-
|
1621 |
-
#: ../lib/the-events-calendar.class.php:1421
|
1622 |
#, php-format
|
|
|
1623 |
msgid "Venue updated. <a href=\"%s\">View venue</a>"
|
1624 |
msgstr "Veranstaltungsort aktualisiert. <a href=\"%s\">Diesen Ort ansehen</a>"
|
1625 |
|
1626 |
-
|
1627 |
-
|
1628 |
msgid "Venue updated."
|
1629 |
msgstr "Veranstaltungsort aktualisiert."
|
1630 |
|
1631 |
-
|
1632 |
-
#:
|
1633 |
#, php-format
|
|
|
1634 |
msgid "Venue restored to revision from %s"
|
1635 |
msgstr "Veranstaltungsort wiederhergestellt mit der Revision von %s"
|
1636 |
|
1637 |
-
|
1638 |
-
#: ../lib/the-events-calendar.class.php:1427
|
1639 |
#, php-format
|
|
|
1640 |
msgid "Venue published. <a href=\"%s\">View venue</a>"
|
1641 |
-
msgstr ""
|
1642 |
-
"Veranstaltungsort veröffentlicht. <a href=\"%s\">Diesen Ort ansehen</a>"
|
1643 |
|
1644 |
-
|
1645 |
-
|
1646 |
msgid "Venue saved."
|
1647 |
msgstr "Veranstaltungsort gespeichert."
|
1648 |
|
1649 |
-
|
1650 |
-
#: ../lib/the-events-calendar.class.php:1429
|
1651 |
#, php-format
|
|
|
1652 |
msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
|
1653 |
-
msgstr ""
|
1654 |
-
"Veranstaltungsort hinzugefügt. <a target=\"_blank\" href=\"%s"
|
1655 |
-
"\">Vorschau</a>"
|
1656 |
|
1657 |
-
|
1658 |
-
#: ../lib/the-events-calendar.class.php:1430
|
1659 |
#, php-format
|
1660 |
-
|
1661 |
-
"Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
|
1662 |
-
"\">
|
1663 |
-
msgstr ""
|
1664 |
-
"Veranstaltungsort geplant für: <strong>%1$s</strong>. <a target=\"_blank"
|
1665 |
-
"\" href=\"%2$s\">Vorschau</a>"
|
1666 |
|
1667 |
-
|
1668 |
-
#: ../lib/the-events-calendar.class.php:1433
|
1669 |
#, php-format
|
|
|
1670 |
msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
|
1671 |
-
msgstr ""
|
1672 |
-
"Entwurf des Veranstaltungsortes aktualisiert. <a target=\"_blank\" href=\"%s"
|
1673 |
-
"\">Vorschau</a>"
|
1674 |
|
1675 |
-
|
1676 |
-
#: ../lib/the-events-calendar.class.php:1438
|
1677 |
#, php-format
|
|
|
1678 |
msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
|
1679 |
-
msgstr ""
|
1680 |
-
"Veranstalter aktualisiert. <a href=\"%s\">Diesen Veranstalter ansehen</a>"
|
1681 |
|
1682 |
-
|
1683 |
-
|
1684 |
msgid "Organizer updated."
|
1685 |
msgstr "Veranstalter aktualisiert."
|
1686 |
|
1687 |
-
|
1688 |
-
#:
|
1689 |
#, php-format
|
|
|
1690 |
msgid "Organizer restored to revision from %s"
|
1691 |
msgstr "Veranstalter wiederhergestellt mit der Revision von %s"
|
1692 |
|
1693 |
-
|
1694 |
-
#: ../lib/the-events-calendar.class.php:1444
|
1695 |
#, php-format
|
|
|
1696 |
msgid "Organizer published. <a href=\"%s\">View organizer</a>"
|
1697 |
-
msgstr ""
|
1698 |
-
"Veranstalter publiziert. <a href=\"%s\">Diesen Veranstalter ansehen</a>"
|
1699 |
|
1700 |
-
|
1701 |
-
|
1702 |
msgid "Organizer saved."
|
1703 |
msgstr "Veranstalter gespeichert."
|
1704 |
|
1705 |
-
|
1706 |
-
#: ../lib/the-events-calendar.class.php:1446
|
1707 |
#, php-format
|
1708 |
-
|
1709 |
-
"Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
|
1710 |
-
msgstr ""
|
1711 |
-
"Veranstalter hinzugefügt. <a target=\"_blank\" href=\"%s\">Vorschau</a>"
|
1712 |
|
1713 |
-
|
1714 |
-
#: ../lib/the-events-calendar.class.php:1447
|
1715 |
#, php-format
|
1716 |
-
|
1717 |
-
"Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href
|
1718 |
-
"\"%2$s\">
|
1719 |
-
msgstr ""
|
1720 |
-
"Veranstalter geplant für: <strong>%1$s</strong>. <a target=\"_blank\" "
|
1721 |
-
"href=\"%2$s\">Vorschau</a>"
|
1722 |
|
1723 |
-
|
1724 |
-
#: ../lib/the-events-calendar.class.php:1450
|
1725 |
#, php-format
|
1726 |
-
|
1727 |
-
"Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</"
|
1728 |
-
"a>"
|
1729 |
-
msgstr ""
|
1730 |
-
"Entwurf des Veranstalters aktualisiert. <a target=\"_blank\" href=\"%s"
|
1731 |
-
"\">Vorschau</a>"
|
1732 |
|
1733 |
-
#:
|
|
|
1734 |
msgid "Use Saved Venue:"
|
1735 |
msgstr "Gespeicherte Veranstaltungsorte"
|
1736 |
|
1737 |
-
|
1738 |
-
|
1739 |
-
#: ../lib/the-events-calendar.class.php:1520
|
1740 |
msgid "Use Saved Organizer:"
|
1741 |
msgstr "Gespeicherter Veranstalter:"
|
1742 |
|
1743 |
-
|
1744 |
-
|
1745 |
-
#: ../lib/the-events-calendar.class.php:1556
|
1746 |
msgid "Use New Venue"
|
1747 |
msgstr "Gespeicherter Veranstaltungsort"
|
1748 |
|
1749 |
-
|
1750 |
-
|
1751 |
-
#: ../lib/the-events-calendar.class.php:1558
|
1752 |
msgid "My Venues"
|
1753 |
msgstr "Meine Veranstaltungsorte"
|
1754 |
|
1755 |
-
|
1756 |
-
|
1757 |
-
#: ../lib/the-events-calendar.class.php:1563
|
1758 |
msgid "Available Venues"
|
1759 |
msgstr "Verfügbare Veranstaltungsorte"
|
1760 |
|
1761 |
-
#:
|
|
|
1762 |
msgid "No saved venue exists."
|
1763 |
msgstr "Keine gespeicherten Veranstaltungsorte"
|
1764 |
|
1765 |
-
|
1766 |
-
|
1767 |
-
#: ../lib/the-events-calendar.class.php:1608
|
1768 |
msgid "Use New Organizer"
|
1769 |
msgstr "Einen neuen Veranstalter erstellen"
|
1770 |
|
1771 |
-
|
1772 |
-
|
1773 |
-
#: ../lib/the-events-calendar.class.php:1610
|
1774 |
msgid "My Organizers"
|
1775 |
msgstr "Meine Veranstalter"
|
1776 |
|
1777 |
-
|
1778 |
-
|
1779 |
-
#: ../lib/the-events-calendar.class.php:1615
|
1780 |
msgid "Available Organizers"
|
1781 |
msgstr "Verfügbare Veranstalter"
|
1782 |
|
1783 |
-
|
1784 |
-
|
1785 |
-
#: ../lib/the-events-calendar.class.php:1626
|
1786 |
msgid "No saved organizer exists."
|
1787 |
msgstr "Keine gespeicherten Veranstalter"
|
1788 |
|
1789 |
-
|
1790 |
-
|
1791 |
msgid "Next"
|
1792 |
-
msgstr "
|
1793 |
|
1794 |
-
|
1795 |
-
|
1796 |
msgid "Prev"
|
1797 |
msgstr "Vorherige"
|
1798 |
|
1799 |
-
|
1800 |
-
|
1801 |
msgid "Today"
|
1802 |
msgstr "Heute"
|
1803 |
|
1804 |
-
|
1805 |
-
|
1806 |
msgid "Done"
|
1807 |
msgstr "Erledigt"
|
1808 |
|
1809 |
-
#:
|
|
|
1810 |
msgid "Network"
|
1811 |
msgstr "Netzwerk"
|
1812 |
|
1813 |
-
|
1814 |
-
|
1815 |
-
#: ../lib/the-events-calendar.class.php:2902
|
1816 |
msgid "Unnamed Venue"
|
1817 |
msgstr "Unbenannter Veranstaltungsort"
|
1818 |
|
1819 |
-
|
1820 |
-
|
1821 |
-
#: ../lib/the-events-calendar.class.php:2992
|
1822 |
msgid "Unnamed Organizer"
|
1823 |
msgstr "Unbenannter Veranstalter"
|
1824 |
|
1825 |
-
|
1826 |
-
|
1827 |
msgid "Event Options"
|
1828 |
msgstr "Veranstaltungsoptionen"
|
1829 |
|
1830 |
-
|
1831 |
-
|
1832 |
msgid "Venue Information"
|
1833 |
msgstr "Information zum Veranstaltungsort"
|
1834 |
|
1835 |
-
|
1836 |
-
|
1837 |
msgid "Organizer Information"
|
1838 |
msgstr "Information zum Veranstalter"
|
1839 |
|
1840 |
-
#:
|
|
|
1841 |
msgid "Support"
|
1842 |
msgstr "Unterstützung"
|
1843 |
|
1844 |
-
|
1845 |
-
|
1846 |
msgid "View All Add-Ons"
|
1847 |
msgstr "Alle Erweiterungen (Add-Ons) ansehen"
|
1848 |
|
1849 |
-
|
1850 |
-
|
1851 |
-
#: ../lib/the-events-calendar.class.php:3689
|
1852 |
msgid "News from Modern Tribe"
|
1853 |
msgstr "Neues von Modern Tribe"
|
1854 |
|
1855 |
-
|
1856 |
-
|
1857 |
msgid "Additional Functionality"
|
1858 |
-
msgstr "Erweiterte
|
1859 |
|
1860 |
-
|
1861 |
-
|
1862 |
-
msgid ""
|
1863 |
-
"
|
1864 |
-
"sales, publicly submitted events, new views and more?"
|
1865 |
-
msgstr ""
|
1866 |
-
"Benötigen Sie weitere Funktionen inklusive wiederkehrende Veranstaltungen, "
|
1867 |
-
"Kartenverkauf, Öffentliche Veranstaltungserstellung, neue Ansichten und mehr?"
|
1868 |
|
1869 |
-
|
1870 |
-
#: ../lib/the-events-calendar.class.php:3775
|
1871 |
#, php-format
|
|
|
1872 |
msgid "Check out the <a href=\"%s\">available add-ons</a>."
|
1873 |
msgstr "Nutzen Sie unsere <a href=\"%s\">Veranstaltungserweiterungen</a>."
|
1874 |
|
1875 |
-
|
1876 |
-
|
1877 |
-
|
1878 |
-
#: ../lib/the-events-calendar.class.php:3937
|
1879 |
msgid "View Calendar"
|
1880 |
msgstr "Kalenderansicht"
|
1881 |
|
1882 |
-
|
1883 |
-
|
1884 |
-
#: ../lib/the-events-calendar.class.php:3854
|
1885 |
msgid "Add Event"
|
1886 |
msgstr "Veranstaltung erstellen"
|
1887 |
|
1888 |
-
|
1889 |
-
|
1890 |
-
#: ../lib/the-events-calendar.class.php:3863
|
1891 |
msgid "Edit Events"
|
1892 |
msgstr "Veranstaltungen bearbeiten"
|
1893 |
|
1894 |
-
|
1895 |
-
#:
|
1896 |
-
#:
|
1897 |
-
|
1898 |
msgid "Settings"
|
1899 |
msgstr "Einstellungen"
|
1900 |
|
1901 |
-
#:
|
1902 |
#, php-format
|
1903 |
-
|
1904 |
-
"Welcome to The Events Calendar! Your events calendar can be found at %s. To "
|
1905 |
-
"
|
1906 |
-
msgstr ""
|
1907 |
-
"Willkommen bei \"The Events Calendar\"! Ihre Veranstaltungskalender finden "
|
1908 |
-
"Sie hier: %s Um die Veranstaltungsoptionen zu verändern gehen Sie zu "
|
1909 |
-
"%sVeranstaltunngen -> Einstellungen%s."
|
1910 |
|
1911 |
-
|
1912 |
-
|
1913 |
msgid "Calendar"
|
1914 |
msgstr "Kalender"
|
1915 |
|
1916 |
-
#:
|
|
|
1917 |
msgid "List"
|
1918 |
msgstr "Liste"
|
1919 |
|
1920 |
-
|
1921 |
-
|
1922 |
-
#: ../lib/the-events-calendar.class.php:4048
|
1923 |
msgid "Month"
|
1924 |
msgstr "Monat"
|
1925 |
|
1926 |
-
|
1927 |
-
|
1928 |
-
|
1929 |
msgid "Date"
|
1930 |
msgstr "Datum"
|
1931 |
|
1932 |
-
|
1933 |
-
|
1934 |
-
#: ../lib/the-events-calendar.class.php:4091
|
1935 |
msgid "Events In"
|
1936 |
msgstr "Veranstaltungen am"
|
1937 |
|
1938 |
-
|
1939 |
-
|
1940 |
-
#: ../lib/the-events-calendar.class.php:4093
|
1941 |
msgid "Events From"
|
1942 |
-
msgstr "
|
1943 |
|
1944 |
-
|
1945 |
-
#:
|
1946 |
-
#:
|
|
|
|
|
1947 |
msgid "« Previous Events"
|
1948 |
msgstr "« Vorherige Veranstaltungen"
|
1949 |
|
1950 |
-
|
1951 |
-
#:
|
1952 |
-
#:
|
|
|
|
|
1953 |
msgid "Next Events »"
|
1954 |
-
msgstr "
|
1955 |
|
1956 |
-
#:
|
1957 |
#, php-format
|
|
|
1958 |
msgid "View “%s”"
|
1959 |
msgstr "“%s” Anschauen"
|
1960 |
|
1961 |
-
|
1962 |
-
|
1963 |
msgid "Start Date"
|
1964 |
-
msgstr "
|
1965 |
|
1966 |
-
|
1967 |
-
|
1968 |
msgid "End Date"
|
1969 |
-
msgstr "
|
1970 |
|
1971 |
-
|
1972 |
-
|
1973 |
msgid "Recurring?"
|
1974 |
msgstr "Wiederkehrend?"
|
1975 |
|
1976 |
-
#:
|
1977 |
-
#:
|
|
|
|
|
1978 |
msgid "Yes"
|
1979 |
msgstr "Ja"
|
1980 |
|
1981 |
-
#:
|
|
|
1982 |
msgid "No"
|
1983 |
msgstr "Nein"
|
1984 |
|
1985 |
-
|
1986 |
-
#: ../lib/tribe-admin-events-list.class.php:360
|
1987 |
#, php-format
|
|
|
1988 |
msgid "All %s"
|
1989 |
msgstr "Alle %s"
|
1990 |
|
1991 |
-
|
1992 |
-
|
1993 |
-
#:
|
1994 |
-
|
1995 |
msgid "Event Add-Ons"
|
1996 |
-
msgstr "
|
1997 |
|
1998 |
-
|
1999 |
-
|
2000 |
msgid "Tribe"
|
2001 |
msgstr "Tribe"
|
2002 |
|
2003 |
-
|
2004 |
-
#:
|
2005 |
-
#:
|
|
|
2006 |
msgid "United States"
|
2007 |
msgstr "Vereinigte Staaten"
|
2008 |
|
2009 |
-
|
2010 |
-
#:
|
2011 |
-
|
2012 |
msgid "Error"
|
2013 |
msgstr "Fehler"
|
2014 |
|
2015 |
-
#:
|
|
|
2016 |
msgid "Invalid field type specified"
|
2017 |
msgstr "Falsche Feldart definiert"
|
2018 |
|
2019 |
-
#:
|
|
|
2020 |
msgid "No radio options specified"
|
2021 |
msgstr "Keine Bewertungsoptionen definiert"
|
2022 |
|
2023 |
-
#:
|
|
|
2024 |
msgid "No checkbox options specified"
|
2025 |
msgstr "Keine Checkboxoptionen definiert"
|
2026 |
|
2027 |
-
#:
|
|
|
2028 |
msgid "No select options specified"
|
2029 |
msgstr "Keine Auswahloptionen definiert"
|
2030 |
|
2031 |
-
|
2032 |
-
|
2033 |
-
#: ../lib/tribe-settings-tab.class.php:219
|
2034 |
msgid "There are no fields setup for this tab yet."
|
2035 |
msgstr "Es sind noch keine Boxen für diesen Tab definiert."
|
2036 |
|
2037 |
-
|
2038 |
-
|
2039 |
-
|
2040 |
msgid "The Events Calendar Settings"
|
2041 |
msgstr "Veranstaltungskalender Einstellungen"
|
2042 |
|
2043 |
-
|
2044 |
-
|
2045 |
-
#: ../lib/tribe-settings.class.php:176
|
2046 |
msgid "Events Settings"
|
2047 |
msgstr "Veranstaltungseinstellungen"
|
2048 |
|
2049 |
-
|
2050 |
-
#: ../lib/tribe-settings.class.php:225
|
2051 |
#, php-format
|
|
|
2052 |
msgid "%s Settings"
|
2053 |
msgstr "%s Einstellungen"
|
2054 |
|
2055 |
-
#:
|
|
|
2056 |
msgid "You've requested a non-existent tab."
|
2057 |
msgstr "Sie sprechen eine nicht vorhandenen Tab an."
|
2058 |
|
2059 |
-
|
2060 |
-
|
2061 |
-
#: ../lib/tribe-settings.class.php:247
|
2062 |
msgid " Save Changes"
|
2063 |
msgstr "Änderungen speichern"
|
2064 |
|
2065 |
-
#:
|
|
|
2066 |
msgid "You don't have permission to do that."
|
2067 |
msgstr "Sie haben nicht die nötigen Rechte dafür."
|
2068 |
|
2069 |
-
#:
|
|
|
2070 |
msgid "The request was sent insecurely."
|
2071 |
-
msgstr "Die Anfrage wurde
|
2072 |
|
2073 |
-
#:
|
|
|
2074 |
msgid "The request wasn't sent from this tab."
|
2075 |
msgstr "Die Anfrage wurde nicht von diesem Tab gesendet."
|
2076 |
|
2077 |
-
#:
|
|
|
2078 |
msgid "Your form had the following errors:"
|
2079 |
msgstr "Ihr Formular hat folgende Fehler:"
|
2080 |
|
2081 |
-
#:
|
|
|
2082 |
msgid "None of your settings were saved. Please try again."
|
2083 |
-
msgstr ""
|
2084 |
-
"Keine Ihrer Eistellungen konnte gespeichert werden. Versuchen Sie es erneut."
|
2085 |
|
2086 |
-
#:
|
2087 |
-
|
2088 |
-
"The above setting was not saved. Other settings were successfully saved."
|
2089 |
-
msgid_plural ""
|
2090 |
-
"
|
2091 |
-
msgstr[
|
2092 |
-
|
2093 |
-
|
2094 |
-
|
2095 |
-
"Diese Einstellungen wurden nicht gespeichert. Alle anderen konnte "
|
2096 |
-
"abgespeichert werden"
|
2097 |
-
|
2098 |
-
# @ tribe-events-calendar
|
2099 |
-
#
|
2100 |
-
#: ../lib/tribe-settings.class.php:509
|
2101 |
msgid "Settings saved."
|
2102 |
msgstr "Einstellungen gespeichert.."
|
2103 |
|
2104 |
-
|
2105 |
-
|
2106 |
-
#, php-format
|
2107 |
-
msgid "There were no results found for <strong>\"%s\"</strong>."
|
2108 |
-
msgstr "Es gab keine Ergebnisse für <strong>\"%s\"</strong>."
|
2109 |
-
|
2110 |
-
# @ tribe-events-calendar
|
2111 |
-
#: ../lib/tribe-template-factory.class.php:235
|
2112 |
-
#, php-format
|
2113 |
-
msgid ""
|
2114 |
-
"listed under %s. Check out past events for this category or view the full "
|
2115 |
-
"calendar."
|
2116 |
-
msgstr ""
|
2117 |
-
"gelistet unter %s. Schauen Sie in den vergangenen Veranstaltungen dieser "
|
2118 |
-
"Kategorie oder im kompletten Kalender."
|
2119 |
-
|
2120 |
-
# @ tribe-events-calendar
|
2121 |
-
#: ../lib/tribe-template-factory.class.php:237
|
2122 |
-
#, php-format
|
2123 |
-
msgid ""
|
2124 |
-
"listed under %s. Check out upcoming events for this category or view the "
|
2125 |
-
"full calendar."
|
2126 |
-
msgstr ""
|
2127 |
-
"gelistet unter %s Schauen Sie in den kommenden Veranstaltungen dieser "
|
2128 |
-
"Ketgorie oder im kompletten Kalender."
|
2129 |
-
|
2130 |
-
# @ default
|
2131 |
-
#: ../lib/tribe-template-factory.class.php:241
|
2132 |
-
#, php-format
|
2133 |
-
msgid "No events scheduled for <strong>%s</strong>. Please try another day."
|
2134 |
-
msgstr ""
|
2135 |
-
"Es wurden keine Veranstaltungen für <strong>%s</strong> gefunden. Bitte "
|
2136 |
-
"versuchen Sie es mit einem anderen Tag erneut."
|
2137 |
-
|
2138 |
-
# @ tribe-events-calendar
|
2139 |
-
#
|
2140 |
-
#: ../lib/tribe-template-factory.class.php:245
|
2141 |
-
msgid "No upcoming events "
|
2142 |
-
msgstr "Keine bevorstehende Veranstaltungen"
|
2143 |
-
|
2144 |
-
# @ tribe-events-calendar
|
2145 |
-
#
|
2146 |
-
#: ../lib/tribe-template-factory.class.php:247
|
2147 |
-
msgid "No matching events "
|
2148 |
-
msgstr "Keine passenden Veranstaltungen"
|
2149 |
-
|
2150 |
-
# @ tribe-events-calendar
|
2151 |
-
#
|
2152 |
-
#: ../lib/tribe-template-factory.class.php:250
|
2153 |
msgid "No previous events "
|
2154 |
-
msgstr "Keine vorherigen Veranstaltungen"
|
2155 |
|
2156 |
-
#:
|
2157 |
#, php-format
|
2158 |
-
|
2159 |
-
"Welcome to Events 2.0! This is a HUGE upgrade from 1.6.5. Please make sure "
|
2160 |
-
"
|
2161 |
-
"\">revert to an old version</a> if you want to backup first. This upgrade "
|
2162 |
-
"includes two major steps, <a href=\"%s\">migrating data</a> & updating "
|
2163 |
-
"your templates as necessary. There have been significant changes to the "
|
2164 |
-
"template tags and functions. Check out our <a href=\"%s\">walk-through on "
|
2165 |
-
"the upgrade</a> before proceeding and check out the FAQ & Knowledge base "
|
2166 |
-
"from the <a href=\"%s\">support page</a>. If you're new to The Events "
|
2167 |
-
"Calendar, you may want to review our <a href=\"%s\">new user primer</a>.<br/"
|
2168 |
-
"><br/> You have events that need to be migrated. Please visit the bottom of "
|
2169 |
-
"the <a href=\"%s\">settings page</a> to perform the migration."
|
2170 |
-
msgstr ""
|
2171 |
|
2172 |
-
|
2173 |
-
|
2174 |
msgid "Upgrade from The Events Calendar"
|
2175 |
msgstr "Upgrade vom Plugin 'The Events Calendar' (freie Version)"
|
2176 |
|
2177 |
-
|
2178 |
-
|
2179 |
-
msgid ""
|
2180 |
-
"
|
2181 |
-
|
2182 |
-
|
2183 |
-
|
2184 |
-
"Es scheint, als hätten Sie noch alte Veranstaltungsdaten in der "
|
2185 |
-
"Datenbank, die aktualisiert werden müssen. Bitte stellen Sie sich, dass "
|
2186 |
-
"Sie vor dem Initialisieren des Upgrades eine Sicherung der (bisherigen) "
|
2187 |
-
"Datenbank anlegen. - Hinweis: Der gesamte Prozess kann <em>nicht</em> rü"
|
2188 |
-
"ckgängig gemacht werden!"
|
2189 |
-
|
2190 |
-
# @ tribe-events-calendar
|
2191 |
-
#: ../lib/tribe-the-events-calendar-import.class.php:88
|
2192 |
msgid "Migrate Data!"
|
2193 |
-
msgstr "Daten migrieren
|
2194 |
|
2195 |
-
|
2196 |
-
#: ../lib/tribe-the-events-calendar-import.class.php:166
|
2197 |
#, php-format
|
|
|
2198 |
msgid "You successfully migrated (%d) entries."
|
2199 |
-
msgstr "Sie haben erfolgreich (%d)
|
2200 |
|
2201 |
-
|
2202 |
-
|
2203 |
msgid "Install has 1 or more legacy event!"
|
2204 |
-
msgstr ""
|
2205 |
-
"In der Installation wurde(n) 1 oder mehrere alte/ abgelaufene Veranstaltung"
|
2206 |
-
"(en) gefunden!"
|
2207 |
|
2208 |
-
#:
|
|
|
|
|
2209 |
msgid "Invalid or incomplete field passed"
|
2210 |
msgstr "Unvollständig oder fehlerhaft."
|
2211 |
|
2212 |
-
#:
|
2213 |
-
#:
|
|
|
|
|
2214 |
msgid "Field ID:"
|
2215 |
msgstr "Feld ID:"
|
2216 |
|
2217 |
-
#:
|
|
|
2218 |
msgid "Non-existant field validation function passed"
|
2219 |
-
msgstr "
|
2220 |
|
2221 |
-
#:
|
|
|
2222 |
msgctxt "non-existant function name passed for field validation"
|
2223 |
msgid "with function name:"
|
2224 |
msgstr "Mit dem Funktionsnamen:"
|
2225 |
|
2226 |
-
#:
|
|
|
2227 |
#, php-format
|
|
|
2228 |
msgid "%s must contain numbers and letters only"
|
2229 |
msgstr "%s darf nur Zahlen und Buchstaben enthalten"
|
2230 |
|
2231 |
-
#:
|
2232 |
#, php-format
|
|
|
2233 |
msgid "%s must contain numbers, letters and dots only"
|
2234 |
msgstr "%s darf nur Zahlen, Buchstaben oder Punkte enthalten"
|
2235 |
|
2236 |
-
#:
|
2237 |
#, php-format
|
|
|
2238 |
msgid "%s must be a positive number."
|
2239 |
msgstr "%s muss eine positive Zahl sein."
|
2240 |
|
2241 |
-
#:
|
2242 |
#, php-format
|
|
|
2243 |
msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
|
2244 |
-
msgstr ""
|
2245 |
-
"%s muss eine gültige Ausgangsform haben (Nummern, Buchstaben, "
|
2246 |
-
"Gedankenstriche und Unterstreichungen)."
|
2247 |
|
2248 |
-
#:
|
2249 |
#, php-format
|
|
|
2250 |
msgid "%s must be a valid absolute URL."
|
2251 |
msgstr "%s muss eine gültige URL sein."
|
2252 |
|
2253 |
-
#:
|
2254 |
-
#:
|
|
|
2255 |
#, php-format
|
|
|
2256 |
msgid "%s must have a value that's part of its options."
|
2257 |
msgstr "%s muss eine Wert haben, der Teil der Optionen ist."
|
2258 |
|
2259 |
-
#:
|
2260 |
#, php-format
|
2261 |
-
|
2262 |
-
"Comparison validation failed because no comparison value was provided, for "
|
2263 |
-
"
|
2264 |
-
msgstr ""
|
2265 |
-
"Der Vergleich ist fehlgeschlagen, weil keine Eingabe im Feld %s gefunden "
|
2266 |
-
"wurde"
|
2267 |
|
2268 |
-
#:
|
2269 |
#, php-format
|
|
|
2270 |
msgid "%s cannot be the same as %s."
|
2271 |
msgstr "%s kann nicht dasselbe sein wie %s."
|
2272 |
|
2273 |
-
#:
|
2274 |
#, php-format
|
|
|
2275 |
msgid "%s cannot be a duplicate"
|
2276 |
msgstr "%s kann nicht vervielfältigt werden"
|
2277 |
|
2278 |
-
#:
|
2279 |
#, php-format
|
|
|
2280 |
msgid "%s must be a number or percentage."
|
2281 |
msgstr "%s muss eine Zahl oder Prozentsatz sein."
|
2282 |
|
2283 |
-
#:
|
2284 |
#, php-format
|
|
|
2285 |
msgid "%s must be a number between 0 and 21."
|
2286 |
msgstr "%s muss eine Zahl zwischen 0 und 21 sein."
|
2287 |
|
2288 |
-
#:
|
2289 |
#, php-format
|
2290 |
-
|
2291 |
-
"%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
|
2292 |
-
msgstr ""
|
2293 |
-
"%s darf nur aus Buchstaben, Zahlen, Gedankenstrichen, Apostrophe und "
|
2294 |
-
"Leerzeichen bestehen. "
|
2295 |
|
2296 |
-
#:
|
2297 |
#, php-format
|
|
|
2298 |
msgid "%s must consist of letters, spaces, apostrophes, and dashes."
|
2299 |
-
msgstr ""
|
2300 |
-
"%s muss aus Buchstaben, Leerzeichen, Apostrophe und Gedankenstrichen "
|
2301 |
-
"bestehen."
|
2302 |
|
2303 |
-
#:
|
2304 |
#, php-format
|
|
|
2305 |
msgid "%s must consist of 5 numbers."
|
2306 |
msgstr "%s muss aus fünf Ziffern bestehen."
|
2307 |
|
2308 |
-
#:
|
2309 |
#, php-format
|
|
|
2310 |
msgid "%s must be a phone number."
|
2311 |
msgstr "%s muss eine Telefonnummer sein."
|
2312 |
|
2313 |
-
#:
|
2314 |
-
|
2315 |
-
"Country List must be formatted as one country per line in the following "
|
2316 |
-
"
|
2317 |
-
msgstr ""
|
2318 |
-
"Die Länder-Liste muss als ein Land pro Zeile in der folgenden Weise "
|
2319 |
-
"formatiert sein: <br>US, United States <br> UK, United Kingdom."
|
2320 |
|
2321 |
-
|
2322 |
-
#:
|
2323 |
-
|
2324 |
msgid "Select a Country:"
|
2325 |
-
msgstr "Ein Land
|
2326 |
|
2327 |
-
|
2328 |
-
|
2329 |
msgid "Afghanistan"
|
2330 |
msgstr "Afghanistan"
|
2331 |
|
2332 |
-
|
2333 |
-
|
2334 |
msgid "Albania"
|
2335 |
msgstr "Albanien"
|
2336 |
|
2337 |
-
|
2338 |
-
|
2339 |
msgid "Algeria"
|
2340 |
msgstr "Algerien"
|
2341 |
|
2342 |
-
|
2343 |
-
|
2344 |
msgid "American Samoa"
|
2345 |
msgstr "Amerikanisch Samoa"
|
2346 |
|
2347 |
-
|
2348 |
-
|
2349 |
msgid "Andorra"
|
2350 |
msgstr "Andorra"
|
2351 |
|
2352 |
-
|
2353 |
-
|
2354 |
msgid "Angola"
|
2355 |
msgstr "Angola"
|
2356 |
|
2357 |
-
|
2358 |
-
|
2359 |
msgid "Anguilla"
|
2360 |
msgstr "Anguilla"
|
2361 |
|
2362 |
-
|
2363 |
-
|
2364 |
msgid "Antarctica"
|
2365 |
msgstr "Antarktika"
|
2366 |
|
2367 |
-
|
2368 |
-
|
2369 |
msgid "Antigua And Barbuda"
|
2370 |
msgstr "Antigua und Barbuda"
|
2371 |
|
2372 |
-
|
2373 |
-
|
2374 |
msgid "Argentina"
|
2375 |
msgstr "Argentinien"
|
2376 |
|
2377 |
-
|
2378 |
-
|
2379 |
msgid "Armenia"
|
2380 |
msgstr "Armenien"
|
2381 |
|
2382 |
-
|
2383 |
-
|
2384 |
msgid "Aruba"
|
2385 |
msgstr "Aruba"
|
2386 |
|
2387 |
-
|
2388 |
-
|
2389 |
msgid "Australia"
|
2390 |
msgstr "Australien"
|
2391 |
|
2392 |
-
|
2393 |
-
|
2394 |
msgid "Austria"
|
2395 |
-
msgstr "
|
2396 |
|
2397 |
-
|
2398 |
-
|
2399 |
msgid "Azerbaijan"
|
2400 |
msgstr "Aserbaidschan"
|
2401 |
|
2402 |
-
|
2403 |
-
|
2404 |
msgid "Bahamas"
|
2405 |
msgstr "Bahamas"
|
2406 |
|
2407 |
-
|
2408 |
-
|
2409 |
msgid "Bahrain"
|
2410 |
msgstr "Bahrain"
|
2411 |
|
2412 |
-
|
2413 |
-
|
2414 |
msgid "Bangladesh"
|
2415 |
msgstr "Bangladesh"
|
2416 |
|
2417 |
-
|
2418 |
-
|
2419 |
msgid "Barbados"
|
2420 |
msgstr "Barbados"
|
2421 |
|
2422 |
-
|
2423 |
-
|
2424 |
msgid "Belarus"
|
2425 |
-
msgstr "
|
2426 |
|
2427 |
-
|
2428 |
-
|
2429 |
msgid "Belgium"
|
2430 |
msgstr "Belgien"
|
2431 |
|
2432 |
-
|
2433 |
-
|
2434 |
msgid "Belize"
|
2435 |
msgstr "Belize"
|
2436 |
|
2437 |
-
|
2438 |
-
|
2439 |
msgid "Benin"
|
2440 |
msgstr "Benin"
|
2441 |
|
2442 |
-
|
2443 |
-
|
2444 |
msgid "Bermuda"
|
2445 |
msgstr "Bermuda"
|
2446 |
|
2447 |
-
|
2448 |
-
|
2449 |
msgid "Bhutan"
|
2450 |
msgstr "Bhutan"
|
2451 |
|
2452 |
-
|
2453 |
-
|
2454 |
msgid "Bolivia"
|
2455 |
msgstr "Bolivien"
|
2456 |
|
2457 |
-
|
2458 |
-
|
2459 |
msgid "Bosnia And Herzegowina"
|
2460 |
msgstr "Bosnien und Herzegowina"
|
2461 |
|
2462 |
-
|
2463 |
-
|
2464 |
msgid "Botswana"
|
2465 |
msgstr "Botswana"
|
2466 |
|
2467 |
-
|
2468 |
-
|
2469 |
msgid "Bouvet Island"
|
2470 |
msgstr "Bouvetinsel"
|
2471 |
|
2472 |
-
|
2473 |
-
|
2474 |
msgid "Brazil"
|
2475 |
msgstr "Brasilien"
|
2476 |
|
2477 |
-
|
2478 |
-
|
2479 |
msgid "British Indian Ocean Territory"
|
2480 |
msgstr "Britisches Territorium im Indischen Ozean"
|
2481 |
|
2482 |
-
|
2483 |
-
|
2484 |
msgid "Brunei Darussalam"
|
2485 |
msgstr "Brunei"
|
2486 |
|
2487 |
-
|
2488 |
-
|
2489 |
msgid "Bulgaria"
|
2490 |
msgstr "Bulgarien"
|
2491 |
|
2492 |
-
|
2493 |
-
|
2494 |
msgid "Burkina Faso"
|
2495 |
msgstr "Burkina Faso"
|
2496 |
|
2497 |
-
|
2498 |
-
|
2499 |
msgid "Burundi"
|
2500 |
msgstr "Burundi"
|
2501 |
|
2502 |
-
|
2503 |
-
|
2504 |
msgid "Cambodia"
|
2505 |
msgstr "Kambodscha"
|
2506 |
|
2507 |
-
|
2508 |
-
|
2509 |
msgid "Cameroon"
|
2510 |
msgstr "Kamerun"
|
2511 |
|
2512 |
-
|
2513 |
-
|
2514 |
msgid "Canada"
|
2515 |
msgstr "Kanada"
|
2516 |
|
2517 |
-
|
2518 |
-
|
2519 |
msgid "Cape Verde"
|
2520 |
msgstr "Kapverdische Inseln"
|
2521 |
|
2522 |
-
|
2523 |
-
|
2524 |
msgid "Cayman Islands"
|
2525 |
msgstr "Cayman Inseln"
|
2526 |
|
2527 |
-
|
2528 |
-
|
2529 |
msgid "Central African Republic"
|
2530 |
msgstr "Zentralafrikanische Republik"
|
2531 |
|
2532 |
-
|
2533 |
-
|
2534 |
msgid "Chad"
|
2535 |
msgstr "Tschad"
|
2536 |
|
2537 |
-
|
2538 |
-
|
2539 |
msgid "Chile"
|
2540 |
msgstr "Chile"
|
2541 |
|
2542 |
-
|
2543 |
-
|
2544 |
msgid "China"
|
2545 |
msgstr "China"
|
2546 |
|
2547 |
-
|
2548 |
-
|
2549 |
msgid "Christmas Island"
|
2550 |
msgstr "Weihnachtsinseln"
|
2551 |
|
2552 |
-
|
2553 |
-
|
2554 |
msgid "Cocos (Keeling) Islands"
|
2555 |
msgstr "Kokosinseln"
|
2556 |
|
2557 |
-
|
2558 |
-
|
2559 |
msgid "Colombia"
|
2560 |
msgstr "Kolumbien"
|
2561 |
|
2562 |
-
|
2563 |
-
|
2564 |
msgid "Comoros"
|
2565 |
msgstr "Komoren"
|
2566 |
|
2567 |
-
|
2568 |
-
|
2569 |
msgid "Congo"
|
2570 |
msgstr "Kongo"
|
2571 |
|
2572 |
-
|
2573 |
-
|
2574 |
msgid "Congo, The Democratic Republic Of The"
|
2575 |
msgstr "Demokratische Republik Kongo"
|
2576 |
|
2577 |
-
|
2578 |
-
|
2579 |
msgid "Cook Islands"
|
2580 |
msgstr "Cook-Inseln"
|
2581 |
|
2582 |
-
|
2583 |
-
|
2584 |
msgid "Costa Rica"
|
2585 |
msgstr "Costa Rica"
|
2586 |
|
2587 |
-
|
2588 |
-
|
2589 |
msgid "Cote D'Ivoire"
|
2590 |
-
msgstr "
|
2591 |
|
2592 |
-
|
2593 |
-
|
2594 |
msgid "Croatia (Local Name: Hrvatska)"
|
2595 |
msgstr "Kroatien"
|
2596 |
|
2597 |
-
|
2598 |
-
|
2599 |
msgid "Cuba"
|
2600 |
msgstr "Kuba"
|
2601 |
|
2602 |
-
|
2603 |
-
|
2604 |
msgid "Cyprus"
|
2605 |
msgstr "Zypern"
|
2606 |
|
2607 |
-
|
2608 |
-
|
2609 |
msgid "Czech Republic"
|
2610 |
msgstr "Tschechische Republik"
|
2611 |
|
2612 |
-
|
2613 |
-
|
2614 |
msgid "Denmark"
|
2615 |
-
msgstr "
|
2616 |
|
2617 |
-
|
2618 |
-
|
2619 |
msgid "Djibouti"
|
2620 |
msgstr "Djibouti"
|
2621 |
|
2622 |
-
|
2623 |
-
|
2624 |
msgid "Dominica"
|
2625 |
msgstr "Dominica"
|
2626 |
|
2627 |
-
|
2628 |
-
|
2629 |
msgid "Dominican Republic"
|
2630 |
msgstr "Dominikanische Republik"
|
2631 |
|
2632 |
-
|
2633 |
-
|
2634 |
msgid "East Timor"
|
2635 |
msgstr "Osttimor"
|
2636 |
|
2637 |
-
|
2638 |
-
|
2639 |
msgid "Ecuador"
|
2640 |
msgstr "Ecuador"
|
2641 |
|
2642 |
-
|
2643 |
-
|
2644 |
msgid "Egypt"
|
2645 |
-
msgstr "
|
2646 |
|
2647 |
-
|
2648 |
-
|
2649 |
msgid "El Salvador"
|
2650 |
msgstr "El Salvador"
|
2651 |
|
2652 |
-
|
2653 |
-
|
2654 |
msgid "Equatorial Guinea"
|
2655 |
-
msgstr "
|
2656 |
|
2657 |
-
|
2658 |
-
|
2659 |
msgid "Eritrea"
|
2660 |
msgstr "Eritrea"
|
2661 |
|
2662 |
-
|
2663 |
-
|
2664 |
msgid "Estonia"
|
2665 |
msgstr "Estland"
|
2666 |
|
2667 |
-
|
2668 |
-
|
2669 |
msgid "Ethiopia"
|
2670 |
-
msgstr "
|
2671 |
|
2672 |
-
|
2673 |
-
|
2674 |
msgid "Falkland Islands (Malvinas)"
|
2675 |
msgstr "Falkland-Inseln (Malvinas)"
|
2676 |
|
2677 |
-
|
2678 |
-
|
2679 |
msgid "Faroe Islands"
|
2680 |
-
msgstr "
|
2681 |
|
2682 |
-
|
2683 |
-
|
2684 |
msgid "Fiji"
|
2685 |
msgstr "Fiji"
|
2686 |
|
2687 |
-
|
2688 |
-
|
2689 |
msgid "Finland"
|
2690 |
msgstr "Finnland"
|
2691 |
|
2692 |
-
|
2693 |
-
|
2694 |
msgid "France"
|
2695 |
msgstr "Frankreich"
|
2696 |
|
2697 |
-
|
2698 |
-
|
2699 |
msgid "France, Metropolitan"
|
2700 |
msgstr "Frankreich (mit Korsika)"
|
2701 |
|
2702 |
-
|
2703 |
-
|
2704 |
msgid "French Guiana"
|
2705 |
-
msgstr "
|
2706 |
|
2707 |
-
|
2708 |
-
|
2709 |
msgid "French Polynesia"
|
2710 |
-
msgstr "
|
2711 |
|
2712 |
-
|
2713 |
-
|
2714 |
msgid "French Southern Territories"
|
2715 |
-
msgstr "
|
2716 |
|
2717 |
-
|
2718 |
-
|
2719 |
msgid "Gabon"
|
2720 |
msgstr "Gabon"
|
2721 |
|
2722 |
-
|
2723 |
-
|
2724 |
msgid "Gambia"
|
2725 |
msgstr "Gambia"
|
2726 |
|
2727 |
-
|
2728 |
-
#:
|
2729 |
-
|
2730 |
msgid "Georgia"
|
2731 |
msgstr "Georgien"
|
2732 |
|
2733 |
-
|
2734 |
-
|
2735 |
msgid "Germany"
|
2736 |
msgstr "Deutschland"
|
2737 |
|
2738 |
-
|
2739 |
-
|
2740 |
msgid "Ghana"
|
2741 |
msgstr "Ghana"
|
2742 |
|
2743 |
-
|
2744 |
-
|
2745 |
msgid "Gibraltar"
|
2746 |
msgstr "Gibraltar"
|
2747 |
|
2748 |
-
|
2749 |
-
|
2750 |
msgid "Greece"
|
2751 |
msgstr "Griechenland"
|
2752 |
|
2753 |
-
|
2754 |
-
|
2755 |
msgid "Greenland"
|
2756 |
-
msgstr "
|
2757 |
|
2758 |
-
|
2759 |
-
|
2760 |
msgid "Grenada"
|
2761 |
msgstr "Grenada"
|
2762 |
|
2763 |
-
|
2764 |
-
|
2765 |
msgid "Guadeloupe"
|
2766 |
msgstr "Guadeloupe"
|
2767 |
|
2768 |
-
|
2769 |
-
|
2770 |
msgid "Guam"
|
2771 |
msgstr "Guam"
|
2772 |
|
2773 |
-
|
2774 |
-
|
2775 |
msgid "Guatemala"
|
2776 |
msgstr "Guatemala"
|
2777 |
|
2778 |
-
|
2779 |
-
|
2780 |
msgid "Guinea"
|
2781 |
msgstr "Guinea"
|
2782 |
|
2783 |
-
|
2784 |
-
|
2785 |
msgid "Guinea-Bissau"
|
2786 |
msgstr "Guinea-Bissau"
|
2787 |
|
2788 |
-
|
2789 |
-
|
2790 |
msgid "Guyana"
|
2791 |
msgstr "Guyana"
|
2792 |
|
2793 |
-
|
2794 |
-
|
2795 |
msgid "Haiti"
|
2796 |
msgstr "Haiti"
|
2797 |
|
2798 |
-
|
2799 |
-
|
2800 |
msgid "Heard And Mc Donald Islands"
|
2801 |
msgstr "Heard und McDonaldinseln"
|
2802 |
|
2803 |
-
|
2804 |
-
|
2805 |
msgid "Holy See (Vatican City State)"
|
2806 |
msgstr "Vatikanstadt (Heiliger Stuhl)"
|
2807 |
|
2808 |
-
|
2809 |
-
|
2810 |
msgid "Honduras"
|
2811 |
msgstr "Honduras"
|
2812 |
|
2813 |
-
|
2814 |
-
|
2815 |
msgid "Hong Kong"
|
2816 |
msgstr "Hongkong"
|
2817 |
|
2818 |
-
|
2819 |
-
|
2820 |
msgid "Hungary"
|
2821 |
msgstr "Ungarn"
|
2822 |
|
2823 |
-
|
2824 |
-
|
2825 |
msgid "Iceland"
|
2826 |
msgstr "Island"
|
2827 |
|
2828 |
-
|
2829 |
-
|
2830 |
msgid "India"
|
2831 |
msgstr "Indien"
|
2832 |
|
2833 |
-
|
2834 |
-
|
2835 |
msgid "Indonesia"
|
2836 |
msgstr "Indonesien"
|
2837 |
|
2838 |
-
|
2839 |
-
|
2840 |
msgid "Iran (Islamic Republic Of)"
|
2841 |
msgstr "Iran (Islamische Republik)"
|
2842 |
|
2843 |
-
|
2844 |
-
|
2845 |
msgid "Iraq"
|
2846 |
msgstr "Irak"
|
2847 |
|
2848 |
-
|
2849 |
-
|
2850 |
msgid "Ireland"
|
2851 |
msgstr "Irland"
|
2852 |
|
2853 |
-
|
2854 |
-
|
2855 |
msgid "Israel"
|
2856 |
msgstr "Israel"
|
2857 |
|
2858 |
-
|
2859 |
-
|
2860 |
msgid "Italy"
|
2861 |
msgstr "Italien"
|
2862 |
|
2863 |
-
|
2864 |
-
|
2865 |
msgid "Jamaica"
|
2866 |
msgstr "Jamaika"
|
2867 |
|
2868 |
-
|
2869 |
-
|
2870 |
msgid "Japan"
|
2871 |
msgstr "Japan"
|
2872 |
|
2873 |
-
|
2874 |
-
|
2875 |
msgid "Jordan"
|
2876 |
msgstr "Jordanien"
|
2877 |
|
2878 |
-
|
2879 |
-
|
2880 |
msgid "Kazakhstan"
|
2881 |
msgstr "Kasachstan"
|
2882 |
|
2883 |
-
|
2884 |
-
|
2885 |
msgid "Kenya"
|
2886 |
msgstr "Kenia"
|
2887 |
|
2888 |
-
|
2889 |
-
|
2890 |
msgid "Kiribati"
|
2891 |
msgstr "Kiribati"
|
2892 |
|
2893 |
-
|
2894 |
-
|
2895 |
msgid "Korea, Democratic People's Republic Of"
|
2896 |
msgstr "Nordkorea (Volksrepublik)"
|
2897 |
|
2898 |
-
|
2899 |
-
|
2900 |
msgid "Korea, Republic Of"
|
2901 |
-
msgstr "
|
2902 |
|
2903 |
-
|
2904 |
-
|
2905 |
msgid "Kuwait"
|
2906 |
msgstr "Kuwait"
|
2907 |
|
2908 |
-
|
2909 |
-
|
2910 |
msgid "Kyrgyzstan"
|
2911 |
msgstr "Kirgistan"
|
2912 |
|
2913 |
-
|
2914 |
-
|
2915 |
msgid "Lao People's Democratic Republic"
|
2916 |
msgstr "Laos"
|
2917 |
|
2918 |
-
|
2919 |
-
|
2920 |
msgid "Latvia"
|
2921 |
msgstr "Lettland"
|
2922 |
|
2923 |
-
|
2924 |
-
|
2925 |
msgid "Lebanon"
|
2926 |
msgstr "Libanon"
|
2927 |
|
2928 |
-
|
2929 |
-
|
2930 |
msgid "Lesotho"
|
2931 |
msgstr "Lesotho"
|
2932 |
|
2933 |
-
|
2934 |
-
|
2935 |
msgid "Liberia"
|
2936 |
msgstr "Liberia"
|
2937 |
|
2938 |
-
|
2939 |
-
|
2940 |
msgid "Libya"
|
2941 |
msgstr "Libyen"
|
2942 |
|
2943 |
-
|
2944 |
-
|
2945 |
msgid "Liechtenstein"
|
2946 |
msgstr "Liechtenstein"
|
2947 |
|
2948 |
-
|
2949 |
-
|
2950 |
msgid "Lithuania"
|
2951 |
msgstr "Lithauen"
|
2952 |
|
2953 |
-
|
2954 |
-
|
2955 |
msgid "Luxembourg"
|
2956 |
msgstr "Luxemburg"
|
2957 |
|
2958 |
-
|
2959 |
-
|
2960 |
msgid "Macau"
|
2961 |
msgstr "Macau"
|
2962 |
|
2963 |
-
|
2964 |
-
|
2965 |
msgid "Macedonia"
|
2966 |
msgstr "Mazedonien"
|
2967 |
|
2968 |
-
|
2969 |
-
|
2970 |
msgid "Madagascar"
|
2971 |
msgstr "Madagascar"
|
2972 |
|
2973 |
-
|
2974 |
-
|
2975 |
msgid "Malawi"
|
2976 |
msgstr "Malawi"
|
2977 |
|
2978 |
-
|
2979 |
-
|
2980 |
msgid "Malaysia"
|
2981 |
msgstr "Malaysia"
|
2982 |
|
2983 |
-
|
2984 |
-
|
2985 |
msgid "Maldives"
|
2986 |
msgstr "Maldiven"
|
2987 |
|
2988 |
-
|
2989 |
-
|
2990 |
msgid "Mali"
|
2991 |
msgstr "Mali"
|
2992 |
|
2993 |
-
|
2994 |
-
|
2995 |
msgid "Malta"
|
2996 |
msgstr "Malta"
|
2997 |
|
2998 |
-
|
2999 |
-
|
3000 |
msgid "Marshall Islands"
|
3001 |
msgstr "Marshallinseln"
|
3002 |
|
3003 |
-
|
3004 |
-
|
3005 |
msgid "Martinique"
|
3006 |
msgstr "Martinique"
|
3007 |
|
3008 |
-
|
3009 |
-
|
3010 |
msgid "Mauritania"
|
3011 |
msgstr "Mauretanien"
|
3012 |
|
3013 |
-
|
3014 |
-
|
3015 |
msgid "Mauritius"
|
3016 |
msgstr "Mauritius"
|
3017 |
|
3018 |
-
|
3019 |
-
|
3020 |
msgid "Mayotte"
|
3021 |
msgstr "Mayotte"
|
3022 |
|
3023 |
-
|
3024 |
-
|
3025 |
msgid "Mexico"
|
3026 |
msgstr "Mexiko"
|
3027 |
|
3028 |
-
|
3029 |
-
|
3030 |
msgid "Micronesia, Federated States Of"
|
3031 |
msgstr "Mikronesien"
|
3032 |
|
3033 |
-
|
3034 |
-
|
3035 |
msgid "Moldova, Republic Of"
|
3036 |
msgstr "Moldawien"
|
3037 |
|
3038 |
-
|
3039 |
-
|
3040 |
msgid "Monaco"
|
3041 |
msgstr "Monaco"
|
3042 |
|
3043 |
-
|
3044 |
-
|
3045 |
msgid "Mongolia"
|
3046 |
msgstr "Mongolei"
|
3047 |
|
3048 |
-
|
3049 |
-
|
3050 |
msgid "Montenegro"
|
3051 |
msgstr "Montenegro"
|
3052 |
|
3053 |
-
|
3054 |
-
|
3055 |
msgid "Montserrat"
|
3056 |
msgstr "Montserrat"
|
3057 |
|
3058 |
-
|
3059 |
-
|
3060 |
msgid "Morocco"
|
3061 |
msgstr "Marokko"
|
3062 |
|
3063 |
-
|
3064 |
-
|
3065 |
msgid "Mozambique"
|
3066 |
msgstr "Mosambik"
|
3067 |
|
3068 |
-
|
3069 |
-
|
3070 |
msgid "Myanmar"
|
3071 |
msgstr "Myanmar"
|
3072 |
|
3073 |
-
|
3074 |
-
|
3075 |
msgid "Namibia"
|
3076 |
msgstr "Namibia"
|
3077 |
|
3078 |
-
|
3079 |
-
|
3080 |
msgid "Nauru"
|
3081 |
msgstr "Nauru"
|
3082 |
|
3083 |
-
|
3084 |
-
|
3085 |
msgid "Nepal"
|
3086 |
msgstr "Nepal"
|
3087 |
|
3088 |
-
|
3089 |
-
|
3090 |
msgid "Netherlands"
|
3091 |
msgstr "Niederlande"
|
3092 |
|
3093 |
-
|
3094 |
-
|
3095 |
msgid "Netherlands Antilles"
|
3096 |
-
msgstr "
|
3097 |
|
3098 |
-
|
3099 |
-
|
3100 |
msgid "New Caledonia"
|
3101 |
msgstr "Neukaledonien"
|
3102 |
|
3103 |
-
|
3104 |
-
|
3105 |
msgid "New Zealand"
|
3106 |
msgstr "Neuseeland"
|
3107 |
|
3108 |
-
|
3109 |
-
|
3110 |
msgid "Nicaragua"
|
3111 |
msgstr "Nicaragua"
|
3112 |
|
3113 |
-
|
3114 |
-
|
3115 |
msgid "Niger"
|
3116 |
msgstr "Niger"
|
3117 |
|
3118 |
-
|
3119 |
-
|
3120 |
msgid "Nigeria"
|
3121 |
msgstr "Nigeria"
|
3122 |
|
3123 |
-
|
3124 |
-
|
3125 |
msgid "Niue"
|
3126 |
msgstr "Niue"
|
3127 |
|
3128 |
-
|
3129 |
-
|
3130 |
msgid "Norfolk Island"
|
3131 |
msgstr "Norfolkinsel"
|
3132 |
|
3133 |
-
|
3134 |
-
|
3135 |
msgid "Northern Mariana Islands"
|
3136 |
-
msgstr "
|
3137 |
|
3138 |
-
|
3139 |
-
|
3140 |
msgid "Norway"
|
3141 |
msgstr "Norwegen"
|
3142 |
|
3143 |
-
|
3144 |
-
|
3145 |
msgid "Oman"
|
3146 |
msgstr "Oman"
|
3147 |
|
3148 |
-
|
3149 |
-
|
3150 |
msgid "Pakistan"
|
3151 |
msgstr "Pakistan"
|
3152 |
|
3153 |
-
|
3154 |
-
|
3155 |
msgid "Palau"
|
3156 |
msgstr "Palau"
|
3157 |
|
3158 |
-
|
3159 |
-
|
3160 |
msgid "Panama"
|
3161 |
msgstr "Panama"
|
3162 |
|
3163 |
-
|
3164 |
-
|
3165 |
msgid "Papua New Guinea"
|
3166 |
msgstr "Papua-Neuguinea"
|
3167 |
|
3168 |
-
|
3169 |
-
|
3170 |
msgid "Paraguay"
|
3171 |
msgstr "Paraguay"
|
3172 |
|
3173 |
-
|
3174 |
-
|
3175 |
msgid "Peru"
|
3176 |
msgstr "Peru"
|
3177 |
|
3178 |
-
|
3179 |
-
|
3180 |
msgid "Philippines"
|
3181 |
msgstr "Philippinen"
|
3182 |
|
3183 |
-
|
3184 |
-
|
3185 |
msgid "Pitcairn"
|
3186 |
msgstr "Pitcairn"
|
3187 |
|
3188 |
-
|
3189 |
-
|
3190 |
msgid "Poland"
|
3191 |
msgstr "Polen"
|
3192 |
|
3193 |
-
|
3194 |
-
|
3195 |
msgid "Portugal"
|
3196 |
msgstr "Portugal"
|
3197 |
|
3198 |
-
|
3199 |
-
|
3200 |
msgid "Puerto Rico"
|
3201 |
msgstr "Puerto Rico"
|
3202 |
|
3203 |
-
|
3204 |
-
|
3205 |
msgid "Qatar"
|
3206 |
msgstr "Katar"
|
3207 |
|
3208 |
-
|
3209 |
-
|
3210 |
msgid "Reunion"
|
3211 |
msgstr "Reunion"
|
3212 |
|
3213 |
-
|
3214 |
-
|
3215 |
msgid "Romania"
|
3216 |
-
msgstr "
|
3217 |
|
3218 |
-
|
3219 |
-
|
3220 |
msgid "Russian Federation"
|
3221 |
msgstr "Russland / Russische Förderation"
|
3222 |
|
3223 |
-
|
3224 |
-
|
3225 |
msgid "Rwanda"
|
3226 |
msgstr "Ruanda"
|
3227 |
|
3228 |
-
|
3229 |
-
|
3230 |
msgid "Saint Kitts And Nevis"
|
3231 |
msgstr "St. Kitts und Nevis"
|
3232 |
|
3233 |
-
|
3234 |
-
|
3235 |
msgid "Saint Lucia"
|
3236 |
msgstr "Saint Lucia"
|
3237 |
|
3238 |
-
|
3239 |
-
|
3240 |
msgid "Saint Vincent And The Grenadines"
|
3241 |
msgstr "St. Vincent und die Grenadinen"
|
3242 |
|
3243 |
-
|
3244 |
-
|
3245 |
msgid "Samoa"
|
3246 |
msgstr "Samoa"
|
3247 |
|
3248 |
-
|
3249 |
-
|
3250 |
msgid "San Marino"
|
3251 |
msgstr "San Marino"
|
3252 |
|
3253 |
-
|
3254 |
-
|
3255 |
msgid "Sao Tome And Principe"
|
3256 |
msgstr "São Tomé und Príncipe"
|
3257 |
|
3258 |
-
|
3259 |
-
|
3260 |
msgid "Saudi Arabia"
|
3261 |
msgstr "Saudi-Arabien"
|
3262 |
|
3263 |
-
|
3264 |
-
|
3265 |
msgid "Senegal"
|
3266 |
msgstr "Senegal"
|
3267 |
|
3268 |
-
|
3269 |
-
|
3270 |
msgid "Serbia"
|
3271 |
msgstr "Serbien"
|
3272 |
|
3273 |
-
|
3274 |
-
|
3275 |
msgid "Seychelles"
|
3276 |
msgstr "Seychellen"
|
3277 |
|
3278 |
-
|
3279 |
-
|
3280 |
msgid "Sierra Leone"
|
3281 |
msgstr "Sierra Leone"
|
3282 |
|
3283 |
-
|
3284 |
-
|
3285 |
msgid "Singapore"
|
3286 |
msgstr "Singapur"
|
3287 |
|
3288 |
-
|
3289 |
-
|
3290 |
msgid "Slovakia (Slovak Republic)"
|
3291 |
msgstr "Slowakei"
|
3292 |
|
3293 |
-
|
3294 |
-
|
3295 |
msgid "Slovenia"
|
3296 |
msgstr "Slovenien"
|
3297 |
|
3298 |
-
|
3299 |
-
|
3300 |
msgid "Solomon Islands"
|
3301 |
msgstr "Salomonen"
|
3302 |
|
3303 |
-
|
3304 |
-
|
3305 |
msgid "Somalia"
|
3306 |
msgstr "Somalia"
|
3307 |
|
3308 |
-
|
3309 |
-
|
3310 |
msgid "South Africa"
|
3311 |
msgstr "Südafrika"
|
3312 |
|
3313 |
-
|
3314 |
-
|
3315 |
msgid "South Georgia, South Sandwich Islands"
|
3316 |
msgstr "Südgeorgien und die Südlichen Sandwichinseln"
|
3317 |
|
3318 |
-
|
3319 |
-
|
3320 |
msgid "Spain"
|
3321 |
msgstr "Spanien"
|
3322 |
|
3323 |
-
|
3324 |
-
|
3325 |
msgid "Sri Lanka"
|
3326 |
msgstr "Sri Lanka"
|
3327 |
|
3328 |
-
|
3329 |
-
|
3330 |
msgid "St. Helena"
|
3331 |
msgstr "St. Helena"
|
3332 |
|
3333 |
-
|
3334 |
-
|
3335 |
msgid "St. Pierre And Miquelon"
|
3336 |
msgstr "Saint-Pierre und Miquelon"
|
3337 |
|
3338 |
-
|
3339 |
-
|
3340 |
msgid "Sudan"
|
3341 |
msgstr "Sudan"
|
3342 |
|
3343 |
-
|
3344 |
-
|
3345 |
msgid "Suriname"
|
3346 |
msgstr "Surinam"
|
3347 |
|
3348 |
-
|
3349 |
-
|
3350 |
msgid "Svalbard And Jan Mayen Islands"
|
3351 |
msgstr "Svalbard und Jan Mayen Islands"
|
3352 |
|
3353 |
-
|
3354 |
-
|
3355 |
msgid "Swaziland"
|
3356 |
msgstr "Swasiland"
|
3357 |
|
3358 |
-
|
3359 |
-
|
3360 |
msgid "Sweden"
|
3361 |
msgstr "Schweden"
|
3362 |
|
3363 |
-
|
3364 |
-
|
3365 |
msgid "Switzerland"
|
3366 |
msgstr "Schweiz"
|
3367 |
|
3368 |
-
|
3369 |
-
|
3370 |
msgid "Syrian Arab Republic"
|
3371 |
msgstr "Syrien"
|
3372 |
|
3373 |
-
|
3374 |
-
|
3375 |
msgid "Taiwan"
|
3376 |
msgstr "Taiwan"
|
3377 |
|
3378 |
-
|
3379 |
-
|
3380 |
msgid "Tajikistan"
|
3381 |
msgstr "Tadschikistan"
|
3382 |
|
3383 |
-
|
3384 |
-
|
3385 |
msgid "Tanzania, United Republic Of"
|
3386 |
msgstr "Tanzania"
|
3387 |
|
3388 |
-
|
3389 |
-
|
3390 |
msgid "Thailand"
|
3391 |
msgstr "Thailand"
|
3392 |
|
3393 |
-
|
3394 |
-
|
3395 |
msgid "Togo"
|
3396 |
msgstr "Togo"
|
3397 |
|
3398 |
-
|
3399 |
-
|
3400 |
msgid "Tokelau"
|
3401 |
msgstr "Tokelau"
|
3402 |
|
3403 |
-
|
3404 |
-
|
3405 |
msgid "Tonga"
|
3406 |
msgstr "Tonga"
|
3407 |
|
3408 |
-
|
3409 |
-
|
3410 |
msgid "Trinidad And Tobago"
|
3411 |
msgstr "Trinidad und Tobago"
|
3412 |
|
3413 |
-
|
3414 |
-
|
3415 |
msgid "Tunisia"
|
3416 |
msgstr "Tunesien"
|
3417 |
|
3418 |
-
|
3419 |
-
|
3420 |
msgid "Turkey"
|
3421 |
-
msgstr "
|
3422 |
|
3423 |
-
|
3424 |
-
|
3425 |
msgid "Turkmenistan"
|
3426 |
msgstr "Turkmenistan"
|
3427 |
|
3428 |
-
|
3429 |
-
|
3430 |
msgid "Turks And Caicos Islands"
|
3431 |
msgstr "Turks- und Caicosinseln"
|
3432 |
|
3433 |
-
|
3434 |
-
|
3435 |
msgid "Tuvalu"
|
3436 |
msgstr "Tuvalu"
|
3437 |
|
3438 |
-
|
3439 |
-
|
3440 |
msgid "Uganda"
|
3441 |
msgstr "Uganda"
|
3442 |
|
3443 |
-
|
3444 |
-
|
3445 |
msgid "Ukraine"
|
3446 |
msgstr "Ukraine"
|
3447 |
|
3448 |
-
|
3449 |
-
|
3450 |
msgid "United Arab Emirates"
|
3451 |
msgstr "Vereinigte Arabische Emirate"
|
3452 |
|
3453 |
-
|
3454 |
-
|
3455 |
msgid "United Kingdom"
|
3456 |
-
msgstr "
|
3457 |
|
3458 |
-
|
3459 |
-
|
3460 |
msgid "United States Minor Outlying Islands"
|
3461 |
msgstr "United States Minor Outlying Islands"
|
3462 |
|
3463 |
-
|
3464 |
-
|
3465 |
msgid "Uruguay"
|
3466 |
msgstr "Uruguay"
|
3467 |
|
3468 |
-
|
3469 |
-
|
3470 |
msgid "Uzbekistan"
|
3471 |
msgstr "Usbekistan"
|
3472 |
|
3473 |
-
|
3474 |
-
|
3475 |
msgid "Vanuatu"
|
3476 |
msgstr "Vanuatu"
|
3477 |
|
3478 |
-
|
3479 |
-
|
3480 |
msgid "Venezuela"
|
3481 |
msgstr "Venezuela"
|
3482 |
|
3483 |
-
|
3484 |
-
|
3485 |
msgid "Viet Nam"
|
3486 |
msgstr "Vietnam"
|
3487 |
|
3488 |
-
|
3489 |
-
|
3490 |
msgid "Virgin Islands (British)"
|
3491 |
msgstr "Britische Jungferninseln"
|
3492 |
|
3493 |
-
|
3494 |
-
|
3495 |
msgid "Virgin Islands (U.S.)"
|
3496 |
msgstr "Amerikanische Jungferninseln"
|
3497 |
|
3498 |
-
|
3499 |
-
|
3500 |
msgid "Wallis And Futuna Islands"
|
3501 |
msgstr "Wallis und Futuna"
|
3502 |
|
3503 |
-
|
3504 |
-
|
3505 |
msgid "Western Sahara"
|
3506 |
msgstr "Westsahara"
|
3507 |
|
3508 |
-
|
3509 |
-
|
3510 |
msgid "Yemen"
|
3511 |
msgstr "Jemen"
|
3512 |
|
3513 |
-
|
3514 |
-
|
3515 |
msgid "Zambia"
|
3516 |
msgstr "Sambia"
|
3517 |
|
3518 |
-
|
3519 |
-
|
3520 |
msgid "Zimbabwe"
|
3521 |
msgstr "Simbabwe"
|
3522 |
|
3523 |
-
|
3524 |
-
|
3525 |
msgid "Alabama"
|
3526 |
msgstr "Alabama"
|
3527 |
|
3528 |
-
|
3529 |
-
|
3530 |
msgid "Alaska"
|
3531 |
msgstr "Alaska"
|
3532 |
|
3533 |
-
|
3534 |
-
|
3535 |
msgid "Arizona"
|
3536 |
msgstr "Arizona"
|
3537 |
|
3538 |
-
|
3539 |
-
|
3540 |
msgid "Arkansas"
|
3541 |
msgstr "Arkansas"
|
3542 |
|
3543 |
-
|
3544 |
-
|
3545 |
msgid "California"
|
3546 |
msgstr "Kalifornien"
|
3547 |
|
3548 |
-
|
3549 |
-
|
3550 |
msgid "Colorado"
|
3551 |
msgstr "Colorado"
|
3552 |
|
3553 |
-
|
3554 |
-
|
3555 |
msgid "Connecticut"
|
3556 |
msgstr "Connecticut"
|
3557 |
|
3558 |
-
|
3559 |
-
|
3560 |
msgid "Delaware"
|
3561 |
msgstr "Delaware"
|
3562 |
|
3563 |
-
|
3564 |
-
|
3565 |
msgid "District of Columbia"
|
3566 |
msgstr "District of Columbia"
|
3567 |
|
3568 |
-
|
3569 |
-
|
3570 |
msgid "Florida"
|
3571 |
msgstr "Florida"
|
3572 |
|
3573 |
-
|
3574 |
-
|
3575 |
msgid "Hawaii"
|
3576 |
msgstr "Hawaii"
|
3577 |
|
3578 |
-
|
3579 |
-
|
3580 |
msgid "Idaho"
|
3581 |
msgstr "Idaho"
|
3582 |
|
3583 |
-
|
3584 |
-
|
3585 |
msgid "Illinois"
|
3586 |
msgstr "Illinois"
|
3587 |
|
3588 |
-
|
3589 |
-
|
3590 |
msgid "Indiana"
|
3591 |
msgstr "Indiana"
|
3592 |
|
3593 |
-
|
3594 |
-
|
3595 |
msgid "Iowa"
|
3596 |
msgstr "Iowa"
|
3597 |
|
3598 |
-
|
3599 |
-
|
3600 |
msgid "Kansas"
|
3601 |
msgstr "Kansas"
|
3602 |
|
3603 |
-
|
3604 |
-
|
3605 |
msgid "Kentucky"
|
3606 |
msgstr "Kentucky"
|
3607 |
|
3608 |
-
|
3609 |
-
|
3610 |
msgid "Louisiana"
|
3611 |
msgstr "Louisiana"
|
3612 |
|
3613 |
-
|
3614 |
-
|
3615 |
msgid "Maine"
|
3616 |
msgstr "Maine"
|
3617 |
|
3618 |
-
|
3619 |
-
|
3620 |
msgid "Maryland"
|
3621 |
msgstr "Maryland"
|
3622 |
|
3623 |
-
|
3624 |
-
|
3625 |
msgid "Massachusetts"
|
3626 |
msgstr "Massachusetts"
|
3627 |
|
3628 |
-
|
3629 |
-
|
3630 |
msgid "Michigan"
|
3631 |
msgstr "Michigan"
|
3632 |
|
3633 |
-
|
3634 |
-
|
3635 |
msgid "Minnesota"
|
3636 |
msgstr "Minnesota"
|
3637 |
|
3638 |
-
|
3639 |
-
|
3640 |
msgid "Mississippi"
|
3641 |
msgstr "Mississippi"
|
3642 |
|
3643 |
-
|
3644 |
-
|
3645 |
msgid "Missouri"
|
3646 |
msgstr "Missouri"
|
3647 |
|
3648 |
-
|
3649 |
-
|
3650 |
msgid "Montana"
|
3651 |
msgstr "Montana"
|
3652 |
|
3653 |
-
|
3654 |
-
|
3655 |
msgid "Nebraska"
|
3656 |
msgstr "Nebraska"
|
3657 |
|
3658 |
-
|
3659 |
-
|
3660 |
msgid "Nevada"
|
3661 |
msgstr "Nevada"
|
3662 |
|
3663 |
-
|
3664 |
-
|
3665 |
msgid "New Hampshire"
|
3666 |
msgstr "New Hampshire"
|
3667 |
|
3668 |
-
|
3669 |
-
|
3670 |
msgid "New Jersey"
|
3671 |
msgstr "New Jersey"
|
3672 |
|
3673 |
-
|
3674 |
-
|
3675 |
msgid "New Mexico"
|
3676 |
msgstr "New Mexico"
|
3677 |
|
3678 |
-
|
3679 |
-
|
3680 |
msgid "New York"
|
3681 |
msgstr "New York"
|
3682 |
|
3683 |
-
|
3684 |
-
|
3685 |
msgid "North Carolina"
|
3686 |
msgstr "North Carolina"
|
3687 |
|
3688 |
-
|
3689 |
-
|
3690 |
msgid "North Dakota"
|
3691 |
msgstr "North Dakota"
|
3692 |
|
3693 |
-
|
3694 |
-
|
3695 |
msgid "Ohio"
|
3696 |
msgstr "Ohio"
|
3697 |
|
3698 |
-
|
3699 |
-
|
3700 |
msgid "Oklahoma"
|
3701 |
msgstr "Oklahoma"
|
3702 |
|
3703 |
-
|
3704 |
-
|
3705 |
msgid "Oregon"
|
3706 |
msgstr "Oregon"
|
3707 |
|
3708 |
-
|
3709 |
-
|
3710 |
msgid "Pennsylvania"
|
3711 |
msgstr "Pennsylvania"
|
3712 |
|
3713 |
-
|
3714 |
-
|
3715 |
msgid "Rhode Island"
|
3716 |
msgstr "Rhode Island"
|
3717 |
|
3718 |
-
|
3719 |
-
|
3720 |
msgid "South Carolina"
|
3721 |
msgstr "South Carolina"
|
3722 |
|
3723 |
-
|
3724 |
-
|
3725 |
msgid "South Dakota"
|
3726 |
msgstr "South Dakota"
|
3727 |
|
3728 |
-
|
3729 |
-
|
3730 |
msgid "Tennessee"
|
3731 |
msgstr "Tennessee"
|
3732 |
|
3733 |
-
|
3734 |
-
|
3735 |
msgid "Texas"
|
3736 |
msgstr "Texas"
|
3737 |
|
3738 |
-
|
3739 |
-
|
3740 |
msgid "Utah"
|
3741 |
msgstr "Utah"
|
3742 |
|
3743 |
-
|
3744 |
-
|
3745 |
msgid "Vermont"
|
3746 |
msgstr "Vermont"
|
3747 |
|
3748 |
-
|
3749 |
-
|
3750 |
msgid "Virginia"
|
3751 |
msgstr "Virginia"
|
3752 |
|
3753 |
-
|
3754 |
-
|
3755 |
msgid "Washington"
|
3756 |
msgstr "Washington"
|
3757 |
|
3758 |
-
|
3759 |
-
|
3760 |
msgid "West Virginia"
|
3761 |
msgstr "West Virginia"
|
3762 |
|
3763 |
-
|
3764 |
-
|
3765 |
msgid "Wisconsin"
|
3766 |
msgstr "Wisconsin"
|
3767 |
|
3768 |
-
|
3769 |
-
|
3770 |
msgid "Wyoming"
|
3771 |
msgstr "Wyoming"
|
3772 |
|
3773 |
-
|
3774 |
-
|
3775 |
-
#: ../lib/widget-list.class.php:21
|
3776 |
msgid "A widget that displays upcoming events."
|
3777 |
msgstr "Ein Widget, dass die nächsten Veranstaltungen anzeigt."
|
3778 |
|
3779 |
-
|
3780 |
-
|
3781 |
msgid "Events List"
|
3782 |
msgstr "Veranstaltungsliste"
|
3783 |
|
3784 |
-
|
3785 |
-
|
3786 |
msgid "View All Events"
|
3787 |
msgstr "Alle Veranstaltungen ansehen"
|
3788 |
|
3789 |
-
|
3790 |
-
|
3791 |
msgid "There are no upcoming events at this time."
|
3792 |
-
msgstr "Es gibt derzeit keine
|
3793 |
|
3794 |
-
#:
|
3795 |
#, php-format
|
3796 |
-
|
3797 |
-
"There were no results found for <strong>\"%s\"</strong> this month. Try "
|
3798 |
-
"
|
3799 |
-
msgstr ""
|
3800 |
-
"Es wurden keine Ergebnisse für <strong>\"%s\"</strong> in diesem Monat "
|
3801 |
-
"gefunden. Versuchen Sie es mit dem nächsten Monat."
|
3802 |
|
3803 |
-
|
3804 |
-
|
3805 |
msgid "This event has passed."
|
3806 |
msgstr "Diese Veranstaltung ist bereits vorbei."
|
3807 |
|
3808 |
-
#:
|
|
|
3809 |
msgid "Order #"
|
3810 |
-
msgstr "
|
3811 |
|
3812 |
-
#:
|
|
|
3813 |
msgid "Order Status"
|
3814 |
msgstr "Bestellstatus"
|
3815 |
|
3816 |
-
#:
|
|
|
3817 |
msgid "Purchaser name"
|
3818 |
msgstr "Käufer Name"
|
3819 |
|
3820 |
-
#:
|
|
|
3821 |
msgid "Purchaser email"
|
3822 |
msgstr "Käufer E-Mail"
|
3823 |
|
3824 |
-
#:
|
|
|
3825 |
msgid "Ticket type"
|
3826 |
msgstr "Karten Art"
|
3827 |
|
3828 |
-
#:
|
3829 |
-
#:
|
|
|
3830 |
msgid "Ticket #"
|
3831 |
-
msgstr "
|
3832 |
|
3833 |
-
#:
|
3834 |
-
#:
|
|
|
3835 |
msgid "Security Code"
|
3836 |
msgstr "Sicherheitscode"
|
3837 |
|
3838 |
-
#:
|
3839 |
-
#:
|
3840 |
-
#:
|
|
|
3841 |
msgid "Check in"
|
3842 |
msgstr "einchecken"
|
3843 |
|
3844 |
-
#:
|
3845 |
-
#:
|
|
|
3846 |
msgid "Undo Check in"
|
3847 |
msgstr "einchecken rückgängig machen"
|
3848 |
|
3849 |
-
#:
|
|
|
3850 |
msgid "Print"
|
3851 |
msgstr "Drucken"
|
3852 |
|
3853 |
-
|
3854 |
-
|
3855 |
-
#: ../lib/tickets/tribe-tickets-attendees.php:180
|
3856 |
msgid "Email"
|
3857 |
msgstr "E-Mail"
|
3858 |
|
3859 |
-
#:
|
|
|
3860 |
msgid "Export"
|
3861 |
msgstr "Export"
|
3862 |
|
3863 |
-
#:
|
|
|
3864 |
msgid "Filter by ticket #, order # or security code"
|
3865 |
-
msgstr "Nach
|
3866 |
|
3867 |
-
#:
|
|
|
3868 |
msgid "Tickets"
|
3869 |
msgstr "Karten"
|
3870 |
|
3871 |
-
#:
|
|
|
3872 |
msgid "Ticket header image"
|
3873 |
msgstr "Karten Bild"
|
3874 |
|
3875 |
-
#:
|
|
|
3876 |
msgid "Set as ticket header"
|
3877 |
msgstr "Ein Karten Bild senden"
|
3878 |
|
3879 |
-
#:
|
|
|
3880 |
msgid "You need to select a user or type a valid email address"
|
3881 |
msgstr "Sie müssen einen Nutzer oder eine gültige E-Mailadresse wählen"
|
3882 |
|
3883 |
-
#:
|
|
|
3884 |
msgid "Sending..."
|
3885 |
msgstr "Senden..."
|
3886 |
|
3887 |
-
#:
|
|
|
3888 |
msgid "Columns"
|
3889 |
msgstr "Spalten"
|
3890 |
|
3891 |
-
#:
|
3892 |
-
|
3893 |
-
"You can use Screen Options to select which columns you want to see. The "
|
3894 |
-
"
|
3895 |
-
"export."
|
3896 |
-
msgstr ""
|
3897 |
-
"Verwenden Sie die Bildschirmoptionen, um auszuwählen, welche Rubriken Sie "
|
3898 |
-
"sehen wollen. Die kann genutzt werden in der Anzeige unten, für eMail, Druck "
|
3899 |
-
"oder CSV-Export."
|
3900 |
|
3901 |
-
#:
|
|
|
3902 |
msgid "attendees"
|
3903 |
msgstr "Teilnehmer"
|
3904 |
|
3905 |
-
#:
|
3906 |
#, php-format
|
|
|
3907 |
msgid "Attendee List for: %s"
|
3908 |
msgstr "Teilnehmer Liste für: %s"
|
3909 |
|
3910 |
-
#:
|
|
|
3911 |
msgid "Your ticket has been saved."
|
3912 |
msgstr "Ihre Karte wurde gespeichert."
|
3913 |
|
3914 |
-
#:
|
|
|
3915 |
msgid "Your ticket has been deleted."
|
3916 |
msgstr "Ihre Karte wurde gelöscht."
|
3917 |
|
3918 |
-
|
3919 |
-
|
3920 |
msgid "Start:"
|
3921 |
msgstr "Beginn:"
|
3922 |
|
3923 |
-
|
3924 |
-
|
3925 |
msgid "End:"
|
3926 |
msgstr "Ende:"
|
3927 |
|
3928 |
-
|
3929 |
-
|
3930 |
-
|
3931 |
msgid "Date:"
|
3932 |
msgstr "Datum"
|
3933 |
|
3934 |
-
|
3935 |
-
|
3936 |
msgid "Click to view a Google Map"
|
3937 |
msgstr "Klicken, um eine 'Google Maps'-Karte anzuzeigen"
|
3938 |
|
3939 |
-
|
3940 |
-
|
3941 |
-
#: ../public/advanced-functions/meta.php:234
|
3942 |
msgid "+ Google Map"
|
3943 |
msgstr "+ Google Karte"
|
3944 |
|
3945 |
-
#:
|
|
|
3946 |
msgid "Details"
|
3947 |
msgstr "Details"
|
3948 |
|
3949 |
-
|
3950 |
-
|
3951 |
-
#: ../public/advanced-functions/meta.php:295
|
3952 |
msgid "Event Tags:"
|
3953 |
msgstr "Veranstaltungstags:"
|
3954 |
|
3955 |
-
#:
|
|
|
3956 |
msgid "Origin:"
|
3957 |
msgstr "Quelle:"
|
3958 |
|
3959 |
-
|
3960 |
-
|
3961 |
msgid "Event:"
|
3962 |
msgstr "Anlass:"
|
3963 |
|
3964 |
-
|
3965 |
-
|
3966 |
-
#: ../public/template-tags/deprecated.php:1143
|
3967 |
msgid "Category"
|
3968 |
msgstr "Kategorie"
|
3969 |
|
3970 |
-
#:
|
|
|
3971 |
msgid "Tags:"
|
3972 |
msgstr "Tags:"
|
3973 |
|
3974 |
-
|
3975 |
-
|
3976 |
-
#: ../public/template-tags/general.php:392
|
3977 |
msgid "Loading Events"
|
3978 |
msgstr "Veranstaltungen laden"
|
3979 |
|
3980 |
-
|
3981 |
-
|
3982 |
msgid "Free"
|
3983 |
msgstr "Eintritt frei"
|
3984 |
|
3985 |
-
|
3986 |
-
|
3987 |
-
#: ../public/template-tags/general.php:703
|
3988 |
msgid "Recurring Event"
|
3989 |
msgstr "Wiederkehrene Veranstaltung"
|
3990 |
|
3991 |
-
#:
|
|
|
3992 |
msgid "(See all)"
|
3993 |
msgstr "(Alle anzeigen)"
|
3994 |
|
3995 |
-
|
3996 |
-
#: ../public/template-tags/general.php:982
|
3997 |
#, php-format
|
|
|
3998 |
msgid "Calendar powered by %sThe Events Calendar%s"
|
3999 |
msgstr "Kalender powered by %sThe Events Calendar%s"
|
4000 |
|
4001 |
-
|
4002 |
-
#: ../public/template-tags/loop.php:150
|
4003 |
-
#, php-format
|
4004 |
-
msgid "Events for %1$s"
|
4005 |
-
msgstr "Veranstaltungen im %1$s"
|
4006 |
-
|
4007 |
-
# @ tribe-events-calendar
|
4008 |
-
#: ../public/template-tags/loop.php:158
|
4009 |
-
#, php-format
|
4010 |
-
msgid "Events for %1$s through %2$s"
|
4011 |
-
msgstr "Veranstaltungen für %1$s bis %2$s"
|
4012 |
-
|
4013 |
-
# @ tribe-events-calendar
|
4014 |
-
#
|
4015 |
-
#: ../public/template-tags/loop.php:171
|
4016 |
-
msgid "Events for "
|
4017 |
-
msgstr "Veranstaltungen im "
|
4018 |
-
|
4019 |
-
# @ tribe-events-calendar
|
4020 |
-
#: ../public/template-tags/options.php:20
|
4021 |
#, php-format
|
|
|
4022 |
msgid "Your current Events URL is %s"
|
4023 |
-
msgstr "Ihre aktuelle Veranstaltungs
|
4024 |
|
4025 |
-
|
4026 |
-
#: ../public/template-tags/options.php:31
|
4027 |
#, php-format
|
4028 |
-
|
4029 |
-
"You <strong>cannot</strong> use the same slug as above. The above should "
|
4030 |
-
"
|
4031 |
-
msgstr ""
|
4032 |
-
"Sie <strong>können nicht</strong>die gleiche URL wie Oben nutzen. "
|
4033 |
-
"Idealerweise solle die obere im Plural und diese im Singular stehen <br /"
|
4034 |
-
">Ihre Einzelveranstaltungs URL ist: %s"
|
4035 |
|
4036 |
-
|
4037 |
-
|
4038 |
-
#: ../views/single-event.php:23
|
4039 |
msgid "« All Events"
|
4040 |
-
msgstr "« Alle
|
4041 |
|
4042 |
-
|
4043 |
-
|
4044 |
-
|
4045 |
msgid "Event Navigation"
|
4046 |
msgstr "Veranstaltungsnavigation"
|
4047 |
|
4048 |
-
|
4049 |
-
|
4050 |
-
#: ../views/list/nav.php:16
|
4051 |
msgid "Events List Navigation"
|
4052 |
-
msgstr "
|
4053 |
|
4054 |
-
#:
|
|
|
4055 |
msgid "Find out more"
|
4056 |
msgstr "Erfahren Sie mehr"
|
4057 |
|
4058 |
-
|
4059 |
-
|
4060 |
-
|
4061 |
msgid "Find Events"
|
4062 |
-
msgstr "
|
4063 |
|
4064 |
-
#:
|
|
|
4065 |
msgid "Event Views Navigation"
|
4066 |
-
msgstr "
|
4067 |
|
4068 |
-
|
4069 |
-
|
4070 |
-
#: ../views/modules/bar.php:39
|
4071 |
msgid "View As"
|
4072 |
msgstr "Anzeigen als"
|
4073 |
|
4074 |
-
|
4075 |
-
|
4076 |
msgid "Calendar Month Navigation"
|
4077 |
msgstr "Kalender Monatsnavigation"
|
4078 |
|
4079 |
-
|
4080 |
-
|
4081 |
-
#: ../views/tickets/attendees-email.php:25
|
4082 |
msgid "Attendee List"
|
4083 |
msgstr "Teilnehmerliste"
|
4084 |
|
4085 |
-
#:
|
|
|
4086 |
msgid "Your tickets"
|
4087 |
msgstr "Ihre Karten"
|
4088 |
|
4089 |
-
#:
|
|
|
4090 |
msgid "Ticket Type"
|
4091 |
msgstr "Kartenart"
|
4092 |
|
4093 |
-
#:
|
|
|
4094 |
msgid "Purchaser"
|
4095 |
msgstr "Käufer"
|
4096 |
|
4097 |
-
|
4098 |
-
|
4099 |
-
|
4100 |
-
|
4101 |
-
|
4102 |
-
|
4103 |
-
|
4104 |
-
|
4105 |
-
|
4106 |
-
|
4107 |
-
|
4108 |
-
|
4109 |
-
|
4110 |
-
|
4111 |
-
|
4112 |
-
|
4113 |
-
|
4114 |
-
|
4115 |
-
|
4116 |
-
|
4117 |
-
|
4118 |
-
|
4119 |
-
|
4120 |
-
|
4121 |
-
|
4122 |
-
|
4123 |
-
|
4124 |
-
|
4125 |
-
|
4126 |
-
|
4127 |
-
|
4128 |
-
|
4129 |
-
|
4130 |
-
|
4131 |
-
|
4132 |
-
|
4133 |
-
|
4134 |
-
|
4135 |
-
|
4136 |
-
|
4137 |
-
|
4138 |
-
|
4139 |
-
|
4140 |
-
|
4141 |
-
|
4142 |
-
|
4143 |
-
|
4144 |
-
|
4145 |
-
|
4146 |
-
|
4147 |
-
|
4148 |
-
|
4149 |
-
|
4150 |
-
|
4151 |
-
|
4152 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: The Events Calendar v3.2\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2013-07-02 11:27-0800\n"
|
6 |
+
"PO-Revision-Date: 2013-11-13 22:30:39+0000\n"
|
7 |
"Last-Translator: Thomas Butzek <ThomasButzek@live.de>\n"
|
8 |
"Language-Team: DECKERWEB <deckerweb.mobil@googlemail.com>\n"
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Generator: Poedit 1.5.7\n"
|
14 |
+
"X-Poedit-Language: \n"
|
15 |
+
"X-Poedit-Country: \n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
|
|
18 |
"X-Poedit-Basepath: ./\n"
|
19 |
+
"X-Poedit-Bookmarks: \n"
|
|
|
20 |
"X-Poedit-SearchPath-0: ..\n"
|
21 |
+
"X-Textdomain-Support: yes"
|
22 |
|
23 |
+
#: admin-views/app-shop.php:4
|
24 |
+
#@ tribe-events-calendar
|
|
|
25 |
msgid "Tribe Event Add-Ons"
|
26 |
+
msgstr "Tribe Event Add-Ons"
|
27 |
|
28 |
+
#: admin-views/app-shop.php:50
|
29 |
+
#@ tribe-events-calendar
|
30 |
msgid "Version"
|
31 |
msgstr "Version"
|
32 |
|
33 |
+
#: admin-views/app-shop.php:53
|
34 |
+
#@ tribe-events-calendar
|
35 |
msgid "Last Update"
|
36 |
msgstr "Letzte Aktualisierung"
|
37 |
|
38 |
+
#: admin-views/event-sidebar-options.php:11
|
39 |
+
#@ tribe-events-calendar
|
40 |
msgid "Hide From Event Listings"
|
41 |
msgstr "Auf der Veranstaltungsliste verstecken"
|
42 |
|
43 |
+
#: admin-views/event-sidebar-options.php:12
|
44 |
+
#@ tribe-events-calendar
|
45 |
msgid "Sticky in Calendar View"
|
46 |
msgstr "Hervorheben in der Kalenderansicht"
|
47 |
|
48 |
+
#: admin-views/events-audit-trail.php:41
|
49 |
+
#@ tribe-events-calendar
|
|
|
50 |
msgid "Auditing Information"
|
51 |
msgstr "Informationen zur Prüfung"
|
52 |
|
53 |
+
#: admin-views/events-audit-trail.php:47
|
54 |
+
#@ tribe-events-calendar
|
55 |
msgid "Created by:"
|
56 |
msgstr "Erstellt von"
|
57 |
|
58 |
+
#: admin-views/events-audit-trail.php:51
|
59 |
+
#@ tribe-events-calendar
|
60 |
msgid "Audit Trail:"
|
61 |
+
msgstr "Protokoll:"
|
62 |
|
63 |
+
#: admin-views/events-meta-box.php:26
|
64 |
+
#@ tribe-events-calendar
|
65 |
msgid "Event Time & Date"
|
66 |
+
msgstr "Veranstaltungsdatum und -zeit"
|
67 |
|
68 |
+
#: admin-views/events-meta-box.php:32
|
69 |
+
#@ tribe-events-calendar
|
70 |
+
msgid "You have changed the recurrence rules of this event. Saving the event will update all future events. If you did not mean to change all events, then please refresh the page."
|
71 |
+
msgstr "Sie haben die Wiederholungs-Regeln für diese Veranstaltung verändert. Wenn Sie die Veranstaltung jetzt speichern, werden auch alle damit verbundenen und in der Zukunft liegenden Veranstaltungen so aktualisiert. Wenn Sie dies nicht vorhatten, dann laden Sie bitte diese Seite neu (aber nicht 'Speichern' / 'Aktualisieren')."
|
72 |
+
|
73 |
+
#: admin-views/events-meta-box.php:35
|
74 |
+
#@ tribe-events-calendar
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
msgid "All Day Event:"
|
76 |
msgstr "Ganztägige Veranstaltung"
|
77 |
|
78 |
+
#: admin-views/events-meta-box.php:39
|
79 |
+
#@ tribe-events-calendar
|
|
|
80 |
msgid "Start Date & Time:"
|
81 |
+
msgstr "Anfangsdatum und -zeit"
|
82 |
|
83 |
+
#: admin-views/events-meta-box.php:42
|
84 |
+
#: admin-views/events-meta-box.php:63
|
85 |
+
#@ tribe-events-calendar
|
86 |
msgid "YYYY-MM-DD"
|
87 |
msgstr "TT.MM.JJJJ"
|
88 |
|
89 |
+
#: admin-views/events-meta-box.php:60
|
90 |
+
#@ tribe-events-calendar
|
|
|
91 |
msgid "End Date & Time:"
|
92 |
+
msgstr "Enddatum und -zeit"
|
93 |
|
94 |
+
#: admin-views/events-meta-box.php:85
|
95 |
+
#@ tribe-events-calendar
|
96 |
msgid "Event Location Details"
|
97 |
msgstr "Informationen zum Veranstaltungsort"
|
98 |
|
99 |
+
#: admin-views/events-meta-box.php:93
|
100 |
+
#@ tribe-events-calendar
|
101 |
msgid "Event Organizer Details"
|
102 |
msgstr "Informationen zum Veranstalter"
|
103 |
|
104 |
+
#: admin-views/events-meta-box.php:101
|
105 |
+
#@ tribe-events-calendar
|
|
|
106 |
msgid "Event Website"
|
107 |
msgstr "Veranstaltungswebseite"
|
108 |
|
109 |
+
#: admin-views/events-meta-box.php:104
|
110 |
+
#@ tribe-events-calendar
|
111 |
msgid "URL:"
|
112 |
msgstr "URL:"
|
113 |
|
114 |
+
#: admin-views/events-meta-box.php:115
|
115 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:61
|
116 |
+
#@ tribe-events-calendar
|
117 |
msgid "Event Cost"
|
118 |
+
msgstr "Eintritt"
|
119 |
|
120 |
+
#: admin-views/events-meta-box.php:118
|
121 |
+
#@ tribe-events-calendar
|
122 |
msgid "Currency Symbol:"
|
123 |
msgstr "Währungssymbol:"
|
124 |
|
125 |
+
#: admin-views/events-meta-box.php:122
|
126 |
+
#: public/advanced-functions/meta.php:307
|
127 |
+
#@ tribe-events-calendar
|
128 |
msgid "Cost:"
|
129 |
+
msgstr "Eintritt:"
|
130 |
|
131 |
+
#: admin-views/events-meta-box.php:127
|
132 |
+
#@ tribe-events-calendar
|
133 |
msgid "Enter a 0 for events that are free or leave blank to hide the field."
|
134 |
+
msgstr "Geben Sie 0 für eine kostenlose Veranstaltung ein oder lassen Sie das Feld frei, um es zu verbergen."
|
|
|
|
|
135 |
|
136 |
+
#: admin-views/organizer-meta-box.php:12
|
137 |
+
#@ tribe-events-calendar
|
138 |
msgid "Organizer Name:"
|
139 |
+
msgstr "Name des Veranstalters:"
|
140 |
+
|
141 |
+
#: admin-views/organizer-meta-box.php:19
|
142 |
+
#: admin-views/tickets/attendees.php:39
|
143 |
+
#: admin-views/venue-meta-box.php:93
|
144 |
+
#: public/advanced-functions/meta.php:395
|
145 |
+
#: public/advanced-functions/meta.php:457
|
146 |
+
#@ tribe-events-calendar
|
147 |
msgid "Phone:"
|
148 |
msgstr "Telefon:"
|
149 |
|
150 |
+
#: admin-views/organizer-meta-box.php:23
|
151 |
+
#: admin-views/tickets/attendees.php:45
|
152 |
+
#: admin-views/venue-meta-box.php:97
|
153 |
+
#: public/advanced-functions/meta.php:346
|
154 |
+
#: public/advanced-functions/meta.php:421
|
155 |
+
#: public/advanced-functions/meta.php:483
|
156 |
+
#@ tribe-events-calendar
|
157 |
msgid "Website:"
|
158 |
msgstr "Webseite:"
|
159 |
|
160 |
+
#: admin-views/organizer-meta-box.php:27
|
161 |
+
#: public/advanced-functions/meta.php:470
|
162 |
+
#@ tribe-events-calendar
|
163 |
msgid "Email:"
|
164 |
msgstr "E-Mail:"
|
165 |
|
166 |
+
#: admin-views/recurrence-dialog.php:13
|
167 |
+
#@ tribe-events-calendar
|
168 |
+
msgid "Would you like to change only this instance of the event, or all future events in this series?"
|
169 |
+
msgstr "Wollen Sie nur diese Veranstaltung ändern oder alle Veranstaltungen der Reihe?"
|
|
|
|
|
170 |
|
171 |
+
#: admin-views/recurrence-dialog.php:15
|
172 |
+
#: admin-views/recurrence-dialog.php:23
|
173 |
+
#@ tribe-events-calendar
|
174 |
msgid "Only This Event:"
|
175 |
msgstr "Nur diese Veranstaltung:"
|
176 |
|
177 |
+
#: admin-views/recurrence-dialog.php:15
|
178 |
+
#@ tribe-events-calendar
|
179 |
msgid "All other future events in the series will remain the same."
|
180 |
+
msgstr "Alle weiteren Veranstaltungen bleiben unverändert."
|
181 |
|
182 |
+
#: admin-views/recurrence-dialog.php:16
|
183 |
+
#: admin-views/recurrence-dialog.php:24
|
184 |
+
#@ tribe-events-calendar
|
|
|
185 |
msgid "All Events:"
|
186 |
msgstr "Alle Veranstaltungen:"
|
187 |
|
188 |
+
#: admin-views/recurrence-dialog.php:16
|
189 |
+
#@ tribe-events-calendar
|
190 |
+
msgid "All future events in the series will be changed. Any changes made to other events will be kept."
|
191 |
+
msgstr "Alle Veranstaltungen der Serie werden geändert. Alle Änderungen an anderen Veranstaltugen bleiben erhalten."
|
|
|
192 |
|
193 |
+
#: admin-views/recurrence-dialog.php:21
|
194 |
+
#@ tribe-events-calendar
|
195 |
+
msgid "Would you like to delete only this instance of the event, or all future events in this series?"
|
196 |
+
msgstr "Möchten Sie nur diese Veranstaltung der Serie oder alle Veranstaltungen der Serie löschen?"
|
|
|
|
|
|
|
197 |
|
198 |
+
#: admin-views/recurrence-dialog.php:23
|
199 |
+
#@ tribe-events-calendar
|
200 |
msgid "All other future events in the series will not be deleted."
|
201 |
+
msgstr "Alle weiteren zukünftigen Veranstaltung der Serie werden nicht gelöscht."
|
202 |
|
203 |
+
#: admin-views/recurrence-dialog.php:24
|
204 |
+
#@ tribe-events-calendar
|
205 |
msgid "All future events in the series will be deleted."
|
206 |
+
msgstr "Alle weiteren zukünftigen Veranstaltungen der Serie werden gelöscht."
|
207 |
|
208 |
+
#: admin-views/tribe-options-display.php:4
|
209 |
+
#@ tribe-events-calendar
|
210 |
msgid "Default Events Template"
|
211 |
msgstr "Standard Veranstaltungsvorlage"
|
212 |
|
213 |
+
#: admin-views/tribe-options-display.php:5
|
214 |
+
#@ tribe-events-calendar
|
215 |
msgid "Default Page Template"
|
216 |
msgstr "Standard-Seitenvorlage (WordPress)"
|
217 |
|
218 |
+
#: admin-views/tribe-options-display.php:29
|
219 |
+
#@ tribe-events-calendar
|
|
|
220 |
msgid "Display Settings"
|
221 |
+
msgstr "Darstellungsoptionen"
|
222 |
|
223 |
+
#: admin-views/tribe-options-display.php:34
|
224 |
+
#, fuzzy, php-format, php-format, php-format
|
225 |
+
#@ tribe-events-calendar
|
226 |
+
msgid "<p>The settings below control the display of your calendar. If things don't look right, try switching between the three style sheet options or pick a page template from your theme.</p><p>There are going to be situations where no out-of-the-box template is 100% perfect. Check out our <a href=\"%s\">our themer's guide</a> for instructions on custom modifications. Want to create a new view? Grab a copy of the <a href=\"%s\">Sample Agenda View plugin from Github</a></p>"
|
227 |
+
msgstr "<p>Die Einstellungen kontrollieren die Ansicht Ihres Kalenders. Falls etwas nicht richtig angezeigt wird, versuchen Sie zwischen den drei Stylingoptionen zu wechseln oder nutzen Sie ein Template von Ihrem Theme.</p><p>Das mitgelieferte Template wird nicht für jeden Zweck optimal passen. Lesen Sie dazu <a href=\"%s\">Unseren \"Themer's guide\"</a> für Informationen zu eigenen Modifikationen. Wenn Sie eine neue Ansichtsoption erstellen wollen, nutzen Sie ein <a href=\"%s\">Beispiel Ansicht Plugin von Github</a></p>"
|
228 |
+
|
229 |
+
#: admin-views/tribe-options-display.php:49
|
230 |
+
#@ tribe-events-calendar
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
231 |
msgid "Basic Template Settings"
|
232 |
+
msgstr "Grundeinstellungen des Templates"
|
233 |
|
234 |
+
#: admin-views/tribe-options-display.php:53
|
235 |
+
#@ tribe-events-calendar
|
|
|
236 |
msgid "Default stylesheet used for events templates"
|
237 |
+
msgstr "Standard Stylesheet für die Veranstaltungsansicht"
|
238 |
|
239 |
+
#: admin-views/tribe-options-display.php:56
|
240 |
+
#@ tribe-events-calendar
|
241 |
msgid "Skeleton Styles"
|
242 |
+
msgstr "Skeleton Style"
|
243 |
|
244 |
+
#: admin-views/tribe-options-display.php:58
|
245 |
+
#@ tribe-events-calendar
|
246 |
+
msgid "Only includes enough css to achieve complex layouts like calendar and week view."
|
247 |
+
msgstr "Enthält nur Basis CSS Angaben um komplexe Layouts wie den Kalender oder die Wochenansicht darzustellen."
|
|
|
248 |
|
249 |
+
#: admin-views/tribe-options-display.php:60
|
250 |
+
#@ tribe-events-calendar
|
251 |
msgid "Full Styles"
|
252 |
msgstr "Kompletter Style"
|
253 |
|
254 |
+
#: admin-views/tribe-options-display.php:62
|
255 |
+
#@ tribe-events-calendar
|
256 |
msgid "More detailed styling, tries to grab styles from your theme."
|
257 |
+
msgstr "Aufwändigere Darstellung. Nutzt CSS Ihres Themes."
|
258 |
|
259 |
+
#: admin-views/tribe-options-display.php:64
|
260 |
+
#@ tribe-events-calendar
|
|
|
261 |
msgid "Tribe Events Styles"
|
262 |
+
msgstr "Tribe Event Style"
|
263 |
|
264 |
+
#: admin-views/tribe-options-display.php:66
|
265 |
+
#@ tribe-events-calendar
|
266 |
msgid "A fully designed and styled theme for your events pages."
|
267 |
+
msgstr "Ein komplett designter Theme für Ihre Veranstaltungsseite."
|
268 |
|
269 |
+
#: admin-views/tribe-options-display.php:73
|
270 |
+
#@ tribe-events-calendar
|
|
|
271 |
msgid "Events template"
|
272 |
+
msgstr "Veranstaltungsvorlage"
|
273 |
|
274 |
+
#: admin-views/tribe-options-display.php:74
|
275 |
+
#@ tribe-events-calendar
|
276 |
+
msgid "Choose a page template to control the appearance of your calendar and event content."
|
277 |
+
msgstr "Wählen Sie eine Seitenvorlage für die Darstellung des Veranstaltungskalenders."
|
|
|
|
|
|
|
|
|
278 |
|
279 |
+
#: admin-views/tribe-options-display.php:82
|
280 |
+
#@ tribe-events-calendar
|
281 |
msgid "Enable event views"
|
282 |
msgstr "Veranstaltungsansicht wählen"
|
283 |
|
284 |
+
#: admin-views/tribe-options-display.php:83
|
285 |
+
#@ tribe-events-calendar
|
286 |
msgid "You must select at least one view."
|
287 |
+
msgstr "Es muss mindestens eine Ansicht gewählt werden."
|
288 |
|
289 |
+
#: admin-views/tribe-options-display.php:90
|
290 |
+
#@ tribe-events-calendar
|
291 |
msgid "Default view"
|
292 |
msgstr "Standardansicht"
|
293 |
|
294 |
+
#: admin-views/tribe-options-display.php:98
|
295 |
#, fuzzy
|
296 |
+
#@ tribe-events-calendar
|
297 |
msgid "Disable the Event Search Bar"
|
298 |
+
msgstr "Veranstaltungssuchleiste deaktivieren"
|
299 |
|
300 |
+
#: admin-views/tribe-options-display.php:99
|
301 |
#, fuzzy
|
302 |
+
#@ tribe-events-calendar
|
303 |
msgid "Check this to use the classic header."
|
304 |
+
msgstr "Auswählen um die Suchleiste im Frontend NICHT anzuzeigen"
|
305 |
|
306 |
+
#: admin-views/tribe-options-display.php:113
|
307 |
+
#@ tribe-events-calendar
|
|
|
308 |
msgid "Advanced Template Settings"
|
309 |
+
msgstr "Erweiterte Vorlagen Einstellungen"
|
310 |
|
311 |
+
#: admin-views/tribe-options-display.php:117
|
312 |
+
#@ tribe-events-calendar
|
|
|
313 |
msgid "Add HTML before event content"
|
314 |
+
msgstr "Folgender HTML-Code wird VOR der Veranstaltung hinzugefügt"
|
315 |
|
316 |
+
#: admin-views/tribe-options-display.php:118
|
317 |
+
#@ tribe-events-calendar
|
318 |
+
msgid "If you are familiar with HTML, you can add additional code before the event template. Some themes may require this to help with styling or layout."
|
319 |
+
msgstr "Wenn Sie mit HTML vertraut sind, können Sie Code VOR der Veranstaltungsvorlage einfügen. Bei einigen Themes kann dies für Anpassungen am Layout und Design notwendig sein."
|
|
|
|
|
|
|
|
|
320 |
|
321 |
+
#: admin-views/tribe-options-display.php:123
|
322 |
+
#@ tribe-events-calendar
|
|
|
323 |
msgid "Add HTML after event content"
|
324 |
+
msgstr "Folgender HTML-Code wird NACH der Veranstaltung hinzugefügt"
|
325 |
|
326 |
+
#: admin-views/tribe-options-display.php:124
|
327 |
+
#@ tribe-events-calendar
|
328 |
+
msgid "If you are familiar with HTML, you can add additional code after the event template. Some themes may require this to help with styling or layout."
|
329 |
+
msgstr "Wenn Sie mit HTML vertraut sind, können Sie Code HINTER der Veranstaltungsvorlage einfügen. Bei einigen Themes kann dies für Anpassungen am Layout und Design notwendig sein."
|
|
|
|
|
|
|
|
|
330 |
|
331 |
+
#: admin-views/tribe-options-general.php:14
|
332 |
+
#@ tribe-events-calendar
|
333 |
msgid "Finding & extending your calendar."
|
334 |
msgstr "Ihren Kalender finden und erweitern."
|
335 |
|
336 |
+
#: admin-views/tribe-options-general.php:19
|
337 |
+
#@ tribe-events-calendar
|
338 |
msgid "Finding your calendar."
|
339 |
msgstr "Ihren Kalender finden."
|
340 |
|
341 |
+
#: admin-views/tribe-options-general.php:24
|
342 |
+
#@ tribe-events-calendar
|
|
|
343 |
msgid "Where's my calendar?"
|
344 |
msgstr "Wo ist mein Kalender?"
|
345 |
|
346 |
+
#: admin-views/tribe-options-general.php:24
|
347 |
+
#@ tribe-events-calendar
|
348 |
msgid "Right here"
|
349 |
msgstr "Genau hier"
|
350 |
|
351 |
+
#: admin-views/tribe-options-general.php:28
|
352 |
+
#@ tribe-events-calendar
|
353 |
+
msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
|
354 |
+
msgstr "Wünschen Sie erweiterte Funktionalität, einschließlich wiederkehrender Veranstaltungen, benutzerdefinierten Meta-Informationen, Community-Veranstaltungen, Ticketverkäufen und mehr?"
|
|
|
|
|
|
|
|
|
|
|
355 |
|
356 |
+
#: admin-views/tribe-options-general.php:28
|
357 |
+
#@ tribe-events-calendar
|
358 |
msgid "Check out the available add-ons"
|
359 |
msgstr "Schauen Sie sich die verfügbaren Erweiterungen an"
|
360 |
|
361 |
+
#: admin-views/tribe-options-general.php:33
|
362 |
+
#@ tribe-events-calendar
|
363 |
msgid "We hope our plugin is helping you out."
|
364 |
+
msgstr "Wir hoffen, dass Plugin gefällt Ihnen."
|
365 |
|
366 |
+
#: admin-views/tribe-options-general.php:37
|
367 |
+
#@ tribe-events-calendar
|
368 |
+
msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text-only link at the bottom of your calendar pointing to The Events Calendar project."
|
369 |
+
msgstr "Sie finden: \"Wow, das Plugin ist fantastisch! Ich sollte Modern Tribe dafür danken!\" Der beste Dank ist ein kleiner Link zu uns am unteren Ende des Veranstaltungskalenders."
|
|
|
|
|
|
|
|
|
|
|
|
|
370 |
|
371 |
+
#: admin-views/tribe-options-general.php:37
|
372 |
+
#: admin-views/tribe-options-general.php:42
|
373 |
+
#@ tribe-events-calendar
|
374 |
msgid "See an example of the link"
|
375 |
+
msgstr "Dies ist ein Beispiellink"
|
376 |
|
377 |
+
#: admin-views/tribe-options-general.php:42
|
378 |
+
#@ tribe-events-calendar
|
379 |
+
msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text only link at the bottom of your calendar pointing to The Events Calendar project."
|
380 |
+
msgstr "Sie finden: \"Wow, das Plugin ist fantastisch! Ich sollte Modern Tribe dafür danken!\" Der beste Dank ist ein kleiner Link zu uns am unteren Ende des Veranstaltungskalenders."
|
|
|
|
|
|
|
|
|
|
|
|
|
381 |
|
382 |
+
#: admin-views/tribe-options-general.php:47
|
383 |
+
#@ tribe-events-calendar
|
|
|
384 |
msgid "Show The Events Calendar link"
|
385 |
+
msgstr "Den Link zum Veranstaltungskalender anzeigen"
|
386 |
|
387 |
+
#: admin-views/tribe-options-general.php:61
|
388 |
+
#@ tribe-events-calendar
|
|
|
389 |
msgid "General Settings"
|
390 |
msgstr "Allgemeine Einstellungen"
|
391 |
|
392 |
+
#: admin-views/tribe-options-general.php:65
|
393 |
+
#@ tribe-events-calendar
|
394 |
msgid "Number of events to show per page"
|
395 |
msgstr "Anzahl der Veranstaltungen pro Seite"
|
396 |
|
397 |
+
#: admin-views/tribe-options-general.php:81
|
398 |
+
#@ tribe-events-calendar
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
399 |
msgid "Show comments"
|
400 |
msgstr "Kommentare anzeigen"
|
401 |
|
402 |
+
#: admin-views/tribe-options-general.php:82
|
403 |
+
#@ tribe-events-calendar
|
404 |
msgid "Enable comments on event pages."
|
405 |
msgstr "Kommentare auf den Veranstaltungsseiten aktivieren."
|
406 |
|
407 |
+
#: admin-views/tribe-options-general.php:88
|
408 |
+
#@ tribe-events-calendar
|
409 |
msgid "Include events in main blog loop"
|
410 |
+
msgstr "Veranstaltungen im Blog Loob integrieren"
|
411 |
|
412 |
+
#: admin-views/tribe-options-general.php:89
|
413 |
+
#@ tribe-events-calendar
|
414 |
+
msgid "Show events with the site's other posts. When this box is checked, events will also continue to appear on the default events page."
|
415 |
+
msgstr "Veranstaltungen gemeinsam mit anderen Beiträgen anzeigen. Wenn diese Option gewählt ist, werden Veranstaltungen trotzdem auf der Standard Veranstaltungsseite weiter angezeigt."
|
|
|
416 |
|
417 |
+
#: admin-views/tribe-options-general.php:95
|
418 |
+
#: admin-views/tribe-options-general.php:101
|
419 |
+
#@ tribe-events-calendar
|
420 |
msgid "Events URL slug"
|
421 |
msgstr "URL-Slug für Veranstaltungen (Permalink/ Titelform)"
|
422 |
|
423 |
+
#: admin-views/tribe-options-general.php:96
|
424 |
#, php-format
|
425 |
+
#@ tribe-events-calendar
|
426 |
+
msgid "You cannot edit the slug for your events page as you do not have pretty permalinks enabled. The current URL for your events page is <a href=\"%s\">%s</a>. In order to edit the slug here, <a href=\"%soptions-permalink.php\">enable pretty permalinks</a>."
|
427 |
+
msgstr "So lange keine benutzerdefinierten Permalinks aktiviert sind, können Sie den Link zum Veranstaltungskalender nicht bearbeiten. Die aktuelle URL der Veranstaltungsseite ist: <a href=\"%s\">%s</a>. Um die URL's zu ändern gehen Sie zu <a href=\"%soptions-permalink.php\">Benutzerdefinierte Permalinks aktivieren</a>."
|
428 |
+
|
429 |
+
#: admin-views/tribe-options-general.php:108
|
430 |
+
#: public/template-tags/options.php:20
|
431 |
+
#@ tribe-events-calendar
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
432 |
msgid "The slug used for building the events URL."
|
433 |
+
msgstr "Der Slug (Permalink/ Titelform) für die Veranstaltungs-URL."
|
434 |
|
435 |
+
#: admin-views/tribe-options-general.php:108
|
|
|
436 |
#, php-format
|
437 |
+
#@ tribe-events-calendar
|
438 |
msgid "Your current events URL is: %s"
|
439 |
msgstr "Die aktuelle URL für Veranataltungen ist: %s"
|
440 |
|
441 |
+
#: admin-views/tribe-options-general.php:113
|
442 |
+
#: public/template-tags/options.php:43
|
443 |
+
#@ tribe-events-calendar
|
|
|
444 |
msgid "Here is the iCal feed URL for your events:"
|
445 |
+
msgstr "Hier befindet sich die iCal Feed URL für Ihre Veranstaltungen:"
|
446 |
|
447 |
+
#: admin-views/tribe-options-general.php:118
|
448 |
+
#@ tribe-events-calendar
|
|
|
449 |
msgid "Single event URL slug"
|
450 |
+
msgstr "Die URL für einzelne Veranstaltungen"
|
451 |
|
452 |
+
#: admin-views/tribe-options-general.php:125
|
|
|
453 |
#, php-format
|
454 |
+
#@ tribe-events-calendar
|
455 |
+
msgid "The above should ideally be plural, and this singular.<br />Your single event URL is: %s"
|
456 |
+
msgstr "Die obere sollte idealer Weise im Plural geschrieben werden, diese im Singular.<br />Ihre URL für einzelne Veranstaltungen lautet: %s"
|
|
|
|
|
|
|
457 |
|
458 |
+
#: admin-views/tribe-options-general.php:130
|
459 |
+
#@ tribe-events-calendar
|
460 |
msgid "End of day cutoff"
|
461 |
msgstr "Neuer Tag ab"
|
462 |
|
463 |
+
#: admin-views/tribe-options-general.php:143
|
464 |
+
#@ tribe-events-calendar
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
465 |
msgid "Default currency symbol"
|
466 |
msgstr "Standard Währungssymbol"
|
467 |
|
468 |
+
#: admin-views/tribe-options-general.php:144
|
469 |
+
#@ tribe-events-calendar
|
470 |
+
msgid "Set the default currency symbol for event costs. Note that this only impacts future events, and changes made will not apply retroactively."
|
471 |
+
msgstr "Legen Sie das Standard Währungssymbol für die Veranstaltungspreise fest. Bitte beachten Sie, dass dies nur zukünftige Veranstaltungen betrifft und nicht vergangene Verstaltungen beeinflußt."
|
|
|
472 |
|
473 |
+
#: admin-views/tribe-options-general.php:151
|
474 |
+
#@ tribe-events-calendar
|
|
|
475 |
msgid "Map Settings"
|
476 |
msgstr "Karten Einstellungen"
|
477 |
|
478 |
+
#: admin-views/tribe-options-general.php:155
|
479 |
+
#@ tribe-events-calendar
|
480 |
msgid "Enable Google Maps"
|
481 |
msgstr "'Google Maps'-Karten aktivieren"
|
482 |
|
483 |
+
#: admin-views/tribe-options-general.php:156
|
484 |
+
#@ tribe-events-calendar
|
485 |
msgid "Check to enable maps for events and venues."
|
486 |
+
msgstr "Auswählen, um Veranstaltungen und Veranstaltungsorte in einer Karte an zu zeigen."
|
|
|
|
|
487 |
|
488 |
+
#: admin-views/tribe-options-general.php:163
|
489 |
#, fuzzy
|
490 |
+
#@ tribe-events-calendar
|
491 |
msgid "Google Maps default zoom level"
|
492 |
msgstr "Google Maps Standard Zoomstufe"
|
493 |
|
494 |
+
#: admin-views/tribe-options-general.php:164
|
495 |
+
#@ tribe-events-calendar
|
496 |
msgid "0 = zoomed out; 21 = zoomed in."
|
497 |
+
msgstr "0 = max herausgezoomt, 21 = maximal hineingezoomt."
|
498 |
|
499 |
+
#: admin-views/tribe-options-general.php:172
|
500 |
+
#@ tribe-events-calendar
|
|
|
501 |
msgid "Miscellaneous Settings"
|
502 |
msgstr "Verschiedene Einstellungen"
|
503 |
|
504 |
+
#: admin-views/tribe-options-general.php:176
|
505 |
+
#@ tribe-events-calendar
|
506 |
msgid "Duplicate Venues & Organizers"
|
507 |
+
msgstr "Duplikate bei Veranstaltungsorten und Veranstaltern."
|
508 |
|
509 |
+
#: admin-views/tribe-options-general.php:176
|
510 |
+
#: lib/tribe-amalgamator.php:252
|
511 |
+
#@ tribe-events-calendar
|
512 |
msgid "Merge Duplicates"
|
513 |
+
msgstr "Duplikate zusammenführen"
|
514 |
|
515 |
+
#: admin-views/tribe-options-general.php:176
|
516 |
+
#@ tribe-events-calendar
|
517 |
+
msgid "You might find duplicate venues and organizers when updating The Events Calendar from a pre-3.0 version. Click this button to automatically merge identical venues and organizers."
|
518 |
+
msgstr "Sie können nach Duplikaten von Veranstaltungsorten und Veranstaltern von einer Version des vor 3.0 suchen. Klicken Sie den Button und es werden gleiche Veranstaltungsorte und Veranstalter zusammengeführt."
|
|
|
|
|
|
|
|
|
519 |
|
520 |
+
#: admin-views/tribe-options-general.php:181
|
521 |
+
#@ tribe-events-calendar
|
|
|
522 |
msgid "Debug mode"
|
523 |
msgstr "Debug Modus"
|
524 |
|
525 |
+
#: admin-views/tribe-options-general.php:187
|
|
|
526 |
#, php-format
|
527 |
+
#@ tribe-events-calendar
|
528 |
+
msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the %s and look for the \"Tribe\" tab in the debug output."
|
529 |
+
msgstr "Aktivieren Sie die Option, um Debuginformationen mit zu loggen. Standardmäßig werden die Informationen in Ihr PHP Server error log geschrieben. Wenn Sie die Debuginfos in Ihrem Browser sehen möchten, empfehlen wir den %s zu installieren. Die Ausgabe der Debuginfos finden Sie im \"Tribe\" Tab."
|
|
|
|
|
|
|
|
|
|
|
530 |
|
531 |
+
#: admin-views/tribe-options-general.php:187
|
532 |
+
#@ tribe-events-calendar
|
533 |
msgid "Debug Bar Plugin"
|
534 |
msgstr "Debug Bar Plugin"
|
535 |
|
536 |
+
#: admin-views/tribe-options-help.php:18
|
537 |
+
#@ tribe-events-calendar
|
538 |
msgctxt "not available"
|
539 |
msgid "n/a"
|
540 |
msgstr "nicht verfügbar"
|
541 |
|
542 |
+
#: admin-views/tribe-options-help.php:19
|
543 |
+
#@ tribe-events-calendar
|
544 |
msgid "You need to upgrade!"
|
545 |
+
msgstr "Sie müssen updaten!"
|
546 |
|
547 |
+
#: admin-views/tribe-options-help.php:19
|
548 |
+
#@ tribe-events-calendar
|
549 |
msgid "You are up to date!"
|
550 |
msgstr "Sie sind auf dem neuesten Stand!"
|
551 |
|
552 |
+
#: admin-views/tribe-options-help.php:42
|
553 |
+
#@ tribe_events_calendar
|
|
|
554 |
msgid "The Events Calendar PRO"
|
555 |
msgstr "Der Events Calendar PRO"
|
556 |
|
557 |
+
#: admin-views/tribe-options-help.php:46
|
558 |
+
#@ tribe_events_calendar
|
559 |
msgid "Eventbrite Tickets"
|
560 |
msgstr "Eventbrite Tickets"
|
561 |
|
562 |
+
#: admin-views/tribe-options-help.php:50
|
563 |
+
#@ tribe_events_calendar
|
|
|
564 |
msgid "Community Events"
|
565 |
msgstr "Community Events"
|
566 |
|
567 |
+
#: admin-views/tribe-options-help.php:54
|
568 |
+
#@ tribe_events_calendar
|
|
|
569 |
msgid "Facebook Events"
|
570 |
msgstr "Facebook Events"
|
571 |
|
572 |
+
#: admin-views/tribe-options-help.php:58
|
573 |
+
#@ tribe_events_calendar
|
574 |
msgid "WooTickets"
|
575 |
msgstr "WooTickets"
|
576 |
|
577 |
+
#: admin-views/tribe-options-help.php:63
|
578 |
+
#@ tribe_events_calendar
|
579 |
msgid "Faceted Filters"
|
580 |
msgstr "Faceted Filters"
|
581 |
|
582 |
+
#: admin-views/tribe-options-help.php:71
|
583 |
+
#@ tribe-events-calendar
|
584 |
msgid "Documentation"
|
585 |
msgstr "Dokumentation"
|
586 |
|
587 |
+
#: admin-views/tribe-options-help.php:75
|
588 |
+
#@ tribe-events-calendar
|
589 |
msgid "FAQ"
|
590 |
msgstr "FAQ"
|
591 |
|
592 |
+
#: admin-views/tribe-options-help.php:79
|
593 |
+
#: lib/the-events-calendar.class.php:765
|
594 |
+
#: lib/the-events-calendar.class.php:3929
|
595 |
+
#: lib/the-events-calendar.class.php:4022
|
596 |
+
#@ tribe-events-calendar
|
597 |
msgid "Help"
|
598 |
msgstr "Hilfe"
|
599 |
|
600 |
+
#: admin-views/tribe-options-help.php:83
|
601 |
+
#@ tribe-events-calendar
|
602 |
msgid "Tutorials"
|
603 |
msgstr "Tutorials"
|
604 |
|
605 |
+
#: admin-views/tribe-options-help.php:87
|
606 |
+
#@ tribe-events-calendar
|
607 |
msgid "Release Notes"
|
608 |
msgstr "Release Notes"
|
609 |
|
610 |
+
#: admin-views/tribe-options-help.php:91
|
611 |
+
#@ tribe-events-calendar
|
612 |
msgid "Forums"
|
613 |
msgstr "Foren"
|
614 |
|
615 |
+
#: admin-views/tribe-options-help.php:99
|
616 |
+
#@ tribe-events-calendar
|
617 |
+
msgid "If this is your first time using The Events Calendar, you're in for a treat and are already well on your way to creating a first event. Here are some basics we've found helpful for users jumping into it for the first time:"
|
618 |
+
msgstr "Wenn Sie Events Calendar das erste Mal nutzen, sind Sie auf dem besten Weg Ihre erste Veranstaltung zu erstellen. Hier finden Sie Basiswissen, welches hilfreich bei der ersten Benutzung ist:"
|
|
|
|
|
619 |
|
620 |
+
#: admin-views/tribe-options-help.php:102
|
621 |
#, php-format
|
622 |
+
#@ tribe-events-calendar
|
623 |
+
msgid "%sOur New User Primer%s was designed for folks in your exact position. Featuring both step-by-step videos and written walkthroughs that feature accompanying screenshots, the primer aims to take you from zero to hero in no time."
|
624 |
+
msgstr "Unser %sNew User Primer%s wurde für Personen wie Sie entwickelt. Step-by-Step Videos als auch ausführliche Anleitung inklusive Screenshots helfen Ihnen sich schnell zurecht zu finden."
|
|
|
|
|
|
|
625 |
|
626 |
+
#: admin-views/tribe-options-help.php:104
|
627 |
#, php-format
|
628 |
+
#@ tribe-events-calendar
|
629 |
+
msgid "%sInstallation/Setup FAQs%s from our support page can help give an overview of what the plugin can and cannot do. This section of the FAQs may be helpful as it aims to address any basic install questions not addressed by the new user primer."
|
630 |
+
msgstr "Die %sInstallation/Setup FAQ%s von unserer Supportseite hilft Ihnen einen Überblick über die Funktionen des Plugins zu geben. Dieser Abschnitt der FAQ kann hilfreich sein, da er alle Basis Installationsfragen erläutert, welche nicht im \\\"New User Primer\\\" enthalten sind."
|
|
|
|
|
|
|
631 |
|
632 |
+
#: admin-views/tribe-options-help.php:106
|
633 |
#, php-format
|
634 |
+
#@ tribe-events-calendar
|
635 |
+
msgid "Are you developer looking to build your own frontend view? We created an example plugin that demonstrates how to register a new view. You can %sdownload the plugin at GitHub%s to get started."
|
636 |
+
msgstr "Sind Sie ein Entwickler, welcher eine eigene Ansicht für Ihre Website entwickeln will? Wir haben ein Beispiel Plugin erstellt, welche demonstriert, wie eine neue \\\"View\\\" registriert werden kann. Sie können das %sPlugin auf GitHub%s herunterladen."
|
|
|
|
|
637 |
|
638 |
+
#: admin-views/tribe-options-help.php:108
|
639 |
+
#@ tribe-events-calendar
|
640 |
+
msgid "Otherwise, if you're feeling adventurous, you can get started by heading to the Events menu and adding your first event."
|
641 |
+
msgstr "Wenn Sie direkt durchstarten möchten, können Sie jetzt im Veranstaltungen Menü Ihre erste Veranstaltungen erstellen."
|
|
|
642 |
|
643 |
+
#: admin-views/tribe-options-help.php:112
|
644 |
#, php-format
|
645 |
+
#@ tribe-events-calendar
|
646 |
+
msgid "We've redone our support page from the ground up in an effort to better help our users. Head over to our %sSupport Page%s and you'll find lots of great resources, including:"
|
647 |
+
msgstr "Wir haben unsere Support Seite von Grund auf überarbeitet, um unsere Kunden besser unterstützen zu können. Wechseln Sie zu %sSupport Seite%s und finden Sie eine Vielzahl von Unterlagen, inklusive:"
|
|
|
|
|
648 |
|
649 |
+
#: admin-views/tribe-options-help.php:114
|
650 |
#, php-format
|
651 |
+
#@ tribe-events-calendar
|
652 |
+
msgid "%sTemplate tags, functions, and hooks & filters%s for The Events Calendar & Events Calendar PRO"
|
653 |
+
msgstr "%sTemplate tags, Funktionen und Hooks & Filter%s für \\\" The Events Calendar & Events Calendar PRO\\\""
|
|
|
654 |
|
655 |
+
#: admin-views/tribe-options-help.php:116
|
656 |
#, php-format
|
657 |
+
#@ tribe-events-calendar
|
658 |
+
msgid "%sFrequently Asked Questions%s ranging from the most basic setup questions to advanced themer tweaks"
|
659 |
+
msgstr "%sFrequently Asked Questions%s für die Basis Setup Fragen für Anpassungen von Themes."
|
|
|
660 |
|
661 |
+
#: admin-views/tribe-options-help.php:118
|
662 |
#, php-format
|
663 |
+
#@ tribe-events-calendar
|
664 |
+
msgid "%sTutorials%s written by both members of our team and users from the community, covering custom queries, integration with third-party themes and plugins, etc."
|
665 |
+
msgstr "%sTutorials%s, welche von Mitgliedern unseres Teams und Nutzern der Community erstellt wurden, welche individuelle Abfragen, die Integration von Themes von Drittanbietern und Plugins, etc. beschreiben."
|
|
|
|
|
666 |
|
667 |
+
#: admin-views/tribe-options-help.php:120
|
668 |
+
#@ tribe-events-calendar
|
669 |
+
msgid "Release notes for painting an overall picture of the plugin's lifecycle and when features/bug fixes were introduced."
|
670 |
+
msgstr "Release Notes mit einer Übersicht über den Plugin Lifecylce und wann neue Features / Bug Fixes umgesetzt wurden."
|
|
|
671 |
|
672 |
+
#: admin-views/tribe-options-help.php:122
|
673 |
#, php-format
|
674 |
+
#@ tribe-events-calendar
|
675 |
+
msgid "%sAdd-on documentation%s for all of Modern Tribe's official extensions for The Events Calendar (including WooTickets, Community Events, Eventbrite Tickets, Facebook Events, etc)"
|
676 |
+
msgstr "%sAdd-on Dokumentation%s für alle offiziellen Modern Tribe Erweiterungen für \\\" The Events Calendar\\\" (inklsuive WooTickets, Community Events, Eventbrite Tickets, Facebook Events, etc)"
|
|
|
|
|
677 |
|
678 |
+
#: admin-views/tribe-options-help.php:124
|
679 |
#, php-format
|
680 |
+
#@ tribe-events-calendar
|
681 |
+
msgid "We've also got a %sModern Tribe UserVoice%s page where we're actively watching for feature ideas from the community. If after playing with the plugin and reviewing the resources above, you're finding a feature isn't present that should be, let us know. Vote up existing feature requests or add your own, and help us shape the future of the products business in a way that best meets the community's needs."
|
682 |
+
msgstr "Es existiert auch eine %sModern Tribe UserVoice%s Seite, welche wir auf neue Features der Community hin überprüfen. Sollten Sie nach Nutzung des Plugin und der oben genannten Unterlagen feststellen, dass ein gewünschtes Features nicht verfügbar ist, informieren Sie uns! Stimmen Sie für existierende Features ab oder fügen Sie selbst neue hinzu. Helfen Sie uns die Entwicklung des Produktes zu steuern, um die Anfoderungen der Community am besten erfüllen zu können."
|
|
|
|
|
|
|
|
|
|
|
683 |
|
684 |
+
#: admin-views/tribe-options-help.php:128
|
685 |
#, php-format
|
686 |
+
#@ tribe-events-calendar
|
687 |
+
msgid "Written documentation can only take things so far...sometimes, you need help from a real person. This is where our %ssupport forums%s come into play."
|
688 |
+
msgstr "Eine Dokumentation ist oft hilfreich, kann aber nicht immer die Unterstützung durch einen echten Supportmitarbeiter ersetzen. An dieser Stelle kommt unser %sSupport Forums%s ins Spiel."
|
|
|
689 |
|
690 |
+
#: admin-views/tribe-options-help.php:129
|
691 |
#, php-format
|
692 |
+
#@ tribe-events-calendar
|
693 |
+
msgid "Users of the free The Events Calendar should post their support concerns to the plugin's %sWordPress.org support forum%s. While we are happy to help identify and fix bugs that are reported at WordPress.org, please make sure to read our %ssupport expectations sticky thread%s before posting so you understand our limitations."
|
694 |
+
msgstr "Nutzer des frei verfügbaren Plugin \\\"The Events Calendar\\\" können Ihre Supportanfragen im %sWordPress.org support forum%s stellen. Wir unterstützen gerne auf WordPress.org und versuchen Fehler zu beheben. Bitte stellen Sie vorher jedoch sicher, dass Sie unsere %ssupport expectations sticky thread%s gelesen haben, bevor Sie eine Frage stellen, um die Grenzen des Supports zu verstehen."
|
|
|
|
|
|
|
|
|
695 |
|
696 |
+
#: admin-views/tribe-options-help.php:130
|
697 |
+
#@ tribe-events-calendar
|
698 |
+
msgid "We hit the WordPress.org forum throughout the week, watching for bugs. If you report a legitimate bug that we're able to reproduce, we will log it and patch for an upcoming release. However we are unfortunately unable to provide customization tips or assist in integrating with 3rd party plugins or themes."
|
699 |
+
msgstr "Wir prüfen das WordPress.org Forum während der Woche, um Fehler zu erkennen. Wenn Sie eine offensichtlien Fehler finden, den wir reproduzieren können, werden wir in aufnehmen und im nächsten Release korrigieren. Jedoch sind wir leider nicht in der Lage, Tipps für Anpassungen zu geben oder bei der Untstützung von Plugins oder Themes von Drittanbietern zu geben."
|
|
|
|
|
|
|
|
|
700 |
|
701 |
+
#: admin-views/tribe-options-help.php:131
|
702 |
#, php-format
|
703 |
+
#@ tribe-events-calendar
|
704 |
+
msgid "If you're a user of The Events Calendar and would like more support, please %spurchase a PRO license%s. We hit the PRO forums daily, and can provide a deeper level of customization/integration support for paying users than we can on WordPress.org."
|
705 |
+
msgstr "Wenn Sie als Nutzer von \\\"The Events Calendar\\\" mehr Unterstützung benötigen, erwerben Sie bitte eine %sPRO Lizenz%s. Wir überprüfen das PRO Forum täglich and können Nutzer auf einer detailierten Ebene bei Anpassungen oder Integrationen unterstützen, als auf WordPress.org."
|
706 |
+
|
707 |
+
#: admin-views/tribe-options-help.php:135
|
708 |
+
#, fuzzy, php-format, php-format, php-format
|
709 |
+
#@ tribe-events-calendar
|
710 |
+
msgid "If you find that you aren't getting the level of service you've come to expect from Modern Tribe, shoot us an email at %s or tweet %s and tell us why. We'll do what we can to make it right."
|
711 |
+
msgstr "Wenn Sie nicht die benötigte Hilfe bekommen, schicken Sie uns eine E-Mail an %s oder einen Tweet %s und sagen uns warum. Wir werden unser Bestes geben, um Ihnen zu helfen."
|
712 |
+
|
713 |
+
#: admin-views/tribe-options-help.php:136
|
714 |
+
#@ tribe-events-calendar
|
|
|
|
|
|
|
|
|
|
|
|
|
715 |
msgid "More..."
|
716 |
msgstr "Mehr..."
|
717 |
|
718 |
+
#: admin-views/tribe-options-help.php:144
|
719 |
+
#@ tribe-events-calendar
|
720 |
+
msgid "Hi! We are Modern Tribe and we are here to help you kick ass. Thanks so much for installing our labor of love!"
|
721 |
+
msgstr "Hallo! Wir sind Modern Tribe. Vielen Dank für die Installation!"
|
|
|
722 |
|
723 |
+
#: admin-views/tribe-options-help.php:150
|
724 |
+
#@ tribe-events-calendar
|
725 |
msgid "Getting Started"
|
726 |
+
msgstr "Schnellstart"
|
727 |
|
728 |
+
#: admin-views/tribe-options-help.php:153
|
729 |
#, fuzzy
|
730 |
+
#@ tribe-events-calendar
|
731 |
msgid "Support Resources To Help You Kick Ass"
|
732 |
+
msgstr "Support Unterlagen"
|
733 |
|
734 |
+
#: admin-views/tribe-options-help.php:156
|
735 |
#, fuzzy
|
736 |
+
#@ tribe-events-calendar
|
737 |
msgid "Forums: Because Everyone Needs A Buddy"
|
738 |
+
msgstr "Foren: Weil jeder Freunde braucht"
|
739 |
|
740 |
+
#: admin-views/tribe-options-help.php:159
|
741 |
+
#@ tribe-events-calendar
|
742 |
msgid "Not getting help?"
|
743 |
+
msgstr "Keine Hilfe gefunden?"
|
744 |
|
745 |
+
#: admin-views/tribe-options-help.php:171
|
746 |
+
#: lib/the-events-calendar.class.php:508
|
747 |
+
#: lib/tribe-settings.class.php:135
|
748 |
+
#@ tribe-events-calendar
|
749 |
msgid "The Events Calendar"
|
750 |
msgstr "Veranstaltungskalender"
|
751 |
|
752 |
+
#: admin-views/tribe-options-help.php:175
|
753 |
+
#@ tribe-events-calendar
|
754 |
msgid "Latest Version:"
|
755 |
msgstr "Neueste Version:"
|
756 |
|
757 |
+
#: admin-views/tribe-options-help.php:176
|
758 |
+
#@ tribe-events-calendar
|
759 |
msgid "Author:"
|
760 |
msgstr "Autor:"
|
761 |
|
762 |
+
#: admin-views/tribe-options-help.php:176
|
763 |
+
#@ tribe-events-calendar
|
764 |
msgid "Modern Tribe Inc"
|
765 |
msgstr "Modern Tribe Inc"
|
766 |
|
767 |
+
#: admin-views/tribe-options-help.php:177
|
768 |
+
#@ tribe-events-calendar
|
769 |
msgid "Requires:"
|
770 |
msgstr "Benötigt:"
|
771 |
|
772 |
+
#: admin-views/tribe-options-help.php:177
|
773 |
+
#@ tribe-events-calendar
|
774 |
msgid "WordPress "
|
775 |
msgstr "WordPress "
|
776 |
|
777 |
+
#: admin-views/tribe-options-help.php:178
|
778 |
+
#@ tribe-events-calendar
|
779 |
msgid "Wordpress.org Plugin Page"
|
780 |
+
msgstr "Wordpress.org Plugin Seite"
|
781 |
|
782 |
+
#: admin-views/tribe-options-help.php:183
|
783 |
+
#@ tribe-events-calendar
|
784 |
msgid "Average Rating"
|
785 |
msgstr "Durchschnittliche Bewertung"
|
786 |
|
787 |
+
#: admin-views/tribe-options-help.php:187
|
788 |
#, php-format
|
789 |
+
#@ tribe-events-calendar
|
790 |
msgid "Based on %d rating"
|
791 |
msgid_plural "Based on %d ratings"
|
792 |
msgstr[0] "Basierend auf %d Bewertung"
|
793 |
msgstr[1] "Basierend auf %d Bewertungen"
|
794 |
|
795 |
+
#: admin-views/tribe-options-help.php:188
|
796 |
+
#@ tribe-events-calendar
|
797 |
msgid "Give us 5 stars!"
|
798 |
msgstr "Geben Sie uns 5 Sterne!"
|
799 |
|
800 |
+
#: admin-views/tribe-options-help.php:191
|
801 |
+
#@ tribe-events-calendar
|
802 |
msgid "Premium Add-Ons"
|
803 |
msgstr "Premium Add-Ons"
|
804 |
|
805 |
+
#: admin-views/tribe-options-help.php:197
|
806 |
+
#@ tribe-events-calendar
|
807 |
msgid "(Coming Soon!)"
|
808 |
+
msgstr "(erscheint bald)"
|
809 |
|
810 |
+
#: admin-views/tribe-options-help.php:204
|
811 |
+
#@ tribe-events-calendar
|
812 |
msgid "News and Tutorials"
|
813 |
msgstr "News und Tutorials"
|
814 |
|
815 |
+
#: admin-views/tribe-options-network.php:14
|
816 |
+
#@ tribe-events-calendar
|
|
|
817 |
msgid "Network Settings"
|
818 |
msgstr "Netzwerkeinstellungen"
|
819 |
|
820 |
+
#: admin-views/tribe-options-network.php:18
|
821 |
+
#@ tribe-events-calendar
|
822 |
+
msgid "This is where all of the global network settings for Modern Tribe's The Events Calendar can be modified."
|
823 |
+
msgstr "Hier werden alle Netzwerkeinstellungen für den Modern Tribe Events Calendar eingestellt."
|
|
|
|
|
|
|
824 |
|
825 |
+
#: admin-views/tribe-options-network.php:26
|
826 |
+
#@ tribe-events-calendar
|
827 |
msgid "Hide the following settings tabs on every site:"
|
828 |
msgstr "Versteken Sie die folgenden Einstellungen auf der Seite:"
|
829 |
|
830 |
+
#: admin-views/venue-meta-box.php:20
|
831 |
+
#@ tribe-events-calendar
|
832 |
msgid "Venue Name:"
|
833 |
msgstr "Veranstaltungsort:"
|
834 |
|
835 |
+
#: admin-views/venue-meta-box.php:27
|
836 |
+
#: public/advanced-functions/meta.php:409
|
837 |
+
#@ tribe-events-calendar
|
838 |
msgid "Address:"
|
839 |
msgstr "Anschrift:"
|
840 |
|
841 |
+
#: admin-views/venue-meta-box.php:31
|
842 |
+
#@ tribe-events-calendar
|
843 |
msgid "City:"
|
844 |
msgstr "Ort:"
|
845 |
|
846 |
+
#: admin-views/venue-meta-box.php:35
|
847 |
+
#@ tribe-events-calendar
|
848 |
msgid "Country:"
|
849 |
msgstr "Land:"
|
850 |
|
851 |
+
#: admin-views/venue-meta-box.php:73
|
852 |
+
#@ tribe-events-calendar
|
853 |
msgid "State or Province:"
|
854 |
msgstr "Bundesland/Kanton/Provinz:"
|
855 |
|
856 |
+
#: admin-views/venue-meta-box.php:76
|
857 |
+
#@ tribe-events-calendar
|
858 |
msgid "Select a State:"
|
859 |
msgstr "Staat auswählen:"
|
860 |
|
861 |
+
#: admin-views/venue-meta-box.php:89
|
862 |
+
#@ tribe-events-calendar
|
863 |
msgid "Postal Code:"
|
864 |
msgstr "PLZ:"
|
865 |
|
866 |
+
#: admin-views/venue-meta-box.php:112
|
867 |
+
#: admin-views/venue-meta-box.php:134
|
868 |
+
#@ tribe-events-calendar
|
869 |
msgid "Show Google Map:"
|
870 |
msgstr "'Google Maps'-Karte anzeigen:"
|
871 |
|
872 |
+
#: admin-views/venue-meta-box.php:122
|
873 |
+
#: admin-views/venue-meta-box.php:144
|
874 |
+
#@ tribe-events-calendar
|
875 |
msgid "Show Google Maps Link:"
|
876 |
msgstr "'Google Maps'-Link anzeigen:"
|
877 |
|
878 |
+
#: admin-views/widget-admin-list.php:11
|
879 |
+
#@ tribe-events-calendar
|
880 |
msgid "Title:"
|
881 |
msgstr "Titel:"
|
882 |
|
883 |
+
#: admin-views/widget-admin-list.php:16
|
884 |
+
#@ tribe-events-calendar
|
885 |
msgid "Show:"
|
886 |
+
msgstr "Anzeigen:"
|
887 |
|
888 |
+
#: admin-views/widget-admin-list.php:24
|
889 |
+
#@ tribe-events-calendar
|
890 |
msgid "Show widget only if there are upcoming events:"
|
891 |
msgstr "Das Widget nur anzeigen, wenn es bevorstehende Veranstaltungen gibt:"
|
892 |
|
893 |
+
#: admin-views/tickets/attendees.php:9
|
894 |
+
#: admin-views/tickets/list.php:41
|
895 |
+
#: lib/tickets/tribe-tickets-pro.php:73
|
896 |
+
#@ tribe-events-calendar
|
897 |
msgid "Attendees"
|
898 |
msgstr "Teilnehmer"
|
899 |
|
900 |
+
#: admin-views/tickets/attendees.php:14
|
901 |
+
#@ tribe-events-calendar
|
|
|
902 |
msgid "Event Summary"
|
903 |
msgstr "Veranstaltungszusammenfassung"
|
904 |
|
905 |
+
#: admin-views/tickets/attendees.php:22
|
906 |
+
#@ tribe-events-calendar
|
|
|
907 |
msgid "Event Details"
|
908 |
msgstr "Veranstaltungsdetails"
|
909 |
|
910 |
+
#: admin-views/tickets/attendees.php:24
|
911 |
+
#@ tribe-events-calendar
|
912 |
msgid "Start Date / Time:"
|
913 |
+
msgstr "Anfangsdatum und -zeit:"
|
914 |
|
915 |
+
#: admin-views/tickets/attendees.php:26
|
916 |
+
#@ tribe-events-calendar
|
917 |
msgid "End Date / Time:"
|
918 |
+
msgstr "Enddatum und -zeit:"
|
919 |
|
920 |
+
#: admin-views/tickets/attendees.php:34
|
921 |
+
#@ tribe-events-calendar
|
922 |
msgid "Venue:"
|
923 |
msgstr "Ort:"
|
924 |
|
925 |
+
#: admin-views/tickets/attendees.php:52
|
926 |
+
#@ tribe-events-calendar
|
927 |
msgid "Ticket Sales"
|
928 |
msgstr "Kartenverkäufe"
|
929 |
|
930 |
+
#: admin-views/tickets/attendees.php:64
|
931 |
+
#: admin-views/tickets/list.php:67
|
932 |
#, php-format
|
933 |
+
#@ tribe-events-calendar
|
934 |
msgid "Sold %d"
|
935 |
msgstr "%d verkauft"
|
936 |
|
937 |
+
#: admin-views/tickets/attendees.php:66
|
938 |
+
#: admin-views/tickets/list.php:69
|
939 |
#, php-format
|
940 |
+
#@ tribe-events-calendar
|
941 |
msgid "Sold %d of %d"
|
942 |
msgstr "%d von %d verkauft"
|
943 |
|
944 |
+
#: admin-views/tickets/attendees.php:81
|
945 |
+
#@ tribe-events-calendar
|
946 |
msgid "Tickets sold:"
|
947 |
msgstr "Karten verkauft:"
|
948 |
|
949 |
+
#: admin-views/tickets/attendees.php:85
|
950 |
+
#@ tribe-events-calendar
|
951 |
msgid "Checked in:"
|
952 |
msgstr "Eingecheckt in:"
|
953 |
|
954 |
+
#: admin-views/tickets/attendees.php:105
|
955 |
+
#@ tribe-events-calendar
|
956 |
msgid "Send the attendee list by email"
|
957 |
msgstr "Die Teilnehmerliste per E-Mail versenden"
|
958 |
|
959 |
+
#: admin-views/tickets/attendees.php:109
|
960 |
+
#@ tribe-events-calendar
|
|
|
961 |
msgid "Select a User:"
|
962 |
msgstr "Nutzer wählen:"
|
963 |
|
964 |
+
#: admin-views/tickets/attendees.php:110
|
965 |
+
#@ tribe-events-calendar
|
966 |
msgid "Select..."
|
967 |
msgstr "Wählen..."
|
968 |
|
969 |
+
#: admin-views/tickets/attendees.php:112
|
970 |
+
#@ tribe-events-calendar
|
971 |
msgid "or"
|
972 |
msgstr "oder"
|
973 |
|
974 |
+
#: admin-views/tickets/attendees.php:114
|
975 |
+
#@ tribe-events-calendar
|
|
|
976 |
msgid "Email Address:"
|
977 |
msgstr "E-Mail Adresse:"
|
978 |
|
979 |
+
#: admin-views/tickets/list.php:21
|
980 |
+
#@ tribe-events-calendar
|
981 |
msgid "Edit"
|
982 |
msgstr "Bearbeiten"
|
983 |
|
984 |
+
#: admin-views/tickets/list.php:22
|
985 |
+
#@ tribe-events-calendar
|
986 |
msgid "Delete"
|
987 |
msgstr "Löschen"
|
988 |
|
989 |
+
#: admin-views/tickets/list.php:24
|
|
|
990 |
#, php-format
|
991 |
+
#@ tribe-events-calendar
|
992 |
msgid "Edit in %s"
|
993 |
msgstr "Bearbeiten in %s"
|
994 |
|
995 |
+
#: admin-views/tickets/list.php:27
|
996 |
+
#: lib/tribe-admin-events-list.class.php:53
|
997 |
+
#@ tribe-events-calendar
|
998 |
msgid "View"
|
999 |
msgstr "Ansehen"
|
1000 |
|
1001 |
+
#: admin-views/tickets/list.php:41
|
1002 |
+
#: lib/tickets/tribe-tickets-pro.php:73
|
1003 |
+
#@ tribe-events-calendar
|
1004 |
msgid "See who purchased tickets to this event"
|
1005 |
+
msgstr "Anzeigen wer Karten für die Veranstaltung gekauft hat"
|
1006 |
|
1007 |
+
#: admin-views/tickets/meta-box.php:21
|
1008 |
+
#@ tribe-events-calendar
|
1009 |
+
msgid "This event was created using Community Events. Are you sure you want to sell tickets for it?"
|
1010 |
+
msgstr "Diese Veranstaltung wurde durch Community Events erstellt. Wollen Sie wirklich Karten dafür veraufen?"
|
|
|
|
|
|
|
1011 |
|
1012 |
+
#: admin-views/tickets/meta-box.php:32
|
1013 |
+
#@ tribe-events-calendar
|
1014 |
msgid "Upload image for the ticket header"
|
1015 |
+
msgstr "Laden Sie ein Bild für den Kartenheader hoch"
|
1016 |
|
1017 |
+
#: admin-views/tickets/meta-box.php:33
|
1018 |
+
#@ tribe-events-calendar
|
1019 |
+
msgid "The maximum image size in the email will be 580px wide by any height, and then scaled for mobile. If you would like \"retina\" support use an image sized to 1160px wide."
|
1020 |
+
msgstr "Die maximale Bildgröße in der E-Mail beträgt 580px in Höhe und Breite. Es wird für Mobilgeräte verkleinert. Wenn Sie Retina-Displays unterstützen nutzen wollen, verwenden Sie Bild mit einer Breite von 1160px."
|
|
|
|
|
|
|
|
|
1021 |
|
1022 |
+
#: admin-views/tickets/meta-box.php:36
|
1023 |
+
#@ tribe-events-calendar
|
|
|
1024 |
msgid "Select an Image"
|
1025 |
msgstr "Ein Bild auswählen"
|
1026 |
|
1027 |
+
#: admin-views/tickets/meta-box.php:44
|
1028 |
+
#@ default
|
1029 |
msgid "Remove"
|
1030 |
msgstr "Entfernen"
|
1031 |
|
1032 |
+
#: admin-views/tickets/meta-box.php:62
|
1033 |
+
#: admin-views/tickets/meta-box.php:72
|
1034 |
+
#@ tribe-events-calendar
|
|
|
1035 |
msgid "Add new ticket"
|
1036 |
msgstr "Eine Neue Karte erstellen"
|
1037 |
|
1038 |
+
#: admin-views/tickets/meta-box.php:73
|
1039 |
+
#@ tribe-events-calendar
|
|
|
1040 |
msgid "Edit ticket"
|
1041 |
msgstr "Karte bearbeiten"
|
1042 |
|
1043 |
+
#: admin-views/tickets/meta-box.php:79
|
1044 |
+
#@ tribe-events-calendar
|
1045 |
msgid "Sell using:"
|
1046 |
msgstr "Verkaufen mit:"
|
1047 |
|
1048 |
+
#: admin-views/tickets/meta-box.php:96
|
1049 |
+
#@ tribe-events-calendar
|
|
|
1050 |
msgid "Ticket Name:"
|
1051 |
msgstr "Karten Name:"
|
1052 |
|
1053 |
+
#: admin-views/tickets/meta-box.php:103
|
1054 |
+
#@ tribe-events-calendar
|
1055 |
msgid "Ticket Description:"
|
1056 |
msgstr "Karten Beschreibung:"
|
1057 |
|
1058 |
+
#: admin-views/tickets/meta-box.php:112
|
1059 |
+
#@ tribe-events-calendar
|
1060 |
msgid "Price:"
|
1061 |
msgstr "Preis:"
|
1062 |
|
1063 |
+
#: admin-views/tickets/meta-box.php:124
|
1064 |
+
#@ tribe-events-calendar
|
|
|
1065 |
msgid "Start sale:"
|
1066 |
msgstr "Verkaufsstart:"
|
1067 |
|
1068 |
+
#: admin-views/tickets/meta-box.php:148
|
1069 |
+
#@ tribe-events-calendar
|
|
|
1070 |
msgid "End sale:"
|
1071 |
msgstr "Verkaufsende:"
|
1072 |
|
1073 |
+
#: admin-views/tickets/meta-box.php:170
|
1074 |
+
#@ tribe-events-calendar
|
1075 |
+
msgid "When will ticket sales occur? If you don't set a start/end date for sales, tickets will be available from now until the event ends."
|
1076 |
+
msgstr "Wann soll der Kartenverkauf stattfinden? Wenn kein Verkaufsstart/ -ende festgelegt wird, werden Karten von jetzt bis zum Veranstaltungsende angeboten."
|
|
|
|
|
|
|
1077 |
|
1078 |
+
#: lib/the-events-calendar.class.php:513
|
1079 |
+
#@ tribe-events-calendar
|
1080 |
msgid "month"
|
1081 |
+
msgstr "Monat"
|
1082 |
|
1083 |
+
#: lib/the-events-calendar.class.php:514
|
1084 |
+
#@ tribe-events-calendar
|
1085 |
msgid "upcoming"
|
1086 |
+
msgstr "anstehend"
|
1087 |
|
1088 |
+
#: lib/the-events-calendar.class.php:515
|
1089 |
+
#@ tribe-events-calendar
|
1090 |
msgid "past"
|
1091 |
msgstr "vergangen"
|
1092 |
|
1093 |
+
#: lib/the-events-calendar.class.php:517
|
1094 |
+
#@ tribe-events-calendar
|
1095 |
msgid "venue"
|
1096 |
msgstr "Ort"
|
1097 |
|
1098 |
+
#: lib/the-events-calendar.class.php:531
|
|
|
1099 |
#, php-format
|
1100 |
+
#@ tribe-events-calendar
|
1101 |
msgid "Initializing Tribe Events on %s"
|
1102 |
+
msgstr "Tribe Events wird eingerichtet für %s"
|
1103 |
|
1104 |
+
#: lib/the-events-calendar.class.php:644
|
1105 |
#, php-format
|
1106 |
+
#@ tribe-events-calendar
|
1107 |
+
msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
|
1108 |
+
msgstr "Ihre Version des Events Calendar ist nicht aktuell genug, um dieses Add-On zu nutzen. Bitte %supdaten Sie jetzt%s."
|
1109 |
+
|
1110 |
+
#: lib/the-events-calendar.class.php:661
|
1111 |
+
#, fuzzy, php-format, php-format, php-format
|
1112 |
+
#@ tribe-events-calendar
|
1113 |
+
msgid "The following plugins are out of date: <b>%s</b>. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %sWant to pair an older version%s?"
|
1114 |
+
msgstr "Die folgenden Plugins sind veraltet: <b>%s</b>. Bitte %supdateen Sie jetzt%s. Alle Erweiterungen sind mit dem Events Calendar verbunden und funktionieren nicht richtig, wenn die Versionen nicht zusammenpassen. %sWollen Sie eine ältere Version nutzen%s?"
|
1115 |
+
|
1116 |
+
#: lib/the-events-calendar.class.php:725
|
1117 |
+
#: lib/the-events-calendar.class.php:760
|
1118 |
+
#: lib/the-events-calendar.class.php:762
|
1119 |
+
#@ tribe-events-calendar
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1120 |
msgid "Licenses"
|
1121 |
msgstr "Lizenzen"
|
1122 |
|
1123 |
+
#: lib/the-events-calendar.class.php:729
|
1124 |
#, php-format
|
1125 |
+
#@ tribe-events-calendar
|
1126 |
+
msgid "<p>The license key you received when completing your purchase from %s will grant you access to support and updates until it expires. You do not need to enter the key below for the plugins to work, but you will need to enter it to get automatic updates. <strong>Find your license keys at <a href=\"%s\" target=\"_blank\">%s</a></strong>.</p> <p>Each paid add-on has its own unique license key. Simply paste the key into its appropriate field on below, and give it a moment to validate. You know you're set when a green expiration date appears alongside a \"valid\" message.</p> <p>If you're seeing a red message telling you that your key isn't valid or is out of installs, visit <a href=\"%s\" target=\"_blank\">%s</a> to manage your installs or renew / upgrade your license.</p><p>Not seeing an update but expecting one? In WordPress, go to <a href=\"%s\">Dashboard > Updates</a> and click \"Check Again\".</p>"
|
1127 |
+
msgstr "<p>Der Lizenzschlüssel von %s, den Sie erhalten haben, wird Ihnen Zugriff auf das Supportforum gewähren bis er abgelaufen ist. Sie müssen den Schüssel nicht eingeben damit die Plugins funktionieren, aber um Updates zu erhalten muss der Schüssel eingegeben sein. Sie finden Ihren Lizenzschlüssel unter <a href=\"%s\">%s</a>.</p> <p>Jedes bezahlte Plugin hat einen einzigartigen Lizenzschlüssel. Fügen Sie den Schlüssel einfach in das Feld ein und warten Sie einen Moment bis er verifiziert ist. </p><p>Wenn Sie sehen, eine rote Meldung, dass Ihre Schlüssel nicht gültig ist oder aus installiert sind, gehen Sie zu <a href=\"%s\" target=\"_blank\">%s</a> Ihre Installationen zu verwalten oder zu erneuern / aktualisieren Sie Ihre Lizenz.</p><p>Kein Update obwohl der Schüssel passt? In WordPress, gehen Sie zu <a href=\"%s\">Dashboard > Updates</a> und klicken \"Erneut prüfen\".</p>"
|
1128 |
+
|
1129 |
+
#: lib/the-events-calendar.class.php:752
|
1130 |
+
#@ tribe-events-calendar
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1131 |
msgid "General"
|
1132 |
msgstr "Allgemein"
|
1133 |
|
1134 |
+
#: lib/the-events-calendar.class.php:753
|
1135 |
+
#@ tribe-events-calendar
|
1136 |
msgid "Display"
|
1137 |
+
msgstr "Darstellung"
|
1138 |
|
1139 |
+
#: lib/the-events-calendar.class.php:804
|
|
|
1140 |
#, php-format
|
1141 |
+
#@ tribe-events-calendar
|
1142 |
+
msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
|
1143 |
+
msgstr "Das The Events Calendar Plugin erfordert WordPress Version %s oder höher. Bitte aktualisieren Sie Ihre WordPress-Installation entsprechend, bevor Sie fortfahren."
|
|
|
|
|
|
|
|
|
1144 |
|
1145 |
+
#: lib/the-events-calendar.class.php:807
|
|
|
1146 |
#, php-format
|
1147 |
+
#@ tribe-events-calendar
|
1148 |
+
msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
|
1149 |
+
msgstr "Das The Events Calendar Plugin erfordert PHP Version %s oder höher. Kontaktieren Sie Ihren Webhosting-Anbieter, um auf eine höhere PHP-Version aktualisieren zu können."
|
1150 |
+
|
1151 |
+
#: lib/the-events-calendar.class.php:1022
|
1152 |
+
#: lib/widget-list.class.php:169
|
1153 |
+
#: public/template-tags/loop.php:138
|
1154 |
+
#@ tribe-events-calendar
|
|
|
|
|
|
|
1155 |
msgid "Upcoming Events"
|
1156 |
+
msgstr "Anstehende Veranstaltungen"
|
1157 |
|
1158 |
+
#: lib/the-events-calendar.class.php:1025
|
1159 |
+
#: public/template-tags/loop.php:168
|
1160 |
+
#@ tribe-events-calendar
|
1161 |
msgid "Past Events"
|
1162 |
msgstr "Vergangene Veranstaltungen"
|
1163 |
|
1164 |
+
#: lib/the-events-calendar.class.php:1030
|
1165 |
+
#: lib/the-events-calendar.class.php:1037
|
1166 |
+
#: public/template-tags/loop.php:173
|
1167 |
#, php-format
|
1168 |
+
#@ tribe-events-calendar
|
1169 |
msgid "Events for %s"
|
1170 |
+
msgstr "Veranstaltungen für %s"
|
1171 |
|
1172 |
+
#: lib/the-events-calendar.class.php:1032
|
1173 |
+
#@ tribe-events-calendar
|
1174 |
msgid "Events this month"
|
1175 |
msgstr "Veranstaltungen diesen Monat"
|
1176 |
|
1177 |
+
#: lib/the-events-calendar.class.php:1044
|
|
|
1178 |
#, php-format
|
1179 |
+
#@ tribe-events-calendar
|
1180 |
msgid "Events at %s"
|
1181 |
msgstr "Veranstaltungen im %s"
|
1182 |
|
1183 |
+
#: lib/the-events-calendar.class.php:1063
|
1184 |
+
#@ tribe-events-calendar
|
1185 |
msgid "No description has been entered for this event."
|
1186 |
+
msgstr "Für diese Veranstaltung wurde keine Beschreibung eingetragen."
|
1187 |
|
1188 |
+
#: lib/the-events-calendar.class.php:1325
|
1189 |
+
#@ tribe-events-calendar
|
1190 |
msgid "category"
|
1191 |
+
msgstr "Kategorie"
|
1192 |
|
1193 |
+
#: lib/the-events-calendar.class.php:1335
|
1194 |
+
#@ tribe-events-calendar
|
1195 |
msgid "tag"
|
1196 |
msgstr "Tag"
|
1197 |
|
1198 |
+
#: lib/io/csv/admin-views/import.php:31
|
1199 |
+
#: lib/the-events-calendar.class.php:1362
|
1200 |
+
#: lib/the-events-calendar.class.php:3859
|
1201 |
+
#: lib/the-events-calendar.class.php:3920
|
1202 |
+
#@ tribe-events-calendar
|
1203 |
msgid "Events"
|
1204 |
msgstr "Veranstaltungen"
|
1205 |
|
1206 |
+
#: lib/the-events-calendar.class.php:1363
|
1207 |
+
#@ tribe-events-calendar
|
1208 |
msgid "Event"
|
1209 |
msgstr "Veranstaltung"
|
1210 |
|
1211 |
+
#: lib/the-events-calendar.class.php:1364
|
1212 |
+
#: lib/the-events-calendar.class.php:1377
|
1213 |
+
#: lib/the-events-calendar.class.php:1390
|
1214 |
+
#@ tribe-events-calendar
|
1215 |
msgid "Add New"
|
1216 |
+
msgstr "Hinzufügen"
|
1217 |
|
1218 |
+
#: lib/the-events-calendar.class.php:1365
|
1219 |
+
#@ tribe-events-calendar
|
1220 |
msgid "Add New Event"
|
1221 |
+
msgstr "Neue Veranstaltung hinzufügen"
|
1222 |
|
1223 |
+
#: lib/the-events-calendar.class.php:1366
|
1224 |
+
#@ tribe-events-calendar
|
1225 |
msgid "Edit Event"
|
1226 |
msgstr "Veranstaltung bearbeiten"
|
1227 |
|
1228 |
+
#: lib/the-events-calendar.class.php:1367
|
1229 |
+
#@ tribe-events-calendar
|
1230 |
msgid "New Event"
|
1231 |
msgstr "Neue Veranstaltung"
|
1232 |
|
1233 |
+
#: lib/the-events-calendar.class.php:1368
|
1234 |
+
#@ tribe-events-calendar
|
1235 |
msgid "View Event"
|
1236 |
msgstr "Veranstaltung ansehen"
|
1237 |
|
1238 |
+
#: lib/the-events-calendar.class.php:1369
|
1239 |
+
#@ tribe-events-calendar
|
1240 |
msgid "Search Events"
|
1241 |
+
msgstr "Veranstaltungen suchen"
|
1242 |
|
1243 |
+
#: lib/the-events-calendar.class.php:1370
|
1244 |
+
#@ tribe-events-calendar
|
1245 |
msgid "No events found"
|
1246 |
msgstr "Es wurden keine Veranstaltungen gefunden"
|
1247 |
|
1248 |
+
#: lib/the-events-calendar.class.php:1371
|
1249 |
+
#@ tribe-events-calendar
|
1250 |
msgid "No events found in Trash"
|
1251 |
msgstr "Es befinden sich keine Veranstaltungen im Papierkorb"
|
1252 |
|
1253 |
+
#: lib/io/csv/admin-views/import.php:29
|
1254 |
+
#: lib/the-events-calendar.class.php:1375
|
1255 |
+
#: lib/the-events-calendar.class.php:1487
|
1256 |
+
#@ tribe-events-calendar
|
1257 |
msgid "Venues"
|
1258 |
msgstr "Veranstaltungsorte"
|
1259 |
|
1260 |
+
#: lib/the-events-calendar.class.php:1376
|
1261 |
+
#: public/advanced-functions/meta.php:369
|
1262 |
+
#: views/tickets/email.php:343
|
1263 |
+
#@ tribe-events-calendar
|
1264 |
msgid "Venue"
|
1265 |
msgstr "Veranstaltungsort"
|
1266 |
|
1267 |
+
#: lib/the-events-calendar.class.php:1378
|
1268 |
+
#@ tribe-events-calendar
|
1269 |
msgid "Add New Venue"
|
1270 |
+
msgstr "Neuen Veranstaltungsort hinzufügen"
|
1271 |
|
1272 |
+
#: lib/the-events-calendar.class.php:1379
|
1273 |
+
#@ tribe-events-calendar
|
1274 |
msgid "Edit Venue"
|
1275 |
msgstr "Veranstaltungsort bearbeiten"
|
1276 |
|
1277 |
+
#: lib/the-events-calendar.class.php:1380
|
1278 |
+
#@ tribe-events-calendar
|
1279 |
msgid "New Venue"
|
1280 |
msgstr "Neuer Veranstaltungsort"
|
1281 |
|
1282 |
+
#: lib/the-events-calendar.class.php:1381
|
1283 |
+
#@ tribe-events-calendar
|
1284 |
msgid "View Venue"
|
1285 |
msgstr "Veranstaltungsort anzeigen"
|
1286 |
|
1287 |
+
#: lib/the-events-calendar.class.php:1382
|
1288 |
+
#@ tribe-events-calendar
|
1289 |
msgid "Search Venues"
|
1290 |
msgstr "Veranstaltungsorte suchen"
|
1291 |
|
1292 |
+
#: lib/the-events-calendar.class.php:1383
|
1293 |
+
#@ tribe-events-calendar
|
1294 |
msgid "No venue found"
|
1295 |
msgstr "Es wurde kein Veranstaltungsort gefunden"
|
1296 |
|
1297 |
+
#: lib/the-events-calendar.class.php:1384
|
1298 |
+
#@ tribe-events-calendar
|
1299 |
msgid "No venues found in Trash"
|
1300 |
msgstr "Es befinden sich keine Veranstaltungsorte im Papierkorb"
|
1301 |
|
1302 |
+
#: lib/io/csv/admin-views/import.php:30
|
1303 |
+
#: lib/the-events-calendar.class.php:1388
|
1304 |
+
#: lib/the-events-calendar.class.php:1488
|
1305 |
+
#@ tribe-events-calendar
|
1306 |
msgid "Organizers"
|
1307 |
msgstr "Veranstalter"
|
1308 |
|
1309 |
+
#: lib/the-events-calendar.class.php:1389
|
1310 |
+
#: public/advanced-functions/meta.php:431
|
1311 |
+
#: views/tickets/email.php:362
|
1312 |
+
#@ tribe-events-calendar
|
1313 |
msgid "Organizer"
|
1314 |
msgstr "Veranstalter"
|
1315 |
|
1316 |
+
#: lib/the-events-calendar.class.php:1391
|
1317 |
+
#@ tribe-events-calendar
|
1318 |
msgid "Add New Organizer"
|
1319 |
+
msgstr "Neuen Veranstalter hinzufügen"
|
1320 |
|
1321 |
+
#: lib/the-events-calendar.class.php:1392
|
1322 |
+
#@ tribe-events-calendar
|
1323 |
msgid "Edit Organizer"
|
1324 |
msgstr "Veranstalter bearbeiten"
|
1325 |
|
1326 |
+
#: lib/the-events-calendar.class.php:1393
|
1327 |
+
#@ tribe-events-calendar
|
1328 |
msgid "New Organizer"
|
1329 |
msgstr "Neuer Veranstalter"
|
1330 |
|
1331 |
+
#: lib/the-events-calendar.class.php:1394
|
1332 |
+
#@ tribe-events-calendar
|
|
|
1333 |
msgid "View Organizer"
|
1334 |
msgstr "Veranstalter ansehen"
|
1335 |
|
1336 |
+
#: lib/the-events-calendar.class.php:1395
|
1337 |
+
#@ tribe-events-calendar
|
1338 |
msgid "Search Organizers"
|
1339 |
msgstr "Veranstalter suchen"
|
1340 |
|
1341 |
+
#: lib/the-events-calendar.class.php:1396
|
1342 |
+
#@ tribe-events-calendar
|
1343 |
msgid "No organizer found"
|
1344 |
msgstr "Es wurde kein Veranstalter gefunden"
|
1345 |
|
1346 |
+
#: lib/the-events-calendar.class.php:1397
|
1347 |
+
#@ tribe-events-calendar
|
1348 |
msgid "No organizers found in Trash"
|
1349 |
msgstr "Es befinden sich keine Veranstalter im Papierkorb"
|
1350 |
|
1351 |
+
#: lib/the-events-calendar.class.php:1401
|
1352 |
+
#: lib/tribe-admin-events-list.class.php:226
|
1353 |
+
#@ tribe-events-calendar
|
1354 |
msgid "Event Categories"
|
1355 |
msgstr "Veranstalt.-Kategorien"
|
1356 |
|
1357 |
+
#: lib/the-events-calendar.class.php:1403
|
1358 |
+
#@ tribe-events-calendar
|
|
|
|
|
|
|
|
|
|
|
|
|
1359 |
msgid "Search Event Categories"
|
1360 |
msgstr "Veranstaltungskategorien suchen"
|
1361 |
|
1362 |
+
#: lib/the-events-calendar.class.php:1404
|
1363 |
+
#@ tribe-events-calendar
|
1364 |
msgid "All Event Categories"
|
1365 |
msgstr "Alle Veranstaltungskategorien"
|
1366 |
|
1367 |
+
#: lib/the-events-calendar.class.php:1405
|
1368 |
+
#@ tribe-events-calendar
|
1369 |
msgid "Parent Event Category"
|
1370 |
+
msgstr "Übergeordnete Veranstaltungskategorie"
|
1371 |
|
1372 |
+
#: lib/the-events-calendar.class.php:1406
|
1373 |
+
#@ tribe-events-calendar
|
1374 |
msgid "Parent Event Category:"
|
1375 |
+
msgstr "Übergeordnete Veranstaltungskategorie:"
|
1376 |
|
1377 |
+
#: lib/the-events-calendar.class.php:1407
|
1378 |
+
#@ tribe-events-calendar
|
1379 |
msgid "Edit Event Category"
|
1380 |
msgstr "Veranstaltungskategorie bearbeiten"
|
1381 |
|
1382 |
+
#: lib/the-events-calendar.class.php:1408
|
1383 |
+
#@ tribe-events-calendar
|
1384 |
msgid "Update Event Category"
|
1385 |
msgstr "Veranstaltungskategorie aktualisieren"
|
1386 |
|
1387 |
+
#: lib/the-events-calendar.class.php:1409
|
1388 |
+
#@ tribe-events-calendar
|
1389 |
msgid "Add New Event Category"
|
1390 |
+
msgstr "Neue Veranstaltungskategorie hinzufügen"
|
1391 |
|
1392 |
+
#: lib/the-events-calendar.class.php:1410
|
1393 |
+
#@ tribe-events-calendar
|
1394 |
msgid "New Event Category Name"
|
1395 |
msgstr "Neuer Veranstaltungskategorie-Name"
|
1396 |
|
1397 |
+
#: lib/the-events-calendar.class.php:1426
|
|
|
1398 |
#, php-format
|
1399 |
+
#@ tribe-events-calendar
|
1400 |
msgid "Event updated. <a href=\"%s\">View event</a>"
|
1401 |
+
msgstr "Veranstaltung aktualisiert. <a href=\"%s\">Diese Veranstaltung ansehen</a>"
|
|
|
1402 |
|
1403 |
+
#: lib/the-events-calendar.class.php:1427
|
1404 |
+
#: lib/the-events-calendar.class.php:1444
|
1405 |
+
#: lib/the-events-calendar.class.php:1461
|
1406 |
+
#@ tribe-events-calendar
|
1407 |
msgid "Custom field updated."
|
1408 |
msgstr "Benutzerdefiniertes Feld aktualisiert."
|
1409 |
|
1410 |
+
#: lib/the-events-calendar.class.php:1428
|
1411 |
+
#: lib/the-events-calendar.class.php:1445
|
1412 |
+
#: lib/the-events-calendar.class.php:1462
|
1413 |
+
#@ tribe-events-calendar
|
1414 |
msgid "Custom field deleted."
|
1415 |
msgstr "Benutzerdefiniertes Feld gelöscht."
|
1416 |
|
1417 |
+
#: lib/the-events-calendar.class.php:1429
|
1418 |
+
#@ tribe-events-calendar
|
1419 |
msgid "Event updated."
|
1420 |
msgstr "Veranstaltung aktualisiert."
|
1421 |
|
1422 |
+
#. translators: %s: date and time of the revision
|
1423 |
+
#: lib/the-events-calendar.class.php:1431
|
1424 |
#, php-format
|
1425 |
+
#@ tribe-events-calendar
|
1426 |
msgid "Event restored to revision from %s"
|
1427 |
msgstr "Veranstaltung wiederhergestellt mit der Revision von %s"
|
1428 |
|
1429 |
+
#: lib/the-events-calendar.class.php:1432
|
|
|
1430 |
#, php-format
|
1431 |
+
#@ tribe-events-calendar
|
1432 |
msgid "Event published. <a href=\"%s\">View event</a>"
|
1433 |
+
msgstr "Veranstaltung veröffentlicht. <a href=\"%s\">Diese Veranstaltung ansehen</a>"
|
|
|
|
|
1434 |
|
1435 |
+
#: lib/the-events-calendar.class.php:1433
|
1436 |
+
#@ tribe-events-calendar
|
1437 |
msgid "Event saved."
|
1438 |
msgstr "Veranstaltung gespeichert."
|
1439 |
|
1440 |
+
#: lib/the-events-calendar.class.php:1434
|
|
|
1441 |
#, php-format
|
1442 |
+
#@ tribe-events-calendar
|
1443 |
msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
1444 |
+
msgstr "Veranstaltung hinzugefügt. <a target=\"_blank\" href=\"%s\">Vorschau</a>"
|
|
|
1445 |
|
1446 |
+
#: lib/the-events-calendar.class.php:1435
|
|
|
1447 |
#, php-format
|
1448 |
+
#@ tribe-events-calendar
|
1449 |
+
msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
|
1450 |
+
msgstr "Veranstaltung geplant für: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Vorschau</a>"
|
1451 |
+
|
1452 |
+
#: lib/the-events-calendar.class.php:1437
|
1453 |
+
#: lib/the-events-calendar.class.php:1454
|
1454 |
+
#: lib/the-events-calendar.class.php:1471
|
1455 |
+
#@ tribe-events-calendar
|
|
|
|
|
|
|
1456 |
msgid "M j, Y @ G:i"
|
1457 |
msgstr "M j, Y @ G:i"
|
1458 |
|
1459 |
+
#: lib/the-events-calendar.class.php:1438
|
|
|
1460 |
#, php-format
|
1461 |
+
#@ tribe-events-calendar
|
1462 |
msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
1463 |
+
msgstr "Veranstaltungsentwurf aktualisiert. <a target=\"_blank\" href=\"%s\">Vorschau</a>"
|
|
|
|
|
1464 |
|
1465 |
+
#: lib/the-events-calendar.class.php:1443
|
|
|
1466 |
#, php-format
|
1467 |
+
#@ tribe-events-calendar
|
1468 |
msgid "Venue updated. <a href=\"%s\">View venue</a>"
|
1469 |
msgstr "Veranstaltungsort aktualisiert. <a href=\"%s\">Diesen Ort ansehen</a>"
|
1470 |
|
1471 |
+
#: lib/the-events-calendar.class.php:1446
|
1472 |
+
#@ tribe-events-calendar
|
1473 |
msgid "Venue updated."
|
1474 |
msgstr "Veranstaltungsort aktualisiert."
|
1475 |
|
1476 |
+
#. translators: %s: date and time of the revision
|
1477 |
+
#: lib/the-events-calendar.class.php:1448
|
1478 |
#, php-format
|
1479 |
+
#@ tribe-events-calendar
|
1480 |
msgid "Venue restored to revision from %s"
|
1481 |
msgstr "Veranstaltungsort wiederhergestellt mit der Revision von %s"
|
1482 |
|
1483 |
+
#: lib/the-events-calendar.class.php:1449
|
|
|
1484 |
#, php-format
|
1485 |
+
#@ tribe-events-calendar
|
1486 |
msgid "Venue published. <a href=\"%s\">View venue</a>"
|
1487 |
+
msgstr "Veranstaltungsort veröffentlicht. <a href=\"%s\">Diesen Ort ansehen</a>"
|
|
|
1488 |
|
1489 |
+
#: lib/the-events-calendar.class.php:1450
|
1490 |
+
#@ default
|
1491 |
msgid "Venue saved."
|
1492 |
msgstr "Veranstaltungsort gespeichert."
|
1493 |
|
1494 |
+
#: lib/the-events-calendar.class.php:1451
|
|
|
1495 |
#, php-format
|
1496 |
+
#@ tribe-events-calendar
|
1497 |
msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
|
1498 |
+
msgstr "Veranstaltungsort hinzugefügt. <a target=\"_blank\" href=\"%s\">Vorschau</a>"
|
|
|
|
|
1499 |
|
1500 |
+
#: lib/the-events-calendar.class.php:1452
|
|
|
1501 |
#, php-format
|
1502 |
+
#@ tribe-events-calendar
|
1503 |
+
msgid "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview venue</a>"
|
1504 |
+
msgstr "Veranstaltungsort geplant für: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Vorschau</a>"
|
|
|
|
|
|
|
1505 |
|
1506 |
+
#: lib/the-events-calendar.class.php:1455
|
|
|
1507 |
#, php-format
|
1508 |
+
#@ tribe-events-calendar
|
1509 |
msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
|
1510 |
+
msgstr "Entwurf des Veranstaltungsortes aktualisiert. <a target=\"_blank\" href=\"%s\">Vorschau</a>"
|
|
|
|
|
1511 |
|
1512 |
+
#: lib/the-events-calendar.class.php:1460
|
|
|
1513 |
#, php-format
|
1514 |
+
#@ tribe-events-calendar
|
1515 |
msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
|
1516 |
+
msgstr "Veranstalter aktualisiert. <a href=\"%s\">Diesen Veranstalter ansehen</a>"
|
|
|
1517 |
|
1518 |
+
#: lib/the-events-calendar.class.php:1463
|
1519 |
+
#@ tribe-events-calendar
|
1520 |
msgid "Organizer updated."
|
1521 |
msgstr "Veranstalter aktualisiert."
|
1522 |
|
1523 |
+
#. translators: %s: date and time of the revision
|
1524 |
+
#: lib/the-events-calendar.class.php:1465
|
1525 |
#, php-format
|
1526 |
+
#@ tribe-events-calendar
|
1527 |
msgid "Organizer restored to revision from %s"
|
1528 |
msgstr "Veranstalter wiederhergestellt mit der Revision von %s"
|
1529 |
|
1530 |
+
#: lib/the-events-calendar.class.php:1466
|
|
|
1531 |
#, php-format
|
1532 |
+
#@ tribe-events-calendar
|
1533 |
msgid "Organizer published. <a href=\"%s\">View organizer</a>"
|
1534 |
+
msgstr "Veranstalter publiziert. <a href=\"%s\">Diesen Veranstalter ansehen</a>"
|
|
|
1535 |
|
1536 |
+
#: lib/the-events-calendar.class.php:1467
|
1537 |
+
#@ default
|
1538 |
msgid "Organizer saved."
|
1539 |
msgstr "Veranstalter gespeichert."
|
1540 |
|
1541 |
+
#: lib/the-events-calendar.class.php:1468
|
|
|
1542 |
#, php-format
|
1543 |
+
#@ tribe-events-calendar
|
1544 |
+
msgid "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
|
1545 |
+
msgstr "Veranstalter hinzugefügt. <a target=\"_blank\" href=\"%s\">Vorschau</a>"
|
|
|
1546 |
|
1547 |
+
#: lib/the-events-calendar.class.php:1469
|
|
|
1548 |
#, php-format
|
1549 |
+
#@ tribe-events-calendar
|
1550 |
+
msgid "Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview organizer</a>"
|
1551 |
+
msgstr "Veranstalter geplant für: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Vorschau</a>"
|
|
|
|
|
|
|
1552 |
|
1553 |
+
#: lib/the-events-calendar.class.php:1472
|
|
|
1554 |
#, php-format
|
1555 |
+
#@ tribe-events-calendar
|
1556 |
+
msgid "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
|
1557 |
+
msgstr "Entwurf des Veranstalters aktualisiert. <a target=\"_blank\" href=\"%s\">Vorschau</a>"
|
|
|
|
|
|
|
1558 |
|
1559 |
+
#: lib/the-events-calendar.class.php:1513
|
1560 |
+
#@ tribe-events-calendar
|
1561 |
msgid "Use Saved Venue:"
|
1562 |
msgstr "Gespeicherte Veranstaltungsorte"
|
1563 |
|
1564 |
+
#: lib/the-events-calendar.class.php:1542
|
1565 |
+
#@ tribe-events-calendar
|
|
|
1566 |
msgid "Use Saved Organizer:"
|
1567 |
msgstr "Gespeicherter Veranstalter:"
|
1568 |
|
1569 |
+
#: lib/the-events-calendar.class.php:1582
|
1570 |
+
#@ tribe-events-calendar
|
|
|
1571 |
msgid "Use New Venue"
|
1572 |
msgstr "Gespeicherter Veranstaltungsort"
|
1573 |
|
1574 |
+
#: lib/the-events-calendar.class.php:1584
|
1575 |
+
#@ tribe-events-calendar
|
|
|
1576 |
msgid "My Venues"
|
1577 |
msgstr "Meine Veranstaltungsorte"
|
1578 |
|
1579 |
+
#: lib/the-events-calendar.class.php:1589
|
1580 |
+
#@ tribe-events-calendar
|
|
|
1581 |
msgid "Available Venues"
|
1582 |
msgstr "Verfügbare Veranstaltungsorte"
|
1583 |
|
1584 |
+
#: lib/the-events-calendar.class.php:1600
|
1585 |
+
#@ tribe-events-calendar
|
1586 |
msgid "No saved venue exists."
|
1587 |
msgstr "Keine gespeicherten Veranstaltungsorte"
|
1588 |
|
1589 |
+
#: lib/the-events-calendar.class.php:1639
|
1590 |
+
#@ tribe-events-calendar
|
|
|
1591 |
msgid "Use New Organizer"
|
1592 |
msgstr "Einen neuen Veranstalter erstellen"
|
1593 |
|
1594 |
+
#: lib/the-events-calendar.class.php:1641
|
1595 |
+
#@ tribe-events-calendar
|
|
|
1596 |
msgid "My Organizers"
|
1597 |
msgstr "Meine Veranstalter"
|
1598 |
|
1599 |
+
#: lib/the-events-calendar.class.php:1646
|
1600 |
+
#@ tribe-events-calendar
|
|
|
1601 |
msgid "Available Organizers"
|
1602 |
msgstr "Verfügbare Veranstalter"
|
1603 |
|
1604 |
+
#: lib/the-events-calendar.class.php:1657
|
1605 |
+
#@ tribe-events-calendar
|
|
|
1606 |
msgid "No saved organizer exists."
|
1607 |
msgstr "Keine gespeicherten Veranstalter"
|
1608 |
|
1609 |
+
#: lib/the-events-calendar.class.php:1784
|
1610 |
+
#@ tribe-events-calendar
|
1611 |
msgid "Next"
|
1612 |
+
msgstr "Nächste"
|
1613 |
|
1614 |
+
#: lib/the-events-calendar.class.php:1785
|
1615 |
+
#@ tribe-events-calendar
|
1616 |
msgid "Prev"
|
1617 |
msgstr "Vorherige"
|
1618 |
|
1619 |
+
#: lib/the-events-calendar.class.php:1786
|
1620 |
+
#@ tribe-events-calendar
|
1621 |
msgid "Today"
|
1622 |
msgstr "Heute"
|
1623 |
|
1624 |
+
#: lib/the-events-calendar.class.php:1787
|
1625 |
+
#@ tribe-events-calendar
|
1626 |
msgid "Done"
|
1627 |
msgstr "Erledigt"
|
1628 |
|
1629 |
+
#: lib/the-events-calendar.class.php:1996
|
1630 |
+
#@ tribe-events-calendar
|
1631 |
msgid "Network"
|
1632 |
msgstr "Netzwerk"
|
1633 |
|
1634 |
+
#: lib/the-events-calendar.class.php:2924
|
1635 |
+
#@ tribe-events-calendar
|
|
|
1636 |
msgid "Unnamed Venue"
|
1637 |
msgstr "Unbenannter Veranstaltungsort"
|
1638 |
|
1639 |
+
#: lib/the-events-calendar.class.php:3014
|
1640 |
+
#@ tribe-events-calendar
|
|
|
1641 |
msgid "Unnamed Organizer"
|
1642 |
msgstr "Unbenannter Veranstalter"
|
1643 |
|
1644 |
+
#: lib/the-events-calendar.class.php:3504
|
1645 |
+
#@ tribe-events-calendar
|
1646 |
msgid "Event Options"
|
1647 |
msgstr "Veranstaltungsoptionen"
|
1648 |
|
1649 |
+
#: lib/the-events-calendar.class.php:3506
|
1650 |
+
#@ tribe-events-calendar
|
1651 |
msgid "Venue Information"
|
1652 |
msgstr "Information zum Veranstaltungsort"
|
1653 |
|
1654 |
+
#: lib/the-events-calendar.class.php:3511
|
1655 |
+
#@ tribe-events-calendar
|
1656 |
msgid "Organizer Information"
|
1657 |
msgstr "Information zum Veranstalter"
|
1658 |
|
1659 |
+
#: lib/the-events-calendar.class.php:3708
|
1660 |
+
#@ tribe-events-calendar
|
1661 |
msgid "Support"
|
1662 |
msgstr "Unterstützung"
|
1663 |
|
1664 |
+
#: lib/the-events-calendar.class.php:3711
|
1665 |
+
#@ tribe-events-calendar
|
1666 |
msgid "View All Add-Ons"
|
1667 |
msgstr "Alle Erweiterungen (Add-Ons) ansehen"
|
1668 |
|
1669 |
+
#: lib/the-events-calendar.class.php:3728
|
1670 |
+
#@ default
|
|
|
1671 |
msgid "News from Modern Tribe"
|
1672 |
msgstr "Neues von Modern Tribe"
|
1673 |
|
1674 |
+
#: lib/the-events-calendar.class.php:3809
|
1675 |
+
#@ tribe-events-calendar
|
1676 |
msgid "Additional Functionality"
|
1677 |
+
msgstr "Erweiterte Funktionalität"
|
1678 |
|
1679 |
+
#: lib/the-events-calendar.class.php:3814
|
1680 |
+
#@ tribe-events-calendar
|
1681 |
+
msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
|
1682 |
+
msgstr "Benötigen Sie weitere Funktionen inklusive wiederkehrende Veranstaltungen, Kartenverkauf, Öffentliche Veranstaltungserstellung, neue Ansichten und mehr?"
|
|
|
|
|
|
|
|
|
1683 |
|
1684 |
+
#: lib/the-events-calendar.class.php:3814
|
|
|
1685 |
#, php-format
|
1686 |
+
#@ tribe-events-calendar
|
1687 |
msgid "Check out the <a href=\"%s\">available add-ons</a>."
|
1688 |
msgstr "Nutzen Sie unsere <a href=\"%s\">Veranstaltungserweiterungen</a>."
|
1689 |
|
1690 |
+
#: lib/the-events-calendar.class.php:3886
|
1691 |
+
#: lib/the-events-calendar.class.php:3977
|
1692 |
+
#@ tribe-events-calendar
|
|
|
1693 |
msgid "View Calendar"
|
1694 |
msgstr "Kalenderansicht"
|
1695 |
|
1696 |
+
#: lib/the-events-calendar.class.php:3894
|
1697 |
+
#@ tribe-events-calendar
|
|
|
1698 |
msgid "Add Event"
|
1699 |
msgstr "Veranstaltung erstellen"
|
1700 |
|
1701 |
+
#: lib/the-events-calendar.class.php:3903
|
1702 |
+
#@ tribe-events-calendar
|
|
|
1703 |
msgid "Edit Events"
|
1704 |
msgstr "Veranstaltungen bearbeiten"
|
1705 |
|
1706 |
+
#: lib/the-events-calendar.class.php:3912
|
1707 |
+
#: lib/the-events-calendar.class.php:4013
|
1708 |
+
#: lib/tribe-settings.class.php:164
|
1709 |
+
#@ tribe-events-calendar
|
1710 |
msgid "Settings"
|
1711 |
msgstr "Einstellungen"
|
1712 |
|
1713 |
+
#: lib/the-events-calendar.class.php:3948
|
1714 |
#, php-format
|
1715 |
+
#@ tribe-events-calendar
|
1716 |
+
msgid "Welcome to The Events Calendar! Your events calendar can be found at %s. To change the events slug, visit %sEvents -> Settings%s."
|
1717 |
+
msgstr "Willkommen bei \"The Events Calendar\"! Ihre Veranstaltungskalender finden Sie hier: %s Um die Veranstaltungsoptionen zu verändern gehen Sie zu %sVeranstaltunngen -> Einstellungen%s."
|
|
|
|
|
|
|
|
|
1718 |
|
1719 |
+
#: lib/the-events-calendar.class.php:4014
|
1720 |
+
#@ tribe-events-calendar
|
1721 |
msgid "Calendar"
|
1722 |
msgstr "Kalender"
|
1723 |
|
1724 |
+
#: lib/the-events-calendar.class.php:4064
|
1725 |
+
#@ tribe-events-calendar
|
1726 |
msgid "List"
|
1727 |
msgstr "Liste"
|
1728 |
|
1729 |
+
#: lib/the-events-calendar.class.php:4075
|
1730 |
+
#@ tribe-events-calendar
|
|
|
1731 |
msgid "Month"
|
1732 |
msgstr "Monat"
|
1733 |
|
1734 |
+
#: lib/the-events-calendar.class.php:4116
|
1735 |
+
#: lib/the-events-calendar.class.php:4128
|
1736 |
+
#@ tribe-events-calendar
|
1737 |
msgid "Date"
|
1738 |
msgstr "Datum"
|
1739 |
|
1740 |
+
#: lib/the-events-calendar.class.php:4119
|
1741 |
+
#@ tribe-events-calendar
|
|
|
1742 |
msgid "Events In"
|
1743 |
msgstr "Veranstaltungen am"
|
1744 |
|
1745 |
+
#: lib/the-events-calendar.class.php:4121
|
1746 |
+
#@ tribe-events-calendar
|
|
|
1747 |
msgid "Events From"
|
1748 |
+
msgstr "Veranstaltungen von"
|
1749 |
|
1750 |
+
#: lib/the-events-calendar.class.php:4313
|
1751 |
+
#: views/list/nav.php:22
|
1752 |
+
#: views/list/nav.php:28
|
1753 |
+
#: views/list/nav.php:31
|
1754 |
+
#@ tribe-events-calendar
|
1755 |
msgid "« Previous Events"
|
1756 |
msgstr "« Vorherige Veranstaltungen"
|
1757 |
|
1758 |
+
#: lib/the-events-calendar.class.php:4314
|
1759 |
+
#: views/list/nav.php:40
|
1760 |
+
#: views/list/nav.php:43
|
1761 |
+
#: views/list/nav.php:49
|
1762 |
+
#@ tribe-events-calendar
|
1763 |
msgid "Next Events »"
|
1764 |
+
msgstr "Nächste Veranstaltungen »"
|
1765 |
|
1766 |
+
#: lib/tribe-admin-events-list.class.php:53
|
1767 |
#, php-format
|
1768 |
+
#@ tribe-events-calendar
|
1769 |
msgid "View “%s”"
|
1770 |
msgstr "“%s” Anschauen"
|
1771 |
|
1772 |
+
#: lib/tribe-admin-events-list.class.php:231
|
1773 |
+
#@ tribe-events-calendar
|
1774 |
msgid "Start Date"
|
1775 |
+
msgstr "Startdatum & -zeit"
|
1776 |
|
1777 |
+
#: lib/tribe-admin-events-list.class.php:232
|
1778 |
+
#@ tribe-events-calendar
|
1779 |
msgid "End Date"
|
1780 |
+
msgstr "Enddatum & -zeit"
|
1781 |
|
1782 |
+
#: lib/tribe-admin-events-list.class.php:234
|
1783 |
+
#@ tribe-events-calendar
|
1784 |
msgid "Recurring?"
|
1785 |
msgstr "Wiederkehrend?"
|
1786 |
|
1787 |
+
#: lib/tickets/tribe-tickets-pro.php:229
|
1788 |
+
#: lib/tribe-admin-events-list.class.php:298
|
1789 |
+
#@ default
|
1790 |
+
#@ tribe-events-calendar
|
1791 |
msgid "Yes"
|
1792 |
msgstr "Ja"
|
1793 |
|
1794 |
+
#: lib/tribe-admin-events-list.class.php:298
|
1795 |
+
#@ tribe-events-calendar
|
1796 |
msgid "No"
|
1797 |
msgstr "Nein"
|
1798 |
|
1799 |
+
#: lib/tribe-admin-events-list.class.php:376
|
|
|
1800 |
#, php-format
|
1801 |
+
#@ tribe-events-calendar
|
1802 |
msgid "All %s"
|
1803 |
msgstr "Alle %s"
|
1804 |
|
1805 |
+
#: lib/tribe-app-shop.class.php:62
|
1806 |
+
#: lib/tribe-app-shop.class.php:63
|
1807 |
+
#: lib/tribe-app-shop.class.php:87
|
1808 |
+
#@ tribe-events-calendar
|
1809 |
msgid "Event Add-Ons"
|
1810 |
+
msgstr "Add-Ons"
|
1811 |
|
1812 |
+
#: lib/tribe-debug-bar.class.php:29
|
1813 |
+
#@ tribe-events-calendar
|
1814 |
msgid "Tribe"
|
1815 |
msgstr "Tribe"
|
1816 |
|
1817 |
+
#: lib/tribe-event-api.class.php:374
|
1818 |
+
#: lib/tribe-view-helpers.class.php:44
|
1819 |
+
#: public/template-tags/venue.php:240
|
1820 |
+
#@ tribe-events-calendar
|
1821 |
msgid "United States"
|
1822 |
msgstr "Vereinigte Staaten"
|
1823 |
|
1824 |
+
#: lib/tribe-event-exception.class.php:17
|
1825 |
+
#: lib/tribe-event-exception.class.php:34
|
1826 |
+
#@ tribe-events-calendar
|
1827 |
msgid "Error"
|
1828 |
msgstr "Fehler"
|
1829 |
|
1830 |
+
#: lib/tribe-field.class.php:168
|
1831 |
+
#@ tribe-events-calendar
|
1832 |
msgid "Invalid field type specified"
|
1833 |
msgstr "Falsche Feldart definiert"
|
1834 |
|
1835 |
+
#: lib/tribe-field.class.php:438
|
1836 |
+
#@ tribe-events-calendar
|
1837 |
msgid "No radio options specified"
|
1838 |
msgstr "Keine Bewertungsoptionen definiert"
|
1839 |
|
1840 |
+
#: lib/tribe-field.class.php:475
|
1841 |
+
#@ tribe-events-calendar
|
1842 |
msgid "No checkbox options specified"
|
1843 |
msgstr "Keine Checkboxoptionen definiert"
|
1844 |
|
1845 |
+
#: lib/tribe-field.class.php:530
|
1846 |
+
#@ tribe-events-calendar
|
1847 |
msgid "No select options specified"
|
1848 |
msgstr "Keine Auswahloptionen definiert"
|
1849 |
|
1850 |
+
#: lib/tribe-settings-tab.class.php:219
|
1851 |
+
#@ tribe-events-calendar
|
|
|
1852 |
msgid "There are no fields setup for this tab yet."
|
1853 |
msgstr "Es sind noch keine Boxen für diesen Tab definiert."
|
1854 |
|
1855 |
+
#: lib/tribe-settings.class.php:164
|
1856 |
+
#: lib/tribe-settings.class.php:176
|
1857 |
+
#@ tribe-events-calendar
|
1858 |
msgid "The Events Calendar Settings"
|
1859 |
msgstr "Veranstaltungskalender Einstellungen"
|
1860 |
|
1861 |
+
#: lib/tribe-settings.class.php:176
|
1862 |
+
#@ tribe-events-calendar
|
|
|
1863 |
msgid "Events Settings"
|
1864 |
msgstr "Veranstaltungseinstellungen"
|
1865 |
|
1866 |
+
#: lib/tribe-settings.class.php:225
|
|
|
1867 |
#, php-format
|
1868 |
+
#@ tribe-events-calendar
|
1869 |
msgid "%s Settings"
|
1870 |
msgstr "%s Einstellungen"
|
1871 |
|
1872 |
+
#: lib/tribe-settings.class.php:239
|
1873 |
+
#@ tribe-events-calendar
|
1874 |
msgid "You've requested a non-existent tab."
|
1875 |
msgstr "Sie sprechen eine nicht vorhandenen Tab an."
|
1876 |
|
1877 |
+
#: lib/tribe-settings.class.php:247
|
1878 |
+
#@ tribe-events-calendar
|
|
|
1879 |
msgid " Save Changes"
|
1880 |
msgstr "Änderungen speichern"
|
1881 |
|
1882 |
+
#: lib/tribe-settings.class.php:299
|
1883 |
+
#@ tribe-events-calendar
|
1884 |
msgid "You don't have permission to do that."
|
1885 |
msgstr "Sie haben nicht die nötigen Rechte dafür."
|
1886 |
|
1887 |
+
#: lib/tribe-settings.class.php:305
|
1888 |
+
#@ tribe-events-calendar
|
1889 |
msgid "The request was sent insecurely."
|
1890 |
+
msgstr "Die Anfrage wurde unverschlüsselt gesendet."
|
1891 |
|
1892 |
+
#: lib/tribe-settings.class.php:311
|
1893 |
+
#@ tribe-events-calendar
|
1894 |
msgid "The request wasn't sent from this tab."
|
1895 |
msgstr "Die Anfrage wurde nicht von diesem Tab gesendet."
|
1896 |
|
1897 |
+
#: lib/tribe-settings.class.php:476
|
1898 |
+
#@ tribe-events-calendar
|
1899 |
msgid "Your form had the following errors:"
|
1900 |
msgstr "Ihr Formular hat folgende Fehler:"
|
1901 |
|
1902 |
+
#: lib/tribe-settings.class.php:485
|
1903 |
+
#@ default
|
1904 |
msgid "None of your settings were saved. Please try again."
|
1905 |
+
msgstr "Die Eintellungen konnten gespeichert werden. Versuchen Sie es erneut."
|
|
|
1906 |
|
1907 |
+
#: lib/tribe-settings.class.php:485
|
1908 |
+
#@ tribe-events-calendar
|
1909 |
+
msgid "The above setting was not saved. Other settings were successfully saved."
|
1910 |
+
msgid_plural "The above settings were not saved. Other settings were successfully saved."
|
1911 |
+
msgstr[0] "Diese Einstellung wurde nicht gespeichert. Andere Einstellungen konnten abgespeichert werden"
|
1912 |
+
msgstr[1] "Diese Einstellungen wurden nicht gespeichert. Andere Einstellungen konnten abgespeichert werden"
|
1913 |
+
|
1914 |
+
#: lib/tribe-settings.class.php:509
|
1915 |
+
#@ tribe-events-calendar
|
|
|
|
|
|
|
|
|
|
|
|
|
1916 |
msgid "Settings saved."
|
1917 |
msgstr "Einstellungen gespeichert.."
|
1918 |
|
1919 |
+
#: lib/tribe-template-factory.class.php:268
|
1920 |
+
#@ tribe-events-calendar
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1921 |
msgid "No previous events "
|
1922 |
+
msgstr "Keine vorherigen Veranstaltungen "
|
1923 |
|
1924 |
+
#: lib/tribe-the-events-calendar-import.class.php:64
|
1925 |
#, php-format
|
1926 |
+
#@ tribe-events-calendar
|
1927 |
+
msgid "Welcome to Events 2.0! This is a HUGE upgrade from 1.6.5. Please make sure you have backed up before proceeding any further. You can easily <a href=\"%s\">revert to an old version</a> if you want to backup first. This upgrade includes two major steps, <a href=\"%s\">migrating data</a> & updating your templates as necessary. There have been significant changes to the template tags and functions. Check out our <a href=\"%s\">walk-through on the upgrade</a> before proceeding and check out the FAQ & Knowledge base from the <a href=\"%s\">support page</a>. If you're new to The Events Calendar, you may want to review our <a href=\"%s\">new user primer</a>.<br/><br/> You have events that need to be migrated. Please visit the bottom of the <a href=\"%s\">settings page</a> to perform the migration."
|
1928 |
+
msgstr "Willkommen zu Events 2.0! Dies is ein großes Update von 1.6.5. Bitte erstellen Sie ein Backup, bevor Sie fortfahren. Sie können leicht <a href=\"%s\">auf eine alte Version zurückgehen</a>, wenn sie vorher ein Backup durchführen. Dieses Update enthätl zwei Schritte, <a href=\"%s\">Daten migrieren</a> & und ggfs. die Vorlagen updaten. Es gab signifikante Änderungen an den Template tags und Funktionen. Prüfen Sie unsere <a href=\"%s\">Übersicht</a>, FAQ Knowledgebase auf der <a href=\"%s\">Suportseite</a> bevor Sie fortfahren. Wenn Sie neu sind, schauen Sie auch unseren <a href=\"%s\">New User Primer</a> an.<br/><br/> Sie haben Veranstaltugnen, die migriert werden müssen. Bitte nutzen Sie den <a href=\"%s\">Button am Ende der Einstellungen Seite</a>zum Migieren."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1929 |
|
1930 |
+
#: lib/tribe-the-events-calendar-import.class.php:86
|
1931 |
+
#@ tribe-events-calendar
|
1932 |
msgid "Upgrade from The Events Calendar"
|
1933 |
msgstr "Upgrade vom Plugin 'The Events Calendar' (freie Version)"
|
1934 |
|
1935 |
+
#: lib/tribe-the-events-calendar-import.class.php:87
|
1936 |
+
#@ tribe-events-calendar
|
1937 |
+
msgid "It appears that you have some old events calendar data that needs to be upgraded. Please be sure to back up your database before initiating the upgrade. This process can not be undone."
|
1938 |
+
msgstr "Es scheint, als häutten Sie noch alte Veranstaltungsdaten in der Datenbank, die aktualisiert werden müssen. Bitte stellen Sie sicher, dass Sie vor dem Initialisieren des Upgrades eine Sicherung der (bisherigen) Datenbank erstellen. Hinweis: Der gesamte Prozess kann <em>nicht</em> rückgängig gemacht werden!"
|
1939 |
+
|
1940 |
+
#: lib/tribe-the-events-calendar-import.class.php:88
|
1941 |
+
#@ tribe-events-calendar
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1942 |
msgid "Migrate Data!"
|
1943 |
+
msgstr "Daten migrieren!"
|
1944 |
|
1945 |
+
#: lib/tribe-the-events-calendar-import.class.php:166
|
|
|
1946 |
#, php-format
|
1947 |
+
#@ tribe-events-calendar
|
1948 |
msgid "You successfully migrated (%d) entries."
|
1949 |
+
msgstr "Sie haben erfolgreich (%d) Einträge migriert."
|
1950 |
|
1951 |
+
#: lib/tribe-the-events-calendar-import.class.php:242
|
1952 |
+
#@ tribe-events-calendar
|
1953 |
msgid "Install has 1 or more legacy event!"
|
1954 |
+
msgstr "In der Installation wurde(n) ein oder mehrere alte/ abgelaufene Veranstaltung(en) gefunden!"
|
|
|
|
|
1955 |
|
1956 |
+
#: lib/tribe-validate.class.php:77
|
1957 |
+
#: lib/tribe-validate.class.php:115
|
1958 |
+
#@ tribe-events-calendar
|
1959 |
msgid "Invalid or incomplete field passed"
|
1960 |
msgstr "Unvollständig oder fehlerhaft."
|
1961 |
|
1962 |
+
#: lib/tribe-validate.class.php:78
|
1963 |
+
#: lib/tribe-validate.class.php:110
|
1964 |
+
#: lib/tribe-validate.class.php:116
|
1965 |
+
#@ tribe-events-calendar
|
1966 |
msgid "Field ID:"
|
1967 |
msgstr "Feld ID:"
|
1968 |
|
1969 |
+
#: lib/tribe-validate.class.php:109
|
1970 |
+
#@ tribe-events-calendar
|
1971 |
msgid "Non-existant field validation function passed"
|
1972 |
+
msgstr "Prüfung für nicht vorhandenes Feld durchgeführt"
|
1973 |
|
1974 |
+
#: lib/tribe-validate.class.php:110
|
1975 |
+
#@ tribe-events-calendar
|
1976 |
msgctxt "non-existant function name passed for field validation"
|
1977 |
msgid "with function name:"
|
1978 |
msgstr "Mit dem Funktionsnamen:"
|
1979 |
|
1980 |
+
#: lib/tribe-validate.class.php:135
|
1981 |
+
#: lib/tribe-validate.class.php:153
|
1982 |
#, php-format
|
1983 |
+
#@ tribe-events-calendar
|
1984 |
msgid "%s must contain numbers and letters only"
|
1985 |
msgstr "%s darf nur Zahlen und Buchstaben enthalten"
|
1986 |
|
1987 |
+
#: lib/tribe-validate.class.php:171
|
1988 |
#, php-format
|
1989 |
+
#@ tribe-events-calendar
|
1990 |
msgid "%s must contain numbers, letters and dots only"
|
1991 |
msgstr "%s darf nur Zahlen, Buchstaben oder Punkte enthalten"
|
1992 |
|
1993 |
+
#: lib/tribe-validate.class.php:187
|
1994 |
#, php-format
|
1995 |
+
#@ tribe-events-calendar
|
1996 |
msgid "%s must be a positive number."
|
1997 |
msgstr "%s muss eine positive Zahl sein."
|
1998 |
|
1999 |
+
#: lib/tribe-validate.class.php:204
|
2000 |
#, php-format
|
2001 |
+
#@ tribe-events-calendar
|
2002 |
msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
|
2003 |
+
msgstr "%s muss eine gültige Ausgangsform haben (Nummern, Buchstaben, Gedankenstriche und Unterstreichungen)."
|
|
|
|
|
2004 |
|
2005 |
+
#: lib/tribe-validate.class.php:221
|
2006 |
#, php-format
|
2007 |
+
#@ tribe-events-calendar
|
2008 |
msgid "%s must be a valid absolute URL."
|
2009 |
msgstr "%s muss eine gültige URL sein."
|
2010 |
|
2011 |
+
#: lib/tribe-validate.class.php:239
|
2012 |
+
#: lib/tribe-validate.class.php:258
|
2013 |
+
#: lib/tribe-validate.class.php:279
|
2014 |
#, php-format
|
2015 |
+
#@ tribe-events-calendar
|
2016 |
msgid "%s must have a value that's part of its options."
|
2017 |
msgstr "%s muss eine Wert haben, der Teil der Optionen ist."
|
2018 |
|
2019 |
+
#: lib/tribe-validate.class.php:295
|
2020 |
#, php-format
|
2021 |
+
#@ tribe-events-calendar
|
2022 |
+
msgid "Comparison validation failed because no comparison value was provided, for field %s"
|
2023 |
+
msgstr "Der Vergleich ist fehlgeschlagen, weil keine Eingabe im Feld %s gefunden wurde"
|
|
|
|
|
|
|
2024 |
|
2025 |
+
#: lib/tribe-validate.class.php:302
|
2026 |
#, php-format
|
2027 |
+
#@ tribe-events-calendar
|
2028 |
msgid "%s cannot be the same as %s."
|
2029 |
msgstr "%s kann nicht dasselbe sein wie %s."
|
2030 |
|
2031 |
+
#: lib/tribe-validate.class.php:304
|
2032 |
#, php-format
|
2033 |
+
#@ tribe-events-calendar
|
2034 |
msgid "%s cannot be a duplicate"
|
2035 |
msgstr "%s kann nicht vervielfältigt werden"
|
2036 |
|
2037 |
+
#: lib/tribe-validate.class.php:322
|
2038 |
#, php-format
|
2039 |
+
#@ tribe-events-calendar
|
2040 |
msgid "%s must be a number or percentage."
|
2041 |
msgstr "%s muss eine Zahl oder Prozentsatz sein."
|
2042 |
|
2043 |
+
#: lib/tribe-validate.class.php:386
|
2044 |
#, php-format
|
2045 |
+
#@ tribe-events-calendar
|
2046 |
msgid "%s must be a number between 0 and 21."
|
2047 |
msgstr "%s muss eine Zahl zwischen 0 und 21 sein."
|
2048 |
|
2049 |
+
#: lib/tribe-validate.class.php:404
|
2050 |
#, php-format
|
2051 |
+
#@ tribe-events-calendar
|
2052 |
+
msgid "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
|
2053 |
+
msgstr "%s darf nur aus Buchstaben, Zahlen, Gedankenstrichen, Apostrophe und Leerzeichen bestehen. "
|
|
|
|
|
2054 |
|
2055 |
+
#: lib/tribe-validate.class.php:422
|
2056 |
#, php-format
|
2057 |
+
#@ tribe-events-calendar
|
2058 |
msgid "%s must consist of letters, spaces, apostrophes, and dashes."
|
2059 |
+
msgstr "%s muss aus Buchstaben, Leerzeichen, Apostrophe und Gedankenstrichen bestehen."
|
|
|
|
|
2060 |
|
2061 |
+
#: lib/tribe-validate.class.php:438
|
2062 |
#, php-format
|
2063 |
+
#@ tribe-events-calendar
|
2064 |
msgid "%s must consist of 5 numbers."
|
2065 |
msgstr "%s muss aus fünf Ziffern bestehen."
|
2066 |
|
2067 |
+
#: lib/tribe-validate.class.php:454
|
2068 |
#, php-format
|
2069 |
+
#@ tribe-events-calendar
|
2070 |
msgid "%s must be a phone number."
|
2071 |
msgstr "%s muss eine Telefonnummer sein."
|
2072 |
|
2073 |
+
#: lib/tribe-validate.class.php:472
|
2074 |
+
#@ tribe-events-calendar
|
2075 |
+
msgid "Country List must be formatted as one country per line in the following format: <br>US, United States <br> UK, United Kingdom."
|
2076 |
+
msgstr "Die Länder-Liste muss als ein Land pro Zeile in der folgenden Weise formatiert sein: <br>US, United States <br> UK, United Kingdom."
|
|
|
|
|
|
|
2077 |
|
2078 |
+
#: lib/tribe-view-helpers.class.php:24
|
2079 |
+
#: lib/tribe-view-helpers.class.php:43
|
2080 |
+
#@ tribe-events-calendar
|
2081 |
msgid "Select a Country:"
|
2082 |
+
msgstr "Ein Land auswählen:"
|
2083 |
|
2084 |
+
#: lib/tribe-view-helpers.class.php:45
|
2085 |
+
#@ tribe-events-calendar
|
2086 |
msgid "Afghanistan"
|
2087 |
msgstr "Afghanistan"
|
2088 |
|
2089 |
+
#: lib/tribe-view-helpers.class.php:46
|
2090 |
+
#@ tribe-events-calendar
|
2091 |
msgid "Albania"
|
2092 |
msgstr "Albanien"
|
2093 |
|
2094 |
+
#: lib/tribe-view-helpers.class.php:47
|
2095 |
+
#@ tribe-events-calendar
|
2096 |
msgid "Algeria"
|
2097 |
msgstr "Algerien"
|
2098 |
|
2099 |
+
#: lib/tribe-view-helpers.class.php:48
|
2100 |
+
#@ tribe-events-calendar
|
2101 |
msgid "American Samoa"
|
2102 |
msgstr "Amerikanisch Samoa"
|
2103 |
|
2104 |
+
#: lib/tribe-view-helpers.class.php:49
|
2105 |
+
#@ tribe-events-calendar
|
2106 |
msgid "Andorra"
|
2107 |
msgstr "Andorra"
|
2108 |
|
2109 |
+
#: lib/tribe-view-helpers.class.php:50
|
2110 |
+
#@ tribe-events-calendar
|
2111 |
msgid "Angola"
|
2112 |
msgstr "Angola"
|
2113 |
|
2114 |
+
#: lib/tribe-view-helpers.class.php:51
|
2115 |
+
#@ tribe-events-calendar
|
2116 |
msgid "Anguilla"
|
2117 |
msgstr "Anguilla"
|
2118 |
|
2119 |
+
#: lib/tribe-view-helpers.class.php:52
|
2120 |
+
#@ tribe-events-calendar
|
2121 |
msgid "Antarctica"
|
2122 |
msgstr "Antarktika"
|
2123 |
|
2124 |
+
#: lib/tribe-view-helpers.class.php:53
|
2125 |
+
#@ tribe-events-calendar
|
2126 |
msgid "Antigua And Barbuda"
|
2127 |
msgstr "Antigua und Barbuda"
|
2128 |
|
2129 |
+
#: lib/tribe-view-helpers.class.php:54
|
2130 |
+
#@ tribe-events-calendar
|
2131 |
msgid "Argentina"
|
2132 |
msgstr "Argentinien"
|
2133 |
|
2134 |
+
#: lib/tribe-view-helpers.class.php:55
|
2135 |
+
#@ tribe-events-calendar
|
2136 |
msgid "Armenia"
|
2137 |
msgstr "Armenien"
|
2138 |
|
2139 |
+
#: lib/tribe-view-helpers.class.php:56
|
2140 |
+
#@ tribe-events-calendar
|
2141 |
msgid "Aruba"
|
2142 |
msgstr "Aruba"
|
2143 |
|
2144 |
+
#: lib/tribe-view-helpers.class.php:57
|
2145 |
+
#@ tribe-events-calendar
|
2146 |
msgid "Australia"
|
2147 |
msgstr "Australien"
|
2148 |
|
2149 |
+
#: lib/tribe-view-helpers.class.php:58
|
2150 |
+
#@ tribe-events-calendar
|
2151 |
msgid "Austria"
|
2152 |
+
msgstr "Österreich"
|
2153 |
|
2154 |
+
#: lib/tribe-view-helpers.class.php:59
|
2155 |
+
#@ tribe-events-calendar
|
2156 |
msgid "Azerbaijan"
|
2157 |
msgstr "Aserbaidschan"
|
2158 |
|
2159 |
+
#: lib/tribe-view-helpers.class.php:60
|
2160 |
+
#@ tribe-events-calendar
|
2161 |
msgid "Bahamas"
|
2162 |
msgstr "Bahamas"
|
2163 |
|
2164 |
+
#: lib/tribe-view-helpers.class.php:61
|
2165 |
+
#@ tribe-events-calendar
|
2166 |
msgid "Bahrain"
|
2167 |
msgstr "Bahrain"
|
2168 |
|
2169 |
+
#: lib/tribe-view-helpers.class.php:62
|
2170 |
+
#@ tribe-events-calendar
|
2171 |
msgid "Bangladesh"
|
2172 |
msgstr "Bangladesh"
|
2173 |
|
2174 |
+
#: lib/tribe-view-helpers.class.php:63
|
2175 |
+
#@ tribe-events-calendar
|
2176 |
msgid "Barbados"
|
2177 |
msgstr "Barbados"
|
2178 |
|
2179 |
+
#: lib/tribe-view-helpers.class.php:64
|
2180 |
+
#@ tribe-events-calendar
|
2181 |
msgid "Belarus"
|
2182 |
+
msgstr "Weißrussland"
|
2183 |
|
2184 |
+
#: lib/tribe-view-helpers.class.php:65
|
2185 |
+
#@ tribe-events-calendar
|
2186 |
msgid "Belgium"
|
2187 |
msgstr "Belgien"
|
2188 |
|
2189 |
+
#: lib/tribe-view-helpers.class.php:66
|
2190 |
+
#@ tribe-events-calendar
|
2191 |
msgid "Belize"
|
2192 |
msgstr "Belize"
|
2193 |
|
2194 |
+
#: lib/tribe-view-helpers.class.php:67
|
2195 |
+
#@ tribe-events-calendar
|
2196 |
msgid "Benin"
|
2197 |
msgstr "Benin"
|
2198 |
|
2199 |
+
#: lib/tribe-view-helpers.class.php:68
|
2200 |
+
#@ tribe-events-calendar
|
2201 |
msgid "Bermuda"
|
2202 |
msgstr "Bermuda"
|
2203 |
|
2204 |
+
#: lib/tribe-view-helpers.class.php:69
|
2205 |
+
#@ tribe-events-calendar
|
2206 |
msgid "Bhutan"
|
2207 |
msgstr "Bhutan"
|
2208 |
|
2209 |
+
#: lib/tribe-view-helpers.class.php:70
|
2210 |
+
#@ tribe-events-calendar
|
2211 |
msgid "Bolivia"
|
2212 |
msgstr "Bolivien"
|
2213 |
|
2214 |
+
#: lib/tribe-view-helpers.class.php:71
|
2215 |
+
#@ tribe-events-calendar
|
2216 |
msgid "Bosnia And Herzegowina"
|
2217 |
msgstr "Bosnien und Herzegowina"
|
2218 |
|
2219 |
+
#: lib/tribe-view-helpers.class.php:72
|
2220 |
+
#@ tribe-events-calendar
|
2221 |
msgid "Botswana"
|
2222 |
msgstr "Botswana"
|
2223 |
|
2224 |
+
#: lib/tribe-view-helpers.class.php:73
|
2225 |
+
#@ tribe-events-calendar
|
2226 |
msgid "Bouvet Island"
|
2227 |
msgstr "Bouvetinsel"
|
2228 |
|
2229 |
+
#: lib/tribe-view-helpers.class.php:74
|
2230 |
+
#@ tribe-events-calendar
|
2231 |
msgid "Brazil"
|
2232 |
msgstr "Brasilien"
|
2233 |
|
2234 |
+
#: lib/tribe-view-helpers.class.php:75
|
2235 |
+
#@ tribe-events-calendar
|
2236 |
msgid "British Indian Ocean Territory"
|
2237 |
msgstr "Britisches Territorium im Indischen Ozean"
|
2238 |
|
2239 |
+
#: lib/tribe-view-helpers.class.php:76
|
2240 |
+
#@ tribe-events-calendar
|
2241 |
msgid "Brunei Darussalam"
|
2242 |
msgstr "Brunei"
|
2243 |
|
2244 |
+
#: lib/tribe-view-helpers.class.php:77
|
2245 |
+
#@ tribe-events-calendar
|
2246 |
msgid "Bulgaria"
|
2247 |
msgstr "Bulgarien"
|
2248 |
|
2249 |
+
#: lib/tribe-view-helpers.class.php:78
|
2250 |
+
#@ tribe-events-calendar
|
2251 |
msgid "Burkina Faso"
|
2252 |
msgstr "Burkina Faso"
|
2253 |
|
2254 |
+
#: lib/tribe-view-helpers.class.php:79
|
2255 |
+
#@ tribe-events-calendar
|
2256 |
msgid "Burundi"
|
2257 |
msgstr "Burundi"
|
2258 |
|
2259 |
+
#: lib/tribe-view-helpers.class.php:80
|
2260 |
+
#@ tribe-events-calendar
|
2261 |
msgid "Cambodia"
|
2262 |
msgstr "Kambodscha"
|
2263 |
|
2264 |
+
#: lib/tribe-view-helpers.class.php:81
|
2265 |
+
#@ tribe-events-calendar
|
2266 |
msgid "Cameroon"
|
2267 |
msgstr "Kamerun"
|
2268 |
|
2269 |
+
#: lib/tribe-view-helpers.class.php:82
|
2270 |
+
#@ tribe-events-calendar
|
2271 |
msgid "Canada"
|
2272 |
msgstr "Kanada"
|
2273 |
|
2274 |
+
#: lib/tribe-view-helpers.class.php:83
|
2275 |
+
#@ tribe-events-calendar
|
2276 |
msgid "Cape Verde"
|
2277 |
msgstr "Kapverdische Inseln"
|
2278 |
|
2279 |
+
#: lib/tribe-view-helpers.class.php:84
|
2280 |
+
#@ tribe-events-calendar
|
2281 |
msgid "Cayman Islands"
|
2282 |
msgstr "Cayman Inseln"
|
2283 |
|
2284 |
+
#: lib/tribe-view-helpers.class.php:85
|
2285 |
+
#@ tribe-events-calendar
|
2286 |
msgid "Central African Republic"
|
2287 |
msgstr "Zentralafrikanische Republik"
|
2288 |
|
2289 |
+
#: lib/tribe-view-helpers.class.php:86
|
2290 |
+
#@ tribe-events-calendar
|
2291 |
msgid "Chad"
|
2292 |
msgstr "Tschad"
|
2293 |
|
2294 |
+
#: lib/tribe-view-helpers.class.php:87
|
2295 |
+
#@ tribe-events-calendar
|
2296 |
msgid "Chile"
|
2297 |
msgstr "Chile"
|
2298 |
|
2299 |
+
#: lib/tribe-view-helpers.class.php:88
|
2300 |
+
#@ tribe-events-calendar
|
2301 |
msgid "China"
|
2302 |
msgstr "China"
|
2303 |
|
2304 |
+
#: lib/tribe-view-helpers.class.php:89
|
2305 |
+
#@ tribe-events-calendar
|
2306 |
msgid "Christmas Island"
|
2307 |
msgstr "Weihnachtsinseln"
|
2308 |
|
2309 |
+
#: lib/tribe-view-helpers.class.php:90
|
2310 |
+
#@ tribe-events-calendar
|
2311 |
msgid "Cocos (Keeling) Islands"
|
2312 |
msgstr "Kokosinseln"
|
2313 |
|
2314 |
+
#: lib/tribe-view-helpers.class.php:91
|
2315 |
+
#@ tribe-events-calendar
|
2316 |
msgid "Colombia"
|
2317 |
msgstr "Kolumbien"
|
2318 |
|
2319 |
+
#: lib/tribe-view-helpers.class.php:92
|
2320 |
+
#@ tribe-events-calendar
|
2321 |
msgid "Comoros"
|
2322 |
msgstr "Komoren"
|
2323 |
|
2324 |
+
#: lib/tribe-view-helpers.class.php:93
|
2325 |
+
#@ tribe-events-calendar
|
2326 |
msgid "Congo"
|
2327 |
msgstr "Kongo"
|
2328 |
|
2329 |
+
#: lib/tribe-view-helpers.class.php:94
|
2330 |
+
#@ tribe-events-calendar
|
2331 |
msgid "Congo, The Democratic Republic Of The"
|
2332 |
msgstr "Demokratische Republik Kongo"
|
2333 |
|
2334 |
+
#: lib/tribe-view-helpers.class.php:95
|
2335 |
+
#@ tribe-events-calendar
|
2336 |
msgid "Cook Islands"
|
2337 |
msgstr "Cook-Inseln"
|
2338 |
|
2339 |
+
#: lib/tribe-view-helpers.class.php:96
|
2340 |
+
#@ tribe-events-calendar
|
2341 |
msgid "Costa Rica"
|
2342 |
msgstr "Costa Rica"
|
2343 |
|
2344 |
+
#: lib/tribe-view-helpers.class.php:97
|
2345 |
+
#@ tribe-events-calendar
|
2346 |
msgid "Cote D'Ivoire"
|
2347 |
+
msgstr "Elfenbeinküste"
|
2348 |
|
2349 |
+
#: lib/tribe-view-helpers.class.php:98
|
2350 |
+
#@ tribe-events-calendar
|
2351 |
msgid "Croatia (Local Name: Hrvatska)"
|
2352 |
msgstr "Kroatien"
|
2353 |
|
2354 |
+
#: lib/tribe-view-helpers.class.php:99
|
2355 |
+
#@ tribe-events-calendar
|
2356 |
msgid "Cuba"
|
2357 |
msgstr "Kuba"
|
2358 |
|
2359 |
+
#: lib/tribe-view-helpers.class.php:100
|
2360 |
+
#@ tribe-events-calendar
|
2361 |
msgid "Cyprus"
|
2362 |
msgstr "Zypern"
|
2363 |
|
2364 |
+
#: lib/tribe-view-helpers.class.php:101
|
2365 |
+
#@ tribe-events-calendar
|
2366 |
msgid "Czech Republic"
|
2367 |
msgstr "Tschechische Republik"
|
2368 |
|
2369 |
+
#: lib/tribe-view-helpers.class.php:102
|
2370 |
+
#@ tribe-events-calendar
|
2371 |
msgid "Denmark"
|
2372 |
+
msgstr "Dänemark"
|
2373 |
|
2374 |
+
#: lib/tribe-view-helpers.class.php:103
|
2375 |
+
#@ tribe-events-calendar
|
2376 |
msgid "Djibouti"
|
2377 |
msgstr "Djibouti"
|
2378 |
|
2379 |
+
#: lib/tribe-view-helpers.class.php:104
|
2380 |
+
#@ tribe-events-calendar
|
2381 |
msgid "Dominica"
|
2382 |
msgstr "Dominica"
|
2383 |
|
2384 |
+
#: lib/tribe-view-helpers.class.php:105
|
2385 |
+
#@ tribe-events-calendar
|
2386 |
msgid "Dominican Republic"
|
2387 |
msgstr "Dominikanische Republik"
|
2388 |
|
2389 |
+
#: lib/tribe-view-helpers.class.php:106
|
2390 |
+
#@ tribe-events-calendar
|
2391 |
msgid "East Timor"
|
2392 |
msgstr "Osttimor"
|
2393 |
|
2394 |
+
#: lib/tribe-view-helpers.class.php:107
|
2395 |
+
#@ tribe-events-calendar
|
2396 |
msgid "Ecuador"
|
2397 |
msgstr "Ecuador"
|
2398 |
|
2399 |
+
#: lib/tribe-view-helpers.class.php:108
|
2400 |
+
#@ tribe-events-calendar
|
2401 |
msgid "Egypt"
|
2402 |
+
msgstr "Ägypten"
|
2403 |
|
2404 |
+
#: lib/tribe-view-helpers.class.php:109
|
2405 |
+
#@ tribe-events-calendar
|
2406 |
msgid "El Salvador"
|
2407 |
msgstr "El Salvador"
|
2408 |
|
2409 |
+
#: lib/tribe-view-helpers.class.php:110
|
2410 |
+
#@ tribe-events-calendar
|
2411 |
msgid "Equatorial Guinea"
|
2412 |
+
msgstr "Äquatorialguinea"
|
2413 |
|
2414 |
+
#: lib/tribe-view-helpers.class.php:111
|
2415 |
+
#@ tribe-events-calendar
|
2416 |
msgid "Eritrea"
|
2417 |
msgstr "Eritrea"
|
2418 |
|
2419 |
+
#: lib/tribe-view-helpers.class.php:112
|
2420 |
+
#@ tribe-events-calendar
|
2421 |
msgid "Estonia"
|
2422 |
msgstr "Estland"
|
2423 |
|
2424 |
+
#: lib/tribe-view-helpers.class.php:113
|
2425 |
+
#@ tribe-events-calendar
|
2426 |
msgid "Ethiopia"
|
2427 |
+
msgstr "Äthophien"
|
2428 |
|
2429 |
+
#: lib/tribe-view-helpers.class.php:114
|
2430 |
+
#@ tribe-events-calendar
|
2431 |
msgid "Falkland Islands (Malvinas)"
|
2432 |
msgstr "Falkland-Inseln (Malvinas)"
|
2433 |
|
2434 |
+
#: lib/tribe-view-helpers.class.php:115
|
2435 |
+
#@ tribe-events-calendar
|
2436 |
msgid "Faroe Islands"
|
2437 |
+
msgstr "Färöer Inseln"
|
2438 |
|
2439 |
+
#: lib/tribe-view-helpers.class.php:116
|
2440 |
+
#@ tribe-events-calendar
|
2441 |
msgid "Fiji"
|
2442 |
msgstr "Fiji"
|
2443 |
|
2444 |
+
#: lib/tribe-view-helpers.class.php:117
|
2445 |
+
#@ tribe-events-calendar
|
2446 |
msgid "Finland"
|
2447 |
msgstr "Finnland"
|
2448 |
|
2449 |
+
#: lib/tribe-view-helpers.class.php:118
|
2450 |
+
#@ tribe-events-calendar
|
2451 |
msgid "France"
|
2452 |
msgstr "Frankreich"
|
2453 |
|
2454 |
+
#: lib/tribe-view-helpers.class.php:119
|
2455 |
+
#@ tribe-events-calendar
|
2456 |
msgid "France, Metropolitan"
|
2457 |
msgstr "Frankreich (mit Korsika)"
|
2458 |
|
2459 |
+
#: lib/tribe-view-helpers.class.php:120
|
2460 |
+
#@ tribe-events-calendar
|
2461 |
msgid "French Guiana"
|
2462 |
+
msgstr "Französisch-Guayana"
|
2463 |
|
2464 |
+
#: lib/tribe-view-helpers.class.php:121
|
2465 |
+
#@ tribe-events-calendar
|
2466 |
msgid "French Polynesia"
|
2467 |
+
msgstr "Französisch-Polynesien"
|
2468 |
|
2469 |
+
#: lib/tribe-view-helpers.class.php:122
|
2470 |
+
#@ tribe-events-calendar
|
2471 |
msgid "French Southern Territories"
|
2472 |
+
msgstr "Französische Süd- und Antarktisgebiete"
|
2473 |
|
2474 |
+
#: lib/tribe-view-helpers.class.php:123
|
2475 |
+
#@ tribe-events-calendar
|
2476 |
msgid "Gabon"
|
2477 |
msgstr "Gabon"
|
2478 |
|
2479 |
+
#: lib/tribe-view-helpers.class.php:124
|
2480 |
+
#@ tribe-events-calendar
|
2481 |
msgid "Gambia"
|
2482 |
msgstr "Gambia"
|
2483 |
|
2484 |
+
#: lib/tribe-view-helpers.class.php:125
|
2485 |
+
#: lib/tribe-view-helpers.class.php:318
|
2486 |
+
#@ tribe-events-calendar
|
2487 |
msgid "Georgia"
|
2488 |
msgstr "Georgien"
|
2489 |
|
2490 |
+
#: lib/tribe-view-helpers.class.php:126
|
2491 |
+
#@ tribe-events-calendar
|
2492 |
msgid "Germany"
|
2493 |
msgstr "Deutschland"
|
2494 |
|
2495 |
+
#: lib/tribe-view-helpers.class.php:127
|
2496 |
+
#@ tribe-events-calendar
|
2497 |
msgid "Ghana"
|
2498 |
msgstr "Ghana"
|
2499 |
|
2500 |
+
#: lib/tribe-view-helpers.class.php:128
|
2501 |
+
#@ tribe-events-calendar
|
2502 |
msgid "Gibraltar"
|
2503 |
msgstr "Gibraltar"
|
2504 |
|
2505 |
+
#: lib/tribe-view-helpers.class.php:129
|
2506 |
+
#@ tribe-events-calendar
|
2507 |
msgid "Greece"
|
2508 |
msgstr "Griechenland"
|
2509 |
|
2510 |
+
#: lib/tribe-view-helpers.class.php:130
|
2511 |
+
#@ tribe-events-calendar
|
2512 |
msgid "Greenland"
|
2513 |
+
msgstr "Grönland"
|
2514 |
|
2515 |
+
#: lib/tribe-view-helpers.class.php:131
|
2516 |
+
#@ tribe-events-calendar
|
2517 |
msgid "Grenada"
|
2518 |
msgstr "Grenada"
|
2519 |
|
2520 |
+
#: lib/tribe-view-helpers.class.php:132
|
2521 |
+
#@ tribe-events-calendar
|
2522 |
msgid "Guadeloupe"
|
2523 |
msgstr "Guadeloupe"
|
2524 |
|
2525 |
+
#: lib/tribe-view-helpers.class.php:133
|
2526 |
+
#@ tribe-events-calendar
|
2527 |
msgid "Guam"
|
2528 |
msgstr "Guam"
|
2529 |
|
2530 |
+
#: lib/tribe-view-helpers.class.php:134
|
2531 |
+
#@ tribe-events-calendar
|
2532 |
msgid "Guatemala"
|
2533 |
msgstr "Guatemala"
|
2534 |
|
2535 |
+
#: lib/tribe-view-helpers.class.php:135
|
2536 |
+
#@ tribe-events-calendar
|
2537 |
msgid "Guinea"
|
2538 |
msgstr "Guinea"
|
2539 |
|
2540 |
+
#: lib/tribe-view-helpers.class.php:136
|
2541 |
+
#@ tribe-events-calendar
|
2542 |
msgid "Guinea-Bissau"
|
2543 |
msgstr "Guinea-Bissau"
|
2544 |
|
2545 |
+
#: lib/tribe-view-helpers.class.php:137
|
2546 |
+
#@ tribe-events-calendar
|
2547 |
msgid "Guyana"
|
2548 |
msgstr "Guyana"
|
2549 |
|
2550 |
+
#: lib/tribe-view-helpers.class.php:138
|
2551 |
+
#@ tribe-events-calendar
|
2552 |
msgid "Haiti"
|
2553 |
msgstr "Haiti"
|
2554 |
|
2555 |
+
#: lib/tribe-view-helpers.class.php:139
|
2556 |
+
#@ tribe-events-calendar
|
2557 |
msgid "Heard And Mc Donald Islands"
|
2558 |
msgstr "Heard und McDonaldinseln"
|
2559 |
|
2560 |
+
#: lib/tribe-view-helpers.class.php:140
|
2561 |
+
#@ tribe-events-calendar
|
2562 |
msgid "Holy See (Vatican City State)"
|
2563 |
msgstr "Vatikanstadt (Heiliger Stuhl)"
|
2564 |
|
2565 |
+
#: lib/tribe-view-helpers.class.php:141
|
2566 |
+
#@ tribe-events-calendar
|
2567 |
msgid "Honduras"
|
2568 |
msgstr "Honduras"
|
2569 |
|
2570 |
+
#: lib/tribe-view-helpers.class.php:142
|
2571 |
+
#@ tribe-events-calendar
|
2572 |
msgid "Hong Kong"
|
2573 |
msgstr "Hongkong"
|
2574 |
|
2575 |
+
#: lib/tribe-view-helpers.class.php:143
|
2576 |
+
#@ tribe-events-calendar
|
2577 |
msgid "Hungary"
|
2578 |
msgstr "Ungarn"
|
2579 |
|
2580 |
+
#: lib/tribe-view-helpers.class.php:144
|
2581 |
+
#@ tribe-events-calendar
|
2582 |
msgid "Iceland"
|
2583 |
msgstr "Island"
|
2584 |
|
2585 |
+
#: lib/tribe-view-helpers.class.php:145
|
2586 |
+
#@ tribe-events-calendar
|
2587 |
msgid "India"
|
2588 |
msgstr "Indien"
|
2589 |
|
2590 |
+
#: lib/tribe-view-helpers.class.php:146
|
2591 |
+
#@ tribe-events-calendar
|
2592 |
msgid "Indonesia"
|
2593 |
msgstr "Indonesien"
|
2594 |
|
2595 |
+
#: lib/tribe-view-helpers.class.php:147
|
2596 |
+
#@ tribe-events-calendar
|
2597 |
msgid "Iran (Islamic Republic Of)"
|
2598 |
msgstr "Iran (Islamische Republik)"
|
2599 |
|
2600 |
+
#: lib/tribe-view-helpers.class.php:148
|
2601 |
+
#@ tribe-events-calendar
|
2602 |
msgid "Iraq"
|
2603 |
msgstr "Irak"
|
2604 |
|
2605 |
+
#: lib/tribe-view-helpers.class.php:149
|
2606 |
+
#@ tribe-events-calendar
|
2607 |
msgid "Ireland"
|
2608 |
msgstr "Irland"
|
2609 |
|
2610 |
+
#: lib/tribe-view-helpers.class.php:150
|
2611 |
+
#@ tribe-events-calendar
|
2612 |
msgid "Israel"
|
2613 |
msgstr "Israel"
|
2614 |
|
2615 |
+
#: lib/tribe-view-helpers.class.php:151
|
2616 |
+
#@ tribe-events-calendar
|
2617 |
msgid "Italy"
|
2618 |
msgstr "Italien"
|
2619 |
|
2620 |
+
#: lib/tribe-view-helpers.class.php:152
|
2621 |
+
#@ tribe-events-calendar
|
2622 |
msgid "Jamaica"
|
2623 |
msgstr "Jamaika"
|
2624 |
|
2625 |
+
#: lib/tribe-view-helpers.class.php:153
|
2626 |
+
#@ tribe-events-calendar
|
2627 |
msgid "Japan"
|
2628 |
msgstr "Japan"
|
2629 |
|
2630 |
+
#: lib/tribe-view-helpers.class.php:154
|
2631 |
+
#@ tribe-events-calendar
|
2632 |
msgid "Jordan"
|
2633 |
msgstr "Jordanien"
|
2634 |
|
2635 |
+
#: lib/tribe-view-helpers.class.php:155
|
2636 |
+
#@ tribe-events-calendar
|
2637 |
msgid "Kazakhstan"
|
2638 |
msgstr "Kasachstan"
|
2639 |
|
2640 |
+
#: lib/tribe-view-helpers.class.php:156
|
2641 |
+
#@ tribe-events-calendar
|
2642 |
msgid "Kenya"
|
2643 |
msgstr "Kenia"
|
2644 |
|
2645 |
+
#: lib/tribe-view-helpers.class.php:157
|
2646 |
+
#@ tribe-events-calendar
|
2647 |
msgid "Kiribati"
|
2648 |
msgstr "Kiribati"
|
2649 |
|
2650 |
+
#: lib/tribe-view-helpers.class.php:158
|
2651 |
+
#@ tribe-events-calendar
|
2652 |
msgid "Korea, Democratic People's Republic Of"
|
2653 |
msgstr "Nordkorea (Volksrepublik)"
|
2654 |
|
2655 |
+
#: lib/tribe-view-helpers.class.php:159
|
2656 |
+
#@ tribe-events-calendar
|
2657 |
msgid "Korea, Republic Of"
|
2658 |
+
msgstr "Südkorea"
|
2659 |
|
2660 |
+
#: lib/tribe-view-helpers.class.php:160
|
2661 |
+
#@ tribe-events-calendar
|
2662 |
msgid "Kuwait"
|
2663 |
msgstr "Kuwait"
|
2664 |
|
2665 |
+
#: lib/tribe-view-helpers.class.php:161
|
2666 |
+
#@ tribe-events-calendar
|
2667 |
msgid "Kyrgyzstan"
|
2668 |
msgstr "Kirgistan"
|
2669 |
|
2670 |
+
#: lib/tribe-view-helpers.class.php:162
|
2671 |
+
#@ tribe-events-calendar
|
2672 |
msgid "Lao People's Democratic Republic"
|
2673 |
msgstr "Laos"
|
2674 |
|
2675 |
+
#: lib/tribe-view-helpers.class.php:163
|
2676 |
+
#@ tribe-events-calendar
|
2677 |
msgid "Latvia"
|
2678 |
msgstr "Lettland"
|
2679 |
|
2680 |
+
#: lib/tribe-view-helpers.class.php:164
|
2681 |
+
#@ tribe-events-calendar
|
2682 |
msgid "Lebanon"
|
2683 |
msgstr "Libanon"
|
2684 |
|
2685 |
+
#: lib/tribe-view-helpers.class.php:165
|
2686 |
+
#@ tribe-events-calendar
|
2687 |
msgid "Lesotho"
|
2688 |
msgstr "Lesotho"
|
2689 |
|
2690 |
+
#: lib/tribe-view-helpers.class.php:166
|
2691 |
+
#@ tribe-events-calendar
|
2692 |
msgid "Liberia"
|
2693 |
msgstr "Liberia"
|
2694 |
|
2695 |
+
#: lib/tribe-view-helpers.class.php:167
|
2696 |
+
#@ tribe-events-calendar
|
2697 |
msgid "Libya"
|
2698 |
msgstr "Libyen"
|
2699 |
|
2700 |
+
#: lib/tribe-view-helpers.class.php:168
|
2701 |
+
#@ tribe-events-calendar
|
2702 |
msgid "Liechtenstein"
|
2703 |
msgstr "Liechtenstein"
|
2704 |
|
2705 |
+
#: lib/tribe-view-helpers.class.php:169
|
2706 |
+
#@ tribe-events-calendar
|
2707 |
msgid "Lithuania"
|
2708 |
msgstr "Lithauen"
|
2709 |
|
2710 |
+
#: lib/tribe-view-helpers.class.php:170
|
2711 |
+
#@ tribe-events-calendar
|
2712 |
msgid "Luxembourg"
|
2713 |
msgstr "Luxemburg"
|
2714 |
|
2715 |
+
#: lib/tribe-view-helpers.class.php:171
|
2716 |
+
#@ tribe-events-calendar
|
2717 |
msgid "Macau"
|
2718 |
msgstr "Macau"
|
2719 |
|
2720 |
+
#: lib/tribe-view-helpers.class.php:172
|
2721 |
+
#@ tribe-events-calendar
|
2722 |
msgid "Macedonia"
|
2723 |
msgstr "Mazedonien"
|
2724 |
|
2725 |
+
#: lib/tribe-view-helpers.class.php:173
|
2726 |
+
#@ tribe-events-calendar
|
2727 |
msgid "Madagascar"
|
2728 |
msgstr "Madagascar"
|
2729 |
|
2730 |
+
#: lib/tribe-view-helpers.class.php:174
|
2731 |
+
#@ tribe-events-calendar
|
2732 |
msgid "Malawi"
|
2733 |
msgstr "Malawi"
|
2734 |
|
2735 |
+
#: lib/tribe-view-helpers.class.php:175
|
2736 |
+
#@ tribe-events-calendar
|
2737 |
msgid "Malaysia"
|
2738 |
msgstr "Malaysia"
|
2739 |
|
2740 |
+
#: lib/tribe-view-helpers.class.php:176
|
2741 |
+
#@ tribe-events-calendar
|
2742 |
msgid "Maldives"
|
2743 |
msgstr "Maldiven"
|
2744 |
|
2745 |
+
#: lib/tribe-view-helpers.class.php:177
|
2746 |
+
#@ tribe-events-calendar
|
2747 |
msgid "Mali"
|
2748 |
msgstr "Mali"
|
2749 |
|
2750 |
+
#: lib/tribe-view-helpers.class.php:178
|
2751 |
+
#@ tribe-events-calendar
|
2752 |
msgid "Malta"
|
2753 |
msgstr "Malta"
|
2754 |
|
2755 |
+
#: lib/tribe-view-helpers.class.php:179
|
2756 |
+
#@ tribe-events-calendar
|
2757 |
msgid "Marshall Islands"
|
2758 |
msgstr "Marshallinseln"
|
2759 |
|
2760 |
+
#: lib/tribe-view-helpers.class.php:180
|
2761 |
+
#@ tribe-events-calendar
|
2762 |
msgid "Martinique"
|
2763 |
msgstr "Martinique"
|
2764 |
|
2765 |
+
#: lib/tribe-view-helpers.class.php:181
|
2766 |
+
#@ tribe-events-calendar
|
2767 |
msgid "Mauritania"
|
2768 |
msgstr "Mauretanien"
|
2769 |
|
2770 |
+
#: lib/tribe-view-helpers.class.php:182
|
2771 |
+
#@ tribe-events-calendar
|
2772 |
msgid "Mauritius"
|
2773 |
msgstr "Mauritius"
|
2774 |
|
2775 |
+
#: lib/tribe-view-helpers.class.php:183
|
2776 |
+
#@ tribe-events-calendar
|
2777 |
msgid "Mayotte"
|
2778 |
msgstr "Mayotte"
|
2779 |
|
2780 |
+
#: lib/tribe-view-helpers.class.php:184
|
2781 |
+
#@ tribe-events-calendar
|
2782 |
msgid "Mexico"
|
2783 |
msgstr "Mexiko"
|
2784 |
|
2785 |
+
#: lib/tribe-view-helpers.class.php:185
|
2786 |
+
#@ tribe-events-calendar
|
2787 |
msgid "Micronesia, Federated States Of"
|
2788 |
msgstr "Mikronesien"
|
2789 |
|
2790 |
+
#: lib/tribe-view-helpers.class.php:186
|
2791 |
+
#@ tribe-events-calendar
|
2792 |
msgid "Moldova, Republic Of"
|
2793 |
msgstr "Moldawien"
|
2794 |
|
2795 |
+
#: lib/tribe-view-helpers.class.php:187
|
2796 |
+
#@ tribe-events-calendar
|
2797 |
msgid "Monaco"
|
2798 |
msgstr "Monaco"
|
2799 |
|
2800 |
+
#: lib/tribe-view-helpers.class.php:188
|
2801 |
+
#@ tribe-events-calendar
|
2802 |
msgid "Mongolia"
|
2803 |
msgstr "Mongolei"
|
2804 |
|
2805 |
+
#: lib/tribe-view-helpers.class.php:189
|
2806 |
+
#@ tribe-events-calendar
|
2807 |
msgid "Montenegro"
|
2808 |
msgstr "Montenegro"
|
2809 |
|
2810 |
+
#: lib/tribe-view-helpers.class.php:190
|
2811 |
+
#@ tribe-events-calendar
|
2812 |
msgid "Montserrat"
|
2813 |
msgstr "Montserrat"
|
2814 |
|
2815 |
+
#: lib/tribe-view-helpers.class.php:191
|
2816 |
+
#@ tribe-events-calendar
|
2817 |
msgid "Morocco"
|
2818 |
msgstr "Marokko"
|
2819 |
|
2820 |
+
#: lib/tribe-view-helpers.class.php:192
|
2821 |
+
#@ tribe-events-calendar
|
2822 |
msgid "Mozambique"
|
2823 |
msgstr "Mosambik"
|
2824 |
|
2825 |
+
#: lib/tribe-view-helpers.class.php:193
|
2826 |
+
#@ tribe-events-calendar
|
2827 |
msgid "Myanmar"
|
2828 |
msgstr "Myanmar"
|
2829 |
|
2830 |
+
#: lib/tribe-view-helpers.class.php:194
|
2831 |
+
#@ tribe-events-calendar
|
2832 |
msgid "Namibia"
|
2833 |
msgstr "Namibia"
|
2834 |
|
2835 |
+
#: lib/tribe-view-helpers.class.php:195
|
2836 |
+
#@ tribe-events-calendar
|
2837 |
msgid "Nauru"
|
2838 |
msgstr "Nauru"
|
2839 |
|
2840 |
+
#: lib/tribe-view-helpers.class.php:196
|
2841 |
+
#@ tribe-events-calendar
|
2842 |
msgid "Nepal"
|
2843 |
msgstr "Nepal"
|
2844 |
|
2845 |
+
#: lib/tribe-view-helpers.class.php:197
|
2846 |
+
#@ tribe-events-calendar
|
2847 |
msgid "Netherlands"
|
2848 |
msgstr "Niederlande"
|
2849 |
|
2850 |
+
#: lib/tribe-view-helpers.class.php:198
|
2851 |
+
#@ tribe-events-calendar
|
2852 |
msgid "Netherlands Antilles"
|
2853 |
+
msgstr "Niederländische Antillen"
|
2854 |
|
2855 |
+
#: lib/tribe-view-helpers.class.php:199
|
2856 |
+
#@ tribe-events-calendar
|
2857 |
msgid "New Caledonia"
|
2858 |
msgstr "Neukaledonien"
|
2859 |
|
2860 |
+
#: lib/tribe-view-helpers.class.php:200
|
2861 |
+
#@ tribe-events-calendar
|
2862 |
msgid "New Zealand"
|
2863 |
msgstr "Neuseeland"
|
2864 |
|
2865 |
+
#: lib/tribe-view-helpers.class.php:201
|
2866 |
+
#@ tribe-events-calendar
|
2867 |
msgid "Nicaragua"
|
2868 |
msgstr "Nicaragua"
|
2869 |
|
2870 |
+
#: lib/tribe-view-helpers.class.php:202
|
2871 |
+
#@ tribe-events-calendar
|
2872 |
msgid "Niger"
|
2873 |
msgstr "Niger"
|
2874 |
|
2875 |
+
#: lib/tribe-view-helpers.class.php:203
|
2876 |
+
#@ tribe-events-calendar
|
2877 |
msgid "Nigeria"
|
2878 |
msgstr "Nigeria"
|
2879 |
|
2880 |
+
#: lib/tribe-view-helpers.class.php:204
|
2881 |
+
#@ tribe-events-calendar
|
2882 |
msgid "Niue"
|
2883 |
msgstr "Niue"
|
2884 |
|
2885 |
+
#: lib/tribe-view-helpers.class.php:205
|
2886 |
+
#@ tribe-events-calendar
|
2887 |
msgid "Norfolk Island"
|
2888 |
msgstr "Norfolkinsel"
|
2889 |
|
2890 |
+
#: lib/tribe-view-helpers.class.php:206
|
2891 |
+
#@ tribe-events-calendar
|
2892 |
msgid "Northern Mariana Islands"
|
2893 |
+
msgstr "Nördliche Marianen"
|
2894 |
|
2895 |
+
#: lib/tribe-view-helpers.class.php:207
|
2896 |
+
#@ tribe-events-calendar
|
2897 |
msgid "Norway"
|
2898 |
msgstr "Norwegen"
|
2899 |
|
2900 |
+
#: lib/tribe-view-helpers.class.php:208
|
2901 |
+
#@ tribe-events-calendar
|
2902 |
msgid "Oman"
|
2903 |
msgstr "Oman"
|
2904 |
|
2905 |
+
#: lib/tribe-view-helpers.class.php:209
|
2906 |
+
#@ tribe-events-calendar
|
2907 |
msgid "Pakistan"
|
2908 |
msgstr "Pakistan"
|
2909 |
|
2910 |
+
#: lib/tribe-view-helpers.class.php:210
|
2911 |
+
#@ tribe-events-calendar
|
2912 |
msgid "Palau"
|
2913 |
msgstr "Palau"
|
2914 |
|
2915 |
+
#: lib/tribe-view-helpers.class.php:211
|
2916 |
+
#@ tribe-events-calendar
|
2917 |
msgid "Panama"
|
2918 |
msgstr "Panama"
|
2919 |
|
2920 |
+
#: lib/tribe-view-helpers.class.php:212
|
2921 |
+
#@ tribe-events-calendar
|
2922 |
msgid "Papua New Guinea"
|
2923 |
msgstr "Papua-Neuguinea"
|
2924 |
|
2925 |
+
#: lib/tribe-view-helpers.class.php:213
|
2926 |
+
#@ tribe-events-calendar
|
2927 |
msgid "Paraguay"
|
2928 |
msgstr "Paraguay"
|
2929 |
|
2930 |
+
#: lib/tribe-view-helpers.class.php:214
|
2931 |
+
#@ tribe-events-calendar
|
2932 |
msgid "Peru"
|
2933 |
msgstr "Peru"
|
2934 |
|
2935 |
+
#: lib/tribe-view-helpers.class.php:215
|
2936 |
+
#@ tribe-events-calendar
|
2937 |
msgid "Philippines"
|
2938 |
msgstr "Philippinen"
|
2939 |
|
2940 |
+
#: lib/tribe-view-helpers.class.php:216
|
2941 |
+
#@ tribe-events-calendar
|
2942 |
msgid "Pitcairn"
|
2943 |
msgstr "Pitcairn"
|
2944 |
|
2945 |
+
#: lib/tribe-view-helpers.class.php:217
|
2946 |
+
#@ tribe-events-calendar
|
2947 |
msgid "Poland"
|
2948 |
msgstr "Polen"
|
2949 |
|
2950 |
+
#: lib/tribe-view-helpers.class.php:218
|
2951 |
+
#@ tribe-events-calendar
|
2952 |
msgid "Portugal"
|
2953 |
msgstr "Portugal"
|
2954 |
|
2955 |
+
#: lib/tribe-view-helpers.class.php:219
|
2956 |
+
#@ tribe-events-calendar
|
2957 |
msgid "Puerto Rico"
|
2958 |
msgstr "Puerto Rico"
|
2959 |
|
2960 |
+
#: lib/tribe-view-helpers.class.php:220
|
2961 |
+
#@ tribe-events-calendar
|
2962 |
msgid "Qatar"
|
2963 |
msgstr "Katar"
|
2964 |
|
2965 |
+
#: lib/tribe-view-helpers.class.php:221
|
2966 |
+
#@ tribe-events-calendar
|
2967 |
msgid "Reunion"
|
2968 |
msgstr "Reunion"
|
2969 |
|
2970 |
+
#: lib/tribe-view-helpers.class.php:222
|
2971 |
+
#@ tribe-events-calendar
|
2972 |
msgid "Romania"
|
2973 |
+
msgstr "Rumänien"
|
2974 |
|
2975 |
+
#: lib/tribe-view-helpers.class.php:223
|
2976 |
+
#@ tribe-events-calendar
|
2977 |
msgid "Russian Federation"
|
2978 |
msgstr "Russland / Russische Förderation"
|
2979 |
|
2980 |
+
#: lib/tribe-view-helpers.class.php:224
|
2981 |
+
#@ tribe-events-calendar
|
2982 |
msgid "Rwanda"
|
2983 |
msgstr "Ruanda"
|
2984 |
|
2985 |
+
#: lib/tribe-view-helpers.class.php:225
|
2986 |
+
#@ tribe-events-calendar
|
2987 |
msgid "Saint Kitts And Nevis"
|
2988 |
msgstr "St. Kitts und Nevis"
|
2989 |
|
2990 |
+
#: lib/tribe-view-helpers.class.php:226
|
2991 |
+
#@ tribe-events-calendar
|
2992 |
msgid "Saint Lucia"
|
2993 |
msgstr "Saint Lucia"
|
2994 |
|
2995 |
+
#: lib/tribe-view-helpers.class.php:227
|
2996 |
+
#@ tribe-events-calendar
|
2997 |
msgid "Saint Vincent And The Grenadines"
|
2998 |
msgstr "St. Vincent und die Grenadinen"
|
2999 |
|
3000 |
+
#: lib/tribe-view-helpers.class.php:228
|
3001 |
+
#@ tribe-events-calendar
|
3002 |
msgid "Samoa"
|
3003 |
msgstr "Samoa"
|
3004 |
|
3005 |
+
#: lib/tribe-view-helpers.class.php:229
|
3006 |
+
#@ tribe-events-calendar
|
3007 |
msgid "San Marino"
|
3008 |
msgstr "San Marino"
|
3009 |
|
3010 |
+
#: lib/tribe-view-helpers.class.php:230
|
3011 |
+
#@ tribe-events-calendar
|
3012 |
msgid "Sao Tome And Principe"
|
3013 |
msgstr "São Tomé und Príncipe"
|
3014 |
|
3015 |
+
#: lib/tribe-view-helpers.class.php:231
|
3016 |
+
#@ tribe-events-calendar
|
3017 |
msgid "Saudi Arabia"
|
3018 |
msgstr "Saudi-Arabien"
|
3019 |
|
3020 |
+
#: lib/tribe-view-helpers.class.php:232
|
3021 |
+
#@ tribe-events-calendar
|
3022 |
msgid "Senegal"
|
3023 |
msgstr "Senegal"
|
3024 |
|
3025 |
+
#: lib/tribe-view-helpers.class.php:233
|
3026 |
+
#@ tribe-events-calendar
|
3027 |
msgid "Serbia"
|
3028 |
msgstr "Serbien"
|
3029 |
|
3030 |
+
#: lib/tribe-view-helpers.class.php:234
|
3031 |
+
#@ tribe-events-calendar
|
3032 |
msgid "Seychelles"
|
3033 |
msgstr "Seychellen"
|
3034 |
|
3035 |
+
#: lib/tribe-view-helpers.class.php:235
|
3036 |
+
#@ tribe-events-calendar
|
3037 |
msgid "Sierra Leone"
|
3038 |
msgstr "Sierra Leone"
|
3039 |
|
3040 |
+
#: lib/tribe-view-helpers.class.php:236
|
3041 |
+
#@ tribe-events-calendar
|
3042 |
msgid "Singapore"
|
3043 |
msgstr "Singapur"
|
3044 |
|
3045 |
+
#: lib/tribe-view-helpers.class.php:237
|
3046 |
+
#@ tribe-events-calendar
|
3047 |
msgid "Slovakia (Slovak Republic)"
|
3048 |
msgstr "Slowakei"
|
3049 |
|
3050 |
+
#: lib/tribe-view-helpers.class.php:238
|
3051 |
+
#@ tribe-events-calendar
|
3052 |
msgid "Slovenia"
|
3053 |
msgstr "Slovenien"
|
3054 |
|
3055 |
+
#: lib/tribe-view-helpers.class.php:239
|
3056 |
+
#@ tribe-events-calendar
|
3057 |
msgid "Solomon Islands"
|
3058 |
msgstr "Salomonen"
|
3059 |
|
3060 |
+
#: lib/tribe-view-helpers.class.php:240
|
3061 |
+
#@ tribe-events-calendar
|
3062 |
msgid "Somalia"
|
3063 |
msgstr "Somalia"
|
3064 |
|
3065 |
+
#: lib/tribe-view-helpers.class.php:241
|
3066 |
+
#@ tribe-events-calendar
|
3067 |
msgid "South Africa"
|
3068 |
msgstr "Südafrika"
|
3069 |
|
3070 |
+
#: lib/tribe-view-helpers.class.php:242
|
3071 |
+
#@ tribe-events-calendar
|
3072 |
msgid "South Georgia, South Sandwich Islands"
|
3073 |
msgstr "Südgeorgien und die Südlichen Sandwichinseln"
|
3074 |
|
3075 |
+
#: lib/tribe-view-helpers.class.php:243
|
3076 |
+
#@ tribe-events-calendar
|
3077 |
msgid "Spain"
|
3078 |
msgstr "Spanien"
|
3079 |
|
3080 |
+
#: lib/tribe-view-helpers.class.php:244
|
3081 |
+
#@ tribe-events-calendar
|
3082 |
msgid "Sri Lanka"
|
3083 |
msgstr "Sri Lanka"
|
3084 |
|
3085 |
+
#: lib/tribe-view-helpers.class.php:245
|
3086 |
+
#@ tribe-events-calendar
|
3087 |
msgid "St. Helena"
|
3088 |
msgstr "St. Helena"
|
3089 |
|
3090 |
+
#: lib/tribe-view-helpers.class.php:246
|
3091 |
+
#@ tribe-events-calendar
|
3092 |
msgid "St. Pierre And Miquelon"
|
3093 |
msgstr "Saint-Pierre und Miquelon"
|
3094 |
|
3095 |
+
#: lib/tribe-view-helpers.class.php:247
|
3096 |
+
#@ tribe-events-calendar
|
3097 |
msgid "Sudan"
|
3098 |
msgstr "Sudan"
|
3099 |
|
3100 |
+
#: lib/tribe-view-helpers.class.php:248
|
3101 |
+
#@ tribe-events-calendar
|
3102 |
msgid "Suriname"
|
3103 |
msgstr "Surinam"
|
3104 |
|
3105 |
+
#: lib/tribe-view-helpers.class.php:249
|
3106 |
+
#@ tribe-events-calendar
|
3107 |
msgid "Svalbard And Jan Mayen Islands"
|
3108 |
msgstr "Svalbard und Jan Mayen Islands"
|
3109 |
|
3110 |
+
#: lib/tribe-view-helpers.class.php:250
|
3111 |
+
#@ tribe-events-calendar
|
3112 |
msgid "Swaziland"
|
3113 |
msgstr "Swasiland"
|
3114 |
|
3115 |
+
#: lib/tribe-view-helpers.class.php:251
|
3116 |
+
#@ tribe-events-calendar
|
3117 |
msgid "Sweden"
|
3118 |
msgstr "Schweden"
|
3119 |
|
3120 |
+
#: lib/tribe-view-helpers.class.php:252
|
3121 |
+
#@ tribe-events-calendar
|
3122 |
msgid "Switzerland"
|
3123 |
msgstr "Schweiz"
|
3124 |
|
3125 |
+
#: lib/tribe-view-helpers.class.php:253
|
3126 |
+
#@ tribe-events-calendar
|
3127 |
msgid "Syrian Arab Republic"
|
3128 |
msgstr "Syrien"
|
3129 |
|
3130 |
+
#: lib/tribe-view-helpers.class.php:254
|
3131 |
+
#@ tribe-events-calendar
|
3132 |
msgid "Taiwan"
|
3133 |
msgstr "Taiwan"
|
3134 |
|
3135 |
+
#: lib/tribe-view-helpers.class.php:255
|
3136 |
+
#@ tribe-events-calendar
|
3137 |
msgid "Tajikistan"
|
3138 |
msgstr "Tadschikistan"
|
3139 |
|
3140 |
+
#: lib/tribe-view-helpers.class.php:256
|
3141 |
+
#@ tribe-events-calendar
|
3142 |
msgid "Tanzania, United Republic Of"
|
3143 |
msgstr "Tanzania"
|
3144 |
|
3145 |
+
#: lib/tribe-view-helpers.class.php:257
|
3146 |
+
#@ tribe-events-calendar
|
3147 |
msgid "Thailand"
|
3148 |
msgstr "Thailand"
|
3149 |
|
3150 |
+
#: lib/tribe-view-helpers.class.php:258
|
3151 |
+
#@ tribe-events-calendar
|
3152 |
msgid "Togo"
|
3153 |
msgstr "Togo"
|
3154 |
|
3155 |
+
#: lib/tribe-view-helpers.class.php:259
|
3156 |
+
#@ tribe-events-calendar
|
3157 |
msgid "Tokelau"
|
3158 |
msgstr "Tokelau"
|
3159 |
|
3160 |
+
#: lib/tribe-view-helpers.class.php:260
|
3161 |
+
#@ tribe-events-calendar
|
3162 |
msgid "Tonga"
|
3163 |
msgstr "Tonga"
|
3164 |
|
3165 |
+
#: lib/tribe-view-helpers.class.php:261
|
3166 |
+
#@ tribe-events-calendar
|
3167 |
msgid "Trinidad And Tobago"
|
3168 |
msgstr "Trinidad und Tobago"
|
3169 |
|
3170 |
+
#: lib/tribe-view-helpers.class.php:262
|
3171 |
+
#@ tribe-events-calendar
|
3172 |
msgid "Tunisia"
|
3173 |
msgstr "Tunesien"
|
3174 |
|
3175 |
+
#: lib/tribe-view-helpers.class.php:263
|
3176 |
+
#@ tribe-events-calendar
|
3177 |
msgid "Turkey"
|
3178 |
+
msgstr "Türkei"
|
3179 |
|
3180 |
+
#: lib/tribe-view-helpers.class.php:264
|
3181 |
+
#@ tribe-events-calendar
|
3182 |
msgid "Turkmenistan"
|
3183 |
msgstr "Turkmenistan"
|
3184 |
|
3185 |
+
#: lib/tribe-view-helpers.class.php:265
|
3186 |
+
#@ tribe-events-calendar
|
3187 |
msgid "Turks And Caicos Islands"
|
3188 |
msgstr "Turks- und Caicosinseln"
|
3189 |
|
3190 |
+
#: lib/tribe-view-helpers.class.php:266
|
3191 |
+
#@ tribe-events-calendar
|
3192 |
msgid "Tuvalu"
|
3193 |
msgstr "Tuvalu"
|
3194 |
|
3195 |
+
#: lib/tribe-view-helpers.class.php:267
|
3196 |
+
#@ tribe-events-calendar
|
3197 |
msgid "Uganda"
|
3198 |
msgstr "Uganda"
|
3199 |
|
3200 |
+
#: lib/tribe-view-helpers.class.php:268
|
3201 |
+
#@ tribe-events-calendar
|
3202 |
msgid "Ukraine"
|
3203 |
msgstr "Ukraine"
|
3204 |
|
3205 |
+
#: lib/tribe-view-helpers.class.php:269
|
3206 |
+
#@ tribe-events-calendar
|
3207 |
msgid "United Arab Emirates"
|
3208 |
msgstr "Vereinigte Arabische Emirate"
|
3209 |
|
3210 |
+
#: lib/tribe-view-helpers.class.php:270
|
3211 |
+
#@ tribe-events-calendar
|
3212 |
msgid "United Kingdom"
|
3213 |
+
msgstr "Großbritannien (Vereinigtes Königreich)"
|
3214 |
|
3215 |
+
#: lib/tribe-view-helpers.class.php:271
|
3216 |
+
#@ tribe-events-calendar
|
3217 |
msgid "United States Minor Outlying Islands"
|
3218 |
msgstr "United States Minor Outlying Islands"
|
3219 |
|
3220 |
+
#: lib/tribe-view-helpers.class.php:272
|
3221 |
+
#@ tribe-events-calendar
|
3222 |
msgid "Uruguay"
|
3223 |
msgstr "Uruguay"
|
3224 |
|
3225 |
+
#: lib/tribe-view-helpers.class.php:273
|
3226 |
+
#@ tribe-events-calendar
|
3227 |
msgid "Uzbekistan"
|
3228 |
msgstr "Usbekistan"
|
3229 |
|
3230 |
+
#: lib/tribe-view-helpers.class.php:274
|
3231 |
+
#@ tribe-events-calendar
|
3232 |
msgid "Vanuatu"
|
3233 |
msgstr "Vanuatu"
|
3234 |
|
3235 |
+
#: lib/tribe-view-helpers.class.php:275
|
3236 |
+
#@ tribe-events-calendar
|
3237 |
msgid "Venezuela"
|
3238 |
msgstr "Venezuela"
|
3239 |
|
3240 |
+
#: lib/tribe-view-helpers.class.php:276
|
3241 |
+
#@ tribe-events-calendar
|
3242 |
msgid "Viet Nam"
|
3243 |
msgstr "Vietnam"
|
3244 |
|
3245 |
+
#: lib/tribe-view-helpers.class.php:277
|
3246 |
+
#@ tribe-events-calendar
|
3247 |
msgid "Virgin Islands (British)"
|
3248 |
msgstr "Britische Jungferninseln"
|
3249 |
|
3250 |
+
#: lib/tribe-view-helpers.class.php:278
|
3251 |
+
#@ tribe-events-calendar
|
3252 |
msgid "Virgin Islands (U.S.)"
|
3253 |
msgstr "Amerikanische Jungferninseln"
|
3254 |
|
3255 |
+
#: lib/tribe-view-helpers.class.php:279
|
3256 |
+
#@ tribe-events-calendar
|
3257 |
msgid "Wallis And Futuna Islands"
|
3258 |
msgstr "Wallis und Futuna"
|
3259 |
|
3260 |
+
#: lib/tribe-view-helpers.class.php:280
|
3261 |
+
#@ tribe-events-calendar
|
3262 |
msgid "Western Sahara"
|
3263 |
msgstr "Westsahara"
|
3264 |
|
3265 |
+
#: lib/tribe-view-helpers.class.php:281
|
3266 |
+
#@ tribe-events-calendar
|
3267 |
msgid "Yemen"
|
3268 |
msgstr "Jemen"
|
3269 |
|
3270 |
+
#: lib/tribe-view-helpers.class.php:282
|
3271 |
+
#@ tribe-events-calendar
|
3272 |
msgid "Zambia"
|
3273 |
msgstr "Sambia"
|
3274 |
|
3275 |
+
#: lib/tribe-view-helpers.class.php:283
|
3276 |
+
#@ tribe-events-calendar
|
3277 |
msgid "Zimbabwe"
|
3278 |
msgstr "Simbabwe"
|
3279 |
|
3280 |
+
#: lib/tribe-view-helpers.class.php:308
|
3281 |
+
#@ tribe-events-calendar
|
3282 |
msgid "Alabama"
|
3283 |
msgstr "Alabama"
|
3284 |
|
3285 |
+
#: lib/tribe-view-helpers.class.php:309
|
3286 |
+
#@ tribe-events-calendar
|
3287 |
msgid "Alaska"
|
3288 |
msgstr "Alaska"
|
3289 |
|
3290 |
+
#: lib/tribe-view-helpers.class.php:310
|
3291 |
+
#@ tribe-events-calendar
|
3292 |
msgid "Arizona"
|
3293 |
msgstr "Arizona"
|
3294 |
|
3295 |
+
#: lib/tribe-view-helpers.class.php:311
|
3296 |
+
#@ tribe-events-calendar
|
3297 |
msgid "Arkansas"
|
3298 |
msgstr "Arkansas"
|
3299 |
|
3300 |
+
#: lib/tribe-view-helpers.class.php:312
|
3301 |
+
#@ tribe-events-calendar
|
3302 |
msgid "California"
|
3303 |
msgstr "Kalifornien"
|
3304 |
|
3305 |
+
#: lib/tribe-view-helpers.class.php:313
|
3306 |
+
#@ tribe-events-calendar
|
3307 |
msgid "Colorado"
|
3308 |
msgstr "Colorado"
|
3309 |
|
3310 |
+
#: lib/tribe-view-helpers.class.php:314
|
3311 |
+
#@ tribe-events-calendar
|
3312 |
msgid "Connecticut"
|
3313 |
msgstr "Connecticut"
|
3314 |
|
3315 |
+
#: lib/tribe-view-helpers.class.php:315
|
3316 |
+
#@ tribe-events-calendar
|
3317 |
msgid "Delaware"
|
3318 |
msgstr "Delaware"
|
3319 |
|
3320 |
+
#: lib/tribe-view-helpers.class.php:316
|
3321 |
+
#@ tribe-events-calendar
|
3322 |
msgid "District of Columbia"
|
3323 |
msgstr "District of Columbia"
|
3324 |
|
3325 |
+
#: lib/tribe-view-helpers.class.php:317
|
3326 |
+
#@ tribe-events-calendar
|
3327 |
msgid "Florida"
|
3328 |
msgstr "Florida"
|
3329 |
|
3330 |
+
#: lib/tribe-view-helpers.class.php:319
|
3331 |
+
#@ tribe-events-calendar
|
3332 |
msgid "Hawaii"
|
3333 |
msgstr "Hawaii"
|
3334 |
|
3335 |
+
#: lib/tribe-view-helpers.class.php:320
|
3336 |
+
#@ tribe-events-calendar
|
3337 |
msgid "Idaho"
|
3338 |
msgstr "Idaho"
|
3339 |
|
3340 |
+
#: lib/tribe-view-helpers.class.php:321
|
3341 |
+
#@ tribe-events-calendar
|
3342 |
msgid "Illinois"
|
3343 |
msgstr "Illinois"
|
3344 |
|
3345 |
+
#: lib/tribe-view-helpers.class.php:322
|
3346 |
+
#@ tribe-events-calendar
|
3347 |
msgid "Indiana"
|
3348 |
msgstr "Indiana"
|
3349 |
|
3350 |
+
#: lib/tribe-view-helpers.class.php:323
|
3351 |
+
#@ tribe-events-calendar
|
3352 |
msgid "Iowa"
|
3353 |
msgstr "Iowa"
|
3354 |
|
3355 |
+
#: lib/tribe-view-helpers.class.php:324
|
3356 |
+
#@ tribe-events-calendar
|
3357 |
msgid "Kansas"
|
3358 |
msgstr "Kansas"
|
3359 |
|
3360 |
+
#: lib/tribe-view-helpers.class.php:325
|
3361 |
+
#@ tribe-events-calendar
|
3362 |
msgid "Kentucky"
|
3363 |
msgstr "Kentucky"
|
3364 |
|
3365 |
+
#: lib/tribe-view-helpers.class.php:326
|
3366 |
+
#@ tribe-events-calendar
|
3367 |
msgid "Louisiana"
|
3368 |
msgstr "Louisiana"
|
3369 |
|
3370 |
+
#: lib/tribe-view-helpers.class.php:327
|
3371 |
+
#@ tribe-events-calendar
|
3372 |
msgid "Maine"
|
3373 |
msgstr "Maine"
|
3374 |
|
3375 |
+
#: lib/tribe-view-helpers.class.php:328
|
3376 |
+
#@ tribe-events-calendar
|
3377 |
msgid "Maryland"
|
3378 |
msgstr "Maryland"
|
3379 |
|
3380 |
+
#: lib/tribe-view-helpers.class.php:329
|
3381 |
+
#@ tribe-events-calendar
|
3382 |
msgid "Massachusetts"
|
3383 |
msgstr "Massachusetts"
|
3384 |
|
3385 |
+
#: lib/tribe-view-helpers.class.php:330
|
3386 |
+
#@ tribe-events-calendar
|
3387 |
msgid "Michigan"
|
3388 |
msgstr "Michigan"
|
3389 |
|
3390 |
+
#: lib/tribe-view-helpers.class.php:331
|
3391 |
+
#@ tribe-events-calendar
|
3392 |
msgid "Minnesota"
|
3393 |
msgstr "Minnesota"
|
3394 |
|
3395 |
+
#: lib/tribe-view-helpers.class.php:332
|
3396 |
+
#@ tribe-events-calendar
|
3397 |
msgid "Mississippi"
|
3398 |
msgstr "Mississippi"
|
3399 |
|
3400 |
+
#: lib/tribe-view-helpers.class.php:333
|
3401 |
+
#@ tribe-events-calendar
|
3402 |
msgid "Missouri"
|
3403 |
msgstr "Missouri"
|
3404 |
|
3405 |
+
#: lib/tribe-view-helpers.class.php:334
|
3406 |
+
#@ tribe-events-calendar
|
3407 |
msgid "Montana"
|
3408 |
msgstr "Montana"
|
3409 |
|
3410 |
+
#: lib/tribe-view-helpers.class.php:335
|
3411 |
+
#@ tribe-events-calendar
|
3412 |
msgid "Nebraska"
|
3413 |
msgstr "Nebraska"
|
3414 |
|
3415 |
+
#: lib/tribe-view-helpers.class.php:336
|
3416 |
+
#@ tribe-events-calendar
|
3417 |
msgid "Nevada"
|
3418 |
msgstr "Nevada"
|
3419 |
|
3420 |
+
#: lib/tribe-view-helpers.class.php:337
|
3421 |
+
#@ tribe-events-calendar
|
3422 |
msgid "New Hampshire"
|
3423 |
msgstr "New Hampshire"
|
3424 |
|
3425 |
+
#: lib/tribe-view-helpers.class.php:338
|
3426 |
+
#@ tribe-events-calendar
|
3427 |
msgid "New Jersey"
|
3428 |
msgstr "New Jersey"
|
3429 |
|
3430 |
+
#: lib/tribe-view-helpers.class.php:339
|
3431 |
+
#@ tribe-events-calendar
|
3432 |
msgid "New Mexico"
|
3433 |
msgstr "New Mexico"
|
3434 |
|
3435 |
+
#: lib/tribe-view-helpers.class.php:340
|
3436 |
+
#@ tribe-events-calendar
|
3437 |
msgid "New York"
|
3438 |
msgstr "New York"
|
3439 |
|
3440 |
+
#: lib/tribe-view-helpers.class.php:341
|
3441 |
+
#@ tribe-events-calendar
|
3442 |
msgid "North Carolina"
|
3443 |
msgstr "North Carolina"
|
3444 |
|
3445 |
+
#: lib/tribe-view-helpers.class.php:342
|
3446 |
+
#@ tribe-events-calendar
|
3447 |
msgid "North Dakota"
|
3448 |
msgstr "North Dakota"
|
3449 |
|
3450 |
+
#: lib/tribe-view-helpers.class.php:343
|
3451 |
+
#@ tribe-events-calendar
|
3452 |
msgid "Ohio"
|
3453 |
msgstr "Ohio"
|
3454 |
|
3455 |
+
#: lib/tribe-view-helpers.class.php:344
|
3456 |
+
#@ tribe-events-calendar
|
3457 |
msgid "Oklahoma"
|
3458 |
msgstr "Oklahoma"
|
3459 |
|
3460 |
+
#: lib/tribe-view-helpers.class.php:345
|
3461 |
+
#@ tribe-events-calendar
|
3462 |
msgid "Oregon"
|
3463 |
msgstr "Oregon"
|
3464 |
|
3465 |
+
#: lib/tribe-view-helpers.class.php:346
|
3466 |
+
#@ tribe-events-calendar
|
3467 |
msgid "Pennsylvania"
|
3468 |
msgstr "Pennsylvania"
|
3469 |
|
3470 |
+
#: lib/tribe-view-helpers.class.php:347
|
3471 |
+
#@ tribe-events-calendar
|
3472 |
msgid "Rhode Island"
|
3473 |
msgstr "Rhode Island"
|
3474 |
|
3475 |
+
#: lib/tribe-view-helpers.class.php:348
|
3476 |
+
#@ tribe-events-calendar
|
3477 |
msgid "South Carolina"
|
3478 |
msgstr "South Carolina"
|
3479 |
|
3480 |
+
#: lib/tribe-view-helpers.class.php:349
|
3481 |
+
#@ tribe-events-calendar
|
3482 |
msgid "South Dakota"
|
3483 |
msgstr "South Dakota"
|
3484 |
|
3485 |
+
#: lib/tribe-view-helpers.class.php:350
|
3486 |
+
#@ tribe-events-calendar
|
3487 |
msgid "Tennessee"
|
3488 |
msgstr "Tennessee"
|
3489 |
|
3490 |
+
#: lib/tribe-view-helpers.class.php:351
|
3491 |
+
#@ tribe-events-calendar
|
3492 |
msgid "Texas"
|
3493 |
msgstr "Texas"
|
3494 |
|
3495 |
+
#: lib/tribe-view-helpers.class.php:352
|
3496 |
+
#@ tribe-events-calendar
|
3497 |
msgid "Utah"
|
3498 |
msgstr "Utah"
|
3499 |
|
3500 |
+
#: lib/tribe-view-helpers.class.php:353
|
3501 |
+
#@ tribe-events-calendar
|
3502 |
msgid "Vermont"
|
3503 |
msgstr "Vermont"
|
3504 |
|
3505 |
+
#: lib/tribe-view-helpers.class.php:354
|
3506 |
+
#@ tribe-events-calendar
|
3507 |
msgid "Virginia"
|
3508 |
msgstr "Virginia"
|
3509 |
|
3510 |
+
#: lib/tribe-view-helpers.class.php:355
|
3511 |
+
#@ tribe-events-calendar
|
3512 |
msgid "Washington"
|
3513 |
msgstr "Washington"
|
3514 |
|
3515 |
+
#: lib/tribe-view-helpers.class.php:356
|
3516 |
+
#@ tribe-events-calendar
|
3517 |
msgid "West Virginia"
|
3518 |
msgstr "West Virginia"
|
3519 |
|
3520 |
+
#: lib/tribe-view-helpers.class.php:357
|
3521 |
+
#@ tribe-events-calendar
|
3522 |
msgid "Wisconsin"
|
3523 |
msgstr "Wisconsin"
|
3524 |
|
3525 |
+
#: lib/tribe-view-helpers.class.php:358
|
3526 |
+
#@ tribe-events-calendar
|
3527 |
msgid "Wyoming"
|
3528 |
msgstr "Wyoming"
|
3529 |
|
3530 |
+
#: lib/widget-list.class.php:21
|
3531 |
+
#@ tribe-events-calendar
|
|
|
3532 |
msgid "A widget that displays upcoming events."
|
3533 |
msgstr "Ein Widget, dass die nächsten Veranstaltungen anzeigt."
|
3534 |
|
3535 |
+
#: lib/widget-list.class.php:27
|
3536 |
+
#@ tribe-events-calendar
|
3537 |
msgid "Events List"
|
3538 |
msgstr "Veranstaltungsliste"
|
3539 |
|
3540 |
+
#: lib/widget-list.class.php:124
|
3541 |
+
#@ tribe-events-calendar
|
3542 |
msgid "View All Events"
|
3543 |
msgstr "Alle Veranstaltungen ansehen"
|
3544 |
|
3545 |
+
#: lib/widget-list.class.php:127
|
3546 |
+
#@ tribe-events-calendar
|
3547 |
msgid "There are no upcoming events at this time."
|
3548 |
+
msgstr "Es gibt derzeit keine anstehenden Veranstaltungen."
|
3549 |
|
3550 |
+
#: lib/template-classes/month.php:112
|
3551 |
#, php-format
|
3552 |
+
#@ tribe-events-calendar
|
3553 |
+
msgid "There were no results found for <strong>\"%s\"</strong> this month. Try searching next month."
|
3554 |
+
msgstr "Es wurden keine Ergebnisse für <strong>\"%s\"</strong> in diesem Monat gefunden. Versuchen Sie es mit dem nächsten Monat."
|
|
|
|
|
|
|
3555 |
|
3556 |
+
#: lib/template-classes/single-event.php:101
|
3557 |
+
#@ tribe-events-calendar
|
3558 |
msgid "This event has passed."
|
3559 |
msgstr "Diese Veranstaltung ist bereits vorbei."
|
3560 |
|
3561 |
+
#: lib/tickets/tribe-tickets-attendees.php:67
|
3562 |
+
#@ tribe-events-calendar
|
3563 |
msgid "Order #"
|
3564 |
+
msgstr "Bestellnummer"
|
3565 |
|
3566 |
+
#: lib/tickets/tribe-tickets-attendees.php:68
|
3567 |
+
#@ tribe-events-calendar
|
3568 |
msgid "Order Status"
|
3569 |
msgstr "Bestellstatus"
|
3570 |
|
3571 |
+
#: lib/tickets/tribe-tickets-attendees.php:69
|
3572 |
+
#@ tribe-events-calendar
|
3573 |
msgid "Purchaser name"
|
3574 |
msgstr "Käufer Name"
|
3575 |
|
3576 |
+
#: lib/tickets/tribe-tickets-attendees.php:70
|
3577 |
+
#@ tribe-events-calendar
|
3578 |
msgid "Purchaser email"
|
3579 |
msgstr "Käufer E-Mail"
|
3580 |
|
3581 |
+
#: lib/tickets/tribe-tickets-attendees.php:71
|
3582 |
+
#@ tribe-events-calendar
|
3583 |
msgid "Ticket type"
|
3584 |
msgstr "Karten Art"
|
3585 |
|
3586 |
+
#: lib/tickets/tribe-tickets-attendees.php:72
|
3587 |
+
#: views/tickets/email.php:316
|
3588 |
+
#@ tribe-events-calendar
|
3589 |
msgid "Ticket #"
|
3590 |
+
msgstr "Kartennummer"
|
3591 |
|
3592 |
+
#: lib/tickets/tribe-tickets-attendees.php:73
|
3593 |
+
#: views/tickets/email.php:328
|
3594 |
+
#@ tribe-events-calendar
|
3595 |
msgid "Security Code"
|
3596 |
msgstr "Sicherheitscode"
|
3597 |
|
3598 |
+
#: lib/tickets/tribe-tickets-attendees.php:74
|
3599 |
+
#: lib/tickets/tribe-tickets-attendees.php:151
|
3600 |
+
#: lib/tickets/tribe-tickets-attendees.php:207
|
3601 |
+
#@ tribe-events-calendar
|
3602 |
msgid "Check in"
|
3603 |
msgstr "einchecken"
|
3604 |
|
3605 |
+
#: lib/tickets/tribe-tickets-attendees.php:152
|
3606 |
+
#: lib/tickets/tribe-tickets-attendees.php:207
|
3607 |
+
#@ tribe-events-calendar
|
3608 |
msgid "Undo Check in"
|
3609 |
msgstr "einchecken rückgängig machen"
|
3610 |
|
3611 |
+
#: lib/tickets/tribe-tickets-attendees.php:186
|
3612 |
+
#@ tribe-events-calendar
|
3613 |
msgid "Print"
|
3614 |
msgstr "Drucken"
|
3615 |
|
3616 |
+
#: lib/tickets/tribe-tickets-attendees.php:187
|
3617 |
+
#@ tribe-events-calendar
|
|
|
3618 |
msgid "Email"
|
3619 |
msgstr "E-Mail"
|
3620 |
|
3621 |
+
#: lib/tickets/tribe-tickets-attendees.php:188
|
3622 |
+
#@ tribe-events-calendar
|
3623 |
msgid "Export"
|
3624 |
msgstr "Export"
|
3625 |
|
3626 |
+
#: lib/tickets/tribe-tickets-attendees.php:194
|
3627 |
+
#@ tribe-events-calendar
|
3628 |
msgid "Filter by ticket #, order # or security code"
|
3629 |
+
msgstr "Nach Kartennummer, Bestellnummer oder Sicherheitscode filtern"
|
3630 |
|
3631 |
+
#: lib/tickets/tribe-tickets-metabox.php:24
|
3632 |
+
#@ tribe-events-calendar
|
3633 |
msgid "Tickets"
|
3634 |
msgstr "Karten"
|
3635 |
|
3636 |
+
#: lib/tickets/tribe-tickets-metabox.php:62
|
3637 |
+
#@ tribe-events-calendar
|
3638 |
msgid "Ticket header image"
|
3639 |
msgstr "Karten Bild"
|
3640 |
|
3641 |
+
#: lib/tickets/tribe-tickets-metabox.php:62
|
3642 |
+
#@ tribe-events-calendar
|
3643 |
msgid "Set as ticket header"
|
3644 |
msgstr "Ein Karten Bild senden"
|
3645 |
|
3646 |
+
#: lib/tickets/tribe-tickets-pro.php:107
|
3647 |
+
#@ tribe-events-calendar
|
3648 |
msgid "You need to select a user or type a valid email address"
|
3649 |
msgstr "Sie müssen einen Nutzer oder eine gültige E-Mailadresse wählen"
|
3650 |
|
3651 |
+
#: lib/tickets/tribe-tickets-pro.php:108
|
3652 |
+
#@ tribe-events-calendar
|
3653 |
msgid "Sending..."
|
3654 |
msgstr "Senden..."
|
3655 |
|
3656 |
+
#: lib/tickets/tribe-tickets-pro.php:136
|
3657 |
+
#@ tribe-events-calendar
|
3658 |
msgid "Columns"
|
3659 |
msgstr "Spalten"
|
3660 |
|
3661 |
+
#: lib/tickets/tribe-tickets-pro.php:137
|
3662 |
+
#@ tribe-events-calendar
|
3663 |
+
msgid "You can use Screen Options to select which columns you want to see. The selection works in the table below, in the email, for print and for the CSV export."
|
3664 |
+
msgstr "Verwenden Sie die Bildschirmoptionen, um auszuwählen, welche Spalten angezeigt werden sollen. Die Auswahl kann in der Tabelle unten für eMail, Druck oder CSV-Export genutzt werden."
|
|
|
|
|
|
|
|
|
|
|
3665 |
|
3666 |
+
#: lib/tickets/tribe-tickets-pro.php:258
|
3667 |
+
#@ tribe-events-calendar
|
3668 |
msgid "attendees"
|
3669 |
msgstr "Teilnehmer"
|
3670 |
|
3671 |
+
#: lib/tickets/tribe-tickets-pro.php:308
|
3672 |
#, php-format
|
3673 |
+
#@ tribe-events-calendar
|
3674 |
msgid "Attendee List for: %s"
|
3675 |
msgstr "Teilnehmer Liste für: %s"
|
3676 |
|
3677 |
+
#: lib/tickets/tribe-tickets.php:298
|
3678 |
+
#@ tribe-events-calendar
|
3679 |
msgid "Your ticket has been saved."
|
3680 |
msgstr "Ihre Karte wurde gespeichert."
|
3681 |
|
3682 |
+
#: lib/tickets/tribe-tickets.php:375
|
3683 |
+
#@ tribe-events-calendar
|
3684 |
msgid "Your ticket has been deleted."
|
3685 |
msgstr "Ihre Karte wurde gelöscht."
|
3686 |
|
3687 |
+
#: public/advanced-functions/meta.php:39
|
3688 |
+
#@ tribe-events-calendar
|
3689 |
msgid "Start:"
|
3690 |
msgstr "Beginn:"
|
3691 |
|
3692 |
+
#: public/advanced-functions/meta.php:46
|
3693 |
+
#@ tribe-events-calendar
|
3694 |
msgid "End:"
|
3695 |
msgstr "Ende:"
|
3696 |
|
3697 |
+
#: public/advanced-functions/meta.php:57
|
3698 |
+
#: public/advanced-functions/meta.php:67
|
3699 |
+
#@ tribe-events-calendar
|
3700 |
msgid "Date:"
|
3701 |
msgstr "Datum"
|
3702 |
|
3703 |
+
#: public/advanced-functions/meta.php:270
|
3704 |
+
#@ tribe-events-calendar
|
3705 |
msgid "Click to view a Google Map"
|
3706 |
msgstr "Klicken, um eine 'Google Maps'-Karte anzuzeigen"
|
3707 |
|
3708 |
+
#: public/advanced-functions/meta.php:271
|
3709 |
+
#@ tribe-events-calendar
|
|
|
3710 |
msgid "+ Google Map"
|
3711 |
msgstr "+ Google Karte"
|
3712 |
|
3713 |
+
#: public/advanced-functions/meta.php:282
|
3714 |
+
#@ tribe-events-calendar
|
3715 |
msgid "Details"
|
3716 |
msgstr "Details"
|
3717 |
|
3718 |
+
#: public/advanced-functions/meta.php:333
|
3719 |
+
#@ tribe-events-calendar
|
|
|
3720 |
msgid "Event Tags:"
|
3721 |
msgstr "Veranstaltungstags:"
|
3722 |
|
3723 |
+
#: public/advanced-functions/meta.php:359
|
3724 |
+
#@ tribe-events-calendar
|
3725 |
msgid "Origin:"
|
3726 |
msgstr "Quelle:"
|
3727 |
|
3728 |
+
#: public/advanced-functions/meta.php:496
|
3729 |
+
#@ tribe-events-calendar
|
3730 |
msgid "Event:"
|
3731 |
msgstr "Anlass:"
|
3732 |
|
3733 |
+
#: public/template-tags/deprecated.php:1143
|
3734 |
+
#@ tribe-events-calendar
|
|
|
3735 |
msgid "Category"
|
3736 |
msgstr "Kategorie"
|
3737 |
|
3738 |
+
#: public/template-tags/general.php:307
|
3739 |
+
#@ tribe-events-calendar
|
3740 |
msgid "Tags:"
|
3741 |
msgstr "Tags:"
|
3742 |
|
3743 |
+
#: public/template-tags/general.php:408
|
3744 |
+
#@ tribe-events
|
|
|
3745 |
msgid "Loading Events"
|
3746 |
msgstr "Veranstaltungen laden"
|
3747 |
|
3748 |
+
#: public/template-tags/general.php:546
|
3749 |
+
#@ tribe-events-calendar
|
3750 |
msgid "Free"
|
3751 |
msgstr "Eintritt frei"
|
3752 |
|
3753 |
+
#: public/template-tags/general.php:718
|
3754 |
+
#@ tribe-events-calendar
|
|
|
3755 |
msgid "Recurring Event"
|
3756 |
msgstr "Wiederkehrene Veranstaltung"
|
3757 |
|
3758 |
+
#: public/template-tags/general.php:721
|
3759 |
+
#@ tribe-events-calendar
|
3760 |
msgid "(See all)"
|
3761 |
msgstr "(Alle anzeigen)"
|
3762 |
|
3763 |
+
#: public/template-tags/general.php:1033
|
|
|
3764 |
#, php-format
|
3765 |
+
#@ tribe-events-calendar
|
3766 |
msgid "Calendar powered by %sThe Events Calendar%s"
|
3767 |
msgstr "Kalender powered by %sThe Events Calendar%s"
|
3768 |
|
3769 |
+
#: public/template-tags/options.php:20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3770 |
#, php-format
|
3771 |
+
#@ tribe-events-calendar
|
3772 |
msgid "Your current Events URL is %s"
|
3773 |
+
msgstr "Ihre aktuelle Veranstaltungs-URL ist %s"
|
3774 |
|
3775 |
+
#: public/template-tags/options.php:31
|
|
|
3776 |
#, php-format
|
3777 |
+
#@ tribe-events-calendar
|
3778 |
+
msgid "You <strong>cannot</strong> use the same slug as above. The above should ideally be plural, and this singular.<br />Your single Event URL is like: %s"
|
3779 |
+
msgstr "Sie <strong>können nicht</strong>die gleiche URL wie ben nutzen. Idealerweise solle die obere im Plural und diese im Singular stehen.<br />Ihre Einzelveranstaltungs URL ist: %s"
|
|
|
|
|
|
|
|
|
3780 |
|
3781 |
+
#: views/single-event.php:23
|
3782 |
+
#@ tribe-events-calendar
|
|
|
3783 |
msgid "« All Events"
|
3784 |
+
msgstr "« Alle Veranstaltungen"
|
3785 |
|
3786 |
+
#: views/single-event.php:42
|
3787 |
+
#: views/single-event.php:73
|
3788 |
+
#@ tribe-events-calendar
|
3789 |
msgid "Event Navigation"
|
3790 |
msgstr "Veranstaltungsnavigation"
|
3791 |
|
3792 |
+
#: views/list/nav.php:16
|
3793 |
+
#@ tribe-events-calendar
|
|
|
3794 |
msgid "Events List Navigation"
|
3795 |
+
msgstr "Veranstaltungslisten Navigation"
|
3796 |
|
3797 |
+
#: views/list/single-event.php:76
|
3798 |
+
#@ tribe-events-calendar
|
3799 |
msgid "Find out more"
|
3800 |
msgstr "Erfahren Sie mehr"
|
3801 |
|
3802 |
+
#: views/modules/bar.php:31
|
3803 |
+
#: views/modules/bar.php:61
|
3804 |
+
#@ tribe-events-calendar
|
3805 |
msgid "Find Events"
|
3806 |
+
msgstr "Finden"
|
3807 |
|
3808 |
+
#: views/modules/bar.php:38
|
3809 |
+
#@ tribe-events-calendar
|
3810 |
msgid "Event Views Navigation"
|
3811 |
+
msgstr "Verstaltungsansicht Navigation"
|
3812 |
|
3813 |
+
#: views/modules/bar.php:39
|
3814 |
+
#@ tribe-events-calendar
|
|
|
3815 |
msgid "View As"
|
3816 |
msgstr "Anzeigen als"
|
3817 |
|
3818 |
+
#: views/month/nav.php:18
|
3819 |
+
#@ tribe-events-calendar
|
3820 |
msgid "Calendar Month Navigation"
|
3821 |
msgstr "Kalender Monatsnavigation"
|
3822 |
|
3823 |
+
#: views/tickets/attendees-email.php:25
|
3824 |
+
#@ tribe-events-calendar
|
|
|
3825 |
msgid "Attendee List"
|
3826 |
msgstr "Teilnehmerliste"
|
3827 |
|
3828 |
+
#: views/tickets/email.php:39
|
3829 |
+
#@ tribe-events-calendar
|
3830 |
msgid "Your tickets"
|
3831 |
msgstr "Ihre Karten"
|
3832 |
|
3833 |
+
#: views/tickets/email.php:320
|
3834 |
+
#@ tribe-events-calendar
|
3835 |
msgid "Ticket Type"
|
3836 |
msgstr "Kartenart"
|
3837 |
|
3838 |
+
#: views/tickets/email.php:324
|
3839 |
+
#@ tribe-events-calendar
|
3840 |
msgid "Purchaser"
|
3841 |
msgstr "Käufer"
|
3842 |
|
3843 |
+
#: admin-views/organizer-meta-box.php:28
|
3844 |
+
#@ tribe-events-calendar
|
3845 |
+
msgid "You may want to consider <a href=\"http://wordpress.org/plugins/tags/obfuscate\">obfuscating</a> any e-mail address published on your site to best avoid it getting harvested by spammers."
|
3846 |
+
msgstr "Wenn Sie E-Mail Adressen verschleiern möchten, um sich gegen Spam zu schützen, können Sie das <a href=\"http://wordpress.org/plugins/obfuscate-email/\\\">Obfuscate Plugin</a> verwenden."
|
3847 |
+
|
3848 |
+
#: admin-views/tribe-options-display.php:105
|
3849 |
+
#@ tribe-events-calendar
|
3850 |
+
msgid "Month view events per day"
|
3851 |
+
msgstr "Monatsansicht - Veranstaltungen pro Tag"
|
3852 |
+
|
3853 |
+
#: admin-views/tribe-options-display.php:106
|
3854 |
+
#@ tribe-events-calendar
|
3855 |
+
msgid "Allow more than the default 3 events per day in month view."
|
3856 |
+
msgstr "Erlauben Sie mehr als die 3 Standardveranstaltungen in der Monatsansicht."
|
3857 |
+
|
3858 |
+
#: admin-views/tribe-options-general.php:72
|
3859 |
+
#@ tribe-events-calendar
|
3860 |
+
msgid "Use Javascript to control date filtering"
|
3861 |
+
msgstr "Javascript nutzen, um nach Datum zu filtern"
|
3862 |
+
|
3863 |
+
#: admin-views/tribe-options-general.php:73
|
3864 |
+
#@ tribe-events-calendar
|
3865 |
+
msgid "This option is disabled when \"Disable the Event Search Bar\" is checked on the Display settings tab."
|
3866 |
+
msgstr "Diese Option is deaktiviert, wenn \"Benutzen Sie die Veranstaltungssuchleiste\" im Abzeigen Tab aktiviert ist."
|
3867 |
+
|
3868 |
+
#: admin-views/tribe-options-general.php:73
|
3869 |
+
#@ tribe-events-calendar
|
3870 |
+
msgid "Enable live ajax for datepicker on front end (User submit not required)."
|
3871 |
+
msgstr "Aktiviere Live Ajax für die Datumsauswahl im Frontend (Nutzerbestätigung nicht benötigt)."
|
3872 |
+
|
3873 |
+
#: admin-views/tribe-options-general.php:138
|
3874 |
+
#@ tribe-events-calendar
|
3875 |
+
msgid "Have an event that runs past midnight? Select a time after that event's end to avoid showing the event on the next day's calendar."
|
3876 |
+
msgstr "Gibt es Veranstaltungen, welche bis nach Mitternacht gehen? Wählen Sie eine Zeit, nach der das Veranstaltungsende liegt, um nicht am nächsten Tag auch im Kalender angezeigt wird."
|
3877 |
+
|
3878 |
+
#: lib/io/csv/admin-views/columns.php:22
|
3879 |
+
#, php-format
|
3880 |
+
#@ tribe-events-calendar
|
3881 |
+
msgid "Column Mapping: %s"
|
3882 |
+
msgstr "Spalten Mapping: %s"
|
3883 |
+
|
3884 |
+
#: lib/io/csv/admin-views/columns.php:28
|
3885 |
+
#@ tribe-events-calendar
|
3886 |
+
msgid "Please choose the fields that best match the columns in your CSV file."
|
3887 |
+
msgstr "Bitte wählen Sie das Feld, das am besten mit der Spalte in Ihrer CSV Datei übereinstimmt."
|
3888 |
+
|
3889 |
+
#: lib/io/csv/admin-views/columns.php:33
|
3890 |
+
#@ tribe-events-calendar
|
3891 |
+
msgid "Column Headings"
|
3892 |
+
msgstr "Spalten Überschriften"
|
3893 |
+
|
3894 |
+
#: lib/io/csv/admin-views/columns.php:34
|
3895 |
+
#@ tribe-events-calendar
|
3896 |
+
msgid "Event Fields"
|
3897 |
+
msgstr "Veranstaltungsfelder"
|
3898 |
+
|
3899 |
+
#: lib/io/csv/admin-views/columns.php:45
|
3900 |
+
#@ tribe-events-calendar
|
3901 |
+
msgid "Perform Import"
|
3902 |
+
msgstr "Import durchführen"
|
3903 |
+
|
3904 |
+
#: lib/io/csv/admin-views/header.php:11
|
3905 |
+
#@ tribe-events-calendar
|
3906 |
+
msgid "Events Import (CSV)"
|
3907 |
+
msgstr "Veranstaltungsimport (CSV)"
|
3908 |
+
|
3909 |
+
#: lib/io/csv/admin-views/import.php:17
|
3910 |
+
#@ tribe-events-calendar
|
3911 |
+
msgid "Please import venues and organizers <i>before</i> events."
|
3912 |
+
msgstr "Bitte importieren Sie die Veranstaltungsorte und die Veranstalter <i>vor</i> den Veranstaltungen."
|
3913 |
+
|
3914 |
+
#: lib/io/csv/admin-views/import.php:19
|
3915 |
+
#@ tribe-events-calendar
|
3916 |
+
msgid "<ol><li><strong>Organizer import requires:</strong> Organizer Name</li><li><strong>Venue import requires:</strong> Venue Name</li><li><strong>Event import requires:</strong> Event Name and Event Start Date</li></ol>"
|
3917 |
+
msgstr "<ol><li><strong>Um Veranstalter zu importieren wird benötigt:</strong> Name des Veranstalters</li><li><strong>Um Veranstaltungsorte zu importieren wird benötigt:</strong> Name des Veranstaltungsortes</li><li><strong>Um Veranstaltungen zu importieren wird benötigt:</strong> Veranstaltungsname und Startdatum</li></ol>"
|
3918 |
+
|
3919 |
+
#: lib/io/csv/admin-views/import.php:20
|
3920 |
+
#@ tribe-events-calendar
|
3921 |
+
msgid "To begin importing data, please choose the type of import and the CSV file."
|
3922 |
+
msgstr "Um mit dem Import zu starten wählen Sie den Typ des Imports und die CSV Datei,"
|
3923 |
+
|
3924 |
+
#: lib/io/csv/admin-views/import.php:27
|
3925 |
+
#@ tribe-events-calendar
|
3926 |
+
msgid "Import Type:"
|
3927 |
+
msgstr "Import Typ:"
|
3928 |
+
|
3929 |
+
#: lib/io/csv/admin-views/import.php:39
|
3930 |
+
#@ tribe-events-calendar
|
3931 |
+
msgid "CSV File:"
|
3932 |
+
msgstr "CSV Datei:"
|
3933 |
+
|
3934 |
+
#: lib/io/csv/admin-views/import.php:42
|
3935 |
+
#@ tribe-events-calendar
|
3936 |
+
msgid "Upload a properly formatted, UTF-8 encoded CSV file. Not sure if your file is UTF-8 encoded? Make sure to specify the character encoding when you save the file, or pass it through a <a href='http://i-tools.org/charset/exec?dest=utf-8&src=auto&download=1'>conversion tool</a>."
|
3937 |
+
msgstr "Laden Sie ein ordnungsgemäß formatierte, UTF-8 codierte CSV Datei hoch. Wissen Sie nicht, ob Ihre Datei UTF-8 codiert ist? Stellen Sie beim speichern der Datei sicher, dass Sie UTF-8 als Zeichensatz gewählt haben oder nutzen Sie ein <a href='http://i-tools.org/charset/exec?dest=utf-8&src=auto&download=1'>Konvertierungstool</a>."
|
3938 |
+
|
3939 |
+
#: lib/io/csv/admin-views/import.php:50
|
3940 |
+
#@ tribe-events-calendar
|
3941 |
+
msgid "This file has column names in the first row"
|
3942 |
+
msgstr "Diese Datei hat Spalten in der ersten Zeile"
|
3943 |
+
|
3944 |
+
#: lib/io/csv/admin-views/import.php:61
|
3945 |
+
#@ tribe-events-calendar
|
3946 |
+
msgid "Import CSV File"
|
3947 |
+
msgstr "Importiere CSV Datei"
|
3948 |
+
|
3949 |
+
#: lib/io/csv/admin-views/result.php:13
|
3950 |
+
#@ tribe-events-calendar
|
3951 |
+
msgid "Import Result"
|
3952 |
+
msgstr "Import Ergebnisse"
|
3953 |
+
|
3954 |
+
#: lib/io/csv/admin-views/result.php:15
|
3955 |
+
#@ tribe-events-calendar
|
3956 |
+
msgid "Import complete!"
|
3957 |
+
msgstr "Import abgeschlossen!"
|
3958 |
+
|
3959 |
+
#: lib/io/csv/admin-views/result.php:17
|
3960 |
+
#, php-format
|
3961 |
+
#@ tribe-events-calendar
|
3962 |
+
msgid "Inserted: %d"
|
3963 |
+
msgstr "Eingefügt: %d"
|
3964 |
+
|
3965 |
+
#: lib/io/csv/admin-views/result.php:18
|
3966 |
+
#, php-format
|
3967 |
+
#@ tribe-events-calendar
|
3968 |
+
msgid "Updated: %d"
|
3969 |
+
msgstr "Aktualisiert: %d"
|
3970 |
+
|
3971 |
+
#: lib/io/csv/admin-views/result.php:19
|
3972 |
+
#, php-format
|
3973 |
+
#@ tribe-events-calendar
|
3974 |
+
msgid "Skipped: %d"
|
3975 |
+
msgstr "Übersprungen: %d"
|
3976 |
+
|
3977 |
+
#: lib/io/csv/admin-views/result.php:23
|
3978 |
+
#@ tribe-events-calendar
|
3979 |
+
msgid "The import statistics above have the following meaning:"
|
3980 |
+
msgstr "Die Import Statistiken oben bedeuten folgendes:"
|
3981 |
+
|
3982 |
+
#: lib/io/csv/admin-views/result.php:24
|
3983 |
+
#@ tribe-events-calendar
|
3984 |
+
msgid "<ol><li><strong>Inserted:</strong> A new item was inserted successfully.</li><li><strong>Updated:</strong> An item was found with the same name and/or start date. The existing item was updated with the new value from the file.</li><li><strong>Skipped:</strong> A row was found in the CSV file that could not be imported. Please see below for the invalid rows.</li></ol>"
|
3985 |
+
msgstr "<ol><li><strong>Eingefügt::</strong> Ein neues Element wurde erfolgreich eingefügt.</li><li><strong>Aktualisiert:</strong> Ein Element mit dem gleichen Namen und/oder Startdatum wurde gefunden. Das existierende Element wurde mit den neuen Werten aus der Datei aktualisiert.</li><li><strong>Übersprungen:</strong> Es wurde eine Zeile in der CSV Datei gefunedn, weche nicht importiert werden konnte. Unten finden Sie mehr Informationen zu den ungültigen Zeilen.</li></ol>"
|
3986 |
+
|
3987 |
+
#: lib/io/csv/admin-views/result.php:27
|
3988 |
+
#, php-format
|
3989 |
+
#@ tribe-events-calendar
|
3990 |
+
msgid "Skipped row numbers: %s"
|
3991 |
+
msgstr "Übersprungene Zeilen: %s"
|
3992 |
+
|
3993 |
+
#: lib/io/csv/classes/TribeEventsImporter_AdminPage.php:15
|
3994 |
+
#: lib/io/csv/classes/TribeEventsImporter_AdminPage.php:16
|
3995 |
+
#@ tribe-events-calendar
|
3996 |
+
msgid "CSV Import"
|
3997 |
+
msgstr "CSV Import"
|
3998 |
+
|
3999 |
+
#: lib/io/csv/classes/TribeEventsImporter_AdminPage.php:29
|
4000 |
+
#: lib/io/csv/classes/TribeEventsImporter_AdminPage.php:147
|
4001 |
+
#@ tribe-events-calendar
|
4002 |
+
msgid "The file went away. Please try again."
|
4003 |
+
msgstr "Die Datei wurde nicht gefunden. Bitte versuchen Sie es nochmal."
|
4004 |
+
|
4005 |
+
#: lib/io/csv/classes/TribeEventsImporter_AdminPage.php:113
|
4006 |
+
#@ tribe-events-calendar
|
4007 |
+
msgid "We were unable to process your request. Please try again."
|
4008 |
+
msgstr "Die Durchführung konnte nicht abgeschlossen werden. Bitte versuchen Sie es erneut."
|
4009 |
+
|
4010 |
+
#: lib/io/csv/classes/TribeEventsImporter_AdminPage.php:154
|
4011 |
+
#@ tribe-events-calendar
|
4012 |
+
msgid "<p>The following fields are required for a successful import:</p>"
|
4013 |
+
msgstr "<p>Die nachfolgenden Felder werden für einen erfolgreichen Import benötigt:</p>"
|
4014 |
+
|
4015 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:33
|
4016 |
+
#@ tribe-events-calendar
|
4017 |
+
msgid "Do Not Import"
|
4018 |
+
msgstr "Nicht importieren"
|
4019 |
+
|
4020 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:50
|
4021 |
+
#@ tribe-events-calendar
|
4022 |
+
msgid "Event Name"
|
4023 |
+
msgstr "Name der Veranstaltung"
|
4024 |
+
|
4025 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:51
|
4026 |
+
#@ tribe-events-calendar
|
4027 |
+
msgid "Event Description"
|
4028 |
+
msgstr "Beschreibung der Veranstaltung"
|
4029 |
+
|
4030 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:52
|
4031 |
+
#@ tribe-events-calendar
|
4032 |
+
msgid "Event Start Date"
|
4033 |
+
msgstr "Startdatum der Veranstaltung"
|
4034 |
+
|
4035 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:53
|
4036 |
+
#@ tribe-events-calendar
|
4037 |
+
msgid "Event Start Time"
|
4038 |
+
msgstr "Startzeit der Veranstaltung"
|
4039 |
+
|
4040 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:54
|
4041 |
+
#@ tribe-events-calendar
|
4042 |
+
msgid "Event End Date"
|
4043 |
+
msgstr "Enddatum der Veranstaltung"
|
4044 |
+
|
4045 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:55
|
4046 |
+
#@ tribe-events-calendar
|
4047 |
+
msgid "Event End Time"
|
4048 |
+
msgstr "Endzeit der Veranstaltung"
|
4049 |
+
|
4050 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:56
|
4051 |
+
#@ tribe-events-calendar
|
4052 |
+
msgid "All Day Event"
|
4053 |
+
msgstr "Ganztägige Veranstaltung"
|
4054 |
+
|
4055 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:57
|
4056 |
+
#@ tribe-events-calendar
|
4057 |
+
msgid "Event Venue Name"
|
4058 |
+
msgstr "Name des Veranstaltungsortes"
|
4059 |
+
|
4060 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:58
|
4061 |
+
#@ tribe-events-calendar
|
4062 |
+
msgid "Event Organizer Name"
|
4063 |
+
msgstr "Name des Veranstalters"
|
4064 |
+
|
4065 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:59
|
4066 |
+
#@ tribe-events-calendar
|
4067 |
+
msgid "Event Show Map Link"
|
4068 |
+
msgstr "'Google Maps'-Karten Link aktivieren"
|
4069 |
+
|
4070 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:60
|
4071 |
+
#@ tribe-events-calendar
|
4072 |
+
msgid "Event Show Map"
|
4073 |
+
msgstr "'Google Maps'-Karten aktivieren"
|
4074 |
+
|
4075 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:62
|
4076 |
+
#@ tribe-events-calendar
|
4077 |
+
msgid "Event Phone"
|
4078 |
+
msgstr "Telefon"
|
4079 |
+
|
4080 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:70
|
4081 |
+
#@ tribe-events-calendar
|
4082 |
+
msgid "Venue Name"
|
4083 |
+
msgstr "Veranstaltungsort"
|
4084 |
+
|
4085 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:71
|
4086 |
+
#@ tribe-events-calendar
|
4087 |
+
msgid "Venue Country"
|
4088 |
+
msgstr "Land"
|
4089 |
+
|
4090 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:72
|
4091 |
+
#@ tribe-events-calendar
|
4092 |
+
msgid "Venue Address"
|
4093 |
+
msgstr "Adresse"
|
4094 |
+
|
4095 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:73
|
4096 |
+
#@ tribe-events-calendar
|
4097 |
+
msgid "Venue Addres 2"
|
4098 |
+
msgstr "Adresse 2"
|
4099 |
+
|
4100 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:74
|
4101 |
+
#@ tribe-events-calendar
|
4102 |
+
msgid "Venue City"
|
4103 |
+
msgstr "Ort"
|
4104 |
+
|
4105 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:75
|
4106 |
+
#@ tribe-events-calendar
|
4107 |
+
msgid "Venue State/Province"
|
4108 |
+
msgstr "Bundesland/Provinz/Kanton"
|
4109 |
+
|
4110 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:76
|
4111 |
+
#@ tribe-events-calendar
|
4112 |
+
msgid "Venue Zip"
|
4113 |
+
msgstr "PLZ"
|
4114 |
+
|
4115 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:77
|
4116 |
+
#@ tribe-events-calendar
|
4117 |
+
msgid "Venue Phone"
|
4118 |
+
msgstr "Telefon"
|
4119 |
+
|
4120 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:83
|
4121 |
+
#@ tribe-events-calendar
|
4122 |
+
msgid "Organizer Name"
|
4123 |
+
msgstr "Name des Veranstalters"
|
4124 |
+
|
4125 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:84
|
4126 |
+
#@ tribe-events-calendar
|
4127 |
+
msgid "Organizer Email"
|
4128 |
+
msgstr "E-Mail"
|
4129 |
+
|
4130 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:85
|
4131 |
+
#@ tribe-events-calendar
|
4132 |
+
msgid "Organizer Website"
|
4133 |
+
msgstr "Website"
|
4134 |
+
|
4135 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:86
|
4136 |
+
#@ tribe-events-calendar
|
4137 |
+
msgid "Organizer Phone"
|
4138 |
+
msgstr "Telefon"
|
4139 |
+
|
4140 |
+
#: lib/io/csv/classes/TribeEventsImporter_FileImporter.php:38
|
4141 |
+
#, php-format
|
4142 |
+
#@ tribe-events-calendar
|
4143 |
+
msgid "No importer defined for %s"
|
4144 |
+
msgstr "Keine Importfunktion für %s definiert "
|
4145 |
+
|
4146 |
+
#: lib/io/csv/classes/TribeEventsImporter_FileImporter.php:110
|
4147 |
+
#, php-format
|
4148 |
+
#@ tribe-events-calendar
|
4149 |
+
msgid "Missing required fields in row %d."
|
4150 |
+
msgstr "Notwendige Felder in Zeile %d nicht vorhanden."
|
4151 |
+
|
4152 |
+
#: lib/io/csv/classes/TribeEventsImporter_FileImporter.php:117
|
4153 |
+
#, php-format
|
4154 |
+
#@ tribe-events-calendar
|
4155 |
+
msgid "Failed to import record in row %d."
|
4156 |
+
msgstr "Importieren für Zeile %d fehlgeschlagen."
|
4157 |
+
|
4158 |
+
#: lib/io/csv/classes/TribeEventsImporter_FileImporter.php:126
|
4159 |
+
#, php-format
|
4160 |
+
#@ tribe-events-calendar
|
4161 |
+
msgid "%s (post ID %d) updated."
|
4162 |
+
msgstr "%s (Post ID %d) aktualisiert."
|
4163 |
+
|
4164 |
+
#: lib/io/csv/classes/TribeEventsImporter_FileImporter.php:130
|
4165 |
+
#, php-format
|
4166 |
+
#@ tribe-events-calendar
|
4167 |
+
msgid "%s (post ID %d) created."
|
4168 |
+
msgstr "%s (Post ID %d) erstellt."
|
4169 |
+
|
4170 |
+
#: lib/io/csv/classes/TribeEventsImporter_FileUploader.php:28
|
4171 |
+
#, php-format
|
4172 |
+
#@ tribe-events-calendar
|
4173 |
+
msgid "Temporary file not found. Could not save %s."
|
4174 |
+
msgstr "Temporäre Datei nicht gefunden. Konnte %s nicht speichern."
|
4175 |
+
|
4176 |
+
#: lib/io/csv/classes/TribeEventsImporter_FileUploader.php:36
|
4177 |
+
#, php-format
|
4178 |
+
#@ tribe-events-calendar
|
4179 |
+
msgid "Could not save %s."
|
4180 |
+
msgstr "Konnte %s nicht speichern."
|
4181 |
+
|
4182 |
+
#: lib/template-classes/month.php:115
|
4183 |
+
#: lib/tribe-template-factory.class.php:271
|
4184 |
+
#@ tribe-events-calendar-pro
|
4185 |
+
msgid "There were no results found."
|
4186 |
+
msgstr "Es wurden keine Ergebnisse gefunden."
|
4187 |
+
|
4188 |
+
#: lib/the-events-calendar.class.php:3474
|
4189 |
+
#: lib/the-events-calendar.class.php:3491
|
4190 |
+
#@ the-events-calendar
|
4191 |
+
msgid "Date out of range."
|
4192 |
+
msgstr "Datum außerhalb des Bereichs."
|
4193 |
+
|
4194 |
+
#: lib/the-events-calendar.class.php:4094
|
4195 |
+
#: lib/the-events-calendar.class.php:4096
|
4196 |
+
#@ tribe-events-calendar
|
4197 |
+
msgid "Search"
|
4198 |
+
msgstr "Suche"
|
4199 |
+
|
4200 |
+
#: lib/tribe-template-factory.class.php:256
|
4201 |
+
#, php-format
|
4202 |
+
#@ tribe-events-calendar
|
4203 |
+
msgid "There were no results found for <strong>\"%s\"</strong>."
|
4204 |
+
msgstr "Es gab keine Ergebnisse für <strong>\"%s\"</strong>."
|
4205 |
+
|
4206 |
+
#: lib/tribe-template-factory.class.php:259
|
4207 |
+
#, php-format
|
4208 |
+
#@ tribe-events-calendar-pro
|
4209 |
+
msgid "No results were found for events in or near <strong>\"%s\"</strong>."
|
4210 |
+
msgstr "Es wurden keine Ergebnisse für Veranstaltungen in der Nähe von <strong>\"%s\"</strong> gefunden."
|
4211 |
+
|
4212 |
+
#: lib/tribe-template-factory.class.php:262
|
4213 |
+
#, php-format
|
4214 |
+
#@ tribe-events-calendar
|
4215 |
+
msgid "No upcoming events listed under %s. Check out upcoming events for this category or view the full calendar."
|
4216 |
+
msgstr "Keine anstehenden Veranstaltungen unter %s. Prüfen Sie die anstehenden Veranstaltungen für diese Kategorie oder wählen Sie den gesamten Kalender."
|
4217 |
+
|
4218 |
+
#: lib/tribe-template-factory.class.php:265
|
4219 |
+
#, php-format
|
4220 |
+
#@ tribe-events-calendar
|
4221 |
+
msgid "No matching events listed under %s. Check out upcoming events for this category or view the full calendar."
|
4222 |
+
msgstr "Keine übereinstimmenden Veranstaltungen unter %s. Prüfen Sie die anstehenden Veranstaltungen für diese Kategorie oder wählen Sie den gesamten Kalender."
|
4223 |
+
|
4224 |
+
#: lib/tribe-templates.class.php:471
|
4225 |
+
#, php-format
|
4226 |
+
#@ tribe-events
|
4227 |
+
msgid "Template overrides should be moved to the correct subdirectory: %s"
|
4228 |
+
msgstr "Vorlage sollte in das richtige Unterverzeichnis verschoben werden: %s"
|
4229 |
+
|
4230 |
+
#: lib/tribe-templates.class.php:512
|
4231 |
+
#, php-format
|
4232 |
+
#@ tribe-events
|
4233 |
+
msgid "Template overrides should be moved to the correct subdirectory: tribe_get_template_part('%s')"
|
4234 |
+
msgstr "Vorlage sollte in das richtige Unterverzeichnis verschoben werden: tribe_get_template_part('%s')"
|
4235 |
+
|
4236 |
+
#: public/advanced-functions/meta.php:76
|
4237 |
+
#: public/advanced-functions/meta.php:85
|
4238 |
+
#@ tribe-events-calendar
|
4239 |
+
msgid "Time:"
|
4240 |
+
msgstr "Zeit:"
|
4241 |
+
|
4242 |
+
#. gettext fix: identical singular and plural forms found, that may be ambiguous! Please check the code!
|
4243 |
+
#: public/template-tags/general.php:277
|
4244 |
+
#: lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:63
|
4245 |
+
#: lib/the-events-calendar.class.php:1402
|
4246 |
+
#@ {bug-detected}
|
4247 |
+
#@ tribe-events-calendar
|
4248 |
+
msgid "Event Category"
|
4249 |
+
msgid_plural "Event Categories"
|
4250 |
+
msgstr[0] "Veranstaltungskategorie"
|
4251 |
+
msgstr[1] "Veranstaltungskategorien"
|
4252 |
+
|
lang/tribe-events-calendar-fr_FR.mo
CHANGED
Binary file
|
lang/tribe-events-calendar-fr_FR.po
CHANGED
@@ -5,9 +5,9 @@ msgid ""
|
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: The Events Calendar\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
-
"POT-Creation-Date: 2013-
|
9 |
-
"PO-Revision-Date: 2013-
|
10 |
-
"Last-Translator:
|
11 |
"Language-Team: Dom Monhardt <thatsniceuk@gmail.com>\n"
|
12 |
"Language: fr\n"
|
13 |
"MIME-Version: 1.0\n"
|
@@ -36,7 +36,7 @@ msgstr "Version"
|
|
36 |
#
|
37 |
#: ../admin-views/app-shop.php:53
|
38 |
msgid "Last Update"
|
39 |
-
msgstr "Dernière mise
|
40 |
|
41 |
#: ../admin-views/event-sidebar-options.php:11
|
42 |
msgid "Hide From Event Listings"
|
@@ -44,19 +44,18 @@ msgstr "Masquer sur la liste des événements"
|
|
44 |
|
45 |
#: ../admin-views/event-sidebar-options.php:12
|
46 |
msgid "Sticky in Calendar View"
|
47 |
-
msgstr "
|
48 |
|
49 |
#
|
50 |
#: ../admin-views/events-audit-trail.php:41
|
51 |
msgid "Auditing Information"
|
52 |
-
msgstr "
|
53 |
|
54 |
#: ../admin-views/events-audit-trail.php:47
|
55 |
msgid "Created by:"
|
56 |
msgstr "Crée par :"
|
57 |
|
58 |
#: ../admin-views/events-audit-trail.php:51
|
59 |
-
#, fuzzy
|
60 |
msgid "Audit Trail:"
|
61 |
msgstr "Piste d'Audit :"
|
62 |
|
@@ -82,7 +81,7 @@ msgstr "Événement sur toute la journée :"
|
|
82 |
#
|
83 |
#: ../admin-views/events-meta-box.php:39
|
84 |
msgid "Start Date & Time:"
|
85 |
-
msgstr "
|
86 |
|
87 |
#: ../admin-views/events-meta-box.php:42 ../admin-views/events-meta-box.php:63
|
88 |
msgid "YYYY-MM-DD"
|
@@ -91,7 +90,7 @@ msgstr "AAAA-MM-JJ "
|
|
91 |
#
|
92 |
#: ../admin-views/events-meta-box.php:60
|
93 |
msgid "End Date & Time:"
|
94 |
-
msgstr "
|
95 |
|
96 |
#: ../admin-views/events-meta-box.php:85
|
97 |
msgid "Event Location Details"
|
@@ -111,6 +110,7 @@ msgid "URL:"
|
|
111 |
msgstr "Lien :"
|
112 |
|
113 |
#: ../admin-views/events-meta-box.php:115
|
|
|
114 |
msgid "Event Cost"
|
115 |
msgstr "Prix d'entrée de l'événement "
|
116 |
|
@@ -119,7 +119,7 @@ msgid "Currency Symbol:"
|
|
119 |
msgstr "Symbole de la devise"
|
120 |
|
121 |
#: ../admin-views/events-meta-box.php:122
|
122 |
-
#: ../public/advanced-functions/meta.php:
|
123 |
msgid "Cost:"
|
124 |
msgstr "Prix :"
|
125 |
|
@@ -136,25 +136,35 @@ msgstr "Nom de l'organisateur :"
|
|
136 |
#: ../admin-views/organizer-meta-box.php:19
|
137 |
#: ../admin-views/venue-meta-box.php:93
|
138 |
#: ../admin-views/tickets/attendees.php:39
|
139 |
-
#: ../public/advanced-functions/meta.php:
|
140 |
-
#: ../public/advanced-functions/meta.php:
|
141 |
msgid "Phone:"
|
142 |
msgstr "Téléphone :"
|
143 |
|
144 |
#: ../admin-views/organizer-meta-box.php:23
|
145 |
#: ../admin-views/venue-meta-box.php:97
|
146 |
#: ../admin-views/tickets/attendees.php:45
|
147 |
-
#: ../public/advanced-functions/meta.php:
|
148 |
-
#: ../public/advanced-functions/meta.php:
|
149 |
-
#: ../public/advanced-functions/meta.php:
|
150 |
msgid "Website:"
|
151 |
msgstr "Site Web :"
|
152 |
|
153 |
#: ../admin-views/organizer-meta-box.php:27
|
154 |
-
#: ../public/advanced-functions/meta.php:
|
155 |
msgid "Email:"
|
156 |
msgstr "Courriel :"
|
157 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
#: ../admin-views/recurrence-dialog.php:13
|
159 |
msgid ""
|
160 |
"Would you like to change only this instance of the event, or all future "
|
@@ -192,8 +202,8 @@ msgid ""
|
|
192 |
"Would you like to delete only this instance of the event, or all future "
|
193 |
"events in this series?"
|
194 |
msgstr ""
|
195 |
-
"Voulez
|
196 |
-
"futures événements
|
197 |
|
198 |
#: ../admin-views/recurrence-dialog.php:23
|
199 |
msgid "All other future events in the series will not be deleted."
|
@@ -210,15 +220,16 @@ msgstr "Thème par défaut des événements"
|
|
210 |
|
211 |
#: ../admin-views/tribe-options-display.php:5
|
212 |
msgid "Default Page Template"
|
213 |
-
msgstr "
|
214 |
|
215 |
-
#
|
|
|
216 |
#: ../admin-views/tribe-options-display.php:29
|
217 |
msgid "Display Settings"
|
218 |
-
msgstr "
|
219 |
|
220 |
#: ../admin-views/tribe-options-display.php:34
|
221 |
-
#,
|
222 |
msgid ""
|
223 |
"<p>The settings below control the display of your calendar. If things don't "
|
224 |
"look right, try switching between the three style sheet options or pick a "
|
@@ -230,33 +241,33 @@ msgid ""
|
|
230 |
msgstr ""
|
231 |
"<p>Les réglages çi-dessous contrôlent l'affichage de votre calendrier. Si "
|
232 |
"l'affichage n'est pas normal, essayez de changer entre les 3 options de "
|
233 |
-
"feuilles de styles ou
|
234 |
-
"y
|
235 |
-
"nos <a href=\"%s\">Guides de thèmes (anglais)</a> pour
|
236 |
"des modifications personnalisées. Besoin de créer un nouvel affichage? "
|
237 |
"Téléchargez une copie du plugin <a href=\"%s\">Sample Agenda View sur Github "
|
238 |
-
"(anglais)</a></p
|
239 |
|
240 |
#
|
241 |
#: ../admin-views/tribe-options-display.php:49
|
242 |
msgid "Basic Template Settings"
|
243 |
-
msgstr "Réglages
|
244 |
|
245 |
#
|
246 |
#: ../admin-views/tribe-options-display.php:53
|
247 |
msgid "Default stylesheet used for events templates"
|
248 |
-
msgstr "Feuille de style par défaut
|
249 |
|
250 |
#: ../admin-views/tribe-options-display.php:56
|
251 |
msgid "Skeleton Styles"
|
252 |
-
msgstr "
|
253 |
|
254 |
#: ../admin-views/tribe-options-display.php:58
|
255 |
msgid ""
|
256 |
"Only includes enough css to achieve complex layouts like calendar and week "
|
257 |
"view."
|
258 |
msgstr ""
|
259 |
-
"
|
260 |
"comme la vue calendrier ou par semaine."
|
261 |
|
262 |
#: ../admin-views/tribe-options-display.php:60
|
@@ -280,14 +291,14 @@ msgstr "Apparence complète pour les événements."
|
|
280 |
#
|
281 |
#: ../admin-views/tribe-options-display.php:73
|
282 |
msgid "Events template"
|
283 |
-
msgstr "
|
284 |
|
285 |
#: ../admin-views/tribe-options-display.php:74
|
286 |
msgid ""
|
287 |
"Choose a page template to control the appearance of your calendar and event "
|
288 |
"content."
|
289 |
msgstr ""
|
290 |
-
"Choisissez un
|
291 |
"et le contenu de vos événements."
|
292 |
|
293 |
#: ../admin-views/tribe-options-display.php:82
|
@@ -303,27 +314,25 @@ msgid "Default view"
|
|
303 |
msgstr "Affichage par défaut"
|
304 |
|
305 |
#: ../admin-views/tribe-options-display.php:98
|
306 |
-
#, fuzzy
|
307 |
msgid "Disable the Event Search Bar"
|
308 |
-
msgstr "
|
309 |
|
310 |
#: ../admin-views/tribe-options-display.php:99
|
311 |
-
#, fuzzy
|
312 |
msgid "Check this to use the classic header."
|
313 |
-
msgstr "
|
314 |
|
315 |
#: ../admin-views/tribe-options-display.php:105
|
316 |
msgid "Month view events per day"
|
317 |
-
msgstr "Nombre d'événements par jour en vue
|
318 |
|
319 |
#: ../admin-views/tribe-options-display.php:106
|
320 |
msgid "Allow more than the default 3 events per day in month view."
|
321 |
-
msgstr "Permettre plus
|
322 |
|
323 |
#
|
324 |
#: ../admin-views/tribe-options-display.php:113
|
325 |
msgid "Advanced Template Settings"
|
326 |
-
msgstr "Réglages avancés
|
327 |
|
328 |
#
|
329 |
#: ../admin-views/tribe-options-display.php:117
|
@@ -419,7 +428,7 @@ msgstr ""
|
|
419 |
#
|
420 |
#: ../admin-views/tribe-options-general.php:47
|
421 |
msgid "Show The Events Calendar link"
|
422 |
-
msgstr "Voir le lien
|
423 |
|
424 |
#
|
425 |
#: ../admin-views/tribe-options-general.php:61
|
@@ -431,41 +440,52 @@ msgid "Number of events to show per page"
|
|
431 |
msgstr "Nombre d'événements à afficher par page"
|
432 |
|
433 |
#: ../admin-views/tribe-options-general.php:72
|
434 |
-
msgid "Use Javascript to control
|
435 |
-
msgstr "Utilisez Javascript pour contrôler le
|
436 |
|
437 |
#: ../admin-views/tribe-options-general.php:73
|
438 |
-
msgid "
|
439 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
440 |
|
441 |
#
|
442 |
-
#: ../admin-views/tribe-options-general.php:
|
443 |
msgid "Show comments"
|
444 |
-
msgstr "
|
445 |
|
446 |
-
#: ../admin-views/tribe-options-general.php:
|
447 |
msgid "Enable comments on event pages."
|
448 |
-
msgstr "
|
449 |
|
450 |
-
#: ../admin-views/tribe-options-general.php:
|
451 |
msgid "Include events in main blog loop"
|
452 |
-
msgstr "Intègre les événements dans la principale
|
453 |
|
454 |
-
#: ../admin-views/tribe-options-general.php:
|
455 |
msgid ""
|
456 |
"Show events with the site's other posts. When this box is checked, events "
|
457 |
"will also continue to appear on the default events page."
|
458 |
msgstr ""
|
459 |
-
"Affiche les événements avec les autres articles du site.
|
460 |
"est cochée, les événements seront toujours affichés sur la page d'événements "
|
461 |
"par défaut."
|
462 |
|
463 |
-
#: ../admin-views/tribe-options-general.php:
|
464 |
-
#: ../admin-views/tribe-options-general.php:
|
465 |
msgid "Events URL slug"
|
466 |
msgstr "Nom (slug) de L'URL des événements"
|
467 |
|
468 |
-
#: ../admin-views/tribe-options-general.php:
|
469 |
#, php-format
|
470 |
msgid ""
|
471 |
"You cannot edit the slug for your events page as you do not have pretty "
|
@@ -473,60 +493,60 @@ msgid ""
|
|
473 |
"%s</a>. In order to edit the slug here, <a href=\"%soptions-permalink.php"
|
474 |
"\">enable pretty permalinks</a>."
|
475 |
msgstr ""
|
476 |
-
"Vous ne pouvez pas modifier le
|
477 |
-
"
|
478 |
-
"est <a href=\"%s\">%s</a>. Pour pouvoir modifier
|
479 |
-
"
|
480 |
|
481 |
#
|
482 |
-
#: ../admin-views/tribe-options-general.php:
|
483 |
#: ../public/template-tags/options.php:20
|
484 |
msgid "The slug used for building the events URL."
|
485 |
-
msgstr "Le
|
486 |
|
487 |
-
#: ../admin-views/tribe-options-general.php:
|
488 |
#, php-format
|
489 |
msgid "Your current events URL is: %s"
|
490 |
msgstr "Le lien de l'événement est : %s"
|
491 |
|
492 |
#
|
493 |
-
#: ../admin-views/tribe-options-general.php:
|
494 |
#: ../public/template-tags/options.php:43
|
495 |
msgid "Here is the iCal feed URL for your events:"
|
496 |
msgstr "Voici le lien du flux iCal pour vos événements :"
|
497 |
|
498 |
#
|
499 |
-
#: ../admin-views/tribe-options-general.php:
|
500 |
msgid "Single event URL slug"
|
501 |
msgstr "Permalien pour un événement unique"
|
502 |
|
503 |
-
#: ../admin-views/tribe-options-general.php:
|
504 |
#, php-format
|
505 |
msgid ""
|
506 |
"The above should ideally be plural, and this singular.<br />Your single "
|
507 |
"event URL is: %s"
|
508 |
msgstr ""
|
509 |
-
"Ci-
|
510 |
">Le lien pour vos événements uniques est: %s"
|
511 |
|
512 |
-
#: ../admin-views/tribe-options-general.php:
|
513 |
msgid "End of day cutoff"
|
514 |
msgstr "Heure de clôture de la fin de journée"
|
515 |
|
516 |
-
#: ../admin-views/tribe-options-general.php:
|
517 |
msgid ""
|
518 |
-
"Have
|
519 |
-
"avoid
|
520 |
msgstr ""
|
521 |
-
"
|
522 |
-
"de
|
523 |
-
"
|
524 |
|
525 |
-
#: ../admin-views/tribe-options-general.php:
|
526 |
msgid "Default currency symbol"
|
527 |
msgstr "Symbole de devise par défaut"
|
528 |
|
529 |
-
#: ../admin-views/tribe-options-general.php:
|
530 |
msgid ""
|
531 |
"Set the default currency symbol for event costs. Note that this only impacts "
|
532 |
"future events, and changes made will not apply retroactively."
|
@@ -536,58 +556,57 @@ msgstr ""
|
|
536 |
"changements effectués ne s'appliquerons pas rétroactivement."
|
537 |
|
538 |
#
|
539 |
-
#: ../admin-views/tribe-options-general.php:
|
540 |
msgid "Map Settings"
|
541 |
msgstr "Réglages des cartes"
|
542 |
|
543 |
-
#: ../admin-views/tribe-options-general.php:
|
544 |
msgid "Enable Google Maps"
|
545 |
msgstr "Autoriser Google Maps "
|
546 |
|
547 |
-
#: ../admin-views/tribe-options-general.php:
|
548 |
msgid "Check to enable maps for events and venues."
|
549 |
-
msgstr "
|
550 |
|
551 |
-
#: ../admin-views/tribe-options-general.php:
|
552 |
-
#, fuzzy
|
553 |
msgid "Google Maps default zoom level"
|
554 |
-
msgstr "Niveau de zoom par défaut de Google Maps
|
555 |
|
556 |
-
#: ../admin-views/tribe-options-general.php:
|
557 |
msgid "0 = zoomed out; 21 = zoomed in."
|
558 |
-
msgstr "0 =
|
559 |
|
560 |
#
|
561 |
-
#: ../admin-views/tribe-options-general.php:
|
562 |
msgid "Miscellaneous Settings"
|
563 |
-
msgstr "
|
564 |
|
565 |
-
#: ../admin-views/tribe-options-general.php:
|
566 |
msgid "Duplicate Venues & Organizers"
|
567 |
-
msgstr "
|
568 |
|
569 |
-
#: ../admin-views/tribe-options-general.php:
|
570 |
#: ../lib/tribe-amalgamator.php:252
|
571 |
msgid "Merge Duplicates"
|
572 |
msgstr "Fusionner les duplicatas"
|
573 |
|
574 |
-
#: ../admin-views/tribe-options-general.php:
|
575 |
msgid ""
|
576 |
"You might find duplicate venues and organizers when updating The Events "
|
577 |
"Calendar from a pre-3.0 version. Click this button to automatically merge "
|
578 |
"identical venues and organizers."
|
579 |
msgstr ""
|
580 |
-
"
|
581 |
-
"
|
582 |
-
"
|
583 |
-
"
|
584 |
|
585 |
#
|
586 |
-
#: ../admin-views/tribe-options-general.php:
|
587 |
msgid "Debug mode"
|
588 |
-
msgstr "Mode de
|
589 |
|
590 |
-
#: ../admin-views/tribe-options-general.php:
|
591 |
#, php-format
|
592 |
msgid ""
|
593 |
"Enable this option to log debug information. By default this will log to "
|
@@ -595,21 +614,16 @@ msgid ""
|
|
595 |
"browser, then we recommend that you install the %s and look for the \"Tribe"
|
596 |
"\" tab in the debug output."
|
597 |
msgstr ""
|
598 |
-
"Activer cette option pour enregistrer les informations de
|
599 |
-
"défaut les informations seront enregistrés sur
|
600 |
-
"
|
601 |
"enregistrés sur votre navigateur, nous vous recommandons d'installer %s et "
|
602 |
"de rechercher l'onglet \"Tribe\"."
|
603 |
|
604 |
-
#: ../admin-views/tribe-options-general.php:
|
605 |
msgid "Debug Bar Plugin"
|
606 |
msgstr "Plugin Debug Bar"
|
607 |
|
608 |
-
#: ../admin-views/tribe-options-help.php:18
|
609 |
-
msgctxt "not available"
|
610 |
-
msgid "n/a"
|
611 |
-
msgstr "non disponible"
|
612 |
-
|
613 |
#: ../admin-views/tribe-options-help.php:19
|
614 |
msgid "You need to upgrade!"
|
615 |
msgstr "Vous devez mettre à jour!"
|
@@ -654,9 +668,9 @@ msgid "FAQ"
|
|
654 |
msgstr "FAQ"
|
655 |
|
656 |
#: ../admin-views/tribe-options-help.php:79
|
657 |
-
#: ../lib/the-events-calendar.class.php:
|
658 |
-
#: ../lib/the-events-calendar.class.php:
|
659 |
-
#: ../lib/the-events-calendar.class.php:
|
660 |
msgid "Help"
|
661 |
msgstr "Aide"
|
662 |
|
@@ -666,7 +680,7 @@ msgstr "Tutoriaux"
|
|
666 |
|
667 |
#: ../admin-views/tribe-options-help.php:87
|
668 |
msgid "Release Notes"
|
669 |
-
msgstr "Note de
|
670 |
|
671 |
#: ../admin-views/tribe-options-help.php:91
|
672 |
msgid "Forums"
|
@@ -690,6 +704,10 @@ msgid ""
|
|
690 |
"accompanying screenshots, the primer aims to take you from zero to hero in "
|
691 |
"no time."
|
692 |
msgstr ""
|
|
|
|
|
|
|
|
|
693 |
|
694 |
#: ../admin-views/tribe-options-help.php:104
|
695 |
#, php-format
|
@@ -699,6 +717,11 @@ msgid ""
|
|
699 |
"helpful as it aims to address any basic install questions not addressed by "
|
700 |
"the new user primer."
|
701 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
702 |
|
703 |
#: ../admin-views/tribe-options-help.php:106
|
704 |
#, php-format
|
@@ -707,12 +730,18 @@ msgid ""
|
|
707 |
"example plugin that demonstrates how to register a new view. You can "
|
708 |
"%sdownload the plugin at GitHub%s to get started."
|
709 |
msgstr ""
|
|
|
|
|
|
|
710 |
|
711 |
#: ../admin-views/tribe-options-help.php:108
|
712 |
msgid ""
|
713 |
"Otherwise, if you're feeling adventurous, you can get started by heading to "
|
714 |
"the Events menu and adding your first event."
|
715 |
msgstr ""
|
|
|
|
|
|
|
716 |
|
717 |
#: ../admin-views/tribe-options-help.php:112
|
718 |
#, php-format
|
@@ -721,6 +750,9 @@ msgid ""
|
|
721 |
"our users. Head over to our %sSupport Page%s and you'll find lots of great "
|
722 |
"resources, including:"
|
723 |
msgstr ""
|
|
|
|
|
|
|
724 |
|
725 |
#: ../admin-views/tribe-options-help.php:114
|
726 |
#, php-format
|
@@ -728,6 +760,8 @@ msgid ""
|
|
728 |
"%sTemplate tags, functions, and hooks & filters%s for The Events Calendar "
|
729 |
"& Events Calendar PRO"
|
730 |
msgstr ""
|
|
|
|
|
731 |
|
732 |
#: ../admin-views/tribe-options-help.php:116
|
733 |
#, php-format
|
@@ -735,6 +769,8 @@ msgid ""
|
|
735 |
"%sFrequently Asked Questions%s ranging from the most basic setup questions "
|
736 |
"to advanced themer tweaks"
|
737 |
msgstr ""
|
|
|
|
|
738 |
|
739 |
#: ../admin-views/tribe-options-help.php:118
|
740 |
#, php-format
|
@@ -743,12 +779,17 @@ msgid ""
|
|
743 |
"community, covering custom queries, integration with third-party themes and "
|
744 |
"plugins, etc."
|
745 |
msgstr ""
|
|
|
|
|
|
|
746 |
|
747 |
#: ../admin-views/tribe-options-help.php:120
|
748 |
msgid ""
|
749 |
"Release notes for painting an overall picture of the plugin's lifecycle and "
|
750 |
"when features/bug fixes were introduced."
|
751 |
msgstr ""
|
|
|
|
|
752 |
|
753 |
#: ../admin-views/tribe-options-help.php:122
|
754 |
#, php-format
|
@@ -757,6 +798,9 @@ msgid ""
|
|
757 |
"The Events Calendar (including WooTickets, Community Events, Eventbrite "
|
758 |
"Tickets, Facebook Events, etc)"
|
759 |
msgstr ""
|
|
|
|
|
|
|
760 |
|
761 |
#: ../admin-views/tribe-options-help.php:124
|
762 |
#, php-format
|
@@ -768,6 +812,13 @@ msgid ""
|
|
768 |
"add your own, and help us shape the future of the products business in a way "
|
769 |
"that best meets the community's needs."
|
770 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
771 |
|
772 |
#: ../admin-views/tribe-options-help.php:128
|
773 |
#, php-format
|
@@ -775,6 +826,9 @@ msgid ""
|
|
775 |
"Written documentation can only take things so far...sometimes, you need help "
|
776 |
"from a real person. This is where our %ssupport forums%s come into play."
|
777 |
msgstr ""
|
|
|
|
|
|
|
778 |
|
779 |
#: ../admin-views/tribe-options-help.php:129
|
780 |
#, php-format
|
@@ -785,6 +839,12 @@ msgid ""
|
|
785 |
"to read our %ssupport expectations sticky thread%s before posting so you "
|
786 |
"understand our limitations."
|
787 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
788 |
|
789 |
#: ../admin-views/tribe-options-help.php:130
|
790 |
msgid ""
|
@@ -794,6 +854,13 @@ msgid ""
|
|
794 |
"provide customization tips or assist in integrating with 3rd party plugins "
|
795 |
"or themes."
|
796 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
797 |
|
798 |
#: ../admin-views/tribe-options-help.php:131
|
799 |
#, php-format
|
@@ -803,17 +870,23 @@ msgid ""
|
|
803 |
"deeper level of customization/integration support for paying users than we "
|
804 |
"can on WordPress.org."
|
805 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
806 |
|
807 |
#: ../admin-views/tribe-options-help.php:135
|
808 |
-
#,
|
809 |
msgid ""
|
810 |
"If you find that you aren't getting the level of service you've come to "
|
811 |
"expect from Modern Tribe, shoot us an email at %s or tweet %s and tell us "
|
812 |
"why. We'll do what we can to make it right."
|
813 |
msgstr ""
|
814 |
-
"
|
815 |
-
"
|
816 |
-
"
|
|
|
817 |
|
818 |
#: ../admin-views/tribe-options-help.php:136
|
819 |
msgid "More..."
|
@@ -832,88 +905,79 @@ msgid "Getting Started"
|
|
832 |
msgstr "Mise en route"
|
833 |
|
834 |
#: ../admin-views/tribe-options-help.php:153
|
835 |
-
#, fuzzy
|
836 |
msgid "Support Resources To Help You Kick Ass"
|
837 |
-
msgstr "
|
838 |
|
839 |
#: ../admin-views/tribe-options-help.php:156
|
840 |
-
#, fuzzy
|
841 |
msgid "Forums: Because Everyone Needs A Buddy"
|
842 |
-
msgstr "
|
843 |
|
844 |
#: ../admin-views/tribe-options-help.php:159
|
845 |
msgid "Not getting help?"
|
846 |
-
msgstr ""
|
847 |
|
848 |
-
#: ../admin-views/tribe-options-help.php:
|
849 |
-
#: ../lib/the-events-calendar.class.php:
|
850 |
#: ../lib/tribe-settings.class.php:135
|
851 |
msgid "The Events Calendar"
|
852 |
msgstr "The Events Calendar"
|
853 |
|
854 |
-
#: ../admin-views/tribe-options-help.php:
|
855 |
msgid "Latest Version:"
|
856 |
msgstr "Dernière version :"
|
857 |
|
858 |
-
#: ../admin-views/tribe-options-help.php:
|
859 |
msgid "Author:"
|
860 |
msgstr "Auteur :"
|
861 |
|
862 |
#
|
863 |
-
#: ../admin-views/tribe-options-help.php:
|
864 |
msgid "Modern Tribe Inc"
|
865 |
msgstr "Modern Tribe Inc"
|
866 |
|
867 |
-
#: ../admin-views/tribe-options-help.php:
|
868 |
msgid "Requires:"
|
869 |
msgstr "Requiert :"
|
870 |
|
871 |
-
#: ../admin-views/tribe-options-help.php:
|
872 |
msgid "WordPress "
|
873 |
msgstr "WordPress"
|
874 |
|
875 |
-
#: ../admin-views/tribe-options-help.php:
|
876 |
msgid "Wordpress.org Plugin Page"
|
877 |
msgstr "Page de plugins Wordpress.org"
|
878 |
|
879 |
-
#: ../admin-views/tribe-options-help.php:
|
880 |
msgid "Average Rating"
|
881 |
msgstr "Note moyenne"
|
882 |
|
883 |
-
#: ../admin-views/tribe-options-help.php:
|
884 |
-
#, php-format
|
885 |
-
msgid "Based on %d rating"
|
886 |
-
msgid_plural "Based on %d ratings"
|
887 |
-
msgstr[0] "basé sur %d note"
|
888 |
-
msgstr[1] "basé sur %d notes"
|
889 |
-
|
890 |
-
#: ../admin-views/tribe-options-help.php:186
|
891 |
msgid "Give us 5 stars!"
|
892 |
msgstr "Donnez nous 5 étoiles!"
|
893 |
|
894 |
-
#: ../admin-views/tribe-options-help.php:
|
895 |
msgid "Premium Add-Ons"
|
896 |
msgstr "Modules Premiums"
|
897 |
|
898 |
-
#: ../admin-views/tribe-options-help.php:
|
899 |
msgid "(Coming Soon!)"
|
900 |
msgstr "(À venir!)"
|
901 |
|
902 |
-
#: ../admin-views/tribe-options-help.php:
|
903 |
msgid "News and Tutorials"
|
904 |
msgstr "News et tutoriaux"
|
905 |
|
906 |
#
|
907 |
#: ../admin-views/tribe-options-network.php:14
|
908 |
msgid "Network Settings"
|
909 |
-
msgstr "Réglages
|
910 |
|
911 |
#: ../admin-views/tribe-options-network.php:18
|
912 |
msgid ""
|
913 |
"This is where all of the global network settings for Modern Tribe's The "
|
914 |
"Events Calendar can be modified."
|
915 |
msgstr ""
|
916 |
-
"
|
917 |
"Calendar de Modern Tribe peuvent être modifiés."
|
918 |
|
919 |
#: ../admin-views/tribe-options-network.php:26
|
@@ -925,7 +989,7 @@ msgid "Venue Name:"
|
|
925 |
msgstr "Nom de la salle :"
|
926 |
|
927 |
#: ../admin-views/venue-meta-box.php:27
|
928 |
-
#: ../public/advanced-functions/meta.php:
|
929 |
msgid "Address:"
|
930 |
msgstr "Adresse :"
|
931 |
|
@@ -951,11 +1015,11 @@ msgstr "Code Postal :"
|
|
951 |
|
952 |
#: ../admin-views/venue-meta-box.php:112 ../admin-views/venue-meta-box.php:134
|
953 |
msgid "Show Google Map:"
|
954 |
-
msgstr "Afficher
|
955 |
|
956 |
#: ../admin-views/venue-meta-box.php:122 ../admin-views/venue-meta-box.php:144
|
957 |
msgid "Show Google Maps Link:"
|
958 |
-
msgstr "Afficher le lien Google
|
959 |
|
960 |
#: ../admin-views/widget-admin-list.php:11
|
961 |
msgid "Title:"
|
@@ -1140,28 +1204,28 @@ msgstr ""
|
|
1140 |
"date de début/fin de vente, les tickets seront disponibles entre maintenant "
|
1141 |
"jusqu'à la fin de l'événement."
|
1142 |
|
1143 |
-
#: ../lib/the-events-calendar.class.php:
|
1144 |
msgid "month"
|
1145 |
msgstr "mois"
|
1146 |
|
1147 |
-
#: ../lib/the-events-calendar.class.php:
|
1148 |
msgid "upcoming"
|
1149 |
msgstr "à venir"
|
1150 |
|
1151 |
-
#: ../lib/the-events-calendar.class.php:
|
1152 |
msgid "past"
|
1153 |
msgstr "terminé"
|
1154 |
|
1155 |
-
#: ../lib/the-events-calendar.class.php:
|
1156 |
msgid "venue"
|
1157 |
msgstr "lieu"
|
1158 |
|
1159 |
-
#: ../lib/the-events-calendar.class.php:
|
1160 |
#, php-format
|
1161 |
msgid "Initializing Tribe Events on %s"
|
1162 |
msgstr "Initialisation de Tribe Events à %s"
|
1163 |
|
1164 |
-
#: ../lib/the-events-calendar.class.php:
|
1165 |
#, php-format
|
1166 |
msgid ""
|
1167 |
"Your version of The Events Calendar is not up-to-date with one of your The "
|
@@ -1170,26 +1234,26 @@ msgstr ""
|
|
1170 |
"Votre version de The Event Calendar n'est pas à jour avec un de vos module "
|
1171 |
"de The Event Calendar. Veuillez %sMettre à jour.%s"
|
1172 |
|
1173 |
-
#: ../lib/the-events-calendar.class.php:
|
1174 |
-
#,
|
1175 |
msgid ""
|
1176 |
"The following plugins are out of date: <b>%s</b>. All add-ons contain "
|
1177 |
"dependencies on The Events Calendar and will not function properly unless "
|
1178 |
"paired with the right version. %sWant to pair an older version%s?"
|
1179 |
msgstr ""
|
1180 |
-
"Les plugins suivant ne sont pas à jour : <b>%s</b>.
|
1181 |
-
"
|
1182 |
-
"
|
1183 |
-
"
|
1184 |
|
1185 |
-
#: ../lib/the-events-calendar.class.php:
|
1186 |
-
#: ../lib/the-events-calendar.class.php:
|
1187 |
-
#: ../lib/the-events-calendar.class.php:
|
1188 |
msgid "Licenses"
|
1189 |
msgstr "Licences"
|
1190 |
|
1191 |
-
#: ../lib/the-events-calendar.class.php:
|
1192 |
-
#,
|
1193 |
msgid ""
|
1194 |
"<p>The license key you received when completing your purchase from %s will "
|
1195 |
"grant you access to support and updates until it expires. You do not need to "
|
@@ -1215,21 +1279,21 @@ msgstr ""
|
|
1215 |
"veuillez attendre un moment pour sa validation. Tout est fonctionnel "
|
1216 |
"lorsqu'une date d'expiration s'affiche en vert ainsi qu'un message \"valide"
|
1217 |
"\".</p> <p>Si un message s'affiche en rouge indiquant que votre clé n'est "
|
1218 |
-
"pas valide ou excède la limite d'installations, veuillez vous rendre sur
|
1219 |
-
"
|
1220 |
-
"renouvellements / mise
|
1221 |
"affichée? Allez sur <a href=\"%s\">Tableau de Bord > Mises à jours</a> et "
|
1222 |
"cliquez \"Vérifier à nouveau\".</p>"
|
1223 |
|
1224 |
-
#: ../lib/the-events-calendar.class.php:
|
1225 |
msgid "General"
|
1226 |
msgstr "Général"
|
1227 |
|
1228 |
-
#: ../lib/the-events-calendar.class.php:
|
1229 |
msgid "Display"
|
1230 |
msgstr "Affichage"
|
1231 |
|
1232 |
-
#: ../lib/the-events-calendar.class.php:
|
1233 |
#, php-format
|
1234 |
msgid ""
|
1235 |
"Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade "
|
@@ -1238,7 +1302,7 @@ msgstr ""
|
|
1238 |
"Désolé, le plugin The Events Calendar requiert WordPress %s ou + . Mettez à "
|
1239 |
"jour votre installation WordPress "
|
1240 |
|
1241 |
-
#: ../lib/the-events-calendar.class.php:
|
1242 |
#, php-format
|
1243 |
msgid ""
|
1244 |
"Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host "
|
@@ -1247,247 +1311,251 @@ msgstr ""
|
|
1247 |
"Désolé, The Events Calendar nécessite PHP %s ou une version plus récente. "
|
1248 |
"Voyez avec votre hébergeur pour voir comment vous pouvez changer ça. "
|
1249 |
|
1250 |
-
#: ../lib/the-events-calendar.class.php:
|
1251 |
-
#: ../public/template-tags/loop.php:
|
1252 |
msgid "Upcoming Events"
|
1253 |
msgstr "Événements à venir "
|
1254 |
|
1255 |
-
#: ../lib/the-events-calendar.class.php:
|
1256 |
-
#: ../public/template-tags/loop.php:
|
1257 |
msgid "Past Events"
|
1258 |
msgstr "Événements passés"
|
1259 |
|
1260 |
-
#: ../lib/the-events-calendar.class.php:
|
1261 |
-
#: ../lib/the-events-calendar.class.php:
|
|
|
1262 |
#, php-format
|
1263 |
msgid "Events for %s"
|
1264 |
msgstr "Événements pour %s"
|
1265 |
|
1266 |
-
#: ../lib/the-events-calendar.class.php:
|
1267 |
msgid "Events this month"
|
1268 |
msgstr "Événements du mois"
|
1269 |
|
1270 |
-
#: ../lib/the-events-calendar.class.php:
|
1271 |
#, php-format
|
1272 |
msgid "Events at %s"
|
1273 |
msgstr "Événements à %s"
|
1274 |
|
1275 |
-
#: ../lib/the-events-calendar.class.php:
|
1276 |
msgid "No description has been entered for this event."
|
1277 |
msgstr "Aucune description n'a été rentrée pour cet événement. "
|
1278 |
|
1279 |
-
#: ../lib/the-events-calendar.class.php:
|
1280 |
msgid "category"
|
1281 |
msgstr "catégorie"
|
1282 |
|
1283 |
-
#: ../lib/the-events-calendar.class.php:
|
1284 |
msgid "tag"
|
1285 |
msgstr "Mot-clef"
|
1286 |
|
1287 |
-
#: ../lib/the-events-calendar.class.php:
|
1288 |
-
#: ../lib/the-events-calendar.class.php:
|
1289 |
-
#: ../lib/the-events-calendar.class.php:
|
|
|
1290 |
msgid "Events"
|
1291 |
msgstr "Événements"
|
1292 |
|
1293 |
-
#: ../lib/the-events-calendar.class.php:
|
1294 |
msgid "Event"
|
1295 |
msgstr "Evénément"
|
1296 |
|
1297 |
-
#: ../lib/the-events-calendar.class.php:
|
1298 |
-
#: ../lib/the-events-calendar.class.php:
|
1299 |
-
#: ../lib/the-events-calendar.class.php:
|
1300 |
msgid "Add New"
|
1301 |
msgstr "Nouveau "
|
1302 |
|
1303 |
-
#: ../lib/the-events-calendar.class.php:
|
1304 |
msgid "Add New Event"
|
1305 |
msgstr "Nouvel événement "
|
1306 |
|
1307 |
-
#: ../lib/the-events-calendar.class.php:
|
1308 |
msgid "Edit Event"
|
1309 |
msgstr "Editer l'événement "
|
1310 |
|
1311 |
-
#: ../lib/the-events-calendar.class.php:
|
1312 |
msgid "New Event"
|
1313 |
msgstr "Nouvel événement "
|
1314 |
|
1315 |
-
#: ../lib/the-events-calendar.class.php:
|
1316 |
msgid "View Event"
|
1317 |
msgstr "Voir l'événement "
|
1318 |
|
1319 |
-
#: ../lib/the-events-calendar.class.php:
|
1320 |
msgid "Search Events"
|
1321 |
msgstr "Rechercher des événements "
|
1322 |
|
1323 |
-
#: ../lib/the-events-calendar.class.php:
|
1324 |
msgid "No events found"
|
1325 |
msgstr "Aucun événement "
|
1326 |
|
1327 |
-
#: ../lib/the-events-calendar.class.php:
|
1328 |
msgid "No events found in Trash"
|
1329 |
msgstr "Aucun événement dans la corbeille "
|
1330 |
|
1331 |
-
#: ../lib/the-events-calendar.class.php:
|
1332 |
-
#: ../lib/the-events-calendar.class.php:
|
|
|
1333 |
msgid "Venues"
|
1334 |
msgstr "Lieux"
|
1335 |
|
1336 |
-
#: ../lib/the-events-calendar.class.php:
|
1337 |
-
#: ../public/advanced-functions/meta.php:
|
1338 |
msgid "Venue"
|
1339 |
msgstr "Lieu"
|
1340 |
|
1341 |
-
#: ../lib/the-events-calendar.class.php:
|
1342 |
msgid "Add New Venue"
|
1343 |
msgstr "Nouveau lieu"
|
1344 |
|
1345 |
-
#: ../lib/the-events-calendar.class.php:
|
1346 |
msgid "Edit Venue"
|
1347 |
msgstr "Editer le lieu"
|
1348 |
|
1349 |
-
#: ../lib/the-events-calendar.class.php:
|
1350 |
msgid "New Venue"
|
1351 |
msgstr "Nouveau Lieu"
|
1352 |
|
1353 |
-
#: ../lib/the-events-calendar.class.php:
|
1354 |
msgid "View Venue"
|
1355 |
msgstr "Voir Lieu"
|
1356 |
|
1357 |
-
#: ../lib/the-events-calendar.class.php:
|
1358 |
msgid "Search Venues"
|
1359 |
msgstr "Rechercher des lieux"
|
1360 |
|
1361 |
-
#: ../lib/the-events-calendar.class.php:
|
1362 |
msgid "No venue found"
|
1363 |
msgstr "Aucun lieu trouvé"
|
1364 |
|
1365 |
-
#: ../lib/the-events-calendar.class.php:
|
1366 |
msgid "No venues found in Trash"
|
1367 |
msgstr "Aucun lieu trouvé dans la poubelle"
|
1368 |
|
1369 |
-
#: ../lib/the-events-calendar.class.php:
|
1370 |
-
#: ../lib/the-events-calendar.class.php:
|
|
|
1371 |
msgid "Organizers"
|
1372 |
msgstr "Organisateurs"
|
1373 |
|
1374 |
-
#: ../lib/the-events-calendar.class.php:
|
1375 |
-
#: ../public/advanced-functions/meta.php:
|
1376 |
msgid "Organizer"
|
1377 |
msgstr "Organisateur"
|
1378 |
|
1379 |
-
#: ../lib/the-events-calendar.class.php:
|
1380 |
msgid "Add New Organizer"
|
1381 |
msgstr "Nouvel organisateur"
|
1382 |
|
1383 |
-
#: ../lib/the-events-calendar.class.php:
|
1384 |
msgid "Edit Organizer"
|
1385 |
msgstr "Editer l'organisateur"
|
1386 |
|
1387 |
-
#: ../lib/the-events-calendar.class.php:
|
1388 |
msgid "New Organizer"
|
1389 |
msgstr "Nouvel organisateur"
|
1390 |
|
1391 |
#
|
1392 |
-
#: ../lib/the-events-calendar.class.php:
|
1393 |
msgid "View Organizer"
|
1394 |
msgstr "Voir Organisateur"
|
1395 |
|
1396 |
-
#: ../lib/the-events-calendar.class.php:
|
1397 |
msgid "Search Organizers"
|
1398 |
msgstr "Rechercher des organisateurs"
|
1399 |
|
1400 |
-
#: ../lib/the-events-calendar.class.php:
|
1401 |
msgid "No organizer found"
|
1402 |
msgstr "Pas d'organisateurs"
|
1403 |
|
1404 |
-
#: ../lib/the-events-calendar.class.php:
|
1405 |
msgid "No organizers found in Trash"
|
1406 |
msgstr "Aucun organisateur dans la Poubelle"
|
1407 |
|
1408 |
-
#: ../lib/the-events-calendar.class.php:
|
1409 |
-
#: ../lib/tribe-admin-events-list.class.php:
|
1410 |
msgid "Event Categories"
|
1411 |
msgstr "Catégories d'événements"
|
1412 |
|
1413 |
-
#: ../lib/the-events-calendar.class.php:
|
1414 |
-
#: ../
|
1415 |
msgid "Event Category"
|
1416 |
msgstr "Catégorie de l'événement"
|
1417 |
|
1418 |
-
#: ../lib/the-events-calendar.class.php:
|
1419 |
msgid "Search Event Categories"
|
1420 |
msgstr "Rechercher des catégories"
|
1421 |
|
1422 |
-
#: ../lib/the-events-calendar.class.php:
|
1423 |
msgid "All Event Categories"
|
1424 |
msgstr "Toutes les catégories"
|
1425 |
|
1426 |
-
#: ../lib/the-events-calendar.class.php:
|
1427 |
msgid "Parent Event Category"
|
1428 |
msgstr "Catégorie parente"
|
1429 |
|
1430 |
-
#: ../lib/the-events-calendar.class.php:
|
1431 |
msgid "Parent Event Category:"
|
1432 |
msgstr "Catégorie parente :"
|
1433 |
|
1434 |
-
#: ../lib/the-events-calendar.class.php:
|
1435 |
msgid "Edit Event Category"
|
1436 |
msgstr "Éditer la catégorie de l'événement "
|
1437 |
|
1438 |
-
#: ../lib/the-events-calendar.class.php:
|
1439 |
msgid "Update Event Category"
|
1440 |
msgstr "Mettre à jour la catégories de l'événement "
|
1441 |
|
1442 |
-
#: ../lib/the-events-calendar.class.php:
|
1443 |
msgid "Add New Event Category"
|
1444 |
msgstr "Nouvelle catégorie d'événement "
|
1445 |
|
1446 |
-
#: ../lib/the-events-calendar.class.php:
|
1447 |
msgid "New Event Category Name"
|
1448 |
msgstr "Nouveau nom de la catégorie d'événement "
|
1449 |
|
1450 |
-
#: ../lib/the-events-calendar.class.php:
|
1451 |
#, php-format
|
1452 |
msgid "Event updated. <a href=\"%s\">View event</a>"
|
1453 |
msgstr "Événement mis à jour. <a href=\"%s\">Voir</a> "
|
1454 |
|
1455 |
-
#: ../lib/the-events-calendar.class.php:
|
1456 |
-
#: ../lib/the-events-calendar.class.php:
|
1457 |
-
#: ../lib/the-events-calendar.class.php:
|
1458 |
msgid "Custom field updated."
|
1459 |
msgstr "Champ Personnalisé mis à jour. "
|
1460 |
|
1461 |
-
#: ../lib/the-events-calendar.class.php:
|
1462 |
-
#: ../lib/the-events-calendar.class.php:
|
1463 |
-
#: ../lib/the-events-calendar.class.php:
|
1464 |
msgid "Custom field deleted."
|
1465 |
msgstr "Champ Personnalisé effacé. "
|
1466 |
|
1467 |
-
#: ../lib/the-events-calendar.class.php:
|
1468 |
msgid "Event updated."
|
1469 |
msgstr "Événement mis à jour."
|
1470 |
|
1471 |
-
#: ../lib/the-events-calendar.class.php:
|
1472 |
#, php-format
|
1473 |
msgid "Event restored to revision from %s"
|
1474 |
msgstr "Evénement restauré à la dernière révision depuis %s"
|
1475 |
|
1476 |
-
#: ../lib/the-events-calendar.class.php:
|
1477 |
#, php-format
|
1478 |
msgid "Event published. <a href=\"%s\">View event</a>"
|
1479 |
msgstr "Événement publié. <a href=\"%s\">Voir</a> "
|
1480 |
|
1481 |
-
#: ../lib/the-events-calendar.class.php:
|
1482 |
msgid "Event saved."
|
1483 |
msgstr "Événement enregistré"
|
1484 |
|
1485 |
-
#: ../lib/the-events-calendar.class.php:
|
1486 |
#, php-format
|
1487 |
msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
1488 |
msgstr "Événement enregistré. <a href=\"%s\">Aperçu</a> "
|
1489 |
|
1490 |
-
#: ../lib/the-events-calendar.class.php:
|
1491 |
#, php-format
|
1492 |
msgid ""
|
1493 |
"Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
|
@@ -1496,48 +1564,48 @@ msgstr ""
|
|
1496 |
"Événement programmé pour le : <strong>%1$s</strong>. <a target=\"_blank\" "
|
1497 |
"href=\"%2$s\">Aperçu</a> "
|
1498 |
|
1499 |
-
#: ../lib/the-events-calendar.class.php:
|
1500 |
-
#: ../lib/the-events-calendar.class.php:
|
1501 |
-
#: ../lib/the-events-calendar.class.php:
|
1502 |
msgid "M j, Y @ G:i"
|
1503 |
msgstr "M j, A @ G:i "
|
1504 |
|
1505 |
-
#: ../lib/the-events-calendar.class.php:
|
1506 |
#, php-format
|
1507 |
msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
1508 |
msgstr ""
|
1509 |
"Brouillon de l'événement mis à jour. <a target=\"_blank\" href=\"%s"
|
1510 |
"\">Aperçu</a> "
|
1511 |
|
1512 |
-
#: ../lib/the-events-calendar.class.php:
|
1513 |
#, php-format
|
1514 |
msgid "Venue updated. <a href=\"%s\">View venue</a>"
|
1515 |
msgstr "Lieu mis à jour <a href=\"%s\">Voir le lieu</a>"
|
1516 |
|
1517 |
-
#: ../lib/the-events-calendar.class.php:
|
1518 |
msgid "Venue updated."
|
1519 |
msgstr "Lieu mis à jour"
|
1520 |
|
1521 |
-
#: ../lib/the-events-calendar.class.php:
|
1522 |
#, php-format
|
1523 |
msgid "Venue restored to revision from %s"
|
1524 |
msgstr "Lieu restauré à la dernière révision depuis %s"
|
1525 |
|
1526 |
-
#: ../lib/the-events-calendar.class.php:
|
1527 |
#, php-format
|
1528 |
msgid "Venue published. <a href=\"%s\">View venue</a>"
|
1529 |
msgstr "Lieu publié. <a href=\"%s\">Voir</a>"
|
1530 |
|
1531 |
-
#: ../lib/the-events-calendar.class.php:
|
1532 |
msgid "Venue saved."
|
1533 |
msgstr "Lieu enregistré."
|
1534 |
|
1535 |
-
#: ../lib/the-events-calendar.class.php:
|
1536 |
#, php-format
|
1537 |
msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
|
1538 |
msgstr "Lieu soumis. <a target=\"_blank\" href=\"%s\">Aperçu</a>"
|
1539 |
|
1540 |
-
#: ../lib/the-events-calendar.class.php:
|
1541 |
#, php-format
|
1542 |
msgid ""
|
1543 |
"Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
|
@@ -1546,42 +1614,42 @@ msgstr ""
|
|
1546 |
"Lieu prévu pour : <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
|
1547 |
"\">Aperçu</a>"
|
1548 |
|
1549 |
-
#: ../lib/the-events-calendar.class.php:
|
1550 |
#, php-format
|
1551 |
msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
|
1552 |
msgstr ""
|
1553 |
"Brouillon du lieu mis à jour. <a target=\"_blank\" href=\"%s\">Aperçu</a>"
|
1554 |
|
1555 |
-
#: ../lib/the-events-calendar.class.php:
|
1556 |
#, php-format
|
1557 |
msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
|
1558 |
msgstr "Organisateur mis à jour. <a href=\"%s\">Voir</a> "
|
1559 |
|
1560 |
-
#: ../lib/the-events-calendar.class.php:
|
1561 |
msgid "Organizer updated."
|
1562 |
msgstr "Organisateur mis à jour."
|
1563 |
|
1564 |
-
#: ../lib/the-events-calendar.class.php:
|
1565 |
#, php-format
|
1566 |
msgid "Organizer restored to revision from %s"
|
1567 |
msgstr "Organisateur restauré à la dernière révision depuis %s"
|
1568 |
|
1569 |
-
#: ../lib/the-events-calendar.class.php:
|
1570 |
#, php-format
|
1571 |
msgid "Organizer published. <a href=\"%s\">View organizer</a>"
|
1572 |
msgstr "Organisateur publié. <a href=\"%s\">Voir</a>"
|
1573 |
|
1574 |
-
#: ../lib/the-events-calendar.class.php:
|
1575 |
msgid "Organizer saved."
|
1576 |
msgstr "Organisateur enregistré."
|
1577 |
|
1578 |
-
#: ../lib/the-events-calendar.class.php:
|
1579 |
#, php-format
|
1580 |
msgid ""
|
1581 |
"Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
|
1582 |
msgstr "Organisateur soumis. <a target=\"_blank\" href=\"%s\">Aperçu</a> "
|
1583 |
|
1584 |
-
#: ../lib/the-events-calendar.class.php:
|
1585 |
#, php-format
|
1586 |
msgid ""
|
1587 |
"Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href="
|
@@ -1590,7 +1658,7 @@ msgstr ""
|
|
1590 |
"Organisateur prévu pour : <strong>%1$s</strong>. <a target=\"_blank\" href="
|
1591 |
"\"%2$s\">Aperçu</a>"
|
1592 |
|
1593 |
-
#: ../lib/the-events-calendar.class.php:
|
1594 |
#, php-format
|
1595 |
msgid ""
|
1596 |
"Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</"
|
@@ -1599,111 +1667,116 @@ msgstr ""
|
|
1599 |
"Brouillon de l'organisateur mis à jour. <a target=\"_blank\" href=\"%s"
|
1600 |
"\">Aperçu</a>"
|
1601 |
|
1602 |
-
#: ../lib/the-events-calendar.class.php:
|
1603 |
msgid "Use Saved Venue:"
|
1604 |
msgstr "Utiliser un lieu enregistré :"
|
1605 |
|
1606 |
-
#: ../lib/the-events-calendar.class.php:
|
1607 |
msgid "Use Saved Organizer:"
|
1608 |
msgstr "Utiliser un organisateur déjà enregistré "
|
1609 |
|
1610 |
-
#: ../lib/the-events-calendar.class.php:
|
1611 |
msgid "Use New Venue"
|
1612 |
msgstr "Utiliser un nouveau lieu"
|
1613 |
|
1614 |
#
|
1615 |
-
#: ../lib/the-events-calendar.class.php:
|
1616 |
msgid "My Venues"
|
1617 |
msgstr "Mes Salles"
|
1618 |
|
1619 |
#
|
1620 |
-
#: ../lib/the-events-calendar.class.php:
|
1621 |
msgid "Available Venues"
|
1622 |
msgstr "Salles disponibles"
|
1623 |
|
1624 |
#
|
1625 |
-
#: ../lib/the-events-calendar.class.php:
|
1626 |
msgid "No saved venue exists."
|
1627 |
msgstr "Il n'y a pas de salles existantes."
|
1628 |
|
1629 |
-
#: ../lib/the-events-calendar.class.php:
|
1630 |
msgid "Use New Organizer"
|
1631 |
msgstr "Nouvel organisateur"
|
1632 |
|
1633 |
#
|
1634 |
-
#: ../lib/the-events-calendar.class.php:
|
1635 |
msgid "My Organizers"
|
1636 |
msgstr "Mes Organisateurs"
|
1637 |
|
1638 |
#
|
1639 |
-
#: ../lib/the-events-calendar.class.php:
|
1640 |
msgid "Available Organizers"
|
1641 |
msgstr "Organisateurs disponibles"
|
1642 |
|
1643 |
#
|
1644 |
-
#: ../lib/the-events-calendar.class.php:
|
1645 |
msgid "No saved organizer exists."
|
1646 |
msgstr "Il n'y a pas d'organisateurs existants."
|
1647 |
|
1648 |
-
#: ../lib/the-events-calendar.class.php:
|
1649 |
msgid "Next"
|
1650 |
msgstr "Suivant"
|
1651 |
|
1652 |
-
#: ../lib/the-events-calendar.class.php:
|
1653 |
msgid "Prev"
|
1654 |
msgstr "Précédent"
|
1655 |
|
1656 |
-
#: ../lib/the-events-calendar.class.php:
|
1657 |
msgid "Today"
|
1658 |
msgstr "Aujourd'hui "
|
1659 |
|
1660 |
-
#: ../lib/the-events-calendar.class.php:
|
1661 |
msgid "Done"
|
1662 |
msgstr "Terminé"
|
1663 |
|
1664 |
-
#: ../lib/the-events-calendar.class.php:
|
1665 |
msgid "Network"
|
1666 |
msgstr "Réseau"
|
1667 |
|
1668 |
#
|
1669 |
-
#: ../lib/the-events-calendar.class.php:
|
1670 |
msgid "Unnamed Venue"
|
1671 |
msgstr "Salle non nommée"
|
1672 |
|
1673 |
#
|
1674 |
-
#: ../lib/the-events-calendar.class.php:
|
1675 |
msgid "Unnamed Organizer"
|
1676 |
msgstr "Organisateur non nommé"
|
1677 |
|
1678 |
-
#: ../lib/the-events-calendar.class.php:
|
|
|
|
|
|
|
|
|
|
|
1679 |
msgid "Event Options"
|
1680 |
msgstr "Options de l'événement"
|
1681 |
|
1682 |
-
#: ../lib/the-events-calendar.class.php:
|
1683 |
msgid "Venue Information"
|
1684 |
msgstr "Information sur le lieu"
|
1685 |
|
1686 |
-
#: ../lib/the-events-calendar.class.php:
|
1687 |
msgid "Organizer Information"
|
1688 |
msgstr "A propos de l'organisateur"
|
1689 |
|
1690 |
-
#: ../lib/the-events-calendar.class.php:
|
1691 |
msgid "Support"
|
1692 |
msgstr "Support"
|
1693 |
|
1694 |
-
#: ../lib/the-events-calendar.class.php:
|
1695 |
msgid "View All Add-Ons"
|
1696 |
msgstr "Voir tous les Add-Ons "
|
1697 |
|
1698 |
-
#: ../lib/the-events-calendar.class.php:
|
1699 |
msgid "News from Modern Tribe"
|
1700 |
msgstr "Actu de Modern Tribe"
|
1701 |
|
1702 |
-
#: ../lib/the-events-calendar.class.php:
|
1703 |
msgid "Additional Functionality"
|
1704 |
msgstr "Fonctionnalité supplémentaire "
|
1705 |
|
1706 |
-
#: ../lib/the-events-calendar.class.php:
|
1707 |
msgid ""
|
1708 |
"Looking for additional functionality including recurring events, ticket "
|
1709 |
"sales, publicly submitted events, new views and more?"
|
@@ -1712,34 +1785,34 @@ msgstr ""
|
|
1712 |
"\", \"Vente de tickets\", Événements publiques\", nouveaux modes "
|
1713 |
"d'affichages et bien plus?"
|
1714 |
|
1715 |
-
#: ../lib/the-events-calendar.class.php:
|
1716 |
#, php-format
|
1717 |
msgid "Check out the <a href=\"%s\">available add-ons</a>."
|
1718 |
msgstr "Visitez les <a href=\"%s\">Modules disponibles</a>."
|
1719 |
|
1720 |
#
|
1721 |
-
#: ../lib/the-events-calendar.class.php:
|
1722 |
-
#: ../lib/the-events-calendar.class.php:
|
1723 |
msgid "View Calendar"
|
1724 |
msgstr "Afficher Calendrier"
|
1725 |
|
1726 |
#
|
1727 |
-
#: ../lib/the-events-calendar.class.php:
|
1728 |
msgid "Add Event"
|
1729 |
msgstr "Ajouter Événement"
|
1730 |
|
1731 |
#
|
1732 |
-
#: ../lib/the-events-calendar.class.php:
|
1733 |
msgid "Edit Events"
|
1734 |
msgstr "Modifier Événements"
|
1735 |
|
1736 |
-
#: ../lib/the-events-calendar.class.php:
|
1737 |
-
#: ../lib/the-events-calendar.class.php:
|
1738 |
#: ../lib/tribe-settings.class.php:164
|
1739 |
msgid "Settings"
|
1740 |
msgstr "Préférences"
|
1741 |
|
1742 |
-
#: ../lib/the-events-calendar.class.php:
|
1743 |
#, php-format
|
1744 |
msgid ""
|
1745 |
"Welcome to The Events Calendar! Your events calendar can be found at %s. To "
|
@@ -1749,47 +1822,46 @@ msgstr ""
|
|
1749 |
"ici %s. Pour changer le permalien des événements, visitez %sÉvénements -> "
|
1750 |
"Régalges%s."
|
1751 |
|
1752 |
-
#: ../lib/the-events-calendar.class.php:
|
1753 |
msgid "Calendar"
|
1754 |
msgstr "Calendrier"
|
1755 |
|
1756 |
-
#: ../lib/the-events-calendar.class.php:
|
1757 |
msgid "List"
|
1758 |
msgstr "Liste"
|
1759 |
|
1760 |
#
|
1761 |
-
#: ../lib/the-events-calendar.class.php:
|
1762 |
msgid "Month"
|
1763 |
msgstr "Mois"
|
1764 |
|
1765 |
-
#: ../lib/the-events-calendar.class.php:
|
1766 |
-
#: ../lib/the-events-calendar.class.php:
|
1767 |
-
#, fuzzy
|
1768 |
msgid "Search"
|
1769 |
-
msgstr "
|
1770 |
|
1771 |
#
|
1772 |
-
#: ../lib/the-events-calendar.class.php:
|
1773 |
-
#: ../lib/the-events-calendar.class.php:
|
1774 |
msgid "Date"
|
1775 |
msgstr "Date"
|
1776 |
|
1777 |
#
|
1778 |
-
#: ../lib/the-events-calendar.class.php:
|
1779 |
msgid "Events In"
|
1780 |
msgstr "Événements dans"
|
1781 |
|
1782 |
#
|
1783 |
-
#: ../lib/the-events-calendar.class.php:
|
1784 |
msgid "Events From"
|
1785 |
msgstr "Événement de"
|
1786 |
|
1787 |
-
#: ../lib/the-events-calendar.class.php:
|
1788 |
#: ../views/list/nav.php:28 ../views/list/nav.php:31
|
1789 |
msgid "« Previous Events"
|
1790 |
msgstr "« Événements précédents "
|
1791 |
|
1792 |
-
#: ../lib/the-events-calendar.class.php:
|
1793 |
#: ../views/list/nav.php:43 ../views/list/nav.php:49
|
1794 |
msgid "Next Events »"
|
1795 |
msgstr "Prochains événements »"
|
@@ -1799,28 +1871,28 @@ msgstr "Prochains événements »"
|
|
1799 |
msgid "View “%s”"
|
1800 |
msgstr "Voir “%s”"
|
1801 |
|
1802 |
-
#: ../lib/tribe-admin-events-list.class.php:
|
1803 |
msgid "Start Date"
|
1804 |
msgstr "Date de début : "
|
1805 |
|
1806 |
-
#: ../lib/tribe-admin-events-list.class.php:
|
1807 |
msgid "End Date"
|
1808 |
msgstr "Date de fin : "
|
1809 |
|
1810 |
-
#: ../lib/tribe-admin-events-list.class.php:
|
1811 |
msgid "Recurring?"
|
1812 |
msgstr "Se répète ?"
|
1813 |
|
1814 |
-
#: ../lib/tribe-admin-events-list.class.php:
|
1815 |
#: ../lib/tickets/tribe-tickets-pro.php:229
|
1816 |
msgid "Yes"
|
1817 |
msgstr "Oui"
|
1818 |
|
1819 |
-
#: ../lib/tribe-admin-events-list.class.php:
|
1820 |
msgid "No"
|
1821 |
msgstr "Non"
|
1822 |
|
1823 |
-
#: ../lib/tribe-admin-events-list.class.php:
|
1824 |
#, php-format
|
1825 |
msgid "All %s"
|
1826 |
msgstr "Tous %s"
|
@@ -1845,19 +1917,19 @@ msgstr "USA"
|
|
1845 |
msgid "Error"
|
1846 |
msgstr "Erreur"
|
1847 |
|
1848 |
-
#: ../lib/tribe-field.class.php:
|
1849 |
msgid "Invalid field type specified"
|
1850 |
msgstr "Type de champ spécifié invalide"
|
1851 |
|
1852 |
-
#: ../lib/tribe-field.class.php:
|
1853 |
msgid "No radio options specified"
|
1854 |
msgstr "Il n'y a pas d'options radio spécifié"
|
1855 |
|
1856 |
-
#: ../lib/tribe-field.class.php:
|
1857 |
msgid "No checkbox options specified"
|
1858 |
msgstr "Il n'y a pas d'options de case à cochée spécifié"
|
1859 |
|
1860 |
-
#: ../lib/tribe-field.class.php:
|
1861 |
msgid "No select options specified"
|
1862 |
msgstr "Il n'y a pas d'option de liste déroulante spécifié"
|
1863 |
|
@@ -1911,68 +1983,67 @@ msgid "None of your settings were saved. Please try again."
|
|
1911 |
msgstr ""
|
1912 |
"Aucuns de vos réglages n'ont été sauvés. Merci de ré-essayer à nouveau."
|
1913 |
|
1914 |
-
#: ../lib/tribe-settings.class.php:485
|
1915 |
-
msgid ""
|
1916 |
-
"The above setting was not saved. Other settings were successfully saved."
|
1917 |
-
msgid_plural ""
|
1918 |
-
"The above settings were not saved. Other settings were successfully saved."
|
1919 |
-
msgstr[0] ""
|
1920 |
-
"Le réglage ci-dessus n'à pas été sauvegardé. Les autres réglages ont été "
|
1921 |
-
"sauvegardés avec Succès."
|
1922 |
-
msgstr[1] ""
|
1923 |
-
"Les réglages ci-dessus n'ont pas été sauvegardés. Les autres réglages ont "
|
1924 |
-
"été sauvegardés avec Succès."
|
1925 |
-
|
1926 |
#
|
1927 |
#: ../lib/tribe-settings.class.php:509
|
1928 |
msgid "Settings saved."
|
1929 |
msgstr "Réglages sauvegardés."
|
1930 |
|
1931 |
-
#: ../lib/tribe-template-factory.class.php:
|
1932 |
#, php-format
|
1933 |
-
msgid "There
|
1934 |
msgstr "Il n'y a pas de résultats trouvés pour <strong>\"%s\"</strong>."
|
1935 |
|
1936 |
-
#: ../lib/tribe-template-factory.class.php:
|
1937 |
#, php-format
|
1938 |
-
msgid ""
|
1939 |
-
"listed under %s. Check out past events for this category or view the full "
|
1940 |
-
"calendar."
|
1941 |
msgstr ""
|
1942 |
-
"
|
1943 |
-
"
|
1944 |
|
1945 |
-
#: ../lib/tribe-template-factory.class.php:
|
1946 |
#, php-format
|
1947 |
msgid ""
|
1948 |
-
"listed under %s. Check out upcoming events for this
|
1949 |
-
"full calendar."
|
1950 |
msgstr ""
|
1951 |
-
"listé sous %s. Consultez les événements à venir
|
1952 |
-
"regardez le calendrier complet."
|
1953 |
|
1954 |
-
#: ../lib/tribe-template-factory.class.php:
|
1955 |
#, php-format
|
1956 |
-
msgid "
|
|
|
|
|
1957 |
msgstr ""
|
1958 |
-
"Pas d'
|
1959 |
-
"
|
1960 |
-
|
1961 |
-
#
|
1962 |
-
#: ../lib/tribe-template-factory.class.php:245
|
1963 |
-
msgid "No upcoming events "
|
1964 |
-
msgstr "Il n'y a pas d'événements à venir."
|
1965 |
-
|
1966 |
-
#
|
1967 |
-
#: ../lib/tribe-template-factory.class.php:247
|
1968 |
-
msgid "No matching events "
|
1969 |
-
msgstr "Il n'y a pas d'événements correspondants."
|
1970 |
|
1971 |
#
|
1972 |
-
#: ../lib/tribe-template-factory.class.php:
|
1973 |
msgid "No previous events "
|
1974 |
msgstr "Il n'y a pas d'anciens événements."
|
1975 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1976 |
#: ../lib/tribe-the-events-calendar-import.class.php:64
|
1977 |
#, php-format
|
1978 |
msgid ""
|
@@ -2042,11 +2113,6 @@ msgstr "Identifiant du Champ :"
|
|
2042 |
msgid "Non-existant field validation function passed"
|
2043 |
msgstr "Fonction de validation du champ inséré non existant"
|
2044 |
|
2045 |
-
#: ../lib/tribe-validate.class.php:110
|
2046 |
-
msgctxt "non-existant function name passed for field validation"
|
2047 |
-
msgid "with function name:"
|
2048 |
-
msgstr "avec le nom de la fonction :"
|
2049 |
-
|
2050 |
#: ../lib/tribe-validate.class.php:135 ../lib/tribe-validate.class.php:153
|
2051 |
#, php-format
|
2052 |
msgid "%s must contain numbers and letters only"
|
@@ -3319,7 +3385,295 @@ msgstr "Voir tous les événements"
|
|
3319 |
msgid "There are no upcoming events at this time."
|
3320 |
msgstr "Aucun événement à venir prochainement."
|
3321 |
|
3322 |
-
#: ../lib/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3323 |
#, php-format
|
3324 |
msgid ""
|
3325 |
"There were no results found for <strong>\"%s\"</strong> this month. Try "
|
@@ -3328,7 +3682,7 @@ msgstr ""
|
|
3328 |
"Il n'y a pas de résultats trouvés pour <strong>\"%s\"</strong> dans ce mois. "
|
3329 |
"Essayez de rechercher dans le mois prochain."
|
3330 |
|
3331 |
-
#: ../lib/template-classes/single-event.php:
|
3332 |
msgid "This event has passed."
|
3333 |
msgstr "Cet événement est terminé"
|
3334 |
|
@@ -3363,31 +3717,31 @@ msgid "Security Code"
|
|
3363 |
msgstr "Code de sécurité"
|
3364 |
|
3365 |
#: ../lib/tickets/tribe-tickets-attendees.php:74
|
3366 |
-
#: ../lib/tickets/tribe-tickets-attendees.php:
|
3367 |
-
#: ../lib/tickets/tribe-tickets-attendees.php:
|
3368 |
msgid "Check in"
|
3369 |
msgstr "Enregistrement du participant"
|
3370 |
|
3371 |
-
#: ../lib/tickets/tribe-tickets-attendees.php:
|
3372 |
-
#: ../lib/tickets/tribe-tickets-attendees.php:
|
3373 |
msgid "Undo Check in"
|
3374 |
msgstr "Annuler l'enregistrement"
|
3375 |
|
3376 |
-
#: ../lib/tickets/tribe-tickets-attendees.php:
|
3377 |
msgid "Print"
|
3378 |
msgstr "Imprimer"
|
3379 |
|
3380 |
#
|
3381 |
-
#: ../lib/tickets/tribe-tickets-attendees.php:
|
3382 |
msgid "Email"
|
3383 |
msgstr "Email"
|
3384 |
|
3385 |
#
|
3386 |
-
#: ../lib/tickets/tribe-tickets-attendees.php:
|
3387 |
msgid "Export"
|
3388 |
msgstr "Export"
|
3389 |
|
3390 |
-
#: ../lib/tickets/tribe-tickets-attendees.php:
|
3391 |
msgid "Filter by ticket #, order # or security code"
|
3392 |
msgstr "Filtrer par ticket #, commande # ou code de sécurité"
|
3393 |
|
@@ -3443,41 +3797,47 @@ msgstr "Votre ticket à été sauvegardé."
|
|
3443 |
msgid "Your ticket has been deleted."
|
3444 |
msgstr "Votre ticket à été supprimé."
|
3445 |
|
3446 |
-
#: ../public/advanced-functions/meta.php:
|
3447 |
msgid "Start:"
|
3448 |
msgstr "Début :"
|
3449 |
|
3450 |
-
#: ../public/advanced-functions/meta.php:
|
3451 |
msgid "End:"
|
3452 |
msgstr "Fin :"
|
3453 |
|
3454 |
-
#: ../public/advanced-functions/meta.php:
|
|
|
3455 |
msgid "Date:"
|
3456 |
msgstr "Date :"
|
3457 |
|
3458 |
-
#: ../public/advanced-functions/meta.php:
|
|
|
|
|
|
|
|
|
|
|
3459 |
msgid "Click to view a Google Map"
|
3460 |
msgstr "Cliquez pour voir une Google Map"
|
3461 |
|
3462 |
#
|
3463 |
-
#: ../public/advanced-functions/meta.php:
|
3464 |
msgid "+ Google Map"
|
3465 |
msgstr "+ Google Map"
|
3466 |
|
3467 |
-
#: ../public/advanced-functions/meta.php:
|
3468 |
msgid "Details"
|
3469 |
msgstr "Détails"
|
3470 |
|
3471 |
#
|
3472 |
-
#: ../public/advanced-functions/meta.php:
|
3473 |
msgid "Event Tags:"
|
3474 |
msgstr "Mots-clefs de l'événement :"
|
3475 |
|
3476 |
-
#: ../public/advanced-functions/meta.php:
|
3477 |
msgid "Origin:"
|
3478 |
msgstr "Origine :"
|
3479 |
|
3480 |
-
#: ../public/advanced-functions/meta.php:
|
3481 |
msgid "Event:"
|
3482 |
msgstr "Evénément :"
|
3483 |
|
@@ -3491,43 +3851,28 @@ msgid "Tags:"
|
|
3491 |
msgstr "Mots-clefs :"
|
3492 |
|
3493 |
#
|
3494 |
-
#: ../public/template-tags/general.php:
|
3495 |
msgid "Loading Events"
|
3496 |
msgstr "Chargement des événements"
|
3497 |
|
3498 |
-
#: ../public/template-tags/general.php:
|
3499 |
msgid "Free"
|
3500 |
msgstr "Gratuit"
|
3501 |
|
3502 |
#
|
3503 |
-
#: ../public/template-tags/general.php:
|
3504 |
msgid "Recurring Event"
|
3505 |
msgstr "Événement récurrent"
|
3506 |
|
3507 |
-
#: ../public/template-tags/general.php:
|
3508 |
msgid "(See all)"
|
3509 |
msgstr "(Voir tous)"
|
3510 |
|
3511 |
-
#: ../public/template-tags/general.php:
|
3512 |
#, php-format
|
3513 |
msgid "Calendar powered by %sThe Events Calendar%s"
|
3514 |
msgstr "Calendrier créer avec %sThe Events Calendar%s"
|
3515 |
|
3516 |
-
#: ../public/template-tags/loop.php:150
|
3517 |
-
#, php-format
|
3518 |
-
msgid "Events for %1$s"
|
3519 |
-
msgstr "Événements pour %1$s"
|
3520 |
-
|
3521 |
-
#: ../public/template-tags/loop.php:158
|
3522 |
-
#, php-format
|
3523 |
-
msgid "Events for %1$s through %2$s"
|
3524 |
-
msgstr "Événements pour %1$s jusqu'à %2$s"
|
3525 |
-
|
3526 |
-
#
|
3527 |
-
#: ../public/template-tags/loop.php:171
|
3528 |
-
msgid "Events for "
|
3529 |
-
msgstr "Événements pour "
|
3530 |
-
|
3531 |
#: ../public/template-tags/options.php:20
|
3532 |
#, php-format
|
3533 |
msgid "Your current Events URL is %s"
|
@@ -3598,61 +3943,37 @@ msgstr "Type de ticket"
|
|
3598 |
msgid "Purchaser"
|
3599 |
msgstr "Acheteur"
|
3600 |
|
3601 |
-
#~ msgid ""
|
3602 |
-
#~ "
|
3603 |
-
#~ msgstr ""
|
3604 |
-
#~ "Besoin de modifier l'affichage de ce widget? Essayez un %sRemplacement de "
|
3605 |
-
#~ "gabarit%s."
|
3606 |
|
3607 |
-
#~
|
3608 |
-
#~ "
|
3609 |
-
#~ "
|
3610 |
-
#~ "styles."
|
3611 |
-
#~ msgstr ""
|
3612 |
-
#~ "Ces styles contiennent le niveau strict minimum de mise en page requis "
|
3613 |
-
#~ "pour les gabarits complexes, ils sont recommandés si vous personnalisez "
|
3614 |
-
#~ "les styles des gabarits d'événements."
|
3615 |
|
3616 |
-
#~ msgid ""
|
3617 |
-
#~ "
|
3618 |
-
#~ "
|
3619 |
-
#~ msgstr ""
|
3620 |
-
#~ "Ces styles contiennent un niveau de mise en page plus complexe et devrait "
|
3621 |
-
#~ "s'adapter à votre thème"
|
3622 |
|
3623 |
-
#~ msgid "
|
3624 |
-
#~
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3625 |
|
3626 |
#~ msgid ""
|
3627 |
-
#~ "
|
3628 |
-
#~ "
|
3629 |
-
#~ "managing your events. Here are some ways to get started:</"
|
3630 |
-
#~ "p><ul><li><strong>Feeling adventurous?</strong> Jump right into it by "
|
3631 |
-
#~ "visiting the Events menu to <a href=\"%s\">add your first event</a>.</"
|
3632 |
-
#~ "li><li><strong>Want to get the low-down first?</strong> Visit our <a href="
|
3633 |
-
#~ "\"%s\">new user primer</a>, designed to help familiarize you with the "
|
3634 |
-
#~ "plugin basics.</li></ul>"
|
3635 |
#~ msgstr ""
|
3636 |
-
#~ "
|
3637 |
-
#~ "
|
3638 |
-
#~ "est très simple pour la gestation de vos événements. Voici quelques liens "
|
3639 |
-
#~ "pour vows aider à démarrer: </p><ul><li><strong>Envie d'aventure?</"
|
3640 |
-
#~ "strong> Aller droit au but en visitant le menu d'Événements <a href=\"%s"
|
3641 |
-
#~ "\">Créer votre premier événement</a>.</li><li><strong>Besoin d'aide?</"
|
3642 |
-
#~ "strong> Visitez notre guide <a href=\"%s\">Nouvel utilisateur</a> (en "
|
3643 |
-
#~ "anglais), afin de vous aider à vous familiariser avec les bases de ce "
|
3644 |
-
#~ "plugin.</li></ul>"
|
3645 |
|
3646 |
-
#~ msgid ""
|
3647 |
-
#~ "<p>We love all our users and want to help free & PRO customers alike. If "
|
3648 |
-
#~ "you're running the latest version of The Events Calendar and are having "
|
3649 |
-
#~ "problems, post a thread at the %s on WordPress.org. We hit the forum once "
|
3650 |
-
#~ "a week to look for legitimate bug reports and do what we can to assist "
|
3651 |
-
#~ "users.</p>"
|
3652 |
#~ msgstr ""
|
3653 |
-
#~ "
|
3654 |
-
#~ "
|
3655 |
-
#~ "dernière version de The Events Calendar et vous avez des problèmes, "
|
3656 |
-
#~ "consultez ou écrivez un post sur %s sur Wordpress.org. Nous consultons le "
|
3657 |
-
#~ "forum chaque semaine pour énumérer les bugs et vous assistez de notre "
|
3658 |
-
#~ "mieux."
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: The Events Calendar\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
+
"POT-Creation-Date: 2013-11-03 21:49-0500\n"
|
9 |
+
"PO-Revision-Date: 2013-11-22 10:49-0500\n"
|
10 |
+
"Last-Translator: Bastien Bournet-Charrier <bastienbc@gmail.com>\n"
|
11 |
"Language-Team: Dom Monhardt <thatsniceuk@gmail.com>\n"
|
12 |
"Language: fr\n"
|
13 |
"MIME-Version: 1.0\n"
|
36 |
#
|
37 |
#: ../admin-views/app-shop.php:53
|
38 |
msgid "Last Update"
|
39 |
+
msgstr "Dernière mise-à-jour"
|
40 |
|
41 |
#: ../admin-views/event-sidebar-options.php:11
|
42 |
msgid "Hide From Event Listings"
|
44 |
|
45 |
#: ../admin-views/event-sidebar-options.php:12
|
46 |
msgid "Sticky in Calendar View"
|
47 |
+
msgstr "Mettre en avant sur l'affichage du Calendrier"
|
48 |
|
49 |
#
|
50 |
#: ../admin-views/events-audit-trail.php:41
|
51 |
msgid "Auditing Information"
|
52 |
+
msgstr "Informations de comptes"
|
53 |
|
54 |
#: ../admin-views/events-audit-trail.php:47
|
55 |
msgid "Created by:"
|
56 |
msgstr "Crée par :"
|
57 |
|
58 |
#: ../admin-views/events-audit-trail.php:51
|
|
|
59 |
msgid "Audit Trail:"
|
60 |
msgstr "Piste d'Audit :"
|
61 |
|
81 |
#
|
82 |
#: ../admin-views/events-meta-box.php:39
|
83 |
msgid "Start Date & Time:"
|
84 |
+
msgstr "Heure et date de début :"
|
85 |
|
86 |
#: ../admin-views/events-meta-box.php:42 ../admin-views/events-meta-box.php:63
|
87 |
msgid "YYYY-MM-DD"
|
90 |
#
|
91 |
#: ../admin-views/events-meta-box.php:60
|
92 |
msgid "End Date & Time:"
|
93 |
+
msgstr "Heure et date de fin :"
|
94 |
|
95 |
#: ../admin-views/events-meta-box.php:85
|
96 |
msgid "Event Location Details"
|
110 |
msgstr "Lien :"
|
111 |
|
112 |
#: ../admin-views/events-meta-box.php:115
|
113 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:61
|
114 |
msgid "Event Cost"
|
115 |
msgstr "Prix d'entrée de l'événement "
|
116 |
|
119 |
msgstr "Symbole de la devise"
|
120 |
|
121 |
#: ../admin-views/events-meta-box.php:122
|
122 |
+
#: ../public/advanced-functions/meta.php:307
|
123 |
msgid "Cost:"
|
124 |
msgstr "Prix :"
|
125 |
|
136 |
#: ../admin-views/organizer-meta-box.php:19
|
137 |
#: ../admin-views/venue-meta-box.php:93
|
138 |
#: ../admin-views/tickets/attendees.php:39
|
139 |
+
#: ../public/advanced-functions/meta.php:395
|
140 |
+
#: ../public/advanced-functions/meta.php:457
|
141 |
msgid "Phone:"
|
142 |
msgstr "Téléphone :"
|
143 |
|
144 |
#: ../admin-views/organizer-meta-box.php:23
|
145 |
#: ../admin-views/venue-meta-box.php:97
|
146 |
#: ../admin-views/tickets/attendees.php:45
|
147 |
+
#: ../public/advanced-functions/meta.php:346
|
148 |
+
#: ../public/advanced-functions/meta.php:421
|
149 |
+
#: ../public/advanced-functions/meta.php:483
|
150 |
msgid "Website:"
|
151 |
msgstr "Site Web :"
|
152 |
|
153 |
#: ../admin-views/organizer-meta-box.php:27
|
154 |
+
#: ../public/advanced-functions/meta.php:470
|
155 |
msgid "Email:"
|
156 |
msgstr "Courriel :"
|
157 |
|
158 |
+
#: ../admin-views/organizer-meta-box.php:28
|
159 |
+
msgid ""
|
160 |
+
"You may want to consider <a href=\"http://wordpress.org/plugins/tags/"
|
161 |
+
"obfuscate\">obfuscating</a> any e-mail address published on your site to "
|
162 |
+
"best avoid it getting harvested by spammers."
|
163 |
+
msgstr ""
|
164 |
+
"Vous pourriez envisager de <a href=\"http://wordpress.org/plugins/tags/"
|
165 |
+
"obfuscate\">noircir (Anglais)</a> les adresses e-mail publiées sur votre "
|
166 |
+
"site pour empêcher qu'elles soient collectées par des spammeurs."
|
167 |
+
|
168 |
#: ../admin-views/recurrence-dialog.php:13
|
169 |
msgid ""
|
170 |
"Would you like to change only this instance of the event, or all future "
|
202 |
"Would you like to delete only this instance of the event, or all future "
|
203 |
"events in this series?"
|
204 |
msgstr ""
|
205 |
+
"Voulez-vous pouvoir changer seulement l'instance de cet événement, ou tous "
|
206 |
+
"les futures événements de cette ensemble?"
|
207 |
|
208 |
#: ../admin-views/recurrence-dialog.php:23
|
209 |
msgid "All other future events in the series will not be deleted."
|
220 |
|
221 |
#: ../admin-views/tribe-options-display.php:5
|
222 |
msgid "Default Page Template"
|
223 |
+
msgstr "Thème par défaut des pages"
|
224 |
|
225 |
+
# Settings for Display : Paramètres d'affichage
|
226 |
+
# Display the settings : Afficher les paramètres
|
227 |
#: ../admin-views/tribe-options-display.php:29
|
228 |
msgid "Display Settings"
|
229 |
+
msgstr "Paramètres d'affichage"
|
230 |
|
231 |
#: ../admin-views/tribe-options-display.php:34
|
232 |
+
#, php-format
|
233 |
msgid ""
|
234 |
"<p>The settings below control the display of your calendar. If things don't "
|
235 |
"look right, try switching between the three style sheet options or pick a "
|
241 |
msgstr ""
|
242 |
"<p>Les réglages çi-dessous contrôlent l'affichage de votre calendrier. Si "
|
243 |
"l'affichage n'est pas normal, essayez de changer entre les 3 options de "
|
244 |
+
"feuilles de styles ou choisissez un modèle de page de votre thème.</p><p>Il "
|
245 |
+
"y aura des situations où aucun template ne sera 100% parfait. Consultez "
|
246 |
+
"nos <a href=\"%s\">Guides de thèmes (anglais)</a> pour des instructions sur "
|
247 |
"des modifications personnalisées. Besoin de créer un nouvel affichage? "
|
248 |
"Téléchargez une copie du plugin <a href=\"%s\">Sample Agenda View sur Github "
|
249 |
+
"(anglais)</a></p>."
|
250 |
|
251 |
#
|
252 |
#: ../admin-views/tribe-options-display.php:49
|
253 |
msgid "Basic Template Settings"
|
254 |
+
msgstr "Réglages de base du thème"
|
255 |
|
256 |
#
|
257 |
#: ../admin-views/tribe-options-display.php:53
|
258 |
msgid "Default stylesheet used for events templates"
|
259 |
+
msgstr "Feuille de style par défaut utilisée pour les modèles d'événements"
|
260 |
|
261 |
#: ../admin-views/tribe-options-display.php:56
|
262 |
msgid "Skeleton Styles"
|
263 |
+
msgstr "Styles de maquette"
|
264 |
|
265 |
#: ../admin-views/tribe-options-display.php:58
|
266 |
msgid ""
|
267 |
"Only includes enough css to achieve complex layouts like calendar and week "
|
268 |
"view."
|
269 |
msgstr ""
|
270 |
+
"Incluer uniquement le CSS nécessaire pour afficher les éléments complexes "
|
271 |
"comme la vue calendrier ou par semaine."
|
272 |
|
273 |
#: ../admin-views/tribe-options-display.php:60
|
291 |
#
|
292 |
#: ../admin-views/tribe-options-display.php:73
|
293 |
msgid "Events template"
|
294 |
+
msgstr "Modèle d'événements"
|
295 |
|
296 |
#: ../admin-views/tribe-options-display.php:74
|
297 |
msgid ""
|
298 |
"Choose a page template to control the appearance of your calendar and event "
|
299 |
"content."
|
300 |
msgstr ""
|
301 |
+
"Choisissez un modèle de page pour contrôler l'apparence de votre calendrier "
|
302 |
"et le contenu de vos événements."
|
303 |
|
304 |
#: ../admin-views/tribe-options-display.php:82
|
314 |
msgstr "Affichage par défaut"
|
315 |
|
316 |
#: ../admin-views/tribe-options-display.php:98
|
|
|
317 |
msgid "Disable the Event Search Bar"
|
318 |
+
msgstr "Désactiver la barre de recherche d'événement"
|
319 |
|
320 |
#: ../admin-views/tribe-options-display.php:99
|
|
|
321 |
msgid "Check this to use the classic header."
|
322 |
+
msgstr "Cochez afin d'utiliser l'en-tête classic."
|
323 |
|
324 |
#: ../admin-views/tribe-options-display.php:105
|
325 |
msgid "Month view events per day"
|
326 |
+
msgstr "Nombre d'événements par jour en vue mensuelle"
|
327 |
|
328 |
#: ../admin-views/tribe-options-display.php:106
|
329 |
msgid "Allow more than the default 3 events per day in month view."
|
330 |
+
msgstr "Permettre plus de 3 événements par défaut de la vue mensuelle."
|
331 |
|
332 |
#
|
333 |
#: ../admin-views/tribe-options-display.php:113
|
334 |
msgid "Advanced Template Settings"
|
335 |
+
msgstr "Réglages avancés du thème"
|
336 |
|
337 |
#
|
338 |
#: ../admin-views/tribe-options-display.php:117
|
428 |
#
|
429 |
#: ../admin-views/tribe-options-general.php:47
|
430 |
msgid "Show The Events Calendar link"
|
431 |
+
msgstr "Voir le lien de The Event Calendar"
|
432 |
|
433 |
#
|
434 |
#: ../admin-views/tribe-options-general.php:61
|
440 |
msgstr "Nombre d'événements à afficher par page"
|
441 |
|
442 |
#: ../admin-views/tribe-options-general.php:72
|
443 |
+
msgid "Use Javascript to control date filtering"
|
444 |
+
msgstr "Utilisez Javascript pour contrôler le filtrage de la date"
|
445 |
|
446 |
#: ../admin-views/tribe-options-general.php:73
|
447 |
+
msgid ""
|
448 |
+
"This option is disabled when \"Disable the Event Search Bar\" is checked on "
|
449 |
+
"the Display settings tab."
|
450 |
+
msgstr ""
|
451 |
+
"Cette option est désactivée lorsque\"Désactiver la barre de recherche "
|
452 |
+
"d'événement\" est coché dans l'onglet Paramètres d'affichage."
|
453 |
+
|
454 |
+
#: ../admin-views/tribe-options-general.php:73
|
455 |
+
msgid ""
|
456 |
+
"Enable live ajax for datepicker on front end (User submit not required)."
|
457 |
+
msgstr ""
|
458 |
+
"Activer Ajax pour le selecteur de date sur l'interface utilisateur (front-"
|
459 |
+
"end). Ne requiert pas la soumission de l'utilisateur."
|
460 |
|
461 |
#
|
462 |
+
#: ../admin-views/tribe-options-general.php:81
|
463 |
msgid "Show comments"
|
464 |
+
msgstr "Afficher les commentaires"
|
465 |
|
466 |
+
#: ../admin-views/tribe-options-general.php:82
|
467 |
msgid "Enable comments on event pages."
|
468 |
+
msgstr "Activer les commentaires sur les pages d'événements."
|
469 |
|
470 |
+
#: ../admin-views/tribe-options-general.php:88
|
471 |
msgid "Include events in main blog loop"
|
472 |
+
msgstr "Intègre les événements dans la boucle principale du blog"
|
473 |
|
474 |
+
#: ../admin-views/tribe-options-general.php:89
|
475 |
msgid ""
|
476 |
"Show events with the site's other posts. When this box is checked, events "
|
477 |
"will also continue to appear on the default events page."
|
478 |
msgstr ""
|
479 |
+
"Affiche les événements avec les autres articles du site. Quand cette case "
|
480 |
"est cochée, les événements seront toujours affichés sur la page d'événements "
|
481 |
"par défaut."
|
482 |
|
483 |
+
#: ../admin-views/tribe-options-general.php:95
|
484 |
+
#: ../admin-views/tribe-options-general.php:101
|
485 |
msgid "Events URL slug"
|
486 |
msgstr "Nom (slug) de L'URL des événements"
|
487 |
|
488 |
+
#: ../admin-views/tribe-options-general.php:96
|
489 |
#, php-format
|
490 |
msgid ""
|
491 |
"You cannot edit the slug for your events page as you do not have pretty "
|
493 |
"%s</a>. In order to edit the slug here, <a href=\"%soptions-permalink.php"
|
494 |
"\">enable pretty permalinks</a>."
|
495 |
msgstr ""
|
496 |
+
"Vous ne pouvez pas modifier le nom (slug) de votre page d'événements car les "
|
497 |
+
"liens-jolies (pretty permalinks) sont désactivés. L'adresse URL courante de "
|
498 |
+
"votre page d'événements est <a href=\"%s\">%s</a>. Pour pouvoir modifier le "
|
499 |
+
"nom (slug), <a href=\"%soptions-permalink.php\">Activer les permaliens</a>."
|
500 |
|
501 |
#
|
502 |
+
#: ../admin-views/tribe-options-general.php:108
|
503 |
#: ../public/template-tags/options.php:20
|
504 |
msgid "The slug used for building the events URL."
|
505 |
+
msgstr "Le nom (slug) utilisé pour créer l'URL des événements."
|
506 |
|
507 |
+
#: ../admin-views/tribe-options-general.php:108
|
508 |
#, php-format
|
509 |
msgid "Your current events URL is: %s"
|
510 |
msgstr "Le lien de l'événement est : %s"
|
511 |
|
512 |
#
|
513 |
+
#: ../admin-views/tribe-options-general.php:113
|
514 |
#: ../public/template-tags/options.php:43
|
515 |
msgid "Here is the iCal feed URL for your events:"
|
516 |
msgstr "Voici le lien du flux iCal pour vos événements :"
|
517 |
|
518 |
#
|
519 |
+
#: ../admin-views/tribe-options-general.php:118
|
520 |
msgid "Single event URL slug"
|
521 |
msgstr "Permalien pour un événement unique"
|
522 |
|
523 |
+
#: ../admin-views/tribe-options-general.php:125
|
524 |
#, php-format
|
525 |
msgid ""
|
526 |
"The above should ideally be plural, and this singular.<br />Your single "
|
527 |
"event URL is: %s"
|
528 |
msgstr ""
|
529 |
+
"Ci-dessus devrait idéalement être au pluriel, et celui ci au singulier. <br/"
|
530 |
">Le lien pour vos événements uniques est: %s"
|
531 |
|
532 |
+
#: ../admin-views/tribe-options-general.php:130
|
533 |
msgid "End of day cutoff"
|
534 |
msgstr "Heure de clôture de la fin de journée"
|
535 |
|
536 |
+
#: ../admin-views/tribe-options-general.php:138
|
537 |
msgid ""
|
538 |
+
"Have an event that runs past midnight? Select a time after that event's end "
|
539 |
+
"to avoid showing the event on the next day's calendar."
|
540 |
msgstr ""
|
541 |
+
"Votre événement se termine après minuit? Choisissez une heure après la fin "
|
542 |
+
"de votre événement pour éviter de montrer cet événement sur la journée "
|
543 |
+
"suivante."
|
544 |
|
545 |
+
#: ../admin-views/tribe-options-general.php:143
|
546 |
msgid "Default currency symbol"
|
547 |
msgstr "Symbole de devise par défaut"
|
548 |
|
549 |
+
#: ../admin-views/tribe-options-general.php:144
|
550 |
msgid ""
|
551 |
"Set the default currency symbol for event costs. Note that this only impacts "
|
552 |
"future events, and changes made will not apply retroactively."
|
556 |
"changements effectués ne s'appliquerons pas rétroactivement."
|
557 |
|
558 |
#
|
559 |
+
#: ../admin-views/tribe-options-general.php:151
|
560 |
msgid "Map Settings"
|
561 |
msgstr "Réglages des cartes"
|
562 |
|
563 |
+
#: ../admin-views/tribe-options-general.php:155
|
564 |
msgid "Enable Google Maps"
|
565 |
msgstr "Autoriser Google Maps "
|
566 |
|
567 |
+
#: ../admin-views/tribe-options-general.php:156
|
568 |
msgid "Check to enable maps for events and venues."
|
569 |
+
msgstr "Activer pour autoriser les cartes pour événements et lieux."
|
570 |
|
571 |
+
#: ../admin-views/tribe-options-general.php:163
|
|
|
572 |
msgid "Google Maps default zoom level"
|
573 |
+
msgstr "Niveau de zoom par défaut de Google Maps"
|
574 |
|
575 |
+
#: ../admin-views/tribe-options-general.php:164
|
576 |
msgid "0 = zoomed out; 21 = zoomed in."
|
577 |
+
msgstr "0 = Zoom minimum; 21 = Zoom maximum"
|
578 |
|
579 |
#
|
580 |
+
#: ../admin-views/tribe-options-general.php:172
|
581 |
msgid "Miscellaneous Settings"
|
582 |
+
msgstr "Paramètres divers"
|
583 |
|
584 |
+
#: ../admin-views/tribe-options-general.php:176
|
585 |
msgid "Duplicate Venues & Organizers"
|
586 |
+
msgstr "Lieux et organisateurs dupliqués"
|
587 |
|
588 |
+
#: ../admin-views/tribe-options-general.php:176
|
589 |
#: ../lib/tribe-amalgamator.php:252
|
590 |
msgid "Merge Duplicates"
|
591 |
msgstr "Fusionner les duplicatas"
|
592 |
|
593 |
+
#: ../admin-views/tribe-options-general.php:176
|
594 |
msgid ""
|
595 |
"You might find duplicate venues and organizers when updating The Events "
|
596 |
"Calendar from a pre-3.0 version. Click this button to automatically merge "
|
597 |
"identical venues and organizers."
|
598 |
msgstr ""
|
599 |
+
"Vous pourriez trouver des lieux et des organisateurs dupliqués lors d'une "
|
600 |
+
"mise-à-jour de The Events Calendar d'une version inférieur à la 3.0. Cliquez "
|
601 |
+
"sur ce bouton pour fusionner automatiquement les lieux et les organisateurs "
|
602 |
+
"identiques"
|
603 |
|
604 |
#
|
605 |
+
#: ../admin-views/tribe-options-general.php:181
|
606 |
msgid "Debug mode"
|
607 |
+
msgstr "Mode de débogage"
|
608 |
|
609 |
+
#: ../admin-views/tribe-options-general.php:187
|
610 |
#, php-format
|
611 |
msgid ""
|
612 |
"Enable this option to log debug information. By default this will log to "
|
614 |
"browser, then we recommend that you install the %s and look for the \"Tribe"
|
615 |
"\" tab in the debug output."
|
616 |
msgstr ""
|
617 |
+
"Activer cette option pour enregistrer les informations de débogage. Par "
|
618 |
+
"défaut les informations seront enregistrés sur le ficher d'enregistrement de "
|
619 |
+
"votre serveur PHP (Error Log). Si vous souhaitez voir les messages "
|
620 |
"enregistrés sur votre navigateur, nous vous recommandons d'installer %s et "
|
621 |
"de rechercher l'onglet \"Tribe\"."
|
622 |
|
623 |
+
#: ../admin-views/tribe-options-general.php:187
|
624 |
msgid "Debug Bar Plugin"
|
625 |
msgstr "Plugin Debug Bar"
|
626 |
|
|
|
|
|
|
|
|
|
|
|
627 |
#: ../admin-views/tribe-options-help.php:19
|
628 |
msgid "You need to upgrade!"
|
629 |
msgstr "Vous devez mettre à jour!"
|
668 |
msgstr "FAQ"
|
669 |
|
670 |
#: ../admin-views/tribe-options-help.php:79
|
671 |
+
#: ../lib/the-events-calendar.class.php:765
|
672 |
+
#: ../lib/the-events-calendar.class.php:3929
|
673 |
+
#: ../lib/the-events-calendar.class.php:4022
|
674 |
msgid "Help"
|
675 |
msgstr "Aide"
|
676 |
|
680 |
|
681 |
#: ../admin-views/tribe-options-help.php:87
|
682 |
msgid "Release Notes"
|
683 |
+
msgstr "Note de distribution"
|
684 |
|
685 |
#: ../admin-views/tribe-options-help.php:91
|
686 |
msgid "Forums"
|
704 |
"accompanying screenshots, the primer aims to take you from zero to hero in "
|
705 |
"no time."
|
706 |
msgstr ""
|
707 |
+
"%sNotre Guide du Nouvel Utilisateur%s a été conçu pour les gens dans votre "
|
708 |
+
"situation. Présentant une procédure étape par étape accompagné de vidéos et "
|
709 |
+
"de captures d'écran, ce guide a pour objectif de vous amener rapidement à "
|
710 |
+
"maitriser ce plugin."
|
711 |
|
712 |
#: ../admin-views/tribe-options-help.php:104
|
713 |
#, php-format
|
717 |
"helpful as it aims to address any basic install questions not addressed by "
|
718 |
"the new user primer."
|
719 |
msgstr ""
|
720 |
+
"%sFAQ - Installation/Configuration%s : Notre page de support vous aidera à "
|
721 |
+
"obtenir un aperçu des possibilités et des limitations de ce plugin. Cette "
|
722 |
+
"section de notre Foire Aux Questions peut vous être utile puisqu'elle vise à "
|
723 |
+
"répondre aux questions les plus courantes qui ne sont pas répondus dans "
|
724 |
+
"notre Guide du Nouvel Utilisateur."
|
725 |
|
726 |
#: ../admin-views/tribe-options-help.php:106
|
727 |
#, php-format
|
730 |
"example plugin that demonstrates how to register a new view. You can "
|
731 |
"%sdownload the plugin at GitHub%s to get started."
|
732 |
msgstr ""
|
733 |
+
"Êtes-vous un developpeur visant à construire votre propre interface? Nous "
|
734 |
+
"avons créé un plugin d'exemple qui montre comment procéder. Vous pouvez "
|
735 |
+
"%stélécharger ce plugin sur GitHub%s pour débuter."
|
736 |
|
737 |
#: ../admin-views/tribe-options-help.php:108
|
738 |
msgid ""
|
739 |
"Otherwise, if you're feeling adventurous, you can get started by heading to "
|
740 |
"the Events menu and adding your first event."
|
741 |
msgstr ""
|
742 |
+
"Cependant, si vous vous sentez confiant, vous pouvez débuter immédiatement "
|
743 |
+
"en vous dirigeant vers le menu Événements et en ajoutant votre premier "
|
744 |
+
"événement."
|
745 |
|
746 |
#: ../admin-views/tribe-options-help.php:112
|
747 |
#, php-format
|
750 |
"our users. Head over to our %sSupport Page%s and you'll find lots of great "
|
751 |
"resources, including:"
|
752 |
msgstr ""
|
753 |
+
"Nous avons entièrement reconstruit notre page de support dans l'objectif de "
|
754 |
+
"mieux aider nos utilisateurs. Dirigez vous sur notre %sPage de Support%s et "
|
755 |
+
"vous découvrirez un tas de nouvelles ressources, incluant :"
|
756 |
|
757 |
#: ../admin-views/tribe-options-help.php:114
|
758 |
#, php-format
|
760 |
"%sTemplate tags, functions, and hooks & filters%s for The Events Calendar "
|
761 |
"& Events Calendar PRO"
|
762 |
msgstr ""
|
763 |
+
"%sTags pour Template, fonctions, et crochets (hooks) & filtres%s pour The "
|
764 |
+
"Events Calendar & Events Calendar PRO"
|
765 |
|
766 |
#: ../admin-views/tribe-options-help.php:116
|
767 |
#, php-format
|
769 |
"%sFrequently Asked Questions%s ranging from the most basic setup questions "
|
770 |
"to advanced themer tweaks"
|
771 |
msgstr ""
|
772 |
+
"%sFoire Aux Questions%s : Réponses aux questions d'installation les plus "
|
773 |
+
"basiques jusqu'aux fonctions plus avancées de personnalisation"
|
774 |
|
775 |
#: ../admin-views/tribe-options-help.php:118
|
776 |
#, php-format
|
779 |
"community, covering custom queries, integration with third-party themes and "
|
780 |
"plugins, etc."
|
781 |
msgstr ""
|
782 |
+
"%sTutoriaux%s écrit par des membres de notre équipe ainsi que par les "
|
783 |
+
"utilisateurs de la communauté, abordant requêtes particulières, "
|
784 |
+
"l'intégration à des thèmes et plugins de tierces parties, etc."
|
785 |
|
786 |
#: ../admin-views/tribe-options-help.php:120
|
787 |
msgid ""
|
788 |
"Release notes for painting an overall picture of the plugin's lifecycle and "
|
789 |
"when features/bug fixes were introduced."
|
790 |
msgstr ""
|
791 |
+
"Notes de distribution sur l'évolution du plugin et l'introduction de "
|
792 |
+
"nouvelles fonctionnalités/correctifs"
|
793 |
|
794 |
#: ../admin-views/tribe-options-help.php:122
|
795 |
#, php-format
|
798 |
"The Events Calendar (including WooTickets, Community Events, Eventbrite "
|
799 |
"Tickets, Facebook Events, etc)"
|
800 |
msgstr ""
|
801 |
+
"%sDocumentation sur les suppléments%s pour toutes les extensions officielles "
|
802 |
+
"de Modern Tribe pour The Events Calendar (incluant WooTickets, Community "
|
803 |
+
"Events, Eventbrite Tickets, Facebook Events, etc.)"
|
804 |
|
805 |
#: ../admin-views/tribe-options-help.php:124
|
806 |
#, php-format
|
812 |
"add your own, and help us shape the future of the products business in a way "
|
813 |
"that best meets the community's needs."
|
814 |
msgstr ""
|
815 |
+
"Il existe également une page %sModern Tribe UserVoice%s que nous regardons "
|
816 |
+
"régulièrement pour des idées de nouvelles fonctionnalités provenant de la "
|
817 |
+
"communauté. Si après avoir testé le plugin et pris connaissance des "
|
818 |
+
"ressources ci-dessous vous ne trouvez pas une fonctionnalité qui devrait y "
|
819 |
+
"être, faites le nous savoir. Votez pour des requêtes existantes ou ajoutez "
|
820 |
+
"votre propre demande et aidez nous à dessiner le future de nos produits de "
|
821 |
+
"façon à mieux répondre aux besoins de la communauté."
|
822 |
|
823 |
#: ../admin-views/tribe-options-help.php:128
|
824 |
#, php-format
|
826 |
"Written documentation can only take things so far...sometimes, you need help "
|
827 |
"from a real person. This is where our %ssupport forums%s come into play."
|
828 |
msgstr ""
|
829 |
+
"Les documentations écrites ne sont pas toujours suffisantes... Parfois, vous "
|
830 |
+
"avez besoin de l'aide de vrais personnes. C'est pourquoi nous vous invitons "
|
831 |
+
"à utiliser notre %sForum de Support%s."
|
832 |
|
833 |
#: ../admin-views/tribe-options-help.php:129
|
834 |
#, php-format
|
839 |
"to read our %ssupport expectations sticky thread%s before posting so you "
|
840 |
"understand our limitations."
|
841 |
msgstr ""
|
842 |
+
"Les utilisateurs de The Events Calendar (gratuit) devraient soumettre leurs "
|
843 |
+
"demande de support sur la page du %sforum de support WordPress.org%s du "
|
844 |
+
"plugin. Bien que nous soyons heureux de vous aider à identifier et corriger "
|
845 |
+
"les problèmes soumis sur WordPress.org, veuillez vous assurer de lire notre "
|
846 |
+
"%sdiscussion importante sur les Attentes par rapport au support%s avant de "
|
847 |
+
"publier quoi que ce soit afin de bien comprendre nos limitations."
|
848 |
|
849 |
#: ../admin-views/tribe-options-help.php:130
|
850 |
msgid ""
|
854 |
"provide customization tips or assist in integrating with 3rd party plugins "
|
855 |
"or themes."
|
856 |
msgstr ""
|
857 |
+
"Nous visitons les forums de WordPress.org durant semaine pour vérifier les "
|
858 |
+
"bugs. Si vous soumettez un bug \"véritable\" que nous sommes en mesure de "
|
859 |
+
"reproduire, nous l'enregistrerons et le corrigerons au déploiement de notre "
|
860 |
+
"prochaine version. Cependant, veuillez noter que nous sommes malheureusement "
|
861 |
+
"dans l'impossibilité de fournir de l'assistance pour vos besoins de "
|
862 |
+
"personnalisation ou d'intégration avec des plugins ou thèmes de tierces "
|
863 |
+
"parties."
|
864 |
|
865 |
#: ../admin-views/tribe-options-help.php:131
|
866 |
#, php-format
|
870 |
"deeper level of customization/integration support for paying users than we "
|
871 |
"can on WordPress.org."
|
872 |
msgstr ""
|
873 |
+
"Si vous êtes un utilisateur de The Events Calender et voudrez plus "
|
874 |
+
"d'assistance, nous vous prions %sd'acheter une license PRO%s. Nous vérifions "
|
875 |
+
"les forums PRO quotidiennement et sommes en mesure de fournir une assistance "
|
876 |
+
"plus poussée aux utilisateurs payants pour vos besoin de personnalisation/"
|
877 |
+
"intégration que nous pouvons le faire sur WordPress.org."
|
878 |
|
879 |
#: ../admin-views/tribe-options-help.php:135
|
880 |
+
#, php-format
|
881 |
msgid ""
|
882 |
"If you find that you aren't getting the level of service you've come to "
|
883 |
"expect from Modern Tribe, shoot us an email at %s or tweet %s and tell us "
|
884 |
"why. We'll do what we can to make it right."
|
885 |
msgstr ""
|
886 |
+
"Si vous estimez que vous ne recevez pas le niveau de service que vous "
|
887 |
+
"attendriez de Modern Tribe, envoyez-nous un email à %s (en anglais) ou "
|
888 |
+
"écrivez un tweet sur %s (en anglais) en nous disant pourquoi. Nous ferons "
|
889 |
+
"notre possible pour corriger la situation."
|
890 |
|
891 |
#: ../admin-views/tribe-options-help.php:136
|
892 |
msgid "More..."
|
905 |
msgstr "Mise en route"
|
906 |
|
907 |
#: ../admin-views/tribe-options-help.php:153
|
|
|
908 |
msgid "Support Resources To Help You Kick Ass"
|
909 |
+
msgstr "Documents d'aide pour t'aider à déchirer"
|
910 |
|
911 |
#: ../admin-views/tribe-options-help.php:156
|
|
|
912 |
msgid "Forums: Because Everyone Needs A Buddy"
|
913 |
+
msgstr "Forums : Parce que tout le monde à besoin d'un ami"
|
914 |
|
915 |
#: ../admin-views/tribe-options-help.php:159
|
916 |
msgid "Not getting help?"
|
917 |
+
msgstr "Vous n'arrivez pas à obtenir de l'aide?"
|
918 |
|
919 |
+
#: ../admin-views/tribe-options-help.php:171
|
920 |
+
#: ../lib/the-events-calendar.class.php:508
|
921 |
#: ../lib/tribe-settings.class.php:135
|
922 |
msgid "The Events Calendar"
|
923 |
msgstr "The Events Calendar"
|
924 |
|
925 |
+
#: ../admin-views/tribe-options-help.php:175
|
926 |
msgid "Latest Version:"
|
927 |
msgstr "Dernière version :"
|
928 |
|
929 |
+
#: ../admin-views/tribe-options-help.php:176
|
930 |
msgid "Author:"
|
931 |
msgstr "Auteur :"
|
932 |
|
933 |
#
|
934 |
+
#: ../admin-views/tribe-options-help.php:176
|
935 |
msgid "Modern Tribe Inc"
|
936 |
msgstr "Modern Tribe Inc"
|
937 |
|
938 |
+
#: ../admin-views/tribe-options-help.php:177
|
939 |
msgid "Requires:"
|
940 |
msgstr "Requiert :"
|
941 |
|
942 |
+
#: ../admin-views/tribe-options-help.php:177
|
943 |
msgid "WordPress "
|
944 |
msgstr "WordPress"
|
945 |
|
946 |
+
#: ../admin-views/tribe-options-help.php:178
|
947 |
msgid "Wordpress.org Plugin Page"
|
948 |
msgstr "Page de plugins Wordpress.org"
|
949 |
|
950 |
+
#: ../admin-views/tribe-options-help.php:183
|
951 |
msgid "Average Rating"
|
952 |
msgstr "Note moyenne"
|
953 |
|
954 |
+
#: ../admin-views/tribe-options-help.php:188
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
955 |
msgid "Give us 5 stars!"
|
956 |
msgstr "Donnez nous 5 étoiles!"
|
957 |
|
958 |
+
#: ../admin-views/tribe-options-help.php:191
|
959 |
msgid "Premium Add-Ons"
|
960 |
msgstr "Modules Premiums"
|
961 |
|
962 |
+
#: ../admin-views/tribe-options-help.php:197
|
963 |
msgid "(Coming Soon!)"
|
964 |
msgstr "(À venir!)"
|
965 |
|
966 |
+
#: ../admin-views/tribe-options-help.php:204
|
967 |
msgid "News and Tutorials"
|
968 |
msgstr "News et tutoriaux"
|
969 |
|
970 |
#
|
971 |
#: ../admin-views/tribe-options-network.php:14
|
972 |
msgid "Network Settings"
|
973 |
+
msgstr "Réglages du réseau"
|
974 |
|
975 |
#: ../admin-views/tribe-options-network.php:18
|
976 |
msgid ""
|
977 |
"This is where all of the global network settings for Modern Tribe's The "
|
978 |
"Events Calendar can be modified."
|
979 |
msgstr ""
|
980 |
+
"C'est ici que tous les réglages globaux de réseau du plugin The Events "
|
981 |
"Calendar de Modern Tribe peuvent être modifiés."
|
982 |
|
983 |
#: ../admin-views/tribe-options-network.php:26
|
989 |
msgstr "Nom de la salle :"
|
990 |
|
991 |
#: ../admin-views/venue-meta-box.php:27
|
992 |
+
#: ../public/advanced-functions/meta.php:409
|
993 |
msgid "Address:"
|
994 |
msgstr "Adresse :"
|
995 |
|
1015 |
|
1016 |
#: ../admin-views/venue-meta-box.php:112 ../admin-views/venue-meta-box.php:134
|
1017 |
msgid "Show Google Map:"
|
1018 |
+
msgstr "Afficher Google Map "
|
1019 |
|
1020 |
#: ../admin-views/venue-meta-box.php:122 ../admin-views/venue-meta-box.php:144
|
1021 |
msgid "Show Google Maps Link:"
|
1022 |
+
msgstr "Afficher le lien Google Maps"
|
1023 |
|
1024 |
#: ../admin-views/widget-admin-list.php:11
|
1025 |
msgid "Title:"
|
1204 |
"date de début/fin de vente, les tickets seront disponibles entre maintenant "
|
1205 |
"jusqu'à la fin de l'événement."
|
1206 |
|
1207 |
+
#: ../lib/the-events-calendar.class.php:513
|
1208 |
msgid "month"
|
1209 |
msgstr "mois"
|
1210 |
|
1211 |
+
#: ../lib/the-events-calendar.class.php:514
|
1212 |
msgid "upcoming"
|
1213 |
msgstr "à venir"
|
1214 |
|
1215 |
+
#: ../lib/the-events-calendar.class.php:515
|
1216 |
msgid "past"
|
1217 |
msgstr "terminé"
|
1218 |
|
1219 |
+
#: ../lib/the-events-calendar.class.php:517
|
1220 |
msgid "venue"
|
1221 |
msgstr "lieu"
|
1222 |
|
1223 |
+
#: ../lib/the-events-calendar.class.php:531
|
1224 |
#, php-format
|
1225 |
msgid "Initializing Tribe Events on %s"
|
1226 |
msgstr "Initialisation de Tribe Events à %s"
|
1227 |
|
1228 |
+
#: ../lib/the-events-calendar.class.php:644
|
1229 |
#, php-format
|
1230 |
msgid ""
|
1231 |
"Your version of The Events Calendar is not up-to-date with one of your The "
|
1234 |
"Votre version de The Event Calendar n'est pas à jour avec un de vos module "
|
1235 |
"de The Event Calendar. Veuillez %sMettre à jour.%s"
|
1236 |
|
1237 |
+
#: ../lib/the-events-calendar.class.php:661
|
1238 |
+
#, php-format
|
1239 |
msgid ""
|
1240 |
"The following plugins are out of date: <b>%s</b>. All add-ons contain "
|
1241 |
"dependencies on The Events Calendar and will not function properly unless "
|
1242 |
"paired with the right version. %sWant to pair an older version%s?"
|
1243 |
msgstr ""
|
1244 |
+
"Les plugins suivant ne sont pas à jour : <b>%s</b>. Tous les modules "
|
1245 |
+
"complémentaires contiennent des dépendances de The Events Calendar et ne "
|
1246 |
+
"fonctionneront pas correctement à moins qu'ils soient jumelés à leur version "
|
1247 |
+
"correspondante. %sBesoin d'une version précédente%s?"
|
1248 |
|
1249 |
+
#: ../lib/the-events-calendar.class.php:725
|
1250 |
+
#: ../lib/the-events-calendar.class.php:760
|
1251 |
+
#: ../lib/the-events-calendar.class.php:762
|
1252 |
msgid "Licenses"
|
1253 |
msgstr "Licences"
|
1254 |
|
1255 |
+
#: ../lib/the-events-calendar.class.php:729
|
1256 |
+
#, php-format
|
1257 |
msgid ""
|
1258 |
"<p>The license key you received when completing your purchase from %s will "
|
1259 |
"grant you access to support and updates until it expires. You do not need to "
|
1279 |
"veuillez attendre un moment pour sa validation. Tout est fonctionnel "
|
1280 |
"lorsqu'une date d'expiration s'affiche en vert ainsi qu'un message \"valide"
|
1281 |
"\".</p> <p>Si un message s'affiche en rouge indiquant que votre clé n'est "
|
1282 |
+
"pas valide ou excède la limite d'installations, veuillez vous rendre sur <a "
|
1283 |
+
"href=\"%s\" target=\"_blank\">%s</a>pour gérer vos installations ou "
|
1284 |
+
"renouvellements / mise-à-jour de votre licence.</p> <p>Mise à jour non "
|
1285 |
"affichée? Allez sur <a href=\"%s\">Tableau de Bord > Mises à jours</a> et "
|
1286 |
"cliquez \"Vérifier à nouveau\".</p>"
|
1287 |
|
1288 |
+
#: ../lib/the-events-calendar.class.php:752
|
1289 |
msgid "General"
|
1290 |
msgstr "Général"
|
1291 |
|
1292 |
+
#: ../lib/the-events-calendar.class.php:753
|
1293 |
msgid "Display"
|
1294 |
msgstr "Affichage"
|
1295 |
|
1296 |
+
#: ../lib/the-events-calendar.class.php:804
|
1297 |
#, php-format
|
1298 |
msgid ""
|
1299 |
"Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade "
|
1302 |
"Désolé, le plugin The Events Calendar requiert WordPress %s ou + . Mettez à "
|
1303 |
"jour votre installation WordPress "
|
1304 |
|
1305 |
+
#: ../lib/the-events-calendar.class.php:807
|
1306 |
#, php-format
|
1307 |
msgid ""
|
1308 |
"Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host "
|
1311 |
"Désolé, The Events Calendar nécessite PHP %s ou une version plus récente. "
|
1312 |
"Voyez avec votre hébergeur pour voir comment vous pouvez changer ça. "
|
1313 |
|
1314 |
+
#: ../lib/the-events-calendar.class.php:1022 ../lib/widget-list.class.php:169
|
1315 |
+
#: ../public/template-tags/loop.php:138
|
1316 |
msgid "Upcoming Events"
|
1317 |
msgstr "Événements à venir "
|
1318 |
|
1319 |
+
#: ../lib/the-events-calendar.class.php:1025
|
1320 |
+
#: ../public/template-tags/loop.php:168
|
1321 |
msgid "Past Events"
|
1322 |
msgstr "Événements passés"
|
1323 |
|
1324 |
+
#: ../lib/the-events-calendar.class.php:1030
|
1325 |
+
#: ../lib/the-events-calendar.class.php:1037
|
1326 |
+
#: ../public/template-tags/loop.php:173
|
1327 |
#, php-format
|
1328 |
msgid "Events for %s"
|
1329 |
msgstr "Événements pour %s"
|
1330 |
|
1331 |
+
#: ../lib/the-events-calendar.class.php:1032
|
1332 |
msgid "Events this month"
|
1333 |
msgstr "Événements du mois"
|
1334 |
|
1335 |
+
#: ../lib/the-events-calendar.class.php:1044
|
1336 |
#, php-format
|
1337 |
msgid "Events at %s"
|
1338 |
msgstr "Événements à %s"
|
1339 |
|
1340 |
+
#: ../lib/the-events-calendar.class.php:1063
|
1341 |
msgid "No description has been entered for this event."
|
1342 |
msgstr "Aucune description n'a été rentrée pour cet événement. "
|
1343 |
|
1344 |
+
#: ../lib/the-events-calendar.class.php:1325
|
1345 |
msgid "category"
|
1346 |
msgstr "catégorie"
|
1347 |
|
1348 |
+
#: ../lib/the-events-calendar.class.php:1335
|
1349 |
msgid "tag"
|
1350 |
msgstr "Mot-clef"
|
1351 |
|
1352 |
+
#: ../lib/the-events-calendar.class.php:1362
|
1353 |
+
#: ../lib/the-events-calendar.class.php:3859
|
1354 |
+
#: ../lib/the-events-calendar.class.php:3920
|
1355 |
+
#: ../lib/io/csv/admin-views/import.php:31
|
1356 |
msgid "Events"
|
1357 |
msgstr "Événements"
|
1358 |
|
1359 |
+
#: ../lib/the-events-calendar.class.php:1363
|
1360 |
msgid "Event"
|
1361 |
msgstr "Evénément"
|
1362 |
|
1363 |
+
#: ../lib/the-events-calendar.class.php:1364
|
1364 |
+
#: ../lib/the-events-calendar.class.php:1377
|
1365 |
+
#: ../lib/the-events-calendar.class.php:1390
|
1366 |
msgid "Add New"
|
1367 |
msgstr "Nouveau "
|
1368 |
|
1369 |
+
#: ../lib/the-events-calendar.class.php:1365
|
1370 |
msgid "Add New Event"
|
1371 |
msgstr "Nouvel événement "
|
1372 |
|
1373 |
+
#: ../lib/the-events-calendar.class.php:1366
|
1374 |
msgid "Edit Event"
|
1375 |
msgstr "Editer l'événement "
|
1376 |
|
1377 |
+
#: ../lib/the-events-calendar.class.php:1367
|
1378 |
msgid "New Event"
|
1379 |
msgstr "Nouvel événement "
|
1380 |
|
1381 |
+
#: ../lib/the-events-calendar.class.php:1368
|
1382 |
msgid "View Event"
|
1383 |
msgstr "Voir l'événement "
|
1384 |
|
1385 |
+
#: ../lib/the-events-calendar.class.php:1369
|
1386 |
msgid "Search Events"
|
1387 |
msgstr "Rechercher des événements "
|
1388 |
|
1389 |
+
#: ../lib/the-events-calendar.class.php:1370
|
1390 |
msgid "No events found"
|
1391 |
msgstr "Aucun événement "
|
1392 |
|
1393 |
+
#: ../lib/the-events-calendar.class.php:1371
|
1394 |
msgid "No events found in Trash"
|
1395 |
msgstr "Aucun événement dans la corbeille "
|
1396 |
|
1397 |
+
#: ../lib/the-events-calendar.class.php:1375
|
1398 |
+
#: ../lib/the-events-calendar.class.php:1487
|
1399 |
+
#: ../lib/io/csv/admin-views/import.php:29
|
1400 |
msgid "Venues"
|
1401 |
msgstr "Lieux"
|
1402 |
|
1403 |
+
#: ../lib/the-events-calendar.class.php:1376
|
1404 |
+
#: ../public/advanced-functions/meta.php:369 ../views/tickets/email.php:343
|
1405 |
msgid "Venue"
|
1406 |
msgstr "Lieu"
|
1407 |
|
1408 |
+
#: ../lib/the-events-calendar.class.php:1378
|
1409 |
msgid "Add New Venue"
|
1410 |
msgstr "Nouveau lieu"
|
1411 |
|
1412 |
+
#: ../lib/the-events-calendar.class.php:1379
|
1413 |
msgid "Edit Venue"
|
1414 |
msgstr "Editer le lieu"
|
1415 |
|
1416 |
+
#: ../lib/the-events-calendar.class.php:1380
|
1417 |
msgid "New Venue"
|
1418 |
msgstr "Nouveau Lieu"
|
1419 |
|
1420 |
+
#: ../lib/the-events-calendar.class.php:1381
|
1421 |
msgid "View Venue"
|
1422 |
msgstr "Voir Lieu"
|
1423 |
|
1424 |
+
#: ../lib/the-events-calendar.class.php:1382
|
1425 |
msgid "Search Venues"
|
1426 |
msgstr "Rechercher des lieux"
|
1427 |
|
1428 |
+
#: ../lib/the-events-calendar.class.php:1383
|
1429 |
msgid "No venue found"
|
1430 |
msgstr "Aucun lieu trouvé"
|
1431 |
|
1432 |
+
#: ../lib/the-events-calendar.class.php:1384
|
1433 |
msgid "No venues found in Trash"
|
1434 |
msgstr "Aucun lieu trouvé dans la poubelle"
|
1435 |
|
1436 |
+
#: ../lib/the-events-calendar.class.php:1388
|
1437 |
+
#: ../lib/the-events-calendar.class.php:1488
|
1438 |
+
#: ../lib/io/csv/admin-views/import.php:30
|
1439 |
msgid "Organizers"
|
1440 |
msgstr "Organisateurs"
|
1441 |
|
1442 |
+
#: ../lib/the-events-calendar.class.php:1389
|
1443 |
+
#: ../public/advanced-functions/meta.php:431 ../views/tickets/email.php:362
|
1444 |
msgid "Organizer"
|
1445 |
msgstr "Organisateur"
|
1446 |
|
1447 |
+
#: ../lib/the-events-calendar.class.php:1391
|
1448 |
msgid "Add New Organizer"
|
1449 |
msgstr "Nouvel organisateur"
|
1450 |
|
1451 |
+
#: ../lib/the-events-calendar.class.php:1392
|
1452 |
msgid "Edit Organizer"
|
1453 |
msgstr "Editer l'organisateur"
|
1454 |
|
1455 |
+
#: ../lib/the-events-calendar.class.php:1393
|
1456 |
msgid "New Organizer"
|
1457 |
msgstr "Nouvel organisateur"
|
1458 |
|
1459 |
#
|
1460 |
+
#: ../lib/the-events-calendar.class.php:1394
|
1461 |
msgid "View Organizer"
|
1462 |
msgstr "Voir Organisateur"
|
1463 |
|
1464 |
+
#: ../lib/the-events-calendar.class.php:1395
|
1465 |
msgid "Search Organizers"
|
1466 |
msgstr "Rechercher des organisateurs"
|
1467 |
|
1468 |
+
#: ../lib/the-events-calendar.class.php:1396
|
1469 |
msgid "No organizer found"
|
1470 |
msgstr "Pas d'organisateurs"
|
1471 |
|
1472 |
+
#: ../lib/the-events-calendar.class.php:1397
|
1473 |
msgid "No organizers found in Trash"
|
1474 |
msgstr "Aucun organisateur dans la Poubelle"
|
1475 |
|
1476 |
+
#: ../lib/the-events-calendar.class.php:1401
|
1477 |
+
#: ../lib/tribe-admin-events-list.class.php:226
|
1478 |
msgid "Event Categories"
|
1479 |
msgstr "Catégories d'événements"
|
1480 |
|
1481 |
+
#: ../lib/the-events-calendar.class.php:1402
|
1482 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:63
|
1483 |
msgid "Event Category"
|
1484 |
msgstr "Catégorie de l'événement"
|
1485 |
|
1486 |
+
#: ../lib/the-events-calendar.class.php:1403
|
1487 |
msgid "Search Event Categories"
|
1488 |
msgstr "Rechercher des catégories"
|
1489 |
|
1490 |
+
#: ../lib/the-events-calendar.class.php:1404
|
1491 |
msgid "All Event Categories"
|
1492 |
msgstr "Toutes les catégories"
|
1493 |
|
1494 |
+
#: ../lib/the-events-calendar.class.php:1405
|
1495 |
msgid "Parent Event Category"
|
1496 |
msgstr "Catégorie parente"
|
1497 |
|
1498 |
+
#: ../lib/the-events-calendar.class.php:1406
|
1499 |
msgid "Parent Event Category:"
|
1500 |
msgstr "Catégorie parente :"
|
1501 |
|
1502 |
+
#: ../lib/the-events-calendar.class.php:1407
|
1503 |
msgid "Edit Event Category"
|
1504 |
msgstr "Éditer la catégorie de l'événement "
|
1505 |
|
1506 |
+
#: ../lib/the-events-calendar.class.php:1408
|
1507 |
msgid "Update Event Category"
|
1508 |
msgstr "Mettre à jour la catégories de l'événement "
|
1509 |
|
1510 |
+
#: ../lib/the-events-calendar.class.php:1409
|
1511 |
msgid "Add New Event Category"
|
1512 |
msgstr "Nouvelle catégorie d'événement "
|
1513 |
|
1514 |
+
#: ../lib/the-events-calendar.class.php:1410
|
1515 |
msgid "New Event Category Name"
|
1516 |
msgstr "Nouveau nom de la catégorie d'événement "
|
1517 |
|
1518 |
+
#: ../lib/the-events-calendar.class.php:1426
|
1519 |
#, php-format
|
1520 |
msgid "Event updated. <a href=\"%s\">View event</a>"
|
1521 |
msgstr "Événement mis à jour. <a href=\"%s\">Voir</a> "
|
1522 |
|
1523 |
+
#: ../lib/the-events-calendar.class.php:1427
|
1524 |
+
#: ../lib/the-events-calendar.class.php:1444
|
1525 |
+
#: ../lib/the-events-calendar.class.php:1461
|
1526 |
msgid "Custom field updated."
|
1527 |
msgstr "Champ Personnalisé mis à jour. "
|
1528 |
|
1529 |
+
#: ../lib/the-events-calendar.class.php:1428
|
1530 |
+
#: ../lib/the-events-calendar.class.php:1445
|
1531 |
+
#: ../lib/the-events-calendar.class.php:1462
|
1532 |
msgid "Custom field deleted."
|
1533 |
msgstr "Champ Personnalisé effacé. "
|
1534 |
|
1535 |
+
#: ../lib/the-events-calendar.class.php:1429
|
1536 |
msgid "Event updated."
|
1537 |
msgstr "Événement mis à jour."
|
1538 |
|
1539 |
+
#: ../lib/the-events-calendar.class.php:1431
|
1540 |
#, php-format
|
1541 |
msgid "Event restored to revision from %s"
|
1542 |
msgstr "Evénement restauré à la dernière révision depuis %s"
|
1543 |
|
1544 |
+
#: ../lib/the-events-calendar.class.php:1432
|
1545 |
#, php-format
|
1546 |
msgid "Event published. <a href=\"%s\">View event</a>"
|
1547 |
msgstr "Événement publié. <a href=\"%s\">Voir</a> "
|
1548 |
|
1549 |
+
#: ../lib/the-events-calendar.class.php:1433
|
1550 |
msgid "Event saved."
|
1551 |
msgstr "Événement enregistré"
|
1552 |
|
1553 |
+
#: ../lib/the-events-calendar.class.php:1434
|
1554 |
#, php-format
|
1555 |
msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
1556 |
msgstr "Événement enregistré. <a href=\"%s\">Aperçu</a> "
|
1557 |
|
1558 |
+
#: ../lib/the-events-calendar.class.php:1435
|
1559 |
#, php-format
|
1560 |
msgid ""
|
1561 |
"Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
|
1564 |
"Événement programmé pour le : <strong>%1$s</strong>. <a target=\"_blank\" "
|
1565 |
"href=\"%2$s\">Aperçu</a> "
|
1566 |
|
1567 |
+
#: ../lib/the-events-calendar.class.php:1437
|
1568 |
+
#: ../lib/the-events-calendar.class.php:1454
|
1569 |
+
#: ../lib/the-events-calendar.class.php:1471
|
1570 |
msgid "M j, Y @ G:i"
|
1571 |
msgstr "M j, A @ G:i "
|
1572 |
|
1573 |
+
#: ../lib/the-events-calendar.class.php:1438
|
1574 |
#, php-format
|
1575 |
msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
1576 |
msgstr ""
|
1577 |
"Brouillon de l'événement mis à jour. <a target=\"_blank\" href=\"%s"
|
1578 |
"\">Aperçu</a> "
|
1579 |
|
1580 |
+
#: ../lib/the-events-calendar.class.php:1443
|
1581 |
#, php-format
|
1582 |
msgid "Venue updated. <a href=\"%s\">View venue</a>"
|
1583 |
msgstr "Lieu mis à jour <a href=\"%s\">Voir le lieu</a>"
|
1584 |
|
1585 |
+
#: ../lib/the-events-calendar.class.php:1446
|
1586 |
msgid "Venue updated."
|
1587 |
msgstr "Lieu mis à jour"
|
1588 |
|
1589 |
+
#: ../lib/the-events-calendar.class.php:1448
|
1590 |
#, php-format
|
1591 |
msgid "Venue restored to revision from %s"
|
1592 |
msgstr "Lieu restauré à la dernière révision depuis %s"
|
1593 |
|
1594 |
+
#: ../lib/the-events-calendar.class.php:1449
|
1595 |
#, php-format
|
1596 |
msgid "Venue published. <a href=\"%s\">View venue</a>"
|
1597 |
msgstr "Lieu publié. <a href=\"%s\">Voir</a>"
|
1598 |
|
1599 |
+
#: ../lib/the-events-calendar.class.php:1450
|
1600 |
msgid "Venue saved."
|
1601 |
msgstr "Lieu enregistré."
|
1602 |
|
1603 |
+
#: ../lib/the-events-calendar.class.php:1451
|
1604 |
#, php-format
|
1605 |
msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
|
1606 |
msgstr "Lieu soumis. <a target=\"_blank\" href=\"%s\">Aperçu</a>"
|
1607 |
|
1608 |
+
#: ../lib/the-events-calendar.class.php:1452
|
1609 |
#, php-format
|
1610 |
msgid ""
|
1611 |
"Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
|
1614 |
"Lieu prévu pour : <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
|
1615 |
"\">Aperçu</a>"
|
1616 |
|
1617 |
+
#: ../lib/the-events-calendar.class.php:1455
|
1618 |
#, php-format
|
1619 |
msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
|
1620 |
msgstr ""
|
1621 |
"Brouillon du lieu mis à jour. <a target=\"_blank\" href=\"%s\">Aperçu</a>"
|
1622 |
|
1623 |
+
#: ../lib/the-events-calendar.class.php:1460
|
1624 |
#, php-format
|
1625 |
msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
|
1626 |
msgstr "Organisateur mis à jour. <a href=\"%s\">Voir</a> "
|
1627 |
|
1628 |
+
#: ../lib/the-events-calendar.class.php:1463
|
1629 |
msgid "Organizer updated."
|
1630 |
msgstr "Organisateur mis à jour."
|
1631 |
|
1632 |
+
#: ../lib/the-events-calendar.class.php:1465
|
1633 |
#, php-format
|
1634 |
msgid "Organizer restored to revision from %s"
|
1635 |
msgstr "Organisateur restauré à la dernière révision depuis %s"
|
1636 |
|
1637 |
+
#: ../lib/the-events-calendar.class.php:1466
|
1638 |
#, php-format
|
1639 |
msgid "Organizer published. <a href=\"%s\">View organizer</a>"
|
1640 |
msgstr "Organisateur publié. <a href=\"%s\">Voir</a>"
|
1641 |
|
1642 |
+
#: ../lib/the-events-calendar.class.php:1467
|
1643 |
msgid "Organizer saved."
|
1644 |
msgstr "Organisateur enregistré."
|
1645 |
|
1646 |
+
#: ../lib/the-events-calendar.class.php:1468
|
1647 |
#, php-format
|
1648 |
msgid ""
|
1649 |
"Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
|
1650 |
msgstr "Organisateur soumis. <a target=\"_blank\" href=\"%s\">Aperçu</a> "
|
1651 |
|
1652 |
+
#: ../lib/the-events-calendar.class.php:1469
|
1653 |
#, php-format
|
1654 |
msgid ""
|
1655 |
"Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href="
|
1658 |
"Organisateur prévu pour : <strong>%1$s</strong>. <a target=\"_blank\" href="
|
1659 |
"\"%2$s\">Aperçu</a>"
|
1660 |
|
1661 |
+
#: ../lib/the-events-calendar.class.php:1472
|
1662 |
#, php-format
|
1663 |
msgid ""
|
1664 |
"Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</"
|
1667 |
"Brouillon de l'organisateur mis à jour. <a target=\"_blank\" href=\"%s"
|
1668 |
"\">Aperçu</a>"
|
1669 |
|
1670 |
+
#: ../lib/the-events-calendar.class.php:1513
|
1671 |
msgid "Use Saved Venue:"
|
1672 |
msgstr "Utiliser un lieu enregistré :"
|
1673 |
|
1674 |
+
#: ../lib/the-events-calendar.class.php:1542
|
1675 |
msgid "Use Saved Organizer:"
|
1676 |
msgstr "Utiliser un organisateur déjà enregistré "
|
1677 |
|
1678 |
+
#: ../lib/the-events-calendar.class.php:1582
|
1679 |
msgid "Use New Venue"
|
1680 |
msgstr "Utiliser un nouveau lieu"
|
1681 |
|
1682 |
#
|
1683 |
+
#: ../lib/the-events-calendar.class.php:1584
|
1684 |
msgid "My Venues"
|
1685 |
msgstr "Mes Salles"
|
1686 |
|
1687 |
#
|
1688 |
+
#: ../lib/the-events-calendar.class.php:1589
|
1689 |
msgid "Available Venues"
|
1690 |
msgstr "Salles disponibles"
|
1691 |
|
1692 |
#
|
1693 |
+
#: ../lib/the-events-calendar.class.php:1600
|
1694 |
msgid "No saved venue exists."
|
1695 |
msgstr "Il n'y a pas de salles existantes."
|
1696 |
|
1697 |
+
#: ../lib/the-events-calendar.class.php:1639
|
1698 |
msgid "Use New Organizer"
|
1699 |
msgstr "Nouvel organisateur"
|
1700 |
|
1701 |
#
|
1702 |
+
#: ../lib/the-events-calendar.class.php:1641
|
1703 |
msgid "My Organizers"
|
1704 |
msgstr "Mes Organisateurs"
|
1705 |
|
1706 |
#
|
1707 |
+
#: ../lib/the-events-calendar.class.php:1646
|
1708 |
msgid "Available Organizers"
|
1709 |
msgstr "Organisateurs disponibles"
|
1710 |
|
1711 |
#
|
1712 |
+
#: ../lib/the-events-calendar.class.php:1657
|
1713 |
msgid "No saved organizer exists."
|
1714 |
msgstr "Il n'y a pas d'organisateurs existants."
|
1715 |
|
1716 |
+
#: ../lib/the-events-calendar.class.php:1784
|
1717 |
msgid "Next"
|
1718 |
msgstr "Suivant"
|
1719 |
|
1720 |
+
#: ../lib/the-events-calendar.class.php:1785
|
1721 |
msgid "Prev"
|
1722 |
msgstr "Précédent"
|
1723 |
|
1724 |
+
#: ../lib/the-events-calendar.class.php:1786
|
1725 |
msgid "Today"
|
1726 |
msgstr "Aujourd'hui "
|
1727 |
|
1728 |
+
#: ../lib/the-events-calendar.class.php:1787
|
1729 |
msgid "Done"
|
1730 |
msgstr "Terminé"
|
1731 |
|
1732 |
+
#: ../lib/the-events-calendar.class.php:1996
|
1733 |
msgid "Network"
|
1734 |
msgstr "Réseau"
|
1735 |
|
1736 |
#
|
1737 |
+
#: ../lib/the-events-calendar.class.php:2924
|
1738 |
msgid "Unnamed Venue"
|
1739 |
msgstr "Salle non nommée"
|
1740 |
|
1741 |
#
|
1742 |
+
#: ../lib/the-events-calendar.class.php:3014
|
1743 |
msgid "Unnamed Organizer"
|
1744 |
msgstr "Organisateur non nommé"
|
1745 |
|
1746 |
+
#: ../lib/the-events-calendar.class.php:3474
|
1747 |
+
#: ../lib/the-events-calendar.class.php:3491
|
1748 |
+
msgid "Date out of range."
|
1749 |
+
msgstr "La date est hors de portée (out of range)"
|
1750 |
+
|
1751 |
+
#: ../lib/the-events-calendar.class.php:3504
|
1752 |
msgid "Event Options"
|
1753 |
msgstr "Options de l'événement"
|
1754 |
|
1755 |
+
#: ../lib/the-events-calendar.class.php:3506
|
1756 |
msgid "Venue Information"
|
1757 |
msgstr "Information sur le lieu"
|
1758 |
|
1759 |
+
#: ../lib/the-events-calendar.class.php:3511
|
1760 |
msgid "Organizer Information"
|
1761 |
msgstr "A propos de l'organisateur"
|
1762 |
|
1763 |
+
#: ../lib/the-events-calendar.class.php:3708
|
1764 |
msgid "Support"
|
1765 |
msgstr "Support"
|
1766 |
|
1767 |
+
#: ../lib/the-events-calendar.class.php:3711
|
1768 |
msgid "View All Add-Ons"
|
1769 |
msgstr "Voir tous les Add-Ons "
|
1770 |
|
1771 |
+
#: ../lib/the-events-calendar.class.php:3728
|
1772 |
msgid "News from Modern Tribe"
|
1773 |
msgstr "Actu de Modern Tribe"
|
1774 |
|
1775 |
+
#: ../lib/the-events-calendar.class.php:3809
|
1776 |
msgid "Additional Functionality"
|
1777 |
msgstr "Fonctionnalité supplémentaire "
|
1778 |
|
1779 |
+
#: ../lib/the-events-calendar.class.php:3814
|
1780 |
msgid ""
|
1781 |
"Looking for additional functionality including recurring events, ticket "
|
1782 |
"sales, publicly submitted events, new views and more?"
|
1785 |
"\", \"Vente de tickets\", Événements publiques\", nouveaux modes "
|
1786 |
"d'affichages et bien plus?"
|
1787 |
|
1788 |
+
#: ../lib/the-events-calendar.class.php:3814
|
1789 |
#, php-format
|
1790 |
msgid "Check out the <a href=\"%s\">available add-ons</a>."
|
1791 |
msgstr "Visitez les <a href=\"%s\">Modules disponibles</a>."
|
1792 |
|
1793 |
#
|
1794 |
+
#: ../lib/the-events-calendar.class.php:3886
|
1795 |
+
#: ../lib/the-events-calendar.class.php:3977
|
1796 |
msgid "View Calendar"
|
1797 |
msgstr "Afficher Calendrier"
|
1798 |
|
1799 |
#
|
1800 |
+
#: ../lib/the-events-calendar.class.php:3894
|
1801 |
msgid "Add Event"
|
1802 |
msgstr "Ajouter Événement"
|
1803 |
|
1804 |
#
|
1805 |
+
#: ../lib/the-events-calendar.class.php:3903
|
1806 |
msgid "Edit Events"
|
1807 |
msgstr "Modifier Événements"
|
1808 |
|
1809 |
+
#: ../lib/the-events-calendar.class.php:3912
|
1810 |
+
#: ../lib/the-events-calendar.class.php:4013
|
1811 |
#: ../lib/tribe-settings.class.php:164
|
1812 |
msgid "Settings"
|
1813 |
msgstr "Préférences"
|
1814 |
|
1815 |
+
#: ../lib/the-events-calendar.class.php:3948
|
1816 |
#, php-format
|
1817 |
msgid ""
|
1818 |
"Welcome to The Events Calendar! Your events calendar can be found at %s. To "
|
1822 |
"ici %s. Pour changer le permalien des événements, visitez %sÉvénements -> "
|
1823 |
"Régalges%s."
|
1824 |
|
1825 |
+
#: ../lib/the-events-calendar.class.php:4014
|
1826 |
msgid "Calendar"
|
1827 |
msgstr "Calendrier"
|
1828 |
|
1829 |
+
#: ../lib/the-events-calendar.class.php:4064
|
1830 |
msgid "List"
|
1831 |
msgstr "Liste"
|
1832 |
|
1833 |
#
|
1834 |
+
#: ../lib/the-events-calendar.class.php:4075
|
1835 |
msgid "Month"
|
1836 |
msgstr "Mois"
|
1837 |
|
1838 |
+
#: ../lib/the-events-calendar.class.php:4094
|
1839 |
+
#: ../lib/the-events-calendar.class.php:4096
|
|
|
1840 |
msgid "Search"
|
1841 |
+
msgstr "Recherche"
|
1842 |
|
1843 |
#
|
1844 |
+
#: ../lib/the-events-calendar.class.php:4116
|
1845 |
+
#: ../lib/the-events-calendar.class.php:4128
|
1846 |
msgid "Date"
|
1847 |
msgstr "Date"
|
1848 |
|
1849 |
#
|
1850 |
+
#: ../lib/the-events-calendar.class.php:4119
|
1851 |
msgid "Events In"
|
1852 |
msgstr "Événements dans"
|
1853 |
|
1854 |
#
|
1855 |
+
#: ../lib/the-events-calendar.class.php:4121
|
1856 |
msgid "Events From"
|
1857 |
msgstr "Événement de"
|
1858 |
|
1859 |
+
#: ../lib/the-events-calendar.class.php:4313 ../views/list/nav.php:22
|
1860 |
#: ../views/list/nav.php:28 ../views/list/nav.php:31
|
1861 |
msgid "« Previous Events"
|
1862 |
msgstr "« Événements précédents "
|
1863 |
|
1864 |
+
#: ../lib/the-events-calendar.class.php:4314 ../views/list/nav.php:40
|
1865 |
#: ../views/list/nav.php:43 ../views/list/nav.php:49
|
1866 |
msgid "Next Events »"
|
1867 |
msgstr "Prochains événements »"
|
1871 |
msgid "View “%s”"
|
1872 |
msgstr "Voir “%s”"
|
1873 |
|
1874 |
+
#: ../lib/tribe-admin-events-list.class.php:231
|
1875 |
msgid "Start Date"
|
1876 |
msgstr "Date de début : "
|
1877 |
|
1878 |
+
#: ../lib/tribe-admin-events-list.class.php:232
|
1879 |
msgid "End Date"
|
1880 |
msgstr "Date de fin : "
|
1881 |
|
1882 |
+
#: ../lib/tribe-admin-events-list.class.php:234
|
1883 |
msgid "Recurring?"
|
1884 |
msgstr "Se répète ?"
|
1885 |
|
1886 |
+
#: ../lib/tribe-admin-events-list.class.php:298
|
1887 |
#: ../lib/tickets/tribe-tickets-pro.php:229
|
1888 |
msgid "Yes"
|
1889 |
msgstr "Oui"
|
1890 |
|
1891 |
+
#: ../lib/tribe-admin-events-list.class.php:298
|
1892 |
msgid "No"
|
1893 |
msgstr "Non"
|
1894 |
|
1895 |
+
#: ../lib/tribe-admin-events-list.class.php:376
|
1896 |
#, php-format
|
1897 |
msgid "All %s"
|
1898 |
msgstr "Tous %s"
|
1917 |
msgid "Error"
|
1918 |
msgstr "Erreur"
|
1919 |
|
1920 |
+
#: ../lib/tribe-field.class.php:168
|
1921 |
msgid "Invalid field type specified"
|
1922 |
msgstr "Type de champ spécifié invalide"
|
1923 |
|
1924 |
+
#: ../lib/tribe-field.class.php:438
|
1925 |
msgid "No radio options specified"
|
1926 |
msgstr "Il n'y a pas d'options radio spécifié"
|
1927 |
|
1928 |
+
#: ../lib/tribe-field.class.php:475
|
1929 |
msgid "No checkbox options specified"
|
1930 |
msgstr "Il n'y a pas d'options de case à cochée spécifié"
|
1931 |
|
1932 |
+
#: ../lib/tribe-field.class.php:530
|
1933 |
msgid "No select options specified"
|
1934 |
msgstr "Il n'y a pas d'option de liste déroulante spécifié"
|
1935 |
|
1983 |
msgstr ""
|
1984 |
"Aucuns de vos réglages n'ont été sauvés. Merci de ré-essayer à nouveau."
|
1985 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1986 |
#
|
1987 |
#: ../lib/tribe-settings.class.php:509
|
1988 |
msgid "Settings saved."
|
1989 |
msgstr "Réglages sauvegardés."
|
1990 |
|
1991 |
+
#: ../lib/tribe-template-factory.class.php:256
|
1992 |
#, php-format
|
1993 |
+
msgid "There were no results found for <strong>\"%s\"</strong>."
|
1994 |
msgstr "Il n'y a pas de résultats trouvés pour <strong>\"%s\"</strong>."
|
1995 |
|
1996 |
+
#: ../lib/tribe-template-factory.class.php:259
|
1997 |
#, php-format
|
1998 |
+
msgid "No results were found for events in or near <strong>\"%s\"</strong>."
|
|
|
|
|
1999 |
msgstr ""
|
2000 |
+
"Il n'y a pas de résultats trouvés pour les événements dans ou proche de "
|
2001 |
+
"<strong>\"%s\"</strong>."
|
2002 |
|
2003 |
+
#: ../lib/tribe-template-factory.class.php:262
|
2004 |
#, php-format
|
2005 |
msgid ""
|
2006 |
+
"No upcoming events listed under %s. Check out upcoming events for this "
|
2007 |
+
"category or view the full calendar."
|
2008 |
msgstr ""
|
2009 |
+
"Pas d'événements à venir listé sous %s. Consultez les événements à venir "
|
2010 |
+
"dans cette catégorie, ou regardez le calendrier complet."
|
2011 |
|
2012 |
+
#: ../lib/tribe-template-factory.class.php:265
|
2013 |
#, php-format
|
2014 |
+
msgid ""
|
2015 |
+
"No matching events listed under %s. Check out upcoming events for this "
|
2016 |
+
"category or view the full calendar."
|
2017 |
msgstr ""
|
2018 |
+
"Pas d'événements correspondant listé sous %s. Consultez les événements à "
|
2019 |
+
"venir dans cette catégorie, ou regardez le calendrier complet."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020 |
|
2021 |
#
|
2022 |
+
#: ../lib/tribe-template-factory.class.php:268
|
2023 |
msgid "No previous events "
|
2024 |
msgstr "Il n'y a pas d'anciens événements."
|
2025 |
|
2026 |
+
#: ../lib/tribe-template-factory.class.php:271
|
2027 |
+
#: ../lib/template-classes/month.php:115
|
2028 |
+
msgid "There were no results found."
|
2029 |
+
msgstr "Aucun résultat trouvé."
|
2030 |
+
|
2031 |
+
#: ../lib/tribe-templates.class.php:471
|
2032 |
+
#, php-format
|
2033 |
+
msgid "Template overrides should be moved to the correct subdirectory: %s"
|
2034 |
+
msgstr ""
|
2035 |
+
"Les remplacements de modèle devraient être déplacés vers le sous-répertoire "
|
2036 |
+
"approprié : %s"
|
2037 |
+
|
2038 |
+
#: ../lib/tribe-templates.class.php:512
|
2039 |
+
#, php-format
|
2040 |
+
msgid ""
|
2041 |
+
"Template overrides should be moved to the correct subdirectory: "
|
2042 |
+
"tribe_get_template_part('%s')"
|
2043 |
+
msgstr ""
|
2044 |
+
"Les remplacements de modèle devraient être déplacés vers le sous-répertoire "
|
2045 |
+
"approprié : tribe_get_template_part('%s')"
|
2046 |
+
|
2047 |
#: ../lib/tribe-the-events-calendar-import.class.php:64
|
2048 |
#, php-format
|
2049 |
msgid ""
|
2113 |
msgid "Non-existant field validation function passed"
|
2114 |
msgstr "Fonction de validation du champ inséré non existant"
|
2115 |
|
|
|
|
|
|
|
|
|
|
|
2116 |
#: ../lib/tribe-validate.class.php:135 ../lib/tribe-validate.class.php:153
|
2117 |
#, php-format
|
2118 |
msgid "%s must contain numbers and letters only"
|
3385 |
msgid "There are no upcoming events at this time."
|
3386 |
msgstr "Aucun événement à venir prochainement."
|
3387 |
|
3388 |
+
#: ../lib/io/csv/admin-views/columns.php:22
|
3389 |
+
#, php-format
|
3390 |
+
msgid "Column Mapping: %s"
|
3391 |
+
msgstr "Cartographie (mapping) des colonnes : %s"
|
3392 |
+
|
3393 |
+
#: ../lib/io/csv/admin-views/columns.php:28
|
3394 |
+
msgid "Please choose the fields that best match the columns in your CSV file."
|
3395 |
+
msgstr ""
|
3396 |
+
"Veuillez choisir les champs qui correspondent le mieux aux colonnes de votre "
|
3397 |
+
"fichier CSV."
|
3398 |
+
|
3399 |
+
#: ../lib/io/csv/admin-views/columns.php:33
|
3400 |
+
msgid "Column Headings"
|
3401 |
+
msgstr "En-tête des colonnes"
|
3402 |
+
|
3403 |
+
#
|
3404 |
+
#: ../lib/io/csv/admin-views/columns.php:34
|
3405 |
+
msgid "Event Fields"
|
3406 |
+
msgstr "Champs des événement"
|
3407 |
+
|
3408 |
+
#: ../lib/io/csv/admin-views/columns.php:45
|
3409 |
+
msgid "Perform Import"
|
3410 |
+
msgstr "Démarrer l'importation"
|
3411 |
+
|
3412 |
+
#
|
3413 |
+
#: ../lib/io/csv/admin-views/header.php:11
|
3414 |
+
msgid "Events Import (CSV)"
|
3415 |
+
msgstr "Importation d'événement (CSV)"
|
3416 |
+
|
3417 |
+
#: ../lib/io/csv/admin-views/import.php:17
|
3418 |
+
msgid "Please import venues and organizers <i>before</i> events."
|
3419 |
+
msgstr ""
|
3420 |
+
"Veuillez importer les lieux et les organisateurs <i>avant</i> les événements"
|
3421 |
+
|
3422 |
+
#: ../lib/io/csv/admin-views/import.php:19
|
3423 |
+
msgid ""
|
3424 |
+
"<ol><li><strong>Organizer import requires:</strong> Organizer Name</"
|
3425 |
+
"li><li><strong>Venue import requires:</strong> Venue Name</"
|
3426 |
+
"li><li><strong>Event import requires:</strong> Event Name and Event Start "
|
3427 |
+
"Date</li></ol>"
|
3428 |
+
msgstr ""
|
3429 |
+
"<ol><li><strong>L'importation des organisateurs requiert:</strong> Nom de "
|
3430 |
+
"l'organisateur</li><li><strong>L'importation de lieux requiert:</strong> Nom "
|
3431 |
+
"du lieu</li><li><strong>L'importation d'événements requiert:</strong> Nom de "
|
3432 |
+
"l'événement et date de début</li></ol>"
|
3433 |
+
|
3434 |
+
#: ../lib/io/csv/admin-views/import.php:20
|
3435 |
+
msgid ""
|
3436 |
+
"To begin importing data, please choose the type of import and the CSV file."
|
3437 |
+
msgstr ""
|
3438 |
+
"Pour commencer à importer les données, veuillez choisir le type "
|
3439 |
+
"d'importation et le fichier CSV."
|
3440 |
+
|
3441 |
+
#: ../lib/io/csv/admin-views/import.php:27
|
3442 |
+
msgid "Import Type:"
|
3443 |
+
msgstr "Type d'importation:"
|
3444 |
+
|
3445 |
+
#: ../lib/io/csv/admin-views/import.php:39
|
3446 |
+
msgid "CSV File:"
|
3447 |
+
msgstr "Fichier CSV:"
|
3448 |
+
|
3449 |
+
#: ../lib/io/csv/admin-views/import.php:42
|
3450 |
+
msgid ""
|
3451 |
+
"Upload a properly formatted, UTF-8 encoded CSV file. Not sure if your file "
|
3452 |
+
"is UTF-8 encoded? Make sure to specify the character encoding when you save "
|
3453 |
+
"the file, or pass it through a <a href='http://i-tools.org/charset/exec?"
|
3454 |
+
"dest=utf-8&src=auto&download=1'>conversion tool</a>."
|
3455 |
+
msgstr ""
|
3456 |
+
"Choisissez un fichier formaté adéquatement : Un fichier CSV encodé au format "
|
3457 |
+
"UTF-8. Vous ne savez pas si votre fichier est encodé au format UTF-8? "
|
3458 |
+
"Veuillez vérifier de spécifier l'encodage des charactères lorsque vous "
|
3459 |
+
"sauvegardez le fichier, ou passez le par un <a href='http://i-tools.org/"
|
3460 |
+
"charset/exec?dest=utf-8&src=auto&download=1'>outil de conversion</a>."
|
3461 |
+
|
3462 |
+
#: ../lib/io/csv/admin-views/import.php:50
|
3463 |
+
msgid "This file has column names in the first row"
|
3464 |
+
msgstr "Ce fichier dispose d'une colonne de nom comme première ligne"
|
3465 |
+
|
3466 |
+
#: ../lib/io/csv/admin-views/import.php:61
|
3467 |
+
msgid "Import CSV File"
|
3468 |
+
msgstr "Importer le fichier CSV"
|
3469 |
+
|
3470 |
+
#: ../lib/io/csv/admin-views/result.php:13
|
3471 |
+
msgid "Import Result"
|
3472 |
+
msgstr "Résultat d'importation"
|
3473 |
+
|
3474 |
+
#: ../lib/io/csv/admin-views/result.php:15
|
3475 |
+
msgid "Import complete!"
|
3476 |
+
msgstr "Importation terminée!"
|
3477 |
+
|
3478 |
+
#: ../lib/io/csv/admin-views/result.php:17
|
3479 |
+
#, php-format
|
3480 |
+
msgid "Inserted: %d"
|
3481 |
+
msgstr "Inséré: %d"
|
3482 |
+
|
3483 |
+
#: ../lib/io/csv/admin-views/result.php:18
|
3484 |
+
#, php-format
|
3485 |
+
msgid "Updated: %d"
|
3486 |
+
msgstr "Mis à jour: %d"
|
3487 |
+
|
3488 |
+
#: ../lib/io/csv/admin-views/result.php:19
|
3489 |
+
#, php-format
|
3490 |
+
msgid "Skipped: %d"
|
3491 |
+
msgstr "Ignoré: %d"
|
3492 |
+
|
3493 |
+
#: ../lib/io/csv/admin-views/result.php:23
|
3494 |
+
msgid "The import statistics above have the following meaning:"
|
3495 |
+
msgstr ""
|
3496 |
+
"Les statistiques d'importation ci-dessus ont la signification suivante:"
|
3497 |
+
|
3498 |
+
#: ../lib/io/csv/admin-views/result.php:24
|
3499 |
+
msgid ""
|
3500 |
+
"<ol><li><strong>Inserted:</strong> A new item was inserted successfully.</"
|
3501 |
+
"li><li><strong>Updated:</strong> An item was found with the same name and/or "
|
3502 |
+
"start date. The existing item was updated with the new value from the file.</"
|
3503 |
+
"li><li><strong>Skipped:</strong> A row was found in the CSV file that could "
|
3504 |
+
"not be imported. Please see below for the invalid rows.</li></ol>"
|
3505 |
+
msgstr ""
|
3506 |
+
"<ol><li><strong>Inséré:</strong> Une nouvelle entrée a été inséré avec "
|
3507 |
+
"succès</li><li><strong>Mis à jour:</strong> Une entrée a été trouvé avec le "
|
3508 |
+
"même name et/ou date de début. L'entrée existante a été mis à jour avec la "
|
3509 |
+
"nouvelle valeur du fichier.</li><li><strong>Ignoré:</strong> Une ligne a été "
|
3510 |
+
"trouvé dans le fichier CSV qui ne pouvait pas être importée. Veuillez "
|
3511 |
+
"vérifier ci-dessous les lignes invalides.</li></ol>"
|
3512 |
+
|
3513 |
+
#: ../lib/io/csv/admin-views/result.php:27
|
3514 |
+
#, php-format
|
3515 |
+
msgid "Skipped row numbers: %s"
|
3516 |
+
msgstr "Numéros des lignes ignorées: %s"
|
3517 |
+
|
3518 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_AdminPage.php:15
|
3519 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_AdminPage.php:16
|
3520 |
+
msgid "CSV Import"
|
3521 |
+
msgstr "Importer CSV"
|
3522 |
+
|
3523 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_AdminPage.php:29
|
3524 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_AdminPage.php:147
|
3525 |
+
msgid "The file went away. Please try again."
|
3526 |
+
msgstr "Le fichier a disparu. Merci de ré-essayer à nouveau."
|
3527 |
+
|
3528 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_AdminPage.php:113
|
3529 |
+
msgid "We were unable to process your request. Please try again."
|
3530 |
+
msgstr ""
|
3531 |
+
"Nous sommes dans l'incapacité de traiter votre demande. Veuillez recommencer."
|
3532 |
+
|
3533 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_AdminPage.php:154
|
3534 |
+
msgid "<p>The following fields are required for a successful import:</p>"
|
3535 |
+
msgstr "<p>Les champs suivant sont requis pour réussir l'importation:</p>"
|
3536 |
+
|
3537 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:33
|
3538 |
+
msgid "Do Not Import"
|
3539 |
+
msgstr "Ne pas importer"
|
3540 |
+
|
3541 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:50
|
3542 |
+
msgid "Event Name"
|
3543 |
+
msgstr "Nom de l'événement"
|
3544 |
+
|
3545 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:51
|
3546 |
+
msgid "Event Description"
|
3547 |
+
msgstr "Description de l'événement"
|
3548 |
+
|
3549 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:52
|
3550 |
+
msgid "Event Start Date"
|
3551 |
+
msgstr "Date de début de l'événement"
|
3552 |
+
|
3553 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:53
|
3554 |
+
msgid "Event Start Time"
|
3555 |
+
msgstr "Heure de début de l'événement"
|
3556 |
+
|
3557 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:54
|
3558 |
+
msgid "Event End Date"
|
3559 |
+
msgstr "Date de fin de l'événement"
|
3560 |
+
|
3561 |
+
#
|
3562 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:55
|
3563 |
+
msgid "Event End Time"
|
3564 |
+
msgstr "Heure de fin de l'événement"
|
3565 |
+
|
3566 |
+
#
|
3567 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:56
|
3568 |
+
msgid "All Day Event"
|
3569 |
+
msgstr "Événement sur toute la journée"
|
3570 |
+
|
3571 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:57
|
3572 |
+
msgid "Event Venue Name"
|
3573 |
+
msgstr "Nom de la salle"
|
3574 |
+
|
3575 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:58
|
3576 |
+
msgid "Event Organizer Name"
|
3577 |
+
msgstr "Nom de l'organisateur"
|
3578 |
+
|
3579 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:59
|
3580 |
+
msgid "Event Show Map Link"
|
3581 |
+
msgstr "Affichier le lien de la carte de l'événement"
|
3582 |
+
|
3583 |
+
#
|
3584 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:60
|
3585 |
+
msgid "Event Show Map"
|
3586 |
+
msgstr "Afficher la carte de l'événement"
|
3587 |
+
|
3588 |
+
#
|
3589 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:62
|
3590 |
+
msgid "Event Phone"
|
3591 |
+
msgstr "Numéro de téléphone de l'événement"
|
3592 |
+
|
3593 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:70
|
3594 |
+
msgid "Venue Name"
|
3595 |
+
msgstr "Nom de la salle"
|
3596 |
+
|
3597 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:71
|
3598 |
+
msgid "Venue Country"
|
3599 |
+
msgstr "Pays de la salle"
|
3600 |
+
|
3601 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:72
|
3602 |
+
msgid "Venue Address"
|
3603 |
+
msgstr "Adresse de la salle"
|
3604 |
+
|
3605 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:73
|
3606 |
+
msgid "Venue Addres 2"
|
3607 |
+
msgstr "Adresse secondaire de la salle"
|
3608 |
+
|
3609 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:74
|
3610 |
+
msgid "Venue City"
|
3611 |
+
msgstr "Ville de la salle"
|
3612 |
+
|
3613 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:75
|
3614 |
+
msgid "Venue State/Province"
|
3615 |
+
msgstr "État/Province de la salle"
|
3616 |
+
|
3617 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:76
|
3618 |
+
msgid "Venue Zip"
|
3619 |
+
msgstr "Code postal de la salle"
|
3620 |
+
|
3621 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:77
|
3622 |
+
msgid "Venue Phone"
|
3623 |
+
msgstr "Numéro de téléphone de la salle"
|
3624 |
+
|
3625 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:83
|
3626 |
+
msgid "Organizer Name"
|
3627 |
+
msgstr "Nom de l'organisateur"
|
3628 |
+
|
3629 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:84
|
3630 |
+
msgid "Organizer Email"
|
3631 |
+
msgstr "Email de l'organisateur"
|
3632 |
+
|
3633 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:85
|
3634 |
+
msgid "Organizer Website"
|
3635 |
+
msgstr "Site web de l'organisateur"
|
3636 |
+
|
3637 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:86
|
3638 |
+
msgid "Organizer Phone"
|
3639 |
+
msgstr "Numéro de téléphone de l'organisateur"
|
3640 |
+
|
3641 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_FileImporter.php:38
|
3642 |
+
#, php-format
|
3643 |
+
msgid "No importer defined for %s"
|
3644 |
+
msgstr "Pas d'importeur définit pour %s"
|
3645 |
+
|
3646 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_FileImporter.php:110
|
3647 |
+
#, php-format
|
3648 |
+
msgid "Missing required fields in row %d."
|
3649 |
+
msgstr "Champs requis manquant à la ligne %d."
|
3650 |
+
|
3651 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_FileImporter.php:117
|
3652 |
+
#, php-format
|
3653 |
+
msgid "Failed to import record in row %d."
|
3654 |
+
msgstr "Importation de l'enregistrement échoué à la ligne %d."
|
3655 |
+
|
3656 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_FileImporter.php:126
|
3657 |
+
#, php-format
|
3658 |
+
msgid "%s (post ID %d) updated."
|
3659 |
+
msgstr "%s (post ID %d) mis à jour."
|
3660 |
+
|
3661 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_FileImporter.php:130
|
3662 |
+
#, php-format
|
3663 |
+
msgid "%s (post ID %d) created."
|
3664 |
+
msgstr "%s (post ID %d) créé."
|
3665 |
+
|
3666 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_FileUploader.php:28
|
3667 |
+
#, php-format
|
3668 |
+
msgid "Temporary file not found. Could not save %s."
|
3669 |
+
msgstr "Fichier temporaire introuvable. Impossible de sauvegarder %s."
|
3670 |
+
|
3671 |
+
#: ../lib/io/csv/classes/TribeEventsImporter_FileUploader.php:36
|
3672 |
+
#, php-format
|
3673 |
+
msgid "Could not save %s."
|
3674 |
+
msgstr "Impossible de sauvegarder %s."
|
3675 |
+
|
3676 |
+
#: ../lib/template-classes/month.php:112
|
3677 |
#, php-format
|
3678 |
msgid ""
|
3679 |
"There were no results found for <strong>\"%s\"</strong> this month. Try "
|
3682 |
"Il n'y a pas de résultats trouvés pour <strong>\"%s\"</strong> dans ce mois. "
|
3683 |
"Essayez de rechercher dans le mois prochain."
|
3684 |
|
3685 |
+
#: ../lib/template-classes/single-event.php:101
|
3686 |
msgid "This event has passed."
|
3687 |
msgstr "Cet événement est terminé"
|
3688 |
|
3717 |
msgstr "Code de sécurité"
|
3718 |
|
3719 |
#: ../lib/tickets/tribe-tickets-attendees.php:74
|
3720 |
+
#: ../lib/tickets/tribe-tickets-attendees.php:151
|
3721 |
+
#: ../lib/tickets/tribe-tickets-attendees.php:207
|
3722 |
msgid "Check in"
|
3723 |
msgstr "Enregistrement du participant"
|
3724 |
|
3725 |
+
#: ../lib/tickets/tribe-tickets-attendees.php:152
|
3726 |
+
#: ../lib/tickets/tribe-tickets-attendees.php:207
|
3727 |
msgid "Undo Check in"
|
3728 |
msgstr "Annuler l'enregistrement"
|
3729 |
|
3730 |
+
#: ../lib/tickets/tribe-tickets-attendees.php:186
|
3731 |
msgid "Print"
|
3732 |
msgstr "Imprimer"
|
3733 |
|
3734 |
#
|
3735 |
+
#: ../lib/tickets/tribe-tickets-attendees.php:187
|
3736 |
msgid "Email"
|
3737 |
msgstr "Email"
|
3738 |
|
3739 |
#
|
3740 |
+
#: ../lib/tickets/tribe-tickets-attendees.php:188
|
3741 |
msgid "Export"
|
3742 |
msgstr "Export"
|
3743 |
|
3744 |
+
#: ../lib/tickets/tribe-tickets-attendees.php:194
|
3745 |
msgid "Filter by ticket #, order # or security code"
|
3746 |
msgstr "Filtrer par ticket #, commande # ou code de sécurité"
|
3747 |
|
3797 |
msgid "Your ticket has been deleted."
|
3798 |
msgstr "Votre ticket à été supprimé."
|
3799 |
|
3800 |
+
#: ../public/advanced-functions/meta.php:39
|
3801 |
msgid "Start:"
|
3802 |
msgstr "Début :"
|
3803 |
|
3804 |
+
#: ../public/advanced-functions/meta.php:46
|
3805 |
msgid "End:"
|
3806 |
msgstr "Fin :"
|
3807 |
|
3808 |
+
#: ../public/advanced-functions/meta.php:57
|
3809 |
+
#: ../public/advanced-functions/meta.php:67
|
3810 |
msgid "Date:"
|
3811 |
msgstr "Date :"
|
3812 |
|
3813 |
+
#: ../public/advanced-functions/meta.php:76
|
3814 |
+
#: ../public/advanced-functions/meta.php:85
|
3815 |
+
msgid "Time:"
|
3816 |
+
msgstr "Temps:"
|
3817 |
+
|
3818 |
+
#: ../public/advanced-functions/meta.php:270
|
3819 |
msgid "Click to view a Google Map"
|
3820 |
msgstr "Cliquez pour voir une Google Map"
|
3821 |
|
3822 |
#
|
3823 |
+
#: ../public/advanced-functions/meta.php:271
|
3824 |
msgid "+ Google Map"
|
3825 |
msgstr "+ Google Map"
|
3826 |
|
3827 |
+
#: ../public/advanced-functions/meta.php:282
|
3828 |
msgid "Details"
|
3829 |
msgstr "Détails"
|
3830 |
|
3831 |
#
|
3832 |
+
#: ../public/advanced-functions/meta.php:333
|
3833 |
msgid "Event Tags:"
|
3834 |
msgstr "Mots-clefs de l'événement :"
|
3835 |
|
3836 |
+
#: ../public/advanced-functions/meta.php:359
|
3837 |
msgid "Origin:"
|
3838 |
msgstr "Origine :"
|
3839 |
|
3840 |
+
#: ../public/advanced-functions/meta.php:496
|
3841 |
msgid "Event:"
|
3842 |
msgstr "Evénément :"
|
3843 |
|
3851 |
msgstr "Mots-clefs :"
|
3852 |
|
3853 |
#
|
3854 |
+
#: ../public/template-tags/general.php:408
|
3855 |
msgid "Loading Events"
|
3856 |
msgstr "Chargement des événements"
|
3857 |
|
3858 |
+
#: ../public/template-tags/general.php:546
|
3859 |
msgid "Free"
|
3860 |
msgstr "Gratuit"
|
3861 |
|
3862 |
#
|
3863 |
+
#: ../public/template-tags/general.php:718
|
3864 |
msgid "Recurring Event"
|
3865 |
msgstr "Événement récurrent"
|
3866 |
|
3867 |
+
#: ../public/template-tags/general.php:721
|
3868 |
msgid "(See all)"
|
3869 |
msgstr "(Voir tous)"
|
3870 |
|
3871 |
+
#: ../public/template-tags/general.php:1033
|
3872 |
#, php-format
|
3873 |
msgid "Calendar powered by %sThe Events Calendar%s"
|
3874 |
msgstr "Calendrier créer avec %sThe Events Calendar%s"
|
3875 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3876 |
#: ../public/template-tags/options.php:20
|
3877 |
#, php-format
|
3878 |
msgid "Your current Events URL is %s"
|
3943 |
msgid "Purchaser"
|
3944 |
msgstr "Acheteur"
|
3945 |
|
3946 |
+
#~ msgid "Enable ajax to live refresh content."
|
3947 |
+
#~ msgstr "Active Ajax pour rafraîchir le contenu."
|
|
|
|
|
|
|
3948 |
|
3949 |
+
#~ msgctxt "not available"
|
3950 |
+
#~ msgid "n/a"
|
3951 |
+
#~ msgstr "non disponible"
|
|
|
|
|
|
|
|
|
|
|
3952 |
|
3953 |
+
#~ msgid "Based on %d rating"
|
3954 |
+
#~ msgid_plural "Based on %d ratings"
|
3955 |
+
#~ msgstr[0] "basé sur %d note"
|
3956 |
+
#~ msgstr[1] "basé sur %d notes"
|
|
|
|
|
3957 |
|
3958 |
+
#~ msgid ""
|
3959 |
+
#~ "The above setting was not saved. Other settings were successfully saved."
|
3960 |
+
#~ msgid_plural ""
|
3961 |
+
#~ "The above settings were not saved. Other settings were successfully saved."
|
3962 |
+
#~ msgstr[0] ""
|
3963 |
+
#~ "Le réglage ci-dessus n'à pas été sauvegardé. Les autres réglages ont été "
|
3964 |
+
#~ "sauvegardés avec Succès."
|
3965 |
+
#~ msgstr[1] ""
|
3966 |
+
#~ "Les réglages ci-dessus n'ont pas été sauvegardés. Les autres réglages ont "
|
3967 |
+
#~ "été sauvegardés avec Succès."
|
3968 |
|
3969 |
#~ msgid ""
|
3970 |
+
#~ "listed under %s. Check out past events for this category or view the full "
|
3971 |
+
#~ "calendar."
|
|
|
|
|
|
|
|
|
|
|
|
|
3972 |
#~ msgstr ""
|
3973 |
+
#~ "listé sous %s. Consultez les anciens événements de cette catégorie, ou "
|
3974 |
+
#~ "regardez le calendrier complet."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3975 |
|
3976 |
+
#~ msgid "No events scheduled for <strong>%s</strong>. Please try another day."
|
|
|
|
|
|
|
|
|
|
|
3977 |
#~ msgstr ""
|
3978 |
+
#~ "Pas d'événement programmé pour le : <strong>%s</strong>. Essayez un autre "
|
3979 |
+
#~ "jour."
|
|
|
|
|
|
|
|
lang/tribe-events-calendar.pot
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: The Events Calendar 3.2\n"
|
4 |
-
"
|
5 |
-
"
|
|
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: Modern Tribe, Inc. <support@tri.be>\n"
|
8 |
"MIME-Version: 1.0\n"
|
@@ -51,10 +52,7 @@ msgid "Event Time & Date"
|
|
51 |
msgstr ""
|
52 |
|
53 |
#: ../admin-views/events-meta-box.php:32
|
54 |
-
msgid ""
|
55 |
-
"You have changed the recurrence rules of this event. Saving the event will "
|
56 |
-
"update all future events. If you did not mean to change all events, then "
|
57 |
-
"please refresh the page."
|
58 |
msgstr ""
|
59 |
|
60 |
#: ../admin-views/events-meta-box.php:35
|
@@ -65,7 +63,8 @@ msgstr ""
|
|
65 |
msgid "Start Date & Time:"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: ../admin-views/events-meta-box.php:42
|
|
|
69 |
msgid "YYYY-MM-DD"
|
70 |
msgstr ""
|
71 |
|
@@ -90,7 +89,6 @@ msgid "URL:"
|
|
90 |
msgstr ""
|
91 |
|
92 |
#: ../admin-views/events-meta-box.php:115
|
93 |
-
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:61
|
94 |
msgid "Event Cost"
|
95 |
msgstr ""
|
96 |
|
@@ -99,7 +97,6 @@ msgid "Currency Symbol:"
|
|
99 |
msgstr ""
|
100 |
|
101 |
#: ../admin-views/events-meta-box.php:122
|
102 |
-
#: ../public/advanced-functions/meta.php:307
|
103 |
msgid "Cost:"
|
104 |
msgstr ""
|
105 |
|
@@ -113,37 +110,24 @@ msgstr ""
|
|
113 |
|
114 |
#: ../admin-views/organizer-meta-box.php:19
|
115 |
#: ../admin-views/venue-meta-box.php:93
|
116 |
-
#: ../admin-views/tickets/attendees.php:39
|
117 |
-
#: ../public/advanced-functions/meta.php:395
|
118 |
-
#: ../public/advanced-functions/meta.php:457
|
119 |
msgid "Phone:"
|
120 |
msgstr ""
|
121 |
|
122 |
#: ../admin-views/organizer-meta-box.php:23
|
123 |
#: ../admin-views/venue-meta-box.php:97
|
124 |
-
#: ../admin-views/tickets/attendees.php:45
|
125 |
-
#: ../public/advanced-functions/meta.php:346
|
126 |
-
#: ../public/advanced-functions/meta.php:421
|
127 |
-
#: ../public/advanced-functions/meta.php:483
|
128 |
msgid "Website:"
|
129 |
msgstr ""
|
130 |
|
131 |
#: ../admin-views/organizer-meta-box.php:27
|
132 |
-
#: ../public/advanced-functions/meta.php:470
|
133 |
msgid "Email:"
|
134 |
msgstr ""
|
135 |
|
136 |
#: ../admin-views/organizer-meta-box.php:28
|
137 |
-
msgid ""
|
138 |
-
"You may want to consider <a href=\"http://wordpress.org/plugins/tags/"
|
139 |
-
"obfuscate\">obfuscating</a> any e-mail address published on your site to "
|
140 |
-
"best avoid it getting harvested by spammers."
|
141 |
msgstr ""
|
142 |
|
143 |
#: ../admin-views/recurrence-dialog.php:13
|
144 |
-
msgid ""
|
145 |
-
"Would you like to change only this instance of the event, or all future "
|
146 |
-
"events in this series?"
|
147 |
msgstr ""
|
148 |
|
149 |
#: ../admin-views/recurrence-dialog.php:15
|
@@ -161,15 +145,11 @@ msgid "All Events:"
|
|
161 |
msgstr ""
|
162 |
|
163 |
#: ../admin-views/recurrence-dialog.php:16
|
164 |
-
msgid ""
|
165 |
-
"All future events in the series will be changed. Any changes made to other "
|
166 |
-
"events will be kept."
|
167 |
msgstr ""
|
168 |
|
169 |
#: ../admin-views/recurrence-dialog.php:21
|
170 |
-
msgid ""
|
171 |
-
"Would you like to delete only this instance of the event, or all future "
|
172 |
-
"events in this series?"
|
173 |
msgstr ""
|
174 |
|
175 |
#: ../admin-views/recurrence-dialog.php:23
|
@@ -194,14 +174,7 @@ msgstr ""
|
|
194 |
|
195 |
#: ../admin-views/tribe-options-display.php:34
|
196 |
#, php-format
|
197 |
-
msgid ""
|
198 |
-
"<p>The settings below control the display of your calendar. If things don't "
|
199 |
-
"look right, try switching between the three style sheet options or pick a "
|
200 |
-
"page template from your theme.</p><p>There are going to be situations where "
|
201 |
-
"no out-of-the-box template is 100% perfect. Check out our <a href=\"%s"
|
202 |
-
"\">our themer's guide</a> for instructions on custom modifications. Want to "
|
203 |
-
"create a new view? Grab a copy of the <a href=\"%s\">Sample Agenda View "
|
204 |
-
"plugin from Github</a></p>"
|
205 |
msgstr ""
|
206 |
|
207 |
#: ../admin-views/tribe-options-display.php:49
|
@@ -217,9 +190,7 @@ msgid "Skeleton Styles"
|
|
217 |
msgstr ""
|
218 |
|
219 |
#: ../admin-views/tribe-options-display.php:58
|
220 |
-
msgid ""
|
221 |
-
"Only includes enough css to achieve complex layouts like calendar and week "
|
222 |
-
"view."
|
223 |
msgstr ""
|
224 |
|
225 |
#: ../admin-views/tribe-options-display.php:60
|
@@ -243,9 +214,7 @@ msgid "Events template"
|
|
243 |
msgstr ""
|
244 |
|
245 |
#: ../admin-views/tribe-options-display.php:74
|
246 |
-
msgid ""
|
247 |
-
"Choose a page template to control the appearance of your calendar and event "
|
248 |
-
"content."
|
249 |
msgstr ""
|
250 |
|
251 |
#: ../admin-views/tribe-options-display.php:82
|
@@ -285,9 +254,7 @@ msgid "Add HTML before event content"
|
|
285 |
msgstr ""
|
286 |
|
287 |
#: ../admin-views/tribe-options-display.php:118
|
288 |
-
msgid ""
|
289 |
-
"If you are familiar with HTML, you can add additional code before the event "
|
290 |
-
"template. Some themes may require this to help with styling or layout."
|
291 |
msgstr ""
|
292 |
|
293 |
#: ../admin-views/tribe-options-display.php:123
|
@@ -295,9 +262,7 @@ msgid "Add HTML after event content"
|
|
295 |
msgstr ""
|
296 |
|
297 |
#: ../admin-views/tribe-options-display.php:124
|
298 |
-
msgid ""
|
299 |
-
"If you are familiar with HTML, you can add additional code after the event "
|
300 |
-
"template. Some themes may require this to help with styling or layout."
|
301 |
msgstr ""
|
302 |
|
303 |
#: ../admin-views/tribe-options-general.php:14
|
@@ -317,9 +282,7 @@ msgid "Right here"
|
|
317 |
msgstr ""
|
318 |
|
319 |
#: ../admin-views/tribe-options-general.php:28
|
320 |
-
msgid ""
|
321 |
-
"Looking for additional functionality including recurring events, custom "
|
322 |
-
"meta, community events, ticket sales and more?"
|
323 |
msgstr ""
|
324 |
|
325 |
#: ../admin-views/tribe-options-general.php:28
|
@@ -331,11 +294,7 @@ msgid "We hope our plugin is helping you out."
|
|
331 |
msgstr ""
|
332 |
|
333 |
#: ../admin-views/tribe-options-general.php:37
|
334 |
-
msgid ""
|
335 |
-
"Are you thinking \"Wow, this plugin is amazing! I should say thanks to "
|
336 |
-
"Modern Tribe for all their hard work.\" The greatest thanks we could ask for "
|
337 |
-
"is recognition. Add a small text-only link at the bottom of your calendar "
|
338 |
-
"pointing to The Events Calendar project."
|
339 |
msgstr ""
|
340 |
|
341 |
#: ../admin-views/tribe-options-general.php:37
|
@@ -344,11 +303,7 @@ msgid "See an example of the link"
|
|
344 |
msgstr ""
|
345 |
|
346 |
#: ../admin-views/tribe-options-general.php:42
|
347 |
-
msgid ""
|
348 |
-
"Are you thinking \"Wow, this plugin is amazing! I should say thanks to "
|
349 |
-
"Modern Tribe for all their hard work.\" The greatest thanks we could ask for "
|
350 |
-
"is recognition. Add a small text only link at the bottom of your calendar "
|
351 |
-
"pointing to The Events Calendar project."
|
352 |
msgstr ""
|
353 |
|
354 |
#: ../admin-views/tribe-options-general.php:47
|
@@ -368,14 +323,11 @@ msgid "Use Javascript to control date filtering"
|
|
368 |
msgstr ""
|
369 |
|
370 |
#: ../admin-views/tribe-options-general.php:73
|
371 |
-
msgid ""
|
372 |
-
"This option is disabled when \"Disable the Event Search Bar\" is checked on "
|
373 |
-
"the Display settings tab."
|
374 |
msgstr ""
|
375 |
|
376 |
#: ../admin-views/tribe-options-general.php:73
|
377 |
-
msgid ""
|
378 |
-
"Enable live ajax for datepicker on front end (User submit not required)."
|
379 |
msgstr ""
|
380 |
|
381 |
#: ../admin-views/tribe-options-general.php:81
|
@@ -391,9 +343,7 @@ msgid "Include events in main blog loop"
|
|
391 |
msgstr ""
|
392 |
|
393 |
#: ../admin-views/tribe-options-general.php:89
|
394 |
-
msgid ""
|
395 |
-
"Show events with the site's other posts. When this box is checked, events "
|
396 |
-
"will also continue to appear on the default events page."
|
397 |
msgstr ""
|
398 |
|
399 |
#: ../admin-views/tribe-options-general.php:95
|
@@ -403,15 +353,10 @@ msgstr ""
|
|
403 |
|
404 |
#: ../admin-views/tribe-options-general.php:96
|
405 |
#, php-format
|
406 |
-
msgid ""
|
407 |
-
"You cannot edit the slug for your events page as you do not have pretty "
|
408 |
-
"permalinks enabled. The current URL for your events page is <a href=\"%s\">"
|
409 |
-
"%s</a>. In order to edit the slug here, <a href=\"%soptions-permalink.php"
|
410 |
-
"\">enable pretty permalinks</a>."
|
411 |
msgstr ""
|
412 |
|
413 |
#: ../admin-views/tribe-options-general.php:108
|
414 |
-
#: ../public/template-tags/options.php:20
|
415 |
msgid "The slug used for building the events URL."
|
416 |
msgstr ""
|
417 |
|
@@ -421,7 +366,6 @@ msgid "Your current events URL is: %s"
|
|
421 |
msgstr ""
|
422 |
|
423 |
#: ../admin-views/tribe-options-general.php:113
|
424 |
-
#: ../public/template-tags/options.php:43
|
425 |
msgid "Here is the iCal feed URL for your events:"
|
426 |
msgstr ""
|
427 |
|
@@ -431,9 +375,7 @@ msgstr ""
|
|
431 |
|
432 |
#: ../admin-views/tribe-options-general.php:125
|
433 |
#, php-format
|
434 |
-
msgid ""
|
435 |
-
"The above should ideally be plural, and this singular.<br />Your single "
|
436 |
-
"event URL is: %s"
|
437 |
msgstr ""
|
438 |
|
439 |
#: ../admin-views/tribe-options-general.php:130
|
@@ -441,9 +383,7 @@ msgid "End of day cutoff"
|
|
441 |
msgstr ""
|
442 |
|
443 |
#: ../admin-views/tribe-options-general.php:138
|
444 |
-
msgid ""
|
445 |
-
"Have an event that runs past midnight? Select a time after that event's end "
|
446 |
-
"to avoid showing the event on the next day's calendar."
|
447 |
msgstr ""
|
448 |
|
449 |
#: ../admin-views/tribe-options-general.php:143
|
@@ -451,9 +391,7 @@ msgid "Default currency symbol"
|
|
451 |
msgstr ""
|
452 |
|
453 |
#: ../admin-views/tribe-options-general.php:144
|
454 |
-
msgid ""
|
455 |
-
"Set the default currency symbol for event costs. Note that this only impacts "
|
456 |
-
"future events, and changes made will not apply retroactively."
|
457 |
msgstr ""
|
458 |
|
459 |
#: ../admin-views/tribe-options-general.php:151
|
@@ -485,15 +423,11 @@ msgid "Duplicate Venues & Organizers"
|
|
485 |
msgstr ""
|
486 |
|
487 |
#: ../admin-views/tribe-options-general.php:176
|
488 |
-
#: ../lib/tribe-amalgamator.php:252
|
489 |
msgid "Merge Duplicates"
|
490 |
msgstr ""
|
491 |
|
492 |
#: ../admin-views/tribe-options-general.php:176
|
493 |
-
msgid ""
|
494 |
-
"You might find duplicate venues and organizers when updating The Events "
|
495 |
-
"Calendar from a pre-3.0 version. Click this button to automatically merge "
|
496 |
-
"identical venues and organizers."
|
497 |
msgstr ""
|
498 |
|
499 |
#: ../admin-views/tribe-options-general.php:181
|
@@ -502,11 +436,7 @@ msgstr ""
|
|
502 |
|
503 |
#: ../admin-views/tribe-options-general.php:187
|
504 |
#, php-format
|
505 |
-
msgid ""
|
506 |
-
"Enable this option to log debug information. By default this will log to "
|
507 |
-
"your server PHP error log. If you'd like to see the log messages in your "
|
508 |
-
"browser, then we recommend that you install the %s and look for the \"Tribe"
|
509 |
-
"\" tab in the debug output."
|
510 |
msgstr ""
|
511 |
|
512 |
#: ../admin-views/tribe-options-general.php:187
|
@@ -554,9 +484,6 @@ msgid "FAQ"
|
|
554 |
msgstr ""
|
555 |
|
556 |
#: ../admin-views/tribe-options-help.php:79
|
557 |
-
#: ../lib/the-events-calendar.class.php:765
|
558 |
-
#: ../lib/the-events-calendar.class.php:3929
|
559 |
-
#: ../lib/the-events-calendar.class.php:4022
|
560 |
msgid "Help"
|
561 |
msgstr ""
|
562 |
|
@@ -573,140 +500,84 @@ msgid "Forums"
|
|
573 |
msgstr ""
|
574 |
|
575 |
#: ../admin-views/tribe-options-help.php:99
|
576 |
-
msgid ""
|
577 |
-
"If this is your first time using The Events Calendar, you're in for a treat "
|
578 |
-
"and are already well on your way to creating a first event. Here are some "
|
579 |
-
"basics we've found helpful for users jumping into it for the first time:"
|
580 |
msgstr ""
|
581 |
|
582 |
#: ../admin-views/tribe-options-help.php:102
|
583 |
#, php-format
|
584 |
-
msgid ""
|
585 |
-
"%sOur New User Primer%s was designed for folks in your exact position. "
|
586 |
-
"Featuring both step-by-step videos and written walkthroughs that feature "
|
587 |
-
"accompanying screenshots, the primer aims to take you from zero to hero in "
|
588 |
-
"no time."
|
589 |
msgstr ""
|
590 |
|
591 |
#: ../admin-views/tribe-options-help.php:104
|
592 |
#, php-format
|
593 |
-
msgid ""
|
594 |
-
"%sInstallation/Setup FAQs%s from our support page can help give an overview "
|
595 |
-
"of what the plugin can and cannot do. This section of the FAQs may be "
|
596 |
-
"helpful as it aims to address any basic install questions not addressed by "
|
597 |
-
"the new user primer."
|
598 |
msgstr ""
|
599 |
|
600 |
#: ../admin-views/tribe-options-help.php:106
|
601 |
#, php-format
|
602 |
-
msgid ""
|
603 |
-
"Are you developer looking to build your own frontend view? We created an "
|
604 |
-
"example plugin that demonstrates how to register a new view. You can "
|
605 |
-
"%sdownload the plugin at GitHub%s to get started."
|
606 |
msgstr ""
|
607 |
|
608 |
#: ../admin-views/tribe-options-help.php:108
|
609 |
-
msgid ""
|
610 |
-
"Otherwise, if you're feeling adventurous, you can get started by heading to "
|
611 |
-
"the Events menu and adding your first event."
|
612 |
msgstr ""
|
613 |
|
614 |
#: ../admin-views/tribe-options-help.php:112
|
615 |
#, php-format
|
616 |
-
msgid ""
|
617 |
-
"We've redone our support page from the ground up in an effort to better help "
|
618 |
-
"our users. Head over to our %sSupport Page%s and you'll find lots of great "
|
619 |
-
"resources, including:"
|
620 |
msgstr ""
|
621 |
|
622 |
#: ../admin-views/tribe-options-help.php:114
|
623 |
#, php-format
|
624 |
-
msgid ""
|
625 |
-
"%sTemplate tags, functions, and hooks & filters%s for The Events Calendar "
|
626 |
-
"& Events Calendar PRO"
|
627 |
msgstr ""
|
628 |
|
629 |
#: ../admin-views/tribe-options-help.php:116
|
630 |
#, php-format
|
631 |
-
msgid ""
|
632 |
-
"%sFrequently Asked Questions%s ranging from the most basic setup questions "
|
633 |
-
"to advanced themer tweaks"
|
634 |
msgstr ""
|
635 |
|
636 |
#: ../admin-views/tribe-options-help.php:118
|
637 |
#, php-format
|
638 |
-
msgid ""
|
639 |
-
"%sTutorials%s written by both members of our team and users from the "
|
640 |
-
"community, covering custom queries, integration with third-party themes and "
|
641 |
-
"plugins, etc."
|
642 |
msgstr ""
|
643 |
|
644 |
#: ../admin-views/tribe-options-help.php:120
|
645 |
-
msgid ""
|
646 |
-
"Release notes for painting an overall picture of the plugin's lifecycle and "
|
647 |
-
"when features/bug fixes were introduced."
|
648 |
msgstr ""
|
649 |
|
650 |
#: ../admin-views/tribe-options-help.php:122
|
651 |
#, php-format
|
652 |
-
msgid ""
|
653 |
-
"%sAdd-on documentation%s for all of Modern Tribe's official extensions for "
|
654 |
-
"The Events Calendar (including WooTickets, Community Events, Eventbrite "
|
655 |
-
"Tickets, Facebook Events, etc)"
|
656 |
msgstr ""
|
657 |
|
658 |
#: ../admin-views/tribe-options-help.php:124
|
659 |
#, php-format
|
660 |
-
msgid ""
|
661 |
-
"We've also got a %sModern Tribe UserVoice%s page where we're actively "
|
662 |
-
"watching for feature ideas from the community. If after playing with the "
|
663 |
-
"plugin and reviewing the resources above, you're finding a feature isn't "
|
664 |
-
"present that should be, let us know. Vote up existing feature requests or "
|
665 |
-
"add your own, and help us shape the future of the products business in a way "
|
666 |
-
"that best meets the community's needs."
|
667 |
msgstr ""
|
668 |
|
669 |
#: ../admin-views/tribe-options-help.php:128
|
670 |
#, php-format
|
671 |
-
msgid ""
|
672 |
-
"Written documentation can only take things so far...sometimes, you need help "
|
673 |
-
"from a real person. This is where our %ssupport forums%s come into play."
|
674 |
msgstr ""
|
675 |
|
676 |
#: ../admin-views/tribe-options-help.php:129
|
677 |
#, php-format
|
678 |
-
msgid ""
|
679 |
-
"Users of the free The Events Calendar should post their support concerns to "
|
680 |
-
"the plugin's %sWordPress.org support forum%s. While we are happy to help "
|
681 |
-
"identify and fix bugs that are reported at WordPress.org, please make sure "
|
682 |
-
"to read our %ssupport expectations sticky thread%s before posting so you "
|
683 |
-
"understand our limitations."
|
684 |
msgstr ""
|
685 |
|
686 |
#: ../admin-views/tribe-options-help.php:130
|
687 |
-
msgid ""
|
688 |
-
"We hit the WordPress.org forum throughout the week, watching for bugs. If "
|
689 |
-
"you report a legitimate bug that we're able to reproduce, we will log it and "
|
690 |
-
"patch for an upcoming release. However we are unfortunately unable to "
|
691 |
-
"provide customization tips or assist in integrating with 3rd party plugins "
|
692 |
-
"or themes."
|
693 |
msgstr ""
|
694 |
|
695 |
#: ../admin-views/tribe-options-help.php:131
|
696 |
#, php-format
|
697 |
-
msgid ""
|
698 |
-
"If you're a user of The Events Calendar and would like more support, please "
|
699 |
-
"%spurchase a PRO license%s. We hit the PRO forums daily, and can provide a "
|
700 |
-
"deeper level of customization/integration support for paying users than we "
|
701 |
-
"can on WordPress.org."
|
702 |
msgstr ""
|
703 |
|
704 |
#: ../admin-views/tribe-options-help.php:135
|
705 |
#, php-format
|
706 |
-
msgid ""
|
707 |
-
"If you find that you aren't getting the level of service you've come to "
|
708 |
-
"expect from Modern Tribe, shoot us an email at %s or tweet %s and tell us "
|
709 |
-
"why. We'll do what we can to make it right."
|
710 |
msgstr ""
|
711 |
|
712 |
#: ../admin-views/tribe-options-help.php:136
|
@@ -714,9 +585,7 @@ msgid "More..."
|
|
714 |
msgstr ""
|
715 |
|
716 |
#: ../admin-views/tribe-options-help.php:144
|
717 |
-
msgid ""
|
718 |
-
"Hi! We are Modern Tribe and we are here to help you kick ass. Thanks so much "
|
719 |
-
"for installing our labor of love!"
|
720 |
msgstr ""
|
721 |
|
722 |
#: ../admin-views/tribe-options-help.php:150
|
@@ -736,8 +605,6 @@ msgid "Not getting help?"
|
|
736 |
msgstr ""
|
737 |
|
738 |
#: ../admin-views/tribe-options-help.php:171
|
739 |
-
#: ../lib/the-events-calendar.class.php:508
|
740 |
-
#: ../lib/tribe-settings.class.php:135
|
741 |
msgid "The Events Calendar"
|
742 |
msgstr ""
|
743 |
|
@@ -790,9 +657,7 @@ msgid "Network Settings"
|
|
790 |
msgstr ""
|
791 |
|
792 |
#: ../admin-views/tribe-options-network.php:18
|
793 |
-
msgid ""
|
794 |
-
"This is where all of the global network settings for Modern Tribe's The "
|
795 |
-
"Events Calendar can be modified."
|
796 |
msgstr ""
|
797 |
|
798 |
#: ../admin-views/tribe-options-network.php:26
|
@@ -804,7 +669,6 @@ msgid "Venue Name:"
|
|
804 |
msgstr ""
|
805 |
|
806 |
#: ../admin-views/venue-meta-box.php:27
|
807 |
-
#: ../public/advanced-functions/meta.php:409
|
808 |
msgid "Address:"
|
809 |
msgstr ""
|
810 |
|
@@ -828,11 +692,13 @@ msgstr ""
|
|
828 |
msgid "Postal Code:"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: ../admin-views/venue-meta-box.php:112
|
|
|
832 |
msgid "Show Google Map:"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: ../admin-views/venue-meta-box.php:122
|
|
|
836 |
msgid "Show Google Maps Link:"
|
837 |
msgstr ""
|
838 |
|
@@ -848,8 +714,8 @@ msgstr ""
|
|
848 |
msgid "Show widget only if there are upcoming events:"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: ../admin-views/tickets/attendees.php:9
|
852 |
-
#: ../
|
853 |
msgid "Attendees"
|
854 |
msgstr ""
|
855 |
|
@@ -877,12 +743,14 @@ msgstr ""
|
|
877 |
msgid "Ticket Sales"
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: ../admin-views/tickets/attendees.php:64
|
|
|
881 |
#, php-format
|
882 |
msgid "Sold %d"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: ../admin-views/tickets/attendees.php:66
|
|
|
886 |
#, php-format
|
887 |
msgid "Sold %d of %d"
|
888 |
msgstr ""
|
@@ -933,14 +801,12 @@ msgstr ""
|
|
933 |
msgid "View"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: ../admin-views/tickets/list.php:41
|
937 |
msgid "See who purchased tickets to this event"
|
938 |
msgstr ""
|
939 |
|
940 |
#: ../admin-views/tickets/meta-box.php:21
|
941 |
-
msgid ""
|
942 |
-
"This event was created using Community Events. Are you sure you want to sell "
|
943 |
-
"tickets for it?"
|
944 |
msgstr ""
|
945 |
|
946 |
#: ../admin-views/tickets/meta-box.php:32
|
@@ -948,10 +814,7 @@ msgid "Upload image for the ticket header"
|
|
948 |
msgstr ""
|
949 |
|
950 |
#: ../admin-views/tickets/meta-box.php:33
|
951 |
-
msgid ""
|
952 |
-
"The maximum image size in the email will be 580px wide by any height, and "
|
953 |
-
"then scaled for mobile. If you would like \"retina\" support use an image "
|
954 |
-
"sized to 1160px wide."
|
955 |
msgstr ""
|
956 |
|
957 |
#: ../admin-views/tickets/meta-box.php:36
|
@@ -987,6 +850,10 @@ msgstr ""
|
|
987 |
msgid "Price:"
|
988 |
msgstr ""
|
989 |
|
|
|
|
|
|
|
|
|
990 |
#: ../admin-views/tickets/meta-box.php:124
|
991 |
msgid "Start sale:"
|
992 |
msgstr ""
|
@@ -996,9 +863,7 @@ msgid "End sale:"
|
|
996 |
msgstr ""
|
997 |
|
998 |
#: ../admin-views/tickets/meta-box.php:170
|
999 |
-
msgid ""
|
1000 |
-
"When will ticket sales occur? If you don't set a start/end date for sales, "
|
1001 |
-
"tickets will be available from now until the event ends."
|
1002 |
msgstr ""
|
1003 |
|
1004 |
#: ../lib/the-events-calendar.class.php:513
|
@@ -1024,17 +889,12 @@ msgstr ""
|
|
1024 |
|
1025 |
#: ../lib/the-events-calendar.class.php:644
|
1026 |
#, php-format
|
1027 |
-
msgid ""
|
1028 |
-
"Your version of The Events Calendar is not up-to-date with one of your The "
|
1029 |
-
"Events Calendar add-ons. Please %supdate now.%s"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
#: ../lib/the-events-calendar.class.php:661
|
1033 |
#, php-format
|
1034 |
-
msgid ""
|
1035 |
-
"The following plugins are out of date: <b>%s</b>. All add-ons contain "
|
1036 |
-
"dependencies on The Events Calendar and will not function properly unless "
|
1037 |
-
"paired with the right version. %sWant to pair an older version%s?"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
#: ../lib/the-events-calendar.class.php:725
|
@@ -1045,20 +905,7 @@ msgstr ""
|
|
1045 |
|
1046 |
#: ../lib/the-events-calendar.class.php:729
|
1047 |
#, php-format
|
1048 |
-
msgid ""
|
1049 |
-
"<p>The license key you received when completing your purchase from %s will "
|
1050 |
-
"grant you access to support and updates until it expires. You do not need to "
|
1051 |
-
"enter the key below for the plugins to work, but you will need to enter it "
|
1052 |
-
"to get automatic updates. <strong>Find your license keys at <a href=\"%s\" "
|
1053 |
-
"target=\"_blank\">%s</a></strong>.</p> <p>Each paid add-on has its own "
|
1054 |
-
"unique license key. Simply paste the key into its appropriate field on "
|
1055 |
-
"below, and give it a moment to validate. You know you're set when a green "
|
1056 |
-
"expiration date appears alongside a \"valid\" message.</p> <p>If you're "
|
1057 |
-
"seeing a red message telling you that your key isn't valid or is out of "
|
1058 |
-
"installs, visit <a href=\"%s\" target=\"_blank\">%s</a> to manage your "
|
1059 |
-
"installs or renew / upgrade your license.</p><p>Not seeing an update but "
|
1060 |
-
"expecting one? In WordPress, go to <a href=\"%s\">Dashboard > Updates</a> "
|
1061 |
-
"and click \"Check Again\".</p>"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
#: ../lib/the-events-calendar.class.php:752
|
@@ -1071,31 +918,24 @@ msgstr ""
|
|
1071 |
|
1072 |
#: ../lib/the-events-calendar.class.php:804
|
1073 |
#, php-format
|
1074 |
-
msgid ""
|
1075 |
-
"Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade "
|
1076 |
-
"your WordPress install."
|
1077 |
msgstr ""
|
1078 |
|
1079 |
#: ../lib/the-events-calendar.class.php:807
|
1080 |
#, php-format
|
1081 |
-
msgid ""
|
1082 |
-
"Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host "
|
1083 |
-
"about moving you to a newer version of PHP."
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: ../lib/the-events-calendar.class.php:1022
|
1087 |
-
#: ../public/template-tags/loop.php:138
|
1088 |
msgid "Upcoming Events"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
#: ../lib/the-events-calendar.class.php:1025
|
1092 |
-
#: ../public/template-tags/loop.php:168
|
1093 |
msgid "Past Events"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
#: ../lib/the-events-calendar.class.php:1030
|
1097 |
#: ../lib/the-events-calendar.class.php:1037
|
1098 |
-
#: ../public/template-tags/loop.php:173
|
1099 |
#, php-format
|
1100 |
msgid "Events for %s"
|
1101 |
msgstr ""
|
@@ -1122,9 +962,8 @@ msgid "tag"
|
|
1122 |
msgstr ""
|
1123 |
|
1124 |
#: ../lib/the-events-calendar.class.php:1362
|
1125 |
-
#: ../lib/the-events-calendar.class.php:
|
1126 |
-
#: ../lib/the-events-calendar.class.php:
|
1127 |
-
#: ../lib/io/csv/admin-views/import.php:31
|
1128 |
msgid "Events"
|
1129 |
msgstr ""
|
1130 |
|
@@ -1168,12 +1007,10 @@ msgstr ""
|
|
1168 |
|
1169 |
#: ../lib/the-events-calendar.class.php:1375
|
1170 |
#: ../lib/the-events-calendar.class.php:1487
|
1171 |
-
#: ../lib/io/csv/admin-views/import.php:29
|
1172 |
msgid "Venues"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
#: ../lib/the-events-calendar.class.php:1376
|
1176 |
-
#: ../public/advanced-functions/meta.php:369 ../views/tickets/email.php:343
|
1177 |
msgid "Venue"
|
1178 |
msgstr ""
|
1179 |
|
@@ -1207,12 +1044,10 @@ msgstr ""
|
|
1207 |
|
1208 |
#: ../lib/the-events-calendar.class.php:1388
|
1209 |
#: ../lib/the-events-calendar.class.php:1488
|
1210 |
-
#: ../lib/io/csv/admin-views/import.php:30
|
1211 |
msgid "Organizers"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
#: ../lib/the-events-calendar.class.php:1389
|
1215 |
-
#: ../public/advanced-functions/meta.php:431 ../views/tickets/email.php:362
|
1216 |
msgid "Organizer"
|
1217 |
msgstr ""
|
1218 |
|
@@ -1250,7 +1085,6 @@ msgid "Event Categories"
|
|
1250 |
msgstr ""
|
1251 |
|
1252 |
#: ../lib/the-events-calendar.class.php:1402
|
1253 |
-
#: ../lib/io/csv/classes/TribeEventsImporter_ColumnMapper.php:63
|
1254 |
msgid "Event Category"
|
1255 |
msgstr ""
|
1256 |
|
@@ -1328,9 +1162,7 @@ msgstr ""
|
|
1328 |
|
1329 |
#: ../lib/the-events-calendar.class.php:1435
|
1330 |
#, php-format
|
1331 |
-
msgid ""
|
1332 |
-
"Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
|
1333 |
-
"\">Preview event</a>"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
#: ../lib/the-events-calendar.class.php:1437
|
@@ -1374,9 +1206,7 @@ msgstr ""
|
|
1374 |
|
1375 |
#: ../lib/the-events-calendar.class.php:1452
|
1376 |
#, php-format
|
1377 |
-
msgid ""
|
1378 |
-
"Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
|
1379 |
-
"\">Preview venue</a>"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
#: ../lib/the-events-calendar.class.php:1455
|
@@ -1409,22 +1239,17 @@ msgstr ""
|
|
1409 |
|
1410 |
#: ../lib/the-events-calendar.class.php:1468
|
1411 |
#, php-format
|
1412 |
-
msgid ""
|
1413 |
-
"Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
#: ../lib/the-events-calendar.class.php:1469
|
1417 |
#, php-format
|
1418 |
-
msgid ""
|
1419 |
-
"Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href="
|
1420 |
-
"\"%2$s\">Preview organizer</a>"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
#: ../lib/the-events-calendar.class.php:1472
|
1424 |
#, php-format
|
1425 |
-
msgid ""
|
1426 |
-
"Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</"
|
1427 |
-
"a>"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
#: ../lib/the-events-calendar.class.php:1513
|
@@ -1487,121 +1312,114 @@ msgstr ""
|
|
1487 |
msgid "Network"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
-
#: ../lib/the-events-calendar.class.php:
|
1491 |
msgid "Unnamed Venue"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: ../lib/the-events-calendar.class.php:
|
1495 |
msgid "Unnamed Organizer"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: ../lib/the-events-calendar.class.php:
|
1499 |
-
#: ../lib/the-events-calendar.class.php:
|
1500 |
msgid "Date out of range."
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: ../lib/the-events-calendar.class.php:
|
1504 |
msgid "Event Options"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: ../lib/the-events-calendar.class.php:
|
1508 |
msgid "Venue Information"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: ../lib/the-events-calendar.class.php:
|
1512 |
msgid "Organizer Information"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#: ../lib/the-events-calendar.class.php:
|
1516 |
msgid "Support"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: ../lib/the-events-calendar.class.php:
|
1520 |
msgid "View All Add-Ons"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#: ../lib/the-events-calendar.class.php:
|
1524 |
msgid "News from Modern Tribe"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
-
#: ../lib/the-events-calendar.class.php:
|
1528 |
msgid "Additional Functionality"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#: ../lib/the-events-calendar.class.php:
|
1532 |
-
msgid ""
|
1533 |
-
"Looking for additional functionality including recurring events, ticket "
|
1534 |
-
"sales, publicly submitted events, new views and more?"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#: ../lib/the-events-calendar.class.php:
|
1538 |
#, php-format
|
1539 |
msgid "Check out the <a href=\"%s\">available add-ons</a>."
|
1540 |
msgstr ""
|
1541 |
|
1542 |
-
#: ../lib/the-events-calendar.class.php:
|
1543 |
-
#: ../lib/the-events-calendar.class.php:
|
1544 |
msgid "View Calendar"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
-
#: ../lib/the-events-calendar.class.php:
|
1548 |
msgid "Add Event"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: ../lib/the-events-calendar.class.php:
|
1552 |
msgid "Edit Events"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: ../lib/the-events-calendar.class.php:
|
1556 |
-
#: ../lib/the-events-calendar.class.php:
|
1557 |
-
#: ../lib/tribe-settings.class.php:164
|
1558 |
msgid "Settings"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: ../lib/the-events-calendar.class.php:
|
1562 |
#, php-format
|
1563 |
-
msgid ""
|
1564 |
-
"Welcome to The Events Calendar! Your events calendar can be found at %s. To "
|
1565 |
-
"change the events slug, visit %sEvents -> Settings%s."
|
1566 |
msgstr ""
|
1567 |
|
1568 |
-
#: ../lib/the-events-calendar.class.php:
|
1569 |
msgid "Calendar"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
-
#: ../lib/the-events-calendar.class.php:
|
1573 |
msgid "List"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#: ../lib/the-events-calendar.class.php:
|
1577 |
msgid "Month"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
-
#: ../lib/the-events-calendar.class.php:
|
1581 |
-
#: ../lib/the-events-calendar.class.php:
|
1582 |
msgid "Search"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: ../lib/the-events-calendar.class.php:
|
1586 |
-
#: ../lib/the-events-calendar.class.php:
|
1587 |
msgid "Date"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: ../lib/the-events-calendar.class.php:
|
1591 |
msgid "Events In"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: ../lib/the-events-calendar.class.php:
|
1595 |
msgid "Events From"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: ../lib/the-events-calendar.class.php:
|
1599 |
-
#: ../views/list/nav.php:28 ../views/list/nav.php:31
|
1600 |
msgid "« Previous Events"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: ../lib/the-events-calendar.class.php:
|
1604 |
-
#: ../views/list/nav.php:43 ../views/list/nav.php:49
|
1605 |
msgid "Next Events »"
|
1606 |
msgstr ""
|
1607 |
|
@@ -1623,7 +1441,6 @@ msgid "Recurring?"
|
|
1623 |
msgstr ""
|
1624 |
|
1625 |
#: ../lib/tribe-admin-events-list.class.php:298
|
1626 |
-
#: ../lib/tickets/tribe-tickets-pro.php:229
|
1627 |
msgid "Yes"
|
1628 |
msgstr ""
|
1629 |
|
@@ -1636,7 +1453,8 @@ msgstr ""
|
|
1636 |
msgid "All %s"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
-
#: ../lib/tribe-app-shop.class.php:62
|
|
|
1640 |
#: ../lib/tribe-app-shop.class.php:87
|
1641 |
msgid "Event Add-Ons"
|
1642 |
msgstr ""
|
@@ -1645,8 +1463,7 @@ msgstr ""
|
|
1645 |
msgid "Tribe"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
-
#: ../lib/tribe-event-api.class.php:374
|
1649 |
-
#: ../public/template-tags/venue.php:240
|
1650 |
msgid "United States"
|
1651 |
msgstr ""
|
1652 |
|
@@ -1675,7 +1492,8 @@ msgstr ""
|
|
1675 |
msgid "There are no fields setup for this tab yet."
|
1676 |
msgstr ""
|
1677 |
|
1678 |
-
#: ../lib/tribe-settings.class.php:164
|
|
|
1679 |
msgid "The Events Calendar Settings"
|
1680 |
msgstr ""
|
1681 |
|
@@ -1720,65 +1538,47 @@ msgstr ""
|
|
1720 |
msgid "Settings saved."
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: ../lib/tribe-template-factory.class.php:
|
1724 |
#, php-format
|
1725 |
msgid "There were no results found for <strong>\"%s\"</strong>."
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: ../lib/tribe-template-factory.class.php:
|
1729 |
#, php-format
|
1730 |
msgid "No results were found for events in or near <strong>\"%s\"</strong>."
|
1731 |
msgstr ""
|
1732 |
|
1733 |
-
#: ../lib/tribe-template-factory.class.php:
|
1734 |
#, php-format
|
1735 |
-
msgid ""
|
1736 |
-
"No upcoming events listed under %s. Check out upcoming events for this "
|
1737 |
-
"category or view the full calendar."
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#: ../lib/tribe-template-factory.class.php:
|
1741 |
#, php-format
|
1742 |
-
msgid ""
|
1743 |
-
"No matching events listed under %s. Check out upcoming events for this "
|
1744 |
-
"category or view the full calendar."
|
1745 |
msgstr ""
|
1746 |
|
1747 |
-
#: ../lib/tribe-template-factory.class.php:
|
1748 |
msgid "No previous events "
|
1749 |
msgstr ""
|
1750 |
|
1751 |
-
#: ../lib/tribe-template-factory.class.php:
|
1752 |
-
#: ../lib/template-classes/month.php:115
|
1753 |
msgid "There were no results found."
|
1754 |
msgstr ""
|
1755 |
|
1756 |
-
#: ../lib/tribe-templates.class.php:
|
1757 |
#, php-format
|
1758 |
msgid "Template overrides should be moved to the correct subdirectory: %s"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
-
#: ../lib/tribe-templates.class.php:
|
1762 |
#, php-format
|
1763 |
-
msgid ""
|
1764 |
-
"Template overrides should be moved to the correct subdirectory: "
|
1765 |
-
"tribe_get_template_part('%s')"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
#: ../lib/tribe-the-events-calendar-import.class.php:64
|
1769 |
#, php-format
|
1770 |
-
msgid ""
|
1771 |
-
"Welcome to Events 2.0! This is a HUGE upgrade from 1.6.5. Please make sure "
|
1772 |
-
"you have backed up before proceeding any further. You can easily <a href=\"%s"
|
1773 |
-
"\">revert to an old version</a> if you want to backup first. This upgrade "
|
1774 |
-
"includes two major steps, <a href=\"%s\">migrating data</a> & updating "
|
1775 |
-
"your templates as necessary. There have been significant changes to the "
|
1776 |
-
"template tags and functions. Check out our <a href=\"%s\">walk-through on "
|
1777 |
-
"the upgrade</a> before proceeding and check out the FAQ & Knowledge base "
|
1778 |
-
"from the <a href=\"%s\">support page</a>. If you're new to The Events "
|
1779 |
-
"Calendar, you may want to review our <a href=\"%s\">new user primer</a>.<br/"
|
1780 |
-
"><br/> You have events that need to be migrated. Please visit the bottom of "
|
1781 |
-
"the <a href=\"%s\">settings page</a> to perform the migration."
|
1782 |
msgstr ""
|
1783 |
|
1784 |
#: ../lib/tribe-the-events-calendar-import.class.php:86
|
@@ -1786,10 +1586,7 @@ msgid "Upgrade from The Events Calendar"
|
|
1786 |
msgstr ""
|
1787 |
|
1788 |
#: ../lib/tribe-the-events-calendar-import.class.php:87
|
1789 |
-
msgid ""
|
1790 |
-
"It appears that you have some old events calendar data that needs to be "
|
1791 |
-
"upgraded. Please be sure to back up your database before initiating the "
|
1792 |
-
"upgrade. This process can not be undone."
|
1793 |
msgstr ""
|
1794 |
|
1795 |
#: ../lib/tribe-the-events-calendar-import.class.php:88
|
@@ -1805,11 +1602,13 @@ msgstr ""
|
|
1805 |
msgid "Install has 1 or more legacy event!"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#: ../lib/tribe-validate.class.php:77
|
|
|
1809 |
msgid "Invalid or incomplete field passed"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#: ../lib/tribe-validate.class.php:78
|
|
|
1813 |
#: ../lib/tribe-validate.class.php:116
|
1814 |
msgid "Field ID:"
|
1815 |
msgstr ""
|
@@ -1818,7 +1617,8 @@ msgstr ""
|
|
1818 |
msgid "Non-existant field validation function passed"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
-
#: ../lib/tribe-validate.class.php:135
|
|
|
1822 |
#, php-format
|
1823 |
msgid "%s must contain numbers and letters only"
|
1824 |
msgstr ""
|
@@ -1843,7 +1643,8 @@ msgstr ""
|
|
1843 |
msgid "%s must be a valid absolute URL."
|
1844 |
msgstr ""
|
1845 |
|
1846 |
-
#: ../lib/tribe-validate.class.php:239
|
|
|
1847 |
#: ../lib/tribe-validate.class.php:279
|
1848 |
#, php-format
|
1849 |
msgid "%s must have a value that's part of its options."
|
@@ -1851,9 +1652,7 @@ msgstr ""
|
|
1851 |
|
1852 |
#: ../lib/tribe-validate.class.php:295
|
1853 |
#, php-format
|
1854 |
-
msgid ""
|
1855 |
-
"Comparison validation failed because no comparison value was provided, for "
|
1856 |
-
"field %s"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
#: ../lib/tribe-validate.class.php:302
|
@@ -1878,8 +1677,7 @@ msgstr ""
|
|
1878 |
|
1879 |
#: ../lib/tribe-validate.class.php:404
|
1880 |
#, php-format
|
1881 |
-
msgid ""
|
1882 |
-
"%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
|
1883 |
msgstr ""
|
1884 |
|
1885 |
#: ../lib/tribe-validate.class.php:422
|
@@ -1898,9 +1696,7 @@ msgid "%s must be a phone number."
|
|
1898 |
msgstr ""
|
1899 |
|
1900 |
#: ../lib/tribe-validate.class.php:472
|
1901 |
-
msgid ""
|
1902 |
-
"Country List must be formatted as one country per line in the following "
|
1903 |
-
"format: <br>US, United States <br> UK, United Kingdom."
|
1904 |
msgstr ""
|
1905 |
|
1906 |
#: ../lib/tribe-view-helpers.class.php:24
|
@@ -3111,16 +2907,11 @@ msgid "Please import venues and organizers <i>before</i> events."
|
|
3111 |
msgstr ""
|
3112 |
|
3113 |
#: ../lib/io/csv/admin-views/import.php:19
|
3114 |
-
msgid ""
|
3115 |
-
"<ol><li><strong>Organizer import requires:</strong> Organizer Name</"
|
3116 |
-
"li><li><strong>Venue import requires:</strong> Venue Name</"
|
3117 |
-
"li><li><strong>Event import requires:</strong> Event Name and Event Start "
|
3118 |
-
"Date</li></ol>"
|
3119 |
msgstr ""
|
3120 |
|
3121 |
#: ../lib/io/csv/admin-views/import.php:20
|
3122 |
-
msgid ""
|
3123 |
-
"To begin importing data, please choose the type of import and the CSV file."
|
3124 |
msgstr ""
|
3125 |
|
3126 |
#: ../lib/io/csv/admin-views/import.php:27
|
@@ -3132,11 +2923,7 @@ msgid "CSV File:"
|
|
3132 |
msgstr ""
|
3133 |
|
3134 |
#: ../lib/io/csv/admin-views/import.php:42
|
3135 |
-
msgid ""
|
3136 |
-
"Upload a properly formatted, UTF-8 encoded CSV file. Not sure if your file "
|
3137 |
-
"is UTF-8 encoded? Make sure to specify the character encoding when you save "
|
3138 |
-
"the file, or pass it through a <a href='http://i-tools.org/charset/exec?"
|
3139 |
-
"dest=utf-8&src=auto&download=1'>conversion tool</a>."
|
3140 |
msgstr ""
|
3141 |
|
3142 |
#: ../lib/io/csv/admin-views/import.php:50
|
@@ -3175,12 +2962,7 @@ msgid "The import statistics above have the following meaning:"
|
|
3175 |
msgstr ""
|
3176 |
|
3177 |
#: ../lib/io/csv/admin-views/result.php:24
|
3178 |
-
msgid ""
|
3179 |
-
"<ol><li><strong>Inserted:</strong> A new item was inserted successfully.</"
|
3180 |
-
"li><li><strong>Updated:</strong> An item was found with the same name and/or "
|
3181 |
-
"start date. The existing item was updated with the new value from the file.</"
|
3182 |
-
"li><li><strong>Skipped:</strong> A row was found in the CSV file that could "
|
3183 |
-
"not be imported. Please see below for the invalid rows.</li></ol>"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
#: ../lib/io/csv/admin-views/result.php:27
|
@@ -3343,9 +3125,7 @@ msgstr ""
|
|
3343 |
|
3344 |
#: ../lib/template-classes/month.php:112
|
3345 |
#, php-format
|
3346 |
-
msgid ""
|
3347 |
-
"There were no results found for <strong>\"%s\"</strong> this month. Try "
|
3348 |
-
"searching next month."
|
3349 |
msgstr ""
|
3350 |
|
3351 |
#: ../lib/template-classes/single-event.php:101
|
@@ -3373,12 +3153,10 @@ msgid "Ticket type"
|
|
3373 |
msgstr ""
|
3374 |
|
3375 |
#: ../lib/tickets/tribe-tickets-attendees.php:72
|
3376 |
-
#: ../views/tickets/email.php:316
|
3377 |
msgid "Ticket #"
|
3378 |
msgstr ""
|
3379 |
|
3380 |
#: ../lib/tickets/tribe-tickets-attendees.php:73
|
3381 |
-
#: ../views/tickets/email.php:328
|
3382 |
msgid "Security Code"
|
3383 |
msgstr ""
|
3384 |
|
@@ -3434,10 +3212,7 @@ msgid "Columns"
|
|
3434 |
msgstr ""
|
3435 |
|
3436 |
#: ../lib/tickets/tribe-tickets-pro.php:137
|
3437 |
-
msgid ""
|
3438 |
-
"You can use Screen Options to select which columns you want to see. The "
|
3439 |
-
"selection works in the table below, in the email, for print and for the CSV "
|
3440 |
-
"export."
|
3441 |
msgstr ""
|
3442 |
|
3443 |
#: ../lib/tickets/tribe-tickets-pro.php:258
|
@@ -3511,19 +3286,19 @@ msgstr ""
|
|
3511 |
msgid "Loading Events"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
-
#: ../public/template-tags/general.php:
|
3515 |
msgid "Free"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
-
#: ../public/template-tags/general.php:
|
3519 |
msgid "Recurring Event"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
-
#: ../public/template-tags/general.php:
|
3523 |
msgid "(See all)"
|
3524 |
msgstr ""
|
3525 |
|
3526 |
-
#: ../public/template-tags/general.php:
|
3527 |
#, php-format
|
3528 |
msgid "Calendar powered by %sThe Events Calendar%s"
|
3529 |
msgstr ""
|
@@ -3535,20 +3310,19 @@ msgstr ""
|
|
3535 |
|
3536 |
#: ../public/template-tags/options.php:31
|
3537 |
#, php-format
|
3538 |
-
msgid ""
|
3539 |
-
"You <strong>cannot</strong> use the same slug as above. The above should "
|
3540 |
-
"ideally be plural, and this singular.<br />Your single Event URL is like: %s"
|
3541 |
msgstr ""
|
3542 |
|
3543 |
#: ../views/single-event.php:23
|
3544 |
msgid "« All Events"
|
3545 |
msgstr ""
|
3546 |
|
3547 |
-
#: ../views/single-event.php:42
|
|
|
3548 |
msgid "Event Navigation"
|
3549 |
msgstr ""
|
3550 |
|
3551 |
-
#: ../views/list/nav.php:
|
3552 |
msgid "Events List Navigation"
|
3553 |
msgstr ""
|
3554 |
|
@@ -3556,15 +3330,16 @@ msgstr ""
|
|
3556 |
msgid "Find out more"
|
3557 |
msgstr ""
|
3558 |
|
3559 |
-
#: ../views/modules/bar.php:
|
|
|
3560 |
msgid "Find Events"
|
3561 |
msgstr ""
|
3562 |
|
3563 |
-
#: ../views/modules/bar.php:
|
3564 |
msgid "Event Views Navigation"
|
3565 |
msgstr ""
|
3566 |
|
3567 |
-
#: ../views/modules/bar.php:
|
3568 |
msgid "View As"
|
3569 |
msgstr ""
|
3570 |
|
@@ -3587,3 +3362,4 @@ msgstr ""
|
|
3587 |
#: ../views/tickets/email.php:324
|
3588 |
msgid "Purchaser"
|
3589 |
msgstr ""
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: The Events Calendar 3.2\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-11-29 20:10-0300\n"
|
6 |
+
"PO-Revision-Date: 2013-11-29 20:10-0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Modern Tribe, Inc. <support@tri.be>\n"
|
9 |
"MIME-Version: 1.0\n"
|
52 |
msgstr ""
|
53 |
|
54 |
#: ../admin-views/events-meta-box.php:32
|
55 |
+
msgid "You have changed the recurrence rules of this event. Saving the event will update all future events. If you did not mean to change all events, then please refresh the page."
|
|
|
|
|
|
|
56 |
msgstr ""
|
57 |
|
58 |
#: ../admin-views/events-meta-box.php:35
|
63 |
msgid "Start Date & Time:"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: ../admin-views/events-meta-box.php:42
|
67 |
+
#: ../admin-views/events-meta-box.php:63
|
68 |
msgid "YYYY-MM-DD"
|
69 |
msgstr ""
|
70 |
|
89 |
msgstr ""
|
90 |
|
91 |
#: ../admin-views/events-meta-box.php:115
|
|
|
92 |
msgid "Event Cost"
|
93 |
msgstr ""
|
94 |
|
97 |
msgstr ""
|
98 |
|
99 |
#: ../admin-views/events-meta-box.php:122
|
|
|
100 |
msgid "Cost:"
|
101 |
msgstr ""
|
102 |
|
110 |
|
111 |
#: ../admin-views/organizer-meta-box.php:19
|
112 |
#: ../admin-views/venue-meta-box.php:93
|
|
|
|
|
|
|
113 |
msgid "Phone:"
|
114 |
msgstr ""
|
115 |
|
116 |
#: ../admin-views/organizer-meta-box.php:23
|
117 |
#: ../admin-views/venue-meta-box.php:97
|
|
|
|
|
|
|
|
|
118 |
msgid "Website:"
|
119 |
msgstr ""
|
120 |
|
121 |
#: ../admin-views/organizer-meta-box.php:27
|
|
|
122 |
msgid "Email:"
|
123 |
msgstr ""
|
124 |
|
125 |
#: ../admin-views/organizer-meta-box.php:28
|
126 |
+
msgid "You may want to consider <a href=\"http://wordpress.org/plugins/tags/obfuscate\">obfuscating</a> any e-mail address published on your site to best avoid it getting harvested by spammers."
|
|
|
|
|
|
|
127 |
msgstr ""
|
128 |
|
129 |
#: ../admin-views/recurrence-dialog.php:13
|
130 |
+
msgid "Would you like to change only this instance of the event, or all future events in this series?"
|
|
|
|
|
131 |
msgstr ""
|
132 |
|
133 |
#: ../admin-views/recurrence-dialog.php:15
|
145 |
msgstr ""
|
146 |
|
147 |
#: ../admin-views/recurrence-dialog.php:16
|
148 |
+
msgid "All future events in the series will be changed. Any changes made to other events will be kept."
|
|
|
|
|
149 |
msgstr ""
|
150 |
|
151 |
#: ../admin-views/recurrence-dialog.php:21
|
152 |
+
msgid "Would you like to delete only this instance of the event, or all future events in this series?"
|
|
|
|
|
153 |
msgstr ""
|
154 |
|
155 |
#: ../admin-views/recurrence-dialog.php:23
|
174 |
|
175 |
#: ../admin-views/tribe-options-display.php:34
|
176 |
#, php-format
|
177 |
+
msgid "<p>The settings below control the display of your calendar. If things don't look right, try switching between the three style sheet options or pick a page template from your theme.</p><p>There are going to be situations where no out-of-the-box template is 100% perfect. Check out our <a href=\"%s\">our themer's guide</a> for instructions on custom modifications. Want to create a new view? Grab a copy of the <a href=\"%s\">Sample Agenda View plugin from Github</a></p>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
msgstr ""
|
179 |
|
180 |
#: ../admin-views/tribe-options-display.php:49
|
190 |
msgstr ""
|
191 |
|
192 |
#: ../admin-views/tribe-options-display.php:58
|
193 |
+
msgid "Only includes enough css to achieve complex layouts like calendar and week view."
|
|
|
|
|
194 |
msgstr ""
|
195 |
|
196 |
#: ../admin-views/tribe-options-display.php:60
|
214 |
msgstr ""
|
215 |
|
216 |
#: ../admin-views/tribe-options-display.php:74
|
217 |
+
msgid "Choose a page template to control the appearance of your calendar and event content."
|
|
|
|
|
218 |
msgstr ""
|
219 |
|
220 |
#: ../admin-views/tribe-options-display.php:82
|
254 |
msgstr ""
|
255 |
|
256 |
#: ../admin-views/tribe-options-display.php:118
|
257 |
+
msgid "If you are familiar with HTML, you can add additional code before the event template. Some themes may require this to help with styling or layout."
|
|
|
|
|
258 |
msgstr ""
|
259 |
|
260 |
#: ../admin-views/tribe-options-display.php:123
|
262 |
msgstr ""
|
263 |
|
264 |
#: ../admin-views/tribe-options-display.php:124
|
265 |
+
msgid "If you are familiar with HTML, you can add additional code after the event template. Some themes may require this to help with styling or layout."
|
|
|
|
|
266 |
msgstr ""
|
267 |
|
268 |
#: ../admin-views/tribe-options-general.php:14
|
282 |
msgstr ""
|
283 |
|
284 |
#: ../admin-views/tribe-options-general.php:28
|
285 |
+
msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
|
|
|
|
|
286 |
msgstr ""
|
287 |
|
288 |
#: ../admin-views/tribe-options-general.php:28
|
294 |
msgstr ""
|
295 |
|
296 |
#: ../admin-views/tribe-options-general.php:37
|
297 |
+
msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text-only link at the bottom of your calendar pointing to The Events Calendar project."
|
|
|
|
|
|
|
|
|
298 |
msgstr ""
|
299 |
|
300 |
#: ../admin-views/tribe-options-general.php:37
|
303 |
msgstr ""
|
304 |
|
305 |
#: ../admin-views/tribe-options-general.php:42
|
306 |
+
msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text only link at the bottom of your calendar pointing to The Events Calendar project."
|
|
|
|
|
|
|
|
|
307 |
msgstr ""
|
308 |
|
309 |
#: ../admin-views/tribe-options-general.php:47
|
323 |
msgstr ""
|
324 |
|
325 |
#: ../admin-views/tribe-options-general.php:73
|
326 |
+
msgid "This option is disabled when \"Disable the Event Search Bar\" is checked on the Display settings tab."
|
|
|
|
|
327 |
msgstr ""
|
328 |
|
329 |
#: ../admin-views/tribe-options-general.php:73
|
330 |
+
msgid "Enable live ajax for datepicker on front end (User submit not required)."
|
|
|
331 |
msgstr ""
|
332 |
|
333 |
#: ../admin-views/tribe-options-general.php:81
|
343 |
msgstr ""
|
344 |
|
345 |
#: ../admin-views/tribe-options-general.php:89
|
346 |
+
msgid "Show events with the site's other posts. When this box is checked, events will also continue to appear on the default events page."
|
|
|
|
|
347 |
msgstr ""
|
348 |
|
349 |
#: ../admin-views/tribe-options-general.php:95
|
353 |
|
354 |
#: ../admin-views/tribe-options-general.php:96
|
355 |
#, php-format
|
356 |
+
msgid "You cannot edit the slug for your events page as you do not have pretty permalinks enabled. The current URL for your events page is <a href=\"%s\">%s</a>. In order to edit the slug here, <a href=\"%soptions-permalink.php\">enable pretty permalinks</a>."
|
|
|
|
|
|
|
|
|
357 |
msgstr ""
|
358 |
|
359 |
#: ../admin-views/tribe-options-general.php:108
|
|
|
360 |
msgid "The slug used for building the events URL."
|
361 |
msgstr ""
|
362 |
|
366 |
msgstr ""
|
367 |
|
368 |
#: ../admin-views/tribe-options-general.php:113
|
|
|
369 |
msgid "Here is the iCal feed URL for your events:"
|
370 |
msgstr ""
|
371 |
|
375 |
|
376 |
#: ../admin-views/tribe-options-general.php:125
|
377 |
#, php-format
|
378 |
+
msgid "The above should ideally be plural, and this singular.<br />Your single event URL is: %s"
|
|
|
|
|
379 |
msgstr ""
|
380 |
|
381 |
#: ../admin-views/tribe-options-general.php:130
|
383 |
msgstr ""
|
384 |
|
385 |
#: ../admin-views/tribe-options-general.php:138
|
386 |
+
msgid "Have an event that runs past midnight? Select a time after that event's end to avoid showing the event on the next day's calendar."
|
|
|
|
|
387 |
msgstr ""
|
388 |
|
389 |
#: ../admin-views/tribe-options-general.php:143
|
391 |
msgstr ""
|
392 |
|
393 |
#: ../admin-views/tribe-options-general.php:144
|
394 |
+
msgid "Set the default currency symbol for event costs. Note that this only impacts future events, and changes made will not apply retroactively."
|
|
|
|
|
395 |
msgstr ""
|
396 |
|
397 |
#: ../admin-views/tribe-options-general.php:151
|
423 |
msgstr ""
|
424 |
|
425 |
#: ../admin-views/tribe-options-general.php:176
|
|
|
426 |
msgid "Merge Duplicates"
|
427 |
msgstr ""
|
428 |
|
429 |
#: ../admin-views/tribe-options-general.php:176
|
430 |
+
msgid "You might find duplicate venues and organizers when updating The Events Calendar from a pre-3.0 version. Click this button to automatically merge identical venues and organizers."
|
|
|
|
|
|
|
431 |
msgstr ""
|
432 |
|
433 |
#: ../admin-views/tribe-options-general.php:181
|
436 |
|
437 |
#: ../admin-views/tribe-options-general.php:187
|
438 |
#, php-format
|
439 |
+
msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the %s and look for the \"Tribe\" tab in the debug output."
|
|
|
|
|
|
|
|
|
440 |
msgstr ""
|
441 |
|
442 |
#: ../admin-views/tribe-options-general.php:187
|
484 |
msgstr ""
|
485 |
|
486 |
#: ../admin-views/tribe-options-help.php:79
|
|
|
|
|
|
|
487 |
msgid "Help"
|
488 |
msgstr ""
|
489 |
|
500 |
msgstr ""
|
501 |
|
502 |
#: ../admin-views/tribe-options-help.php:99
|
503 |
+
msgid "If this is your first time using The Events Calendar, you\"re in for a treat and are already well on your way to creating a first event. Here are some basics we\"ve found helpful for users jumping into it for the first time:"
|
|
|
|
|
|
|
504 |
msgstr ""
|
505 |
|
506 |
#: ../admin-views/tribe-options-help.php:102
|
507 |
#, php-format
|
508 |
+
msgid "%sOur New User Primer%s was designed for folks in your exact position. Featuring both step-by-step videos and written walkthroughs that feature accompanying screenshots, the primer aims to take you from zero to hero in no time."
|
|
|
|
|
|
|
|
|
509 |
msgstr ""
|
510 |
|
511 |
#: ../admin-views/tribe-options-help.php:104
|
512 |
#, php-format
|
513 |
+
msgid "%sInstallation/Setup FAQs%s from our support page can help give an overview of what the plugin can and cannot do. This section of the FAQs may be helpful as it aims to address any basic install questions not addressed by the new user primer."
|
|
|
|
|
|
|
|
|
514 |
msgstr ""
|
515 |
|
516 |
#: ../admin-views/tribe-options-help.php:106
|
517 |
#, php-format
|
518 |
+
msgid "Are you developer looking to build your own frontend view? We created an example plugin that demonstrates how to register a new view. You can %sdownload the plugin at GitHub%s to get started."
|
|
|
|
|
|
|
519 |
msgstr ""
|
520 |
|
521 |
#: ../admin-views/tribe-options-help.php:108
|
522 |
+
msgid "Otherwise, if you\"re feeling adventurous, you can get started by heading to the Events menu and adding your first event."
|
|
|
|
|
523 |
msgstr ""
|
524 |
|
525 |
#: ../admin-views/tribe-options-help.php:112
|
526 |
#, php-format
|
527 |
+
msgid "We\"ve redone our support page from the ground up in an effort to better help our users. Head over to our %sSupport Page%s and you\"ll find lots of great resources, including:"
|
|
|
|
|
|
|
528 |
msgstr ""
|
529 |
|
530 |
#: ../admin-views/tribe-options-help.php:114
|
531 |
#, php-format
|
532 |
+
msgid "%sTemplate tags, functions, and hooks & filters%s for The Events Calendar & Events Calendar PRO"
|
|
|
|
|
533 |
msgstr ""
|
534 |
|
535 |
#: ../admin-views/tribe-options-help.php:116
|
536 |
#, php-format
|
537 |
+
msgid "%sFrequently Asked Questions%s ranging from the most basic setup questions to advanced themer tweaks"
|
|
|
|
|
538 |
msgstr ""
|
539 |
|
540 |
#: ../admin-views/tribe-options-help.php:118
|
541 |
#, php-format
|
542 |
+
msgid "%sTutorials%s written by both members of our team and users from the community, covering custom queries, integration with third-party themes and plugins, etc."
|
|
|
|
|
|
|
543 |
msgstr ""
|
544 |
|
545 |
#: ../admin-views/tribe-options-help.php:120
|
546 |
+
msgid "Release notes for painting an overall picture of the plugin\"s lifecycle and when features/bug fixes were introduced."
|
|
|
|
|
547 |
msgstr ""
|
548 |
|
549 |
#: ../admin-views/tribe-options-help.php:122
|
550 |
#, php-format
|
551 |
+
msgid "%sAdd-on documentation%s for all of Modern Tribe\"s official extensions for The Events Calendar (including WooTickets, Community Events, Eventbrite Tickets, Facebook Events, etc)"
|
|
|
|
|
|
|
552 |
msgstr ""
|
553 |
|
554 |
#: ../admin-views/tribe-options-help.php:124
|
555 |
#, php-format
|
556 |
+
msgid "We\"ve also got a %sModern Tribe UserVoice%s page where we\"re actively watching for feature ideas from the community. If after playing with the plugin and reviewing the resources above, you\"re finding a feature isn\"t present that should be, let us know. Vote up existing feature requests or add your own, and help us shape the future of the products business in a way that best meets the community\"s needs."
|
|
|
|
|
|
|
|
|
|
|
|
|
557 |
msgstr ""
|
558 |
|
559 |
#: ../admin-views/tribe-options-help.php:128
|
560 |
#, php-format
|
561 |
+
msgid "Written documentation can only take things so far...sometimes, you need help from a real person. This is where our %ssupport forums%s come into play."
|
|
|
|
|
562 |
msgstr ""
|
563 |
|
564 |
#: ../admin-views/tribe-options-help.php:129
|
565 |
#, php-format
|
566 |
+
msgid "Users of the free The Events Calendar should post their support concerns to the plugin\"s %sWordPress.org support forum%s. While we are happy to help identify and fix bugs that are reported at WordPress.org, please make sure to read our %ssupport expectations sticky thread%s before posting so you understand our limitations."
|
|
|
|
|
|
|
|
|
|
|
567 |
msgstr ""
|
568 |
|
569 |
#: ../admin-views/tribe-options-help.php:130
|
570 |
+
msgid "We hit the WordPress.org forum throughout the week, watching for bugs. If you report a legitimate bug that we\"re able to reproduce, we will log it and patch for an upcoming release. However we are unfortunately unable to provide customization tips or assist in integrating with 3rd party plugins or themes."
|
|
|
|
|
|
|
|
|
|
|
571 |
msgstr ""
|
572 |
|
573 |
#: ../admin-views/tribe-options-help.php:131
|
574 |
#, php-format
|
575 |
+
msgid "If you\"re a user of The Events Calendar and would like more support, please %spurchase a PRO license%s. We hit the PRO forums daily, and can provide a deeper level of customization/integration support for paying users than we can on WordPress.org."
|
|
|
|
|
|
|
|
|
576 |
msgstr ""
|
577 |
|
578 |
#: ../admin-views/tribe-options-help.php:135
|
579 |
#, php-format
|
580 |
+
msgid "If you find that you aren\"t getting the level of service you\"ve come to expect from Modern Tribe, shoot us an email at %s or tweet %s and tell us why. We\"ll do what we can to make it right."
|
|
|
|
|
|
|
581 |
msgstr ""
|
582 |
|
583 |
#: ../admin-views/tribe-options-help.php:136
|
585 |
msgstr ""
|
586 |
|
587 |
#: ../admin-views/tribe-options-help.php:144
|
588 |
+
msgid "Hi! We are Modern Tribe and we are here to help you kick ass. Thanks so much for installing our labor of love!"
|
|
|
|
|
589 |
msgstr ""
|
590 |
|
591 |
#: ../admin-views/tribe-options-help.php:150
|
605 |
msgstr ""
|
606 |
|
607 |
#: ../admin-views/tribe-options-help.php:171
|
|
|
|
|
608 |
msgid "The Events Calendar"
|
609 |
msgstr ""
|
610 |
|
657 |
msgstr ""
|
658 |
|
659 |
#: ../admin-views/tribe-options-network.php:18
|
660 |
+
msgid "This is where all of the global network settings for Modern Tribe's The Events Calendar can be modified."
|
|
|
|
|
661 |
msgstr ""
|
662 |
|
663 |
#: ../admin-views/tribe-options-network.php:26
|
669 |
msgstr ""
|
670 |
|
671 |
#: ../admin-views/venue-meta-box.php:27
|
|
|
672 |
msgid "Address:"
|
673 |
msgstr ""
|
674 |
|
692 |
msgid "Postal Code:"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: ../admin-views/venue-meta-box.php:112
|
696 |
+
#: ../admin-views/venue-meta-box.php:134
|
697 |
msgid "Show Google Map:"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: ../admin-views/venue-meta-box.php:122
|
701 |
+
#: ../admin-views/venue-meta-box.php:144
|
702 |
msgid "Show Google Maps Link:"
|
703 |
msgstr ""
|
704 |
|
714 |
msgid "Show widget only if there are upcoming events:"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: ../admin-views/tickets/attendees.php:9
|
718 |
+
#: ../admin-views/tickets/list.php:41
|
719 |
msgid "Attendees"
|
720 |
msgstr ""
|
721 |
|
743 |
msgid "Ticket Sales"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: ../admin-views/tickets/attendees.php:64
|
747 |
+
#: ../admin-views/tickets/list.php:67
|
748 |
#, php-format
|
749 |
msgid "Sold %d"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: ../admin-views/tickets/attendees.php:66
|
753 |
+
#: ../admin-views/tickets/list.php:69
|
754 |
#, php-format
|
755 |
msgid "Sold %d of %d"
|
756 |
msgstr ""
|
801 |
msgid "View"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: ../admin-views/tickets/list.php:41
|
805 |
msgid "See who purchased tickets to this event"
|
806 |
msgstr ""
|
807 |
|
808 |
#: ../admin-views/tickets/meta-box.php:21
|
809 |
+
msgid "This event was created using Community Events. Are you sure you want to sell tickets for it?"
|
|
|
|
|
810 |
msgstr ""
|
811 |
|
812 |
#: ../admin-views/tickets/meta-box.php:32
|
814 |
msgstr ""
|
815 |
|
816 |
#: ../admin-views/tickets/meta-box.php:33
|
817 |
+
msgid "The maximum image size in the email will be 580px wide by any height, and then scaled for mobile. If you would like \"retina\" support use an image sized to 1160px wide."
|
|
|
|
|
|
|
818 |
msgstr ""
|
819 |
|
820 |
#: ../admin-views/tickets/meta-box.php:36
|
850 |
msgid "Price:"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: ../admin-views/tickets/meta-box.php:118
|
854 |
+
msgid "(0 or empty for free tickets)"
|
855 |
+
msgstr ""
|
856 |
+
|
857 |
#: ../admin-views/tickets/meta-box.php:124
|
858 |
msgid "Start sale:"
|
859 |
msgstr ""
|
863 |
msgstr ""
|
864 |
|
865 |
#: ../admin-views/tickets/meta-box.php:170
|
866 |
+
msgid "When will ticket sales occur? If you don't set a start/end date for sales, tickets will be available from now until the event ends."
|
|
|
|
|
867 |
msgstr ""
|
868 |
|
869 |
#: ../lib/the-events-calendar.class.php:513
|
889 |
|
890 |
#: ../lib/the-events-calendar.class.php:644
|
891 |
#, php-format
|
892 |
+
msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
|
|
|
|
|
893 |
msgstr ""
|
894 |
|
895 |
#: ../lib/the-events-calendar.class.php:661
|
896 |
#, php-format
|
897 |
+
msgid "The following plugins are out of date: <b>%s</b>. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %sWant to pair an older version%s?"
|
|
|
|
|
|
|
898 |
msgstr ""
|
899 |
|
900 |
#: ../lib/the-events-calendar.class.php:725
|
905 |
|
906 |
#: ../lib/the-events-calendar.class.php:729
|
907 |
#, php-format
|
908 |
+
msgid "<p>The license key you received when completing your purchase from %s will grant you access to support and updates until it expires. You do not need to enter the key below for the plugins to work, but you will need to enter it to get automatic updates. <strong>Find your license keys at <a href=\"%s\" target=\"_blank\">%s</a></strong>.</p> <p>Each paid add-on has its own unique license key. Simply paste the key into its appropriate field on below, and give it a moment to validate. You know you're set when a green expiration date appears alongside a \"valid\" message.</p> <p>If you're seeing a red message telling you that your key isn't valid or is out of installs, visit <a href=\"%s\" target=\"_blank\">%s</a> to manage your installs or renew / upgrade your license.</p><p>Not seeing an update but expecting one? In WordPress, go to <a href=\"%s\">Dashboard > Updates</a> and click \"Check Again\".</p>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
909 |
msgstr ""
|
910 |
|
911 |
#: ../lib/the-events-calendar.class.php:752
|
918 |
|
919 |
#: ../lib/the-events-calendar.class.php:804
|
920 |
#, php-format
|
921 |
+
msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
|
|
|
|
|
922 |
msgstr ""
|
923 |
|
924 |
#: ../lib/the-events-calendar.class.php:807
|
925 |
#, php-format
|
926 |
+
msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
|
|
|
|
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: ../lib/the-events-calendar.class.php:1022
|
|
|
930 |
msgid "Upcoming Events"
|
931 |
msgstr ""
|
932 |
|
933 |
#: ../lib/the-events-calendar.class.php:1025
|
|
|
934 |
msgid "Past Events"
|
935 |
msgstr ""
|
936 |
|
937 |
#: ../lib/the-events-calendar.class.php:1030
|
938 |
#: ../lib/the-events-calendar.class.php:1037
|
|
|
939 |
#, php-format
|
940 |
msgid "Events for %s"
|
941 |
msgstr ""
|
962 |
msgstr ""
|
963 |
|
964 |
#: ../lib/the-events-calendar.class.php:1362
|
965 |
+
#: ../lib/the-events-calendar.class.php:3891
|
966 |
+
#: ../lib/the-events-calendar.class.php:3952
|
|
|
967 |
msgid "Events"
|
968 |
msgstr ""
|
969 |
|
1007 |
|
1008 |
#: ../lib/the-events-calendar.class.php:1375
|
1009 |
#: ../lib/the-events-calendar.class.php:1487
|
|
|
1010 |
msgid "Venues"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
#: ../lib/the-events-calendar.class.php:1376
|
|
|
1014 |
msgid "Venue"
|
1015 |
msgstr ""
|
1016 |
|
1044 |
|
1045 |
#: ../lib/the-events-calendar.class.php:1388
|
1046 |
#: ../lib/the-events-calendar.class.php:1488
|
|
|
1047 |
msgid "Organizers"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
#: ../lib/the-events-calendar.class.php:1389
|
|
|
1051 |
msgid "Organizer"
|
1052 |
msgstr ""
|
1053 |
|
1085 |
msgstr ""
|
1086 |
|
1087 |
#: ../lib/the-events-calendar.class.php:1402
|
|
|
1088 |
msgid "Event Category"
|
1089 |
msgstr ""
|
1090 |
|
1162 |
|
1163 |
#: ../lib/the-events-calendar.class.php:1435
|
1164 |
#, php-format
|
1165 |
+
msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
|
|
|
|
|
1166 |
msgstr ""
|
1167 |
|
1168 |
#: ../lib/the-events-calendar.class.php:1437
|
1206 |
|
1207 |
#: ../lib/the-events-calendar.class.php:1452
|
1208 |
#, php-format
|
1209 |
+
msgid "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview venue</a>"
|
|
|
|
|
1210 |
msgstr ""
|
1211 |
|
1212 |
#: ../lib/the-events-calendar.class.php:1455
|
1239 |
|
1240 |
#: ../lib/the-events-calendar.class.php:1468
|
1241 |
#, php-format
|
1242 |
+
msgid "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
|
|
|
1243 |
msgstr ""
|
1244 |
|
1245 |
#: ../lib/the-events-calendar.class.php:1469
|
1246 |
#, php-format
|
1247 |
+
msgid "Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview organizer</a>"
|
|
|
|
|
1248 |
msgstr ""
|
1249 |
|
1250 |
#: ../lib/the-events-calendar.class.php:1472
|
1251 |
#, php-format
|
1252 |
+
msgid "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
|
|
|
|
|
1253 |
msgstr ""
|
1254 |
|
1255 |
#: ../lib/the-events-calendar.class.php:1513
|
1312 |
msgid "Network"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: ../lib/the-events-calendar.class.php:2956
|
1316 |
msgid "Unnamed Venue"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: ../lib/the-events-calendar.class.php:3046
|
1320 |
msgid "Unnamed Organizer"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: ../lib/the-events-calendar.class.php:3506
|
1324 |
+
#: ../lib/the-events-calendar.class.php:3523
|
1325 |
msgid "Date out of range."
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: ../lib/the-events-calendar.class.php:3536
|
1329 |
msgid "Event Options"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: ../lib/the-events-calendar.class.php:3538
|
1333 |
msgid "Venue Information"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: ../lib/the-events-calendar.class.php:3543
|
1337 |
msgid "Organizer Information"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: ../lib/the-events-calendar.class.php:3740
|
1341 |
msgid "Support"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: ../lib/the-events-calendar.class.php:3743
|
1345 |
msgid "View All Add-Ons"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: ../lib/the-events-calendar.class.php:3760
|
1349 |
msgid "News from Modern Tribe"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
+
#: ../lib/the-events-calendar.class.php:3841
|
1353 |
msgid "Additional Functionality"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: ../lib/the-events-calendar.class.php:3846
|
1357 |
+
msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
|
|
|
|
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: ../lib/the-events-calendar.class.php:3846
|
1361 |
#, php-format
|
1362 |
msgid "Check out the <a href=\"%s\">available add-ons</a>."
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: ../lib/the-events-calendar.class.php:3918
|
1366 |
+
#: ../lib/the-events-calendar.class.php:4009
|
1367 |
msgid "View Calendar"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: ../lib/the-events-calendar.class.php:3926
|
1371 |
msgid "Add Event"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: ../lib/the-events-calendar.class.php:3935
|
1375 |
msgid "Edit Events"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: ../lib/the-events-calendar.class.php:3944
|
1379 |
+
#: ../lib/the-events-calendar.class.php:4045
|
|
|
1380 |
msgid "Settings"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: ../lib/the-events-calendar.class.php:3980
|
1384 |
#, php-format
|
1385 |
+
msgid "Welcome to The Events Calendar! Your events calendar can be found at %s. To change the events slug, visit %sEvents -> Settings%s."
|
|
|
|
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: ../lib/the-events-calendar.class.php:4046
|
1389 |
msgid "Calendar"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: ../lib/the-events-calendar.class.php:4096
|
1393 |
msgid "List"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: ../lib/the-events-calendar.class.php:4107
|
1397 |
msgid "Month"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: ../lib/the-events-calendar.class.php:4126
|
1401 |
+
#: ../lib/the-events-calendar.class.php:4128
|
1402 |
msgid "Search"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: ../lib/the-events-calendar.class.php:4148
|
1406 |
+
#: ../lib/the-events-calendar.class.php:4160
|
1407 |
msgid "Date"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
+
#: ../lib/the-events-calendar.class.php:4151
|
1411 |
msgid "Events In"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: ../lib/the-events-calendar.class.php:4153
|
1415 |
msgid "Events From"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
+
#: ../lib/the-events-calendar.class.php:4341
|
|
|
1419 |
msgid "« Previous Events"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
+
#: ../lib/the-events-calendar.class.php:4342
|
|
|
1423 |
msgid "Next Events »"
|
1424 |
msgstr ""
|
1425 |
|
1441 |
msgstr ""
|
1442 |
|
1443 |
#: ../lib/tribe-admin-events-list.class.php:298
|
|
|
1444 |
msgid "Yes"
|
1445 |
msgstr ""
|
1446 |
|
1453 |
msgid "All %s"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: ../lib/tribe-app-shop.class.php:62
|
1457 |
+
#: ../lib/tribe-app-shop.class.php:63
|
1458 |
#: ../lib/tribe-app-shop.class.php:87
|
1459 |
msgid "Event Add-Ons"
|
1460 |
msgstr ""
|
1463 |
msgid "Tribe"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: ../lib/tribe-event-api.class.php:374
|
|
|
1467 |
msgid "United States"
|
1468 |
msgstr ""
|
1469 |
|
1492 |
msgid "There are no fields setup for this tab yet."
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: ../lib/tribe-settings.class.php:164
|
1496 |
+
#: ../lib/tribe-settings.class.php:176
|
1497 |
msgid "The Events Calendar Settings"
|
1498 |
msgstr ""
|
1499 |
|
1538 |
msgid "Settings saved."
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: ../lib/tribe-template-factory.class.php:257
|
1542 |
#, php-format
|
1543 |
msgid "There were no results found for <strong>\"%s\"</strong>."
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: ../lib/tribe-template-factory.class.php:260
|
1547 |
#, php-format
|
1548 |
msgid "No results were found for events in or near <strong>\"%s\"</strong>."
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: ../lib/tribe-template-factory.class.php:263
|
1552 |
#, php-format
|
1553 |
+
msgid "No upcoming events listed under %s. Check out upcoming events for this category or view the full calendar."
|
|
|
|
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: ../lib/tribe-template-factory.class.php:266
|
1557 |
#, php-format
|
1558 |
+
msgid "No matching events listed under %s. Check out upcoming events for this category or view the full calendar."
|
|
|
|
|
1559 |
msgstr ""
|
1560 |
|
1561 |
+
#: ../lib/tribe-template-factory.class.php:269
|
1562 |
msgid "No previous events "
|
1563 |
msgstr ""
|
1564 |
|
1565 |
+
#: ../lib/tribe-template-factory.class.php:272
|
|
|
1566 |
msgid "There were no results found."
|
1567 |
msgstr ""
|
1568 |
|
1569 |
+
#: ../lib/tribe-templates.class.php:501
|
1570 |
#, php-format
|
1571 |
msgid "Template overrides should be moved to the correct subdirectory: %s"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: ../lib/tribe-templates.class.php:542
|
1575 |
#, php-format
|
1576 |
+
msgid "Template overrides should be moved to the correct subdirectory: tribe_get_template_part('%s')"
|
|
|
|
|
1577 |
msgstr ""
|
1578 |
|
1579 |
#: ../lib/tribe-the-events-calendar-import.class.php:64
|
1580 |
#, php-format
|
1581 |
+
msgid "Welcome to Events 2.0! This is a HUGE upgrade from 1.6.5. Please make sure you have backed up before proceeding any further. You can easily <a href=\"%s\">revert to an old version</a> if you want to backup first. This upgrade includes two major steps, <a href=\"%s\">migrating data</a> & updating your templates as necessary. There have been significant changes to the template tags and functions. Check out our <a href=\"%s\">walk-through on the upgrade</a> before proceeding and check out the FAQ & Knowledge base from the <a href=\"%s\">support page</a>. If you're new to The Events Calendar, you may want to review our <a href=\"%s\">new user primer</a>.<br/><br/> You have events that need to be migrated. Please visit the bottom of the <a href=\"%s\">settings page</a> to perform the migration."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1582 |
msgstr ""
|
1583 |
|
1584 |
#: ../lib/tribe-the-events-calendar-import.class.php:86
|
1586 |
msgstr ""
|
1587 |
|
1588 |
#: ../lib/tribe-the-events-calendar-import.class.php:87
|
1589 |
+
msgid "It appears that you have some old events calendar data that needs to be upgraded. Please be sure to back up your database before initiating the upgrade. This process can not be undone."
|
|
|
|
|
|
|
1590 |
msgstr ""
|
1591 |
|
1592 |
#: ../lib/tribe-the-events-calendar-import.class.php:88
|
1602 |
msgid "Install has 1 or more legacy event!"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
+
#: ../lib/tribe-validate.class.php:77
|
1606 |
+
#: ../lib/tribe-validate.class.php:115
|
1607 |
msgid "Invalid or incomplete field passed"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: ../lib/tribe-validate.class.php:78
|
1611 |
+
#: ../lib/tribe-validate.class.php:110
|
1612 |
#: ../lib/tribe-validate.class.php:116
|
1613 |
msgid "Field ID:"
|
1614 |
msgstr ""
|
1617 |
msgid "Non-existant field validation function passed"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
+
#: ../lib/tribe-validate.class.php:135
|
1621 |
+
#: ../lib/tribe-validate.class.php:153
|
1622 |
#, php-format
|
1623 |
msgid "%s must contain numbers and letters only"
|
1624 |
msgstr ""
|
1643 |
msgid "%s must be a valid absolute URL."
|
1644 |
msgstr ""
|
1645 |
|
1646 |
+
#: ../lib/tribe-validate.class.php:239
|
1647 |
+
#: ../lib/tribe-validate.class.php:258
|
1648 |
#: ../lib/tribe-validate.class.php:279
|
1649 |
#, php-format
|
1650 |
msgid "%s must have a value that's part of its options."
|
1652 |
|
1653 |
#: ../lib/tribe-validate.class.php:295
|
1654 |
#, php-format
|
1655 |
+
msgid "Comparison validation failed because no comparison value was provided, for field %s"
|
|
|
|
|
1656 |
msgstr ""
|
1657 |
|
1658 |
#: ../lib/tribe-validate.class.php:302
|
1677 |
|
1678 |
#: ../lib/tribe-validate.class.php:404
|
1679 |
#, php-format
|
1680 |
+
msgid "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
|
|
|
1681 |
msgstr ""
|
1682 |
|
1683 |
#: ../lib/tribe-validate.class.php:422
|
1696 |
msgstr ""
|
1697 |
|
1698 |
#: ../lib/tribe-validate.class.php:472
|
1699 |
+
msgid "Country List must be formatted as one country per line in the following format: <br>US, United States <br> UK, United Kingdom."
|
|
|
|
|
1700 |
msgstr ""
|
1701 |
|
1702 |
#: ../lib/tribe-view-helpers.class.php:24
|
2907 |
msgstr ""
|
2908 |
|
2909 |
#: ../lib/io/csv/admin-views/import.php:19
|
2910 |
+
msgid "<ol><li><strong>Organizer import requires:</strong> Organizer Name</li><li><strong>Venue import requires:</strong> Venue Name</li><li><strong>Event import requires:</strong> Event Name and Event Start Date</li></ol>"
|
|
|
|
|
|
|
|
|
2911 |
msgstr ""
|
2912 |
|
2913 |
#: ../lib/io/csv/admin-views/import.php:20
|
2914 |
+
msgid "To begin importing data, please choose the type of import and the CSV file."
|
|
|
2915 |
msgstr ""
|
2916 |
|
2917 |
#: ../lib/io/csv/admin-views/import.php:27
|
2923 |
msgstr ""
|
2924 |
|
2925 |
#: ../lib/io/csv/admin-views/import.php:42
|
2926 |
+
msgid "Upload a properly formatted, UTF-8 encoded CSV file. Not sure if your file is UTF-8 encoded? Make sure to specify the character encoding when you save the file, or pass it through a <a href='http://i-tools.org/charset/exec?dest=utf-8&src=auto&download=1'>conversion tool</a>."
|
|
|
|
|
|
|
|
|
2927 |
msgstr ""
|
2928 |
|
2929 |
#: ../lib/io/csv/admin-views/import.php:50
|
2962 |
msgstr ""
|
2963 |
|
2964 |
#: ../lib/io/csv/admin-views/result.php:24
|
2965 |
+
msgid "<ol><li><strong>Inserted:</strong> A new item was inserted successfully.</li><li><strong>Updated:</strong> An item was found with the same name and/or start date. The existing item was updated with the new value from the file.</li><li><strong>Skipped:</strong> A row was found in the CSV file that could not be imported. Please see below for the invalid rows.</li></ol>"
|
|
|
|
|
|
|
|
|
|
|
2966 |
msgstr ""
|
2967 |
|
2968 |
#: ../lib/io/csv/admin-views/result.php:27
|
3125 |
|
3126 |
#: ../lib/template-classes/month.php:112
|
3127 |
#, php-format
|
3128 |
+
msgid "There were no results found for <strong>\"%s\"</strong> this month. Try searching next month."
|
|
|
|
|
3129 |
msgstr ""
|
3130 |
|
3131 |
#: ../lib/template-classes/single-event.php:101
|
3153 |
msgstr ""
|
3154 |
|
3155 |
#: ../lib/tickets/tribe-tickets-attendees.php:72
|
|
|
3156 |
msgid "Ticket #"
|
3157 |
msgstr ""
|
3158 |
|
3159 |
#: ../lib/tickets/tribe-tickets-attendees.php:73
|
|
|
3160 |
msgid "Security Code"
|
3161 |
msgstr ""
|
3162 |
|
3212 |
msgstr ""
|
3213 |
|
3214 |
#: ../lib/tickets/tribe-tickets-pro.php:137
|
3215 |
+
msgid "You can use Screen Options to select which columns you want to see. The selection works in the table below, in the email, for print and for the CSV export."
|
|
|
|
|
|
|
3216 |
msgstr ""
|
3217 |
|
3218 |
#: ../lib/tickets/tribe-tickets-pro.php:258
|
3286 |
msgid "Loading Events"
|
3287 |
msgstr ""
|
3288 |
|
3289 |
+
#: ../public/template-tags/general.php:544
|
3290 |
msgid "Free"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
+
#: ../public/template-tags/general.php:729
|
3294 |
msgid "Recurring Event"
|
3295 |
msgstr ""
|
3296 |
|
3297 |
+
#: ../public/template-tags/general.php:732
|
3298 |
msgid "(See all)"
|
3299 |
msgstr ""
|
3300 |
|
3301 |
+
#: ../public/template-tags/general.php:1044
|
3302 |
#, php-format
|
3303 |
msgid "Calendar powered by %sThe Events Calendar%s"
|
3304 |
msgstr ""
|
3310 |
|
3311 |
#: ../public/template-tags/options.php:31
|
3312 |
#, php-format
|
3313 |
+
msgid "You <strong>cannot</strong> use the same slug as above. The above should ideally be plural, and this singular.<br />Your single Event URL is like: %s"
|
|
|
|
|
3314 |
msgstr ""
|
3315 |
|
3316 |
#: ../views/single-event.php:23
|
3317 |
msgid "« All Events"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
+
#: ../views/single-event.php:42
|
3321 |
+
#: ../views/single-event.php:73
|
3322 |
msgid "Event Navigation"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
+
#: ../views/list/nav.php:17
|
3326 |
msgid "Events List Navigation"
|
3327 |
msgstr ""
|
3328 |
|
3330 |
msgid "Find out more"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
+
#: ../views/modules/bar.php:34
|
3334 |
+
#: ../views/modules/bar.php:64
|
3335 |
msgid "Find Events"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
+
#: ../views/modules/bar.php:41
|
3339 |
msgid "Event Views Navigation"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
+
#: ../views/modules/bar.php:42
|
3343 |
msgid "View As"
|
3344 |
msgstr ""
|
3345 |
|
3362 |
#: ../views/tickets/email.php:324
|
3363 |
msgid "Purchaser"
|
3364 |
msgstr ""
|
3365 |
+
|
lib/io/csv/admin-views/import.php
CHANGED
@@ -13,13 +13,29 @@ require_once 'header.php';
|
|
13 |
<?php endforeach; ?>
|
14 |
</div>
|
15 |
<?php endif; ?>
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
<table class="form-table">
|
24 |
<tr>
|
25 |
<td>
|
13 |
<?php endforeach; ?>
|
14 |
</div>
|
15 |
<?php endif; ?>
|
16 |
+
<div id="modern-tribe-info">
|
17 |
+
<h3><?php _e('Import Instructions', 'tribe-events-calendar'); ?></h3>
|
18 |
+
<ul>
|
19 |
+
<li>
|
20 |
+
<?php _e('If your events have Organizers or Venues, please import those first.', 'tribe-events-calendar' ); ?>
|
21 |
+
<?php _e('To import organizers or venues:', 'tribe-events-calendar'); ?>
|
22 |
+
<ul>
|
23 |
+
<li><?php _e('Select the appropriate import type.', 'tribe-events-calendar'); ?></li>
|
24 |
+
<li><?php _e('Upload a CSV file with one record on each line. The first line may contain column names (check the box below).', 'tribe-events-calendar'); ?></li>
|
25 |
+
<li><?php _e('One column in your CSV should have the Organizer/Venue name. All other fields are optional.', 'tribe-events-calendar'); ?></li>
|
26 |
+
<li><?php _e("After you upload your file, you'll have the opportunity to indicate how the columns in your CSV map to fields in The Events Calendar.", 'tribe-events-calendar'); ?></li>
|
27 |
+
</ul>
|
28 |
+
<li><?php _e('After importing your Organizers and Venues, import your Events:', 'tribe-events-calendar'); ?>
|
29 |
+
<ul>
|
30 |
+
<li><?php _e('Upload a CSV file with one record on each line. The first line may contain column names (check the box below).', 'tribe-events-calendar'); ?></li>
|
31 |
+
<li><?php _e('One column in your CSV should have the Event title. Another should have the Event start date. All other fields are optional.', 'tribe-events-calendar'); ?></li>
|
32 |
+
<li><?php _e("After you upload your file, you'll have the opportunity to indicate how the columns in your CSV map to fields in The Events Calendar.", 'tribe-events-calendar'); ?></li>
|
33 |
+
</ul>
|
34 |
+
</li>
|
35 |
+
</ul>
|
36 |
+
<p><?php printf(__('Questions? <a href="%s">Watch the video</a>.', 'tribe-events-calendar'), 'http://tri.be/using-the-events-calendars-csv-importer/'); ?></p>
|
37 |
+
</div>
|
38 |
+
<form method="post" enctype="multipart/form-data">
|
39 |
<table class="form-table">
|
40 |
<tr>
|
41 |
<td>
|
lib/template-classes/month.php
CHANGED
@@ -112,7 +112,7 @@ if( !class_exists('Tribe_Events_Month_Template')){
|
|
112 |
TribeEvents::setNotice( 'event-search-no-results', sprintf( __( 'There were no results found for <strong>"%s"</strong> this month. Try searching next month.', 'tribe-events-calendar' ), esc_html( $search_term ) ) );
|
113 |
}
|
114 |
elseif ( $no_events ) {
|
115 |
-
TribeEvents::setNotice( 'event-search-no-results', __( 'There were no results found.', 'tribe-events-calendar
|
116 |
}
|
117 |
}
|
118 |
|
112 |
TribeEvents::setNotice( 'event-search-no-results', sprintf( __( 'There were no results found for <strong>"%s"</strong> this month. Try searching next month.', 'tribe-events-calendar' ), esc_html( $search_term ) ) );
|
113 |
}
|
114 |
elseif ( $no_events ) {
|
115 |
+
TribeEvents::setNotice( 'event-search-no-results', __( 'There were no results found.', 'tribe-events-calendar' ) );
|
116 |
}
|
117 |
}
|
118 |
|
lib/the-events-calendar.class.php
CHANGED
@@ -22,7 +22,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
22 |
const VENUE_POST_TYPE = 'tribe_venue';
|
23 |
const ORGANIZER_POST_TYPE = 'tribe_organizer';
|
24 |
const PLUGIN_DOMAIN = 'tribe-events-calendar';
|
25 |
-
const VERSION = '3.
|
26 |
const FEED_URL = 'http://tri.be/category/products/feed/';
|
27 |
const INFO_API_URL = 'http://wpapi.org/api/plugin/the-events-calendar.php';
|
28 |
const WP_PLUGIN_URL = 'http://wordpress.org/extend/plugins/the-events-calendar/';
|
@@ -123,6 +123,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
123 |
'_EventShowMapLink',
|
124 |
'_EventShowMap',
|
125 |
'_EventCurrencySymbol',
|
|
|
126 |
'_EventCost',
|
127 |
'_EventURL',
|
128 |
'_EventOrganizerID',
|
@@ -357,7 +358,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
357 |
add_filter( 'generate_rewrite_rules', array( $this, 'filterRewriteRules' ) );
|
358 |
|
359 |
if ( !is_admin() ) {
|
360 |
-
add_filter( 'get_comment_link', array( $this, 'newCommentLink' ), 10, 2 );
|
361 |
}
|
362 |
|
363 |
/* Setup Tribe Events Bar */
|
@@ -421,6 +422,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
421 |
add_action( 'tribe_settings_validate_tab_network', array( $this, 'saveAllTabsHidden' ) );
|
422 |
add_action( 'load-tribe_events_page_tribe-events-calendar', array( 'Tribe_Amalgamator', 'listen_for_migration_button' ), 10, 0 );
|
423 |
add_action( 'tribe_settings_after_save_display', 'flush_rewrite_rules');
|
|
|
424 |
|
425 |
// add-on compatibility
|
426 |
if ( is_multisite() )
|
@@ -524,10 +526,6 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
524 |
TribeEventsQuery::init();
|
525 |
$this->registerPostType();
|
526 |
|
527 |
-
//If the custom post type's rewrite rules have not been generated yet, flush them. (This can happen on reactivations.)
|
528 |
-
if(is_array(get_option('rewrite_rules')) && !array_key_exists($this->rewriteSlugSingular.'/[^/]+/([^/]+)/?$',get_option('rewrite_rules'))) {
|
529 |
-
TribeEvents::flushRewriteRules();
|
530 |
-
}
|
531 |
self::debug(sprintf(__('Initializing Tribe Events on %s','tribe-events-calendar'),date('M, jS \a\t h:m:s a')));
|
532 |
$this->maybeMigrateDatabase();
|
533 |
$this->maybeSetTECVersion();
|
@@ -753,9 +751,9 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
753 |
new TribeSettingsTab( 'display', __('Display', 'tribe-events-calendar'), $displayTab );
|
754 |
// If none of the addons are activated, do not show the licenses tab.
|
755 |
|
756 |
-
$
|
757 |
-
|
758 |
-
|
759 |
if ( is_multisite() ) {
|
760 |
new TribeSettingsTab( 'licenses', __('Licenses', 'tribe-events-calendar'), array('priority' => '40', 'network_admin' => true, 'fields' => $license_fields ) );
|
761 |
} else {
|
@@ -1447,7 +1445,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
1447 |
/* translators: %s: date and time of the revision */
|
1448 |
5 => isset($_GET['revision']) ? sprintf( __('Venue restored to revision from %s', 'tribe-events-calendar'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
|
1449 |
6 => sprintf( __('Venue published. <a href="%s">View venue</a>', 'tribe-events-calendar'), esc_url( get_permalink($post_ID) ) ),
|
1450 |
-
7 => __('Venue saved.'),
|
1451 |
8 => sprintf( __('Venue submitted. <a target="_blank" href="%s">Preview venue</a>', 'tribe-events-calendar'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
|
1452 |
9 => sprintf( __('Venue scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview venue</a>', 'tribe-events-calendar'),
|
1453 |
// translators: Publish box date format, see http://php.net/date
|
@@ -1464,7 +1462,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
1464 |
/* translators: %s: date and time of the revision */
|
1465 |
5 => isset($_GET['revision']) ? sprintf( __('Organizer restored to revision from %s', 'tribe-events-calendar'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
|
1466 |
6 => sprintf( __('Organizer published. <a href="%s">View organizer</a>', 'tribe-events-calendar'), esc_url( get_permalink($post_ID) ) ),
|
1467 |
-
7 => __('Organizer saved.'),
|
1468 |
8 => sprintf( __('Organizer submitted. <a target="_blank" href="%s">Preview organizer</a>', 'tribe-events-calendar'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
|
1469 |
9 => sprintf( __('Organizer scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview organizer</a>', 'tribe-events-calendar'),
|
1470 |
// translators: Publish box date format, see http://php.net/date
|
@@ -1688,7 +1686,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
1688 |
$vendor_url = trailingslashit( $this->pluginUrl ) . 'vendor/';
|
1689 |
|
1690 |
// admin stylesheet - always loaded for a few persistent things (e.g. icon)
|
1691 |
-
wp_enqueue_style( self::POSTTYPE . '-admin', $resources_url . 'events-admin.css' );
|
1692 |
|
1693 |
// settings screen
|
1694 |
if (isset($current_screen->id) && $current_screen->id == 'settings_page_tribe-settings') {
|
@@ -1753,14 +1751,14 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
1753 |
break;
|
1754 |
case self::VENUE_POST_TYPE :
|
1755 |
|
1756 |
-
wp_enqueue_style( self::VENUE_POST_TYPE.'-hide-visibility', trailingslashit( $this->pluginUrl ) . 'resources/hide-visibility.css' );
|
1757 |
|
1758 |
// hook for other plugins
|
1759 |
do_action('tribe_venues_enqueue');
|
1760 |
break;
|
1761 |
case self::ORGANIZER_POST_TYPE :
|
1762 |
|
1763 |
-
wp_enqueue_style( self::ORGANIZER_POST_TYPE.'-hide-visibility', trailingslashit( $this->pluginUrl ) . 'resources/hide-visibility.css' );
|
1764 |
|
1765 |
// hook for other plugins
|
1766 |
do_action('tribe_organizers_enqueue');
|
@@ -2042,16 +2040,6 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
2042 |
$this->setNetworkOptions( $network_options );
|
2043 |
}
|
2044 |
|
2045 |
-
/**
|
2046 |
-
* Flush rewrite rules when viewing the network options
|
2047 |
-
*
|
2048 |
-
* @return void
|
2049 |
-
*/
|
2050 |
-
public function networkOptionsPageView() {
|
2051 |
-
// every visit to ECP Settings = flush rules.
|
2052 |
-
$this->flushRewriteRules();
|
2053 |
-
}
|
2054 |
-
|
2055 |
/**
|
2056 |
* Clean up trashed venues
|
2057 |
*
|
@@ -2161,12 +2149,38 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
2161 |
global $wp_query;
|
2162 |
if ( $wp_query->is_main_query() && !empty( $wp_query->tribe_is_event_query ) ) {
|
2163 |
$this->displaying = isset( $wp_query->query_vars['eventDisplay'] ) ? $wp_query->query_vars['eventDisplay'] : tribe_get_option( 'viewOption', 'upcoming' );
|
|
|
2164 |
if ( is_single() && $this->displaying != 'all' )
|
2165 |
$this->displaying = 'single-event';
|
2166 |
}
|
2167 |
}
|
2168 |
}
|
2169 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2170 |
/**
|
2171 |
* Set the dates of recurring events.
|
2172 |
*
|
@@ -2335,7 +2349,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
2335 |
$newRules[$base . '(\d{4}-\d{2})$'] = 'index.php?post_type=' . self::POSTTYPE . '&eventDisplay=month' .'&eventDate=' . $wp_rewrite->preg_index(1);
|
2336 |
$newRules[$base . '(\d{4}-\d{2}-\d{2})$'] = 'index.php?post_type=' . self::POSTTYPE . '&eventDisplay=upcoming&eventDate=' . $wp_rewrite->preg_index(1);
|
2337 |
$newRules[$base . 'feed/?$'] = 'index.php?eventDisplay=upcoming&post_type=' . self::POSTTYPE . '&feed=rss2';
|
2338 |
-
$newRules[$base . '?$']
|
2339 |
|
2340 |
// single ical
|
2341 |
$newRules[$baseSingle . '([^/]+)/ical/?$' ] = 'index.php?post_type=' . self::POSTTYPE . '&name=' . $wp_rewrite->preg_index(1) . '&ical=1';
|
@@ -3217,9 +3231,24 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
3217 |
|
3218 |
}
|
3219 |
|
3220 |
-
$_EventStartDate = (isset($_EventStartDate)) ? $_EventStartDate : null;
|
3221 |
-
$_EventEndDate = (isset($_EventEndDate)) ? $_EventEndDate : null;
|
3222 |
$_EventAllDay = isset($_EventAllDay) ? $_EventAllDay : false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3223 |
$isEventAllDay = ( $_EventAllDay == 'yes' || ! TribeDateUtils::dateOnly( $_EventStartDate ) ) ? 'checked="checked"' : ''; // default is all day for new posts
|
3224 |
$startMonthOptions = TribeEventsViewHelpers::getMonthOptions( $_EventStartDate );
|
3225 |
$endMonthOptions = TribeEventsViewHelpers::getMonthOptions( $_EventEndDate );
|
@@ -3471,7 +3500,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
3471 |
public function nextMonth( $date ) {
|
3472 |
if ( PHP_INT_SIZE <= 4 ) {
|
3473 |
if ( date('Y-m-d', strtotime($date)) > '2037-11-30' ) {
|
3474 |
-
throw new OverflowException(__('Date out of range.', '
|
3475 |
}
|
3476 |
}
|
3477 |
return date( 'Y-m', strtotime( $date . ' +1 month' ) );
|
@@ -3488,7 +3517,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
3488 |
public function previousMonth( $date ) {
|
3489 |
if ( PHP_INT_SIZE <= 4 ) {
|
3490 |
if ( date('Y-m-d', strtotime($date)) < '1902-02-01' ) {
|
3491 |
-
throw new OverflowException(__('Date out of range.', '
|
3492 |
}
|
3493 |
}
|
3494 |
return date( 'Y-m', strtotime( $date . ' -1 month' ) );
|
@@ -3500,15 +3529,15 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
3500 |
* @return void
|
3501 |
*/
|
3502 |
public function addEventBox( ) {
|
3503 |
-
add_meta_box( '
|
3504 |
-
add_meta_box( '
|
3505 |
|
3506 |
-
add_meta_box( '
|
3507 |
|
3508 |
if ( ! class_exists( 'TribeEventsPro' ) )
|
3509 |
remove_meta_box( 'slugdiv', self::VENUE_POST_TYPE, 'normal' );
|
3510 |
|
3511 |
-
add_meta_box( '
|
3512 |
}
|
3513 |
|
3514 |
/**
|
@@ -3725,7 +3754,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
3725 |
* @return void
|
3726 |
*/
|
3727 |
public function dashboardWidget() {
|
3728 |
-
wp_add_dashboard_widget( 'tribe_dashboard_widget', __( 'News from Modern Tribe' ), array( $this, 'outputDashboardWidget' ) );
|
3729 |
}
|
3730 |
|
3731 |
/**
|
@@ -4019,8 +4048,11 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
4019 |
// prevent users who cannot manage the plugin to see addons link
|
4020 |
if( current_user_can( 'edit_tribe_events' ) ) {
|
4021 |
global $submenu;
|
4022 |
-
|
4023 |
-
|
|
|
|
|
|
|
4024 |
}
|
4025 |
|
4026 |
/**
|
@@ -4042,6 +4074,38 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
4042 |
return $link;
|
4043 |
}
|
4044 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4045 |
/**
|
4046 |
* Adds a hidden field to recurring events comments forms that stores the eventDate.
|
4047 |
*
|
@@ -4125,7 +4189,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
4125 |
|
4126 |
$filters['tribe-bar-date'] = array( 'name' => 'tribe-bar-date',
|
4127 |
'caption' => $caption,
|
4128 |
-
'html' => '<input type="text" name="tribe-bar-date" style="position: relative;
|
4129 |
<input type="hidden" name="tribe-bar-date-day" id="tribe-bar-date-day" class="tribe-no-param" value="">' );
|
4130 |
|
4131 |
return $filters;
|
@@ -4158,7 +4222,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
4158 |
}
|
4159 |
|
4160 |
/**
|
4161 |
-
* Make sure tribe_events_is_view_enabled( 'day' ) returns true
|
4162 |
* This filter should be removed when pro is active
|
4163 |
*
|
4164 |
* @return bool
|
@@ -4197,10 +4261,6 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
4197 |
*/
|
4198 |
function list_ajax_call() {
|
4199 |
|
4200 |
-
if ( class_exists( 'TribeEventsFilterView' ) ) {
|
4201 |
-
TribeEventsFilterView::instance()->createFilters( null, true );
|
4202 |
-
}
|
4203 |
-
|
4204 |
TribeEventsQuery::init();
|
4205 |
|
4206 |
$tribe_paged = ( !empty( $_POST['tribe_paged'] ) ) ? intval( $_POST['tribe_paged'] ) : 1;
|
@@ -4341,10 +4401,6 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
4341 |
$query_args['tribe_events_cat'] = $_POST['tribe_event_category'];
|
4342 |
}
|
4343 |
|
4344 |
-
if ( class_exists( 'TribeEventsFilterView' ) ) {
|
4345 |
-
TribeEventsFilterView::instance()->createFilters( null, true );
|
4346 |
-
}
|
4347 |
-
|
4348 |
query_posts( $query_args );
|
4349 |
|
4350 |
ob_start();
|
22 |
const VENUE_POST_TYPE = 'tribe_venue';
|
23 |
const ORGANIZER_POST_TYPE = 'tribe_organizer';
|
24 |
const PLUGIN_DOMAIN = 'tribe-events-calendar';
|
25 |
+
const VERSION = '3.3';
|
26 |
const FEED_URL = 'http://tri.be/category/products/feed/';
|
27 |
const INFO_API_URL = 'http://wpapi.org/api/plugin/the-events-calendar.php';
|
28 |
const WP_PLUGIN_URL = 'http://wordpress.org/extend/plugins/the-events-calendar/';
|
123 |
'_EventShowMapLink',
|
124 |
'_EventShowMap',
|
125 |
'_EventCurrencySymbol',
|
126 |
+
'_EventCurrencyPosition',
|
127 |
'_EventCost',
|
128 |
'_EventURL',
|
129 |
'_EventOrganizerID',
|
358 |
add_filter( 'generate_rewrite_rules', array( $this, 'filterRewriteRules' ) );
|
359 |
|
360 |
if ( !is_admin() ) {
|
361 |
+
add_filter( 'get_comment_link', array( $this, 'newCommentLink' ), 10, 2 );
|
362 |
}
|
363 |
|
364 |
/* Setup Tribe Events Bar */
|
422 |
add_action( 'tribe_settings_validate_tab_network', array( $this, 'saveAllTabsHidden' ) );
|
423 |
add_action( 'load-tribe_events_page_tribe-events-calendar', array( 'Tribe_Amalgamator', 'listen_for_migration_button' ), 10, 0 );
|
424 |
add_action( 'tribe_settings_after_save_display', 'flush_rewrite_rules');
|
425 |
+
add_action( 'load-edit-tags.php', array( $this, 'prepare_to_fix_tagcloud_links' ), 10, 0 );
|
426 |
|
427 |
// add-on compatibility
|
428 |
if ( is_multisite() )
|
526 |
TribeEventsQuery::init();
|
527 |
$this->registerPostType();
|
528 |
|
|
|
|
|
|
|
|
|
529 |
self::debug(sprintf(__('Initializing Tribe Events on %s','tribe-events-calendar'),date('M, jS \a\t h:m:s a')));
|
530 |
$this->maybeMigrateDatabase();
|
531 |
$this->maybeSetTECVersion();
|
751 |
new TribeSettingsTab( 'display', __('Display', 'tribe-events-calendar'), $displayTab );
|
752 |
// If none of the addons are activated, do not show the licenses tab.
|
753 |
|
754 |
+
$addons_active = class_exists( 'TribePluginUpdateEngineChecker' ); // true if there are pue based addons available.
|
755 |
+
if ( $addons_active ) {
|
756 |
+
$license_fields = apply_filters( 'tribe_license_fields', $tribe_licences_tab_fields );
|
757 |
if ( is_multisite() ) {
|
758 |
new TribeSettingsTab( 'licenses', __('Licenses', 'tribe-events-calendar'), array('priority' => '40', 'network_admin' => true, 'fields' => $license_fields ) );
|
759 |
} else {
|
1445 |
/* translators: %s: date and time of the revision */
|
1446 |
5 => isset($_GET['revision']) ? sprintf( __('Venue restored to revision from %s', 'tribe-events-calendar'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
|
1447 |
6 => sprintf( __('Venue published. <a href="%s">View venue</a>', 'tribe-events-calendar'), esc_url( get_permalink($post_ID) ) ),
|
1448 |
+
7 => __('Venue saved.', 'tribe-events-calendar'),
|
1449 |
8 => sprintf( __('Venue submitted. <a target="_blank" href="%s">Preview venue</a>', 'tribe-events-calendar'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
|
1450 |
9 => sprintf( __('Venue scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview venue</a>', 'tribe-events-calendar'),
|
1451 |
// translators: Publish box date format, see http://php.net/date
|
1462 |
/* translators: %s: date and time of the revision */
|
1463 |
5 => isset($_GET['revision']) ? sprintf( __('Organizer restored to revision from %s', 'tribe-events-calendar'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
|
1464 |
6 => sprintf( __('Organizer published. <a href="%s">View organizer</a>', 'tribe-events-calendar'), esc_url( get_permalink($post_ID) ) ),
|
1465 |
+
7 => __('Organizer saved.', 'tribe-events-calendar'),
|
1466 |
8 => sprintf( __('Organizer submitted. <a target="_blank" href="%s">Preview organizer</a>', 'tribe-events-calendar'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
|
1467 |
9 => sprintf( __('Organizer scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview organizer</a>', 'tribe-events-calendar'),
|
1468 |
// translators: Publish box date format, see http://php.net/date
|
1686 |
$vendor_url = trailingslashit( $this->pluginUrl ) . 'vendor/';
|
1687 |
|
1688 |
// admin stylesheet - always loaded for a few persistent things (e.g. icon)
|
1689 |
+
wp_enqueue_style( self::POSTTYPE . '-admin', $resources_url . 'events-admin.css', array(), apply_filters( 'tribe_events_css_version', self::VERSION ) );
|
1690 |
|
1691 |
// settings screen
|
1692 |
if (isset($current_screen->id) && $current_screen->id == 'settings_page_tribe-settings') {
|
1751 |
break;
|
1752 |
case self::VENUE_POST_TYPE :
|
1753 |
|
1754 |
+
wp_enqueue_style( self::VENUE_POST_TYPE.'-hide-visibility', trailingslashit( $this->pluginUrl ) . 'resources/hide-visibility.css', array(), apply_filters( 'tribe_events_css_version', self::VERSION ) );
|
1755 |
|
1756 |
// hook for other plugins
|
1757 |
do_action('tribe_venues_enqueue');
|
1758 |
break;
|
1759 |
case self::ORGANIZER_POST_TYPE :
|
1760 |
|
1761 |
+
wp_enqueue_style( self::ORGANIZER_POST_TYPE.'-hide-visibility', trailingslashit( $this->pluginUrl ) . 'resources/hide-visibility.css', array(), apply_filters( 'tribe_events_css_version', self::VERSION ) );
|
1762 |
|
1763 |
// hook for other plugins
|
1764 |
do_action('tribe_organizers_enqueue');
|
2040 |
$this->setNetworkOptions( $network_options );
|
2041 |
}
|
2042 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2043 |
/**
|
2044 |
* Clean up trashed venues
|
2045 |
*
|
2149 |
global $wp_query;
|
2150 |
if ( $wp_query->is_main_query() && !empty( $wp_query->tribe_is_event_query ) ) {
|
2151 |
$this->displaying = isset( $wp_query->query_vars['eventDisplay'] ) ? $wp_query->query_vars['eventDisplay'] : tribe_get_option( 'viewOption', 'upcoming' );
|
2152 |
+
|
2153 |
if ( is_single() && $this->displaying != 'all' )
|
2154 |
$this->displaying = 'single-event';
|
2155 |
}
|
2156 |
}
|
2157 |
}
|
2158 |
|
2159 |
+
/**
|
2160 |
+
* Returns the default view, providing a fallback if the default is no longer availble.
|
2161 |
+
*
|
2162 |
+
* This can be useful is for instance a view added by another plugin (such as PRO) is
|
2163 |
+
* stored as the default but can no longer be generated due to the plugin being deactivated.
|
2164 |
+
*
|
2165 |
+
* @return string
|
2166 |
+
*/
|
2167 |
+
public function default_view() {
|
2168 |
+
// Compare the stored default view option to the list of available views
|
2169 |
+
$default = $this->getOption('viewOption', '');
|
2170 |
+
$available_views = (array) apply_filters( 'tribe-events-bar-views', array(), FALSE );
|
2171 |
+
|
2172 |
+
foreach ( $available_views as $view )
|
2173 |
+
if ( $default === $view['displaying']) return $default;
|
2174 |
+
|
2175 |
+
// If the stored option is no longer available, pick the first available one instead
|
2176 |
+
$first_view = array_shift($available_views);
|
2177 |
+
$view = $first_view['displaying'];
|
2178 |
+
|
2179 |
+
// Update the saved option
|
2180 |
+
$this->setOption('viewOption', $view);
|
2181 |
+
return $view;
|
2182 |
+
}
|
2183 |
+
|
2184 |
/**
|
2185 |
* Set the dates of recurring events.
|
2186 |
*
|
2349 |
$newRules[$base . '(\d{4}-\d{2})$'] = 'index.php?post_type=' . self::POSTTYPE . '&eventDisplay=month' .'&eventDate=' . $wp_rewrite->preg_index(1);
|
2350 |
$newRules[$base . '(\d{4}-\d{2}-\d{2})$'] = 'index.php?post_type=' . self::POSTTYPE . '&eventDisplay=upcoming&eventDate=' . $wp_rewrite->preg_index(1);
|
2351 |
$newRules[$base . 'feed/?$'] = 'index.php?eventDisplay=upcoming&post_type=' . self::POSTTYPE . '&feed=rss2';
|
2352 |
+
$newRules[$base . '?$'] = 'index.php?post_type=' . self::POSTTYPE . '&eventDisplay=default';
|
2353 |
|
2354 |
// single ical
|
2355 |
$newRules[$baseSingle . '([^/]+)/ical/?$' ] = 'index.php?post_type=' . self::POSTTYPE . '&name=' . $wp_rewrite->preg_index(1) . '&ical=1';
|
3231 |
|
3232 |
}
|
3233 |
|
|
|
|
|
3234 |
$_EventAllDay = isset($_EventAllDay) ? $_EventAllDay : false;
|
3235 |
+
$_EventStartDate = (isset($_EventStartDate)) ? $_EventStartDate : null;
|
3236 |
+
if ( isset( $_EventEndDate ) ) {
|
3237 |
+
if ( $_EventAllDay && tribe_get_option( 'multiDayCutoff', '00:00' ) != '00:00' ) {
|
3238 |
+
|
3239 |
+
// If it's an all day event and the EOD cutoff is later than midnight
|
3240 |
+
// set the end date to be the previous day so it displays correctly in the datepicker
|
3241 |
+
// so the datepickers will match. we'll set the correct end time upon saving
|
3242 |
+
// @todo: remove this once we're allowed to have all day events without a start/end time
|
3243 |
+
|
3244 |
+
$_EventEndDate = date_create( $_EventEndDate );
|
3245 |
+
$_EventEndDate->modify( '-1 day' );
|
3246 |
+
$_EventEndDate = $_EventEndDate->format( TribeDateUtils::DBDATETIMEFORMAT );
|
3247 |
+
|
3248 |
+
}
|
3249 |
+
} else {
|
3250 |
+
$_EventEndDate = null;
|
3251 |
+
}
|
3252 |
$isEventAllDay = ( $_EventAllDay == 'yes' || ! TribeDateUtils::dateOnly( $_EventStartDate ) ) ? 'checked="checked"' : ''; // default is all day for new posts
|
3253 |
$startMonthOptions = TribeEventsViewHelpers::getMonthOptions( $_EventStartDate );
|
3254 |
$endMonthOptions = TribeEventsViewHelpers::getMonthOptions( $_EventEndDate );
|
3500 |
public function nextMonth( $date ) {
|
3501 |
if ( PHP_INT_SIZE <= 4 ) {
|
3502 |
if ( date('Y-m-d', strtotime($date)) > '2037-11-30' ) {
|
3503 |
+
throw new OverflowException(__('Date out of range.', 'tribe-events-calendar'));
|
3504 |
}
|
3505 |
}
|
3506 |
return date( 'Y-m', strtotime( $date . ' +1 month' ) );
|
3517 |
public function previousMonth( $date ) {
|
3518 |
if ( PHP_INT_SIZE <= 4 ) {
|
3519 |
if ( date('Y-m-d', strtotime($date)) < '1902-02-01' ) {
|
3520 |
+
throw new OverflowException(__('Date out of range.', 'tribe-events-calendar'));
|
3521 |
}
|
3522 |
}
|
3523 |
return date( 'Y-m', strtotime( $date . ' -1 month' ) );
|
3529 |
* @return void
|
3530 |
*/
|
3531 |
public function addEventBox( ) {
|
3532 |
+
add_meta_box( 'tribe_events_event_details', $this->pluginName, array( $this, 'EventsChooserBox' ), self::POSTTYPE, 'normal', 'high' );
|
3533 |
+
add_meta_box( 'tribe_events_event_options', __('Event Options', 'tribe-events-calendar'), array( $this, 'eventMetaBox' ), self::POSTTYPE, 'side', 'default' );
|
3534 |
|
3535 |
+
add_meta_box( 'tribe_events_venue_details', __('Venue Information', 'tribe-events-calendar'), array( $this, 'VenueMetaBox' ), self::VENUE_POST_TYPE, 'normal', 'high' );
|
3536 |
|
3537 |
if ( ! class_exists( 'TribeEventsPro' ) )
|
3538 |
remove_meta_box( 'slugdiv', self::VENUE_POST_TYPE, 'normal' );
|
3539 |
|
3540 |
+
add_meta_box( 'tribe_events_organizer_details', __('Organizer Information', 'tribe-events-calendar'), array( $this, 'OrganizerMetaBox' ), self::ORGANIZER_POST_TYPE, 'normal', 'high' );
|
3541 |
}
|
3542 |
|
3543 |
/**
|
3754 |
* @return void
|
3755 |
*/
|
3756 |
public function dashboardWidget() {
|
3757 |
+
wp_add_dashboard_widget( 'tribe_dashboard_widget', __( 'News from Modern Tribe', 'tribe-events-calendar' ), array( $this, 'outputDashboardWidget' ) );
|
3758 |
}
|
3759 |
|
3760 |
/**
|
4048 |
// prevent users who cannot manage the plugin to see addons link
|
4049 |
if( current_user_can( 'edit_tribe_events' ) ) {
|
4050 |
global $submenu;
|
4051 |
+
// This fails in IIS with open_basedir
|
4052 |
+
//$submenu['edit.php?post_type=' . self::POSTTYPE][500] = array( __('Help', 'tribe-events-calendar'), 'manage_options' , add_query_arg( array( 'post_type' => self::POSTTYPE, 'page' => 'tribe-events-calendar', 'tab' => 'help' ), admin_url( 'edit.php' ) ) );
|
4053 |
+
|
4054 |
+
$submenu['edit.php?post_type=' . self::POSTTYPE][500] = array( __('Help', 'tribe-events-calendar'), 'manage_options' , add_query_arg( array( 'post_type' => self::POSTTYPE, 'page' => 'tribe-events-calendar', 'tab' => 'help' ), 'edit.php?post_type=tribe_events&page=tribe-events-calendar&tab=help' ) );
|
4055 |
+
}
|
4056 |
}
|
4057 |
|
4058 |
/**
|
4074 |
return $link;
|
4075 |
}
|
4076 |
|
4077 |
+
/**
|
4078 |
+
* When the edit-tags.php screen loads, setup filters
|
4079 |
+
* to fix the tagcloud links
|
4080 |
+
*
|
4081 |
+
* @return void
|
4082 |
+
*/
|
4083 |
+
public function prepare_to_fix_tagcloud_links() {
|
4084 |
+
$screen = get_current_screen();
|
4085 |
+
if ( isset($screen->post_type) && $screen->post_type == self::POSTTYPE ) {
|
4086 |
+
add_filter( 'get_edit_term_link', array( $this, 'add_post_type_to_edit_term_link' ), 10, 4 );
|
4087 |
+
}
|
4088 |
+
}
|
4089 |
+
|
4090 |
+
/**
|
4091 |
+
* Tag clouds in the admin don't pass the post type arg
|
4092 |
+
* when getting the edit link. If we're on the tag admin
|
4093 |
+
* in Events post type context, make sure we add that
|
4094 |
+
* arg to the edit tag link
|
4095 |
+
*
|
4096 |
+
* @param string $link
|
4097 |
+
* @param int $term_id
|
4098 |
+
* @param string $taxonomy
|
4099 |
+
* @param string $context
|
4100 |
+
* @return string
|
4101 |
+
*/
|
4102 |
+
public function add_post_type_to_edit_term_link( $link, $term_id, $taxonomy, $context ) {
|
4103 |
+
if ( $taxonomy == 'post_tag' && empty($context) ) {
|
4104 |
+
$link = add_query_arg(array('post_type' => self::POSTTYPE), $link);
|
4105 |
+
}
|
4106 |
+
return $link;
|
4107 |
+
}
|
4108 |
+
|
4109 |
/**
|
4110 |
* Adds a hidden field to recurring events comments forms that stores the eventDate.
|
4111 |
*
|
4189 |
|
4190 |
$filters['tribe-bar-date'] = array( 'name' => 'tribe-bar-date',
|
4191 |
'caption' => $caption,
|
4192 |
+
'html' => '<input type="text" name="tribe-bar-date" style="position: relative;" id="tribe-bar-date" value="' . esc_attr( $value ) . '" placeholder="'. __('Date', 'tribe-events-calendar') .'">
|
4193 |
<input type="hidden" name="tribe-bar-date-day" id="tribe-bar-date-day" class="tribe-no-param" value="">' );
|
4194 |
|
4195 |
return $filters;
|
4222 |
}
|
4223 |
|
4224 |
/**
|
4225 |
+
* Make sure tribe_events_is_view_enabled( 'day' ) returns true
|
4226 |
* This filter should be removed when pro is active
|
4227 |
*
|
4228 |
* @return bool
|
4261 |
*/
|
4262 |
function list_ajax_call() {
|
4263 |
|
|
|
|
|
|
|
|
|
4264 |
TribeEventsQuery::init();
|
4265 |
|
4266 |
$tribe_paged = ( !empty( $_POST['tribe_paged'] ) ) ? intval( $_POST['tribe_paged'] ) : 1;
|
4401 |
$query_args['tribe_events_cat'] = $_POST['tribe_event_category'];
|
4402 |
}
|
4403 |
|
|
|
|
|
|
|
|
|
4404 |
query_posts( $query_args );
|
4405 |
|
4406 |
ob_start();
|
lib/tickets/tribe-tickets-attendees.php
CHANGED
@@ -132,7 +132,7 @@ class TribeEventsTicketsAttendeesTable extends WP_List_Table {
|
|
132 |
|
133 |
$icon = "";
|
134 |
|
135 |
-
if ( strtolower( $item['order_status'] ) !== 'completed' ) {
|
136 |
$tec = TribeEvents::instance();
|
137 |
$icon = sprintf( "<span class='warning'><img src='%s'/></span> ", trailingslashit( $tec->pluginUrl ) . 'resources/warning.png' );
|
138 |
}
|
132 |
|
133 |
$icon = "";
|
134 |
|
135 |
+
if ( strtolower( $item['order_status'] ) !== 'completed' && strtolower( $item['order_status'] ) !== 'paid' ) {
|
136 |
$tec = TribeEvents::instance();
|
137 |
$icon = sprintf( "<span class='warning'><img src='%s'/></span> ", trailingslashit( $tec->pluginUrl ) . 'resources/warning.png' );
|
138 |
}
|
lib/tickets/tribe-tickets-metabox.php
CHANGED
@@ -56,8 +56,8 @@ class TribeEventsTicketsMetabox {
|
|
56 |
return;
|
57 |
|
58 |
|
59 |
-
wp_enqueue_style ( 'events-tickets', plugins_url( 'resources/tickets.css', dirname( dirname( __FILE__ ) ) ) );
|
60 |
-
wp_enqueue_script ( 'events-tickets', plugins_url( 'resources/tickets.js', dirname( dirname( __FILE__ ) ) ) );
|
61 |
|
62 |
$upload_header_data = array( 'title' => __( 'Ticket header image', 'tribe-events-calendar' ), 'button' => __( 'Set as ticket header', 'tribe-events-calendar' ) );
|
63 |
wp_localize_script( 'events-tickets', 'HeaderImageData', $upload_header_data );
|
56 |
return;
|
57 |
|
58 |
|
59 |
+
wp_enqueue_style ( 'events-tickets', plugins_url( 'resources/tickets.css', dirname( dirname( __FILE__ ) ) ), array(), apply_filters( 'tribe_events_css_version', TribeEvents::VERSION ) );
|
60 |
+
wp_enqueue_script ( 'events-tickets', plugins_url( 'resources/tickets.js', dirname( dirname( __FILE__ ) ) ), array(), apply_filters( 'tribe_events_js_version', TribeEvents::VERSION ) );
|
61 |
|
62 |
$upload_header_data = array( 'title' => __( 'Ticket header image', 'tribe-events-calendar' ), 'button' => __( 'Set as ticket header', 'tribe-events-calendar' ) );
|
63 |
wp_localize_script( 'events-tickets', 'HeaderImageData', $upload_header_data );
|
lib/tickets/tribe-tickets-pro.php
CHANGED
@@ -98,9 +98,9 @@ class TribeEventsTicketsPro {
|
|
98 |
|
99 |
$ecp = TribeEvents::instance();
|
100 |
|
101 |
-
wp_enqueue_style( TribeEventsTicketsPro::$attendees_slug, trailingslashit( $ecp->pluginUrl ) . 'resources/tickets-attendees.css' );
|
102 |
-
wp_enqueue_style( TribeEventsTicketsPro::$attendees_slug . '-print', trailingslashit( $ecp->pluginUrl ) . 'resources/tickets-attendees-print.css', array(),
|
103 |
-
wp_enqueue_script( TribeEventsTicketsPro::$attendees_slug, trailingslashit( $ecp->pluginUrl ) . 'resources/tickets-attendees.js', array( 'jquery' ) );
|
104 |
|
105 |
$mail_data = array(
|
106 |
'nonce' => wp_create_nonce( 'email-attendee-list' ),
|
@@ -226,7 +226,7 @@ class TribeEventsTicketsPro {
|
|
226 |
foreach ( $item as $key => $data ) {
|
227 |
if ( in_array( $key, $export_columns ) ) {
|
228 |
if ( $key == 'check_in' && $data == 1 )
|
229 |
-
$data = __( 'Yes' );
|
230 |
$row[$key] = $data;
|
231 |
}
|
232 |
}
|
98 |
|
99 |
$ecp = TribeEvents::instance();
|
100 |
|
101 |
+
wp_enqueue_style( TribeEventsTicketsPro::$attendees_slug, trailingslashit( $ecp->pluginUrl ) . 'resources/tickets-attendees.css', array(), apply_filters( 'tribe_events_css_version', TribeEvents::VERSION ) );
|
102 |
+
wp_enqueue_style( TribeEventsTicketsPro::$attendees_slug . '-print', trailingslashit( $ecp->pluginUrl ) . 'resources/tickets-attendees-print.css', array(), apply_filters( 'tribe_events_css_version', TribeEvents::VERSION ), 'print' );
|
103 |
+
wp_enqueue_script( TribeEventsTicketsPro::$attendees_slug, trailingslashit( $ecp->pluginUrl ) . 'resources/tickets-attendees.js', array( 'jquery' ), apply_filters( 'tribe_events_js_version', TribeEvents::VERSION ) );
|
104 |
|
105 |
$mail_data = array(
|
106 |
'nonce' => wp_create_nonce( 'email-attendee-list' ),
|
226 |
foreach ( $item as $key => $data ) {
|
227 |
if ( in_array( $key, $export_columns ) ) {
|
228 |
if ( $key == 'check_in' && $data == 1 )
|
229 |
+
$data = __( 'Yes', 'tribe-events-calendar' );
|
230 |
$row[$key] = $data;
|
231 |
}
|
232 |
}
|
lib/tribe-app-shop.class.php
CHANGED
@@ -94,9 +94,8 @@ if ( ! class_exists( 'TribeAppShop' ) ) {
|
|
94 |
* Enqueue the styles and script
|
95 |
*/
|
96 |
public function enqueue() {
|
97 |
-
wp_enqueue_style( 'app-shop', TribeEvents::instance()->pluginUrl . 'resources/app-shop.css' );
|
98 |
-
wp_enqueue_script( 'app-shop', TribeEvents::instance()->pluginUrl . 'resources/app-shop.js' );
|
99 |
-
|
100 |
}
|
101 |
|
102 |
/**
|
94 |
* Enqueue the styles and script
|
95 |
*/
|
96 |
public function enqueue() {
|
97 |
+
wp_enqueue_style( 'app-shop', TribeEvents::instance()->pluginUrl . 'resources/app-shop.css', array(), apply_filters( 'tribe_events_css_version', TribeEvents::VERSION ) );
|
98 |
+
wp_enqueue_script( 'app-shop', TribeEvents::instance()->pluginUrl . 'resources/app-shop.js', array(), apply_filters( 'tribe_events_js_version', TribeEvents::VERSION ) );
|
|
|
99 |
}
|
100 |
|
101 |
/**
|
lib/tribe-debug-bar.class.php
CHANGED
@@ -29,7 +29,7 @@ function load_tribe_debug_bar($panels) {
|
|
29 |
$this->title( __('Tribe', 'tribe-events-calendar') );
|
30 |
remove_action( 'tribe_debug', array( TribeEvents::instance(), 'renderDebug' ), 10, 2 );
|
31 |
add_action( 'tribe_debug', array( $this, 'logDebug' ), 8, 3 );
|
32 |
-
wp_enqueue_style( 'tribe-debugger', TribeEvents::instance()->pluginUrl . 'resources/debugger.css' );
|
33 |
}
|
34 |
|
35 |
/**
|
29 |
$this->title( __('Tribe', 'tribe-events-calendar') );
|
30 |
remove_action( 'tribe_debug', array( TribeEvents::instance(), 'renderDebug' ), 10, 2 );
|
31 |
add_action( 'tribe_debug', array( $this, 'logDebug' ), 8, 3 );
|
32 |
+
wp_enqueue_style( 'tribe-debugger', TribeEvents::instance()->pluginUrl . 'resources/debugger.css', array(), apply_filters( 'tribe_events_css_version', TribeEvents::VERSION ) );
|
33 |
}
|
34 |
|
35 |
/**
|
lib/tribe-event-api.class.php
CHANGED
@@ -76,8 +76,8 @@ if (!class_exists('TribeEventsAPI')) {
|
|
76 |
$tribe_ecp = TribeEvents::instance();
|
77 |
|
78 |
if( isset($data['EventAllDay']) && ( $data['EventAllDay'] == 'yes' || $data['EventAllDay'] == true || !isset($data['EventStartDate'] ) ) ) {
|
79 |
-
$data['EventStartDate'] =
|
80 |
-
$data['EventEndDate'] =
|
81 |
} else {
|
82 |
delete_post_meta( $event_id, '_EventAllDay' );
|
83 |
if( isset( $data['EventStartMeridian'] ) ) {
|
76 |
$tribe_ecp = TribeEvents::instance();
|
77 |
|
78 |
if( isset($data['EventAllDay']) && ( $data['EventAllDay'] == 'yes' || $data['EventAllDay'] == true || !isset($data['EventStartDate'] ) ) ) {
|
79 |
+
$data['EventStartDate'] = tribe_event_beginning_of_day($data['EventStartDate']);
|
80 |
+
$data['EventEndDate'] = tribe_event_end_of_day($data['EventEndDate']);
|
81 |
} else {
|
82 |
delete_post_meta( $event_id, '_EventAllDay' );
|
83 |
if( isset( $data['EventStartMeridian'] ) ) {
|
lib/tribe-event-query.class.php
CHANGED
@@ -57,6 +57,9 @@ if ( !class_exists( 'TribeEventsQuery' ) ) {
|
|
57 |
// Add tribe events post type to tag queries
|
58 |
if ( $query->is_tag && (array) $query->get( 'post_type' ) != array( TribeEvents::POSTTYPE ) ) {
|
59 |
$types = $query->get( 'post_type' );
|
|
|
|
|
|
|
60 |
if ( is_array( $types ) ) {
|
61 |
$types[] = TribeEvents::POSTTYPE;
|
62 |
}
|
@@ -79,6 +82,9 @@ if ( !class_exists( 'TribeEventsQuery' ) ) {
|
|
79 |
$query->tribe_is_multi_posttype = ( in_array( TribeEvents::POSTTYPE, $types ) && count( $types ) >= 2 || in_array( 'any', $types ) )
|
80 |
? true // it's a query for multiple post types, events post type included
|
81 |
: false;
|
|
|
|
|
|
|
82 |
|
83 |
do_action( 'log', 'multi_posttype', 'default', var_export($query->tribe_is_multi_posttype, true) );
|
84 |
do_action( 'log', 'types', 'default', $types );
|
@@ -565,8 +571,8 @@ if ( !class_exists( 'TribeEventsQuery' ) ) {
|
|
565 |
public static function posts_orderby( $order_sql, $query ) {
|
566 |
global $wpdb;
|
567 |
if ( $query->tribe_is_event || $query->tribe_is_event_category ) {
|
568 |
-
$order = !empty( $query->order ) ? $query->order : $query->get( 'order' );
|
569 |
-
$orderby = !empty( $query->orderby ) ? $query->orderby : $query->get( 'orderby' );
|
570 |
|
571 |
$order_sql = "DATE({$wpdb->postmeta}.meta_value) {$order}, TIME({$wpdb->postmeta}.meta_value) {$order}";
|
572 |
|
@@ -732,9 +738,7 @@ if ( !class_exists( 'TribeEventsQuery' ) ) {
|
|
732 |
|
733 |
) {
|
734 |
if ( isset( $term->term_id ) ) {
|
735 |
-
|
736 |
-
if ( !$record_terms || ( $record_terms && !in_array( $term, $record_terms ) ) ) {
|
737 |
-
$count--;
|
738 |
continue;
|
739 |
}
|
740 |
}
|
@@ -789,6 +793,7 @@ if ( !class_exists( 'TribeEventsQuery' ) ) {
|
|
789 |
* Customized WP_Query wrapper to setup event queries with default arguments.
|
790 |
*
|
791 |
* @param array $args
|
|
|
792 |
* @return array|WP_Query
|
793 |
*/
|
794 |
public static function getEvents( $args = array(), $full = false ) {
|
57 |
// Add tribe events post type to tag queries
|
58 |
if ( $query->is_tag && (array) $query->get( 'post_type' ) != array( TribeEvents::POSTTYPE ) ) {
|
59 |
$types = $query->get( 'post_type' );
|
60 |
+
if ( empty( $types ) ) {
|
61 |
+
$types = array( 'post' );
|
62 |
+
}
|
63 |
if ( is_array( $types ) ) {
|
64 |
$types[] = TribeEvents::POSTTYPE;
|
65 |
}
|
82 |
$query->tribe_is_multi_posttype = ( in_array( TribeEvents::POSTTYPE, $types ) && count( $types ) >= 2 || in_array( 'any', $types ) )
|
83 |
? true // it's a query for multiple post types, events post type included
|
84 |
: false;
|
85 |
+
|
86 |
+
if ( 'default' === $query->get( 'eventDisplay' ) )
|
87 |
+
$query->set( 'eventDisplay', TribeEvents::instance()->default_view() );
|
88 |
|
89 |
do_action( 'log', 'multi_posttype', 'default', var_export($query->tribe_is_multi_posttype, true) );
|
90 |
do_action( 'log', 'types', 'default', $types );
|
571 |
public static function posts_orderby( $order_sql, $query ) {
|
572 |
global $wpdb;
|
573 |
if ( $query->tribe_is_event || $query->tribe_is_event_category ) {
|
574 |
+
$order = ( isset( $query->query['order'] ) && ! empty( $query->query['order'] ) ) ? $query->query['order'] : $query->get( 'order' );
|
575 |
+
$orderby = ( isset( $query->query['orderby'] ) && ! empty( $query->query['orderby'] ) ) ? $query->query['orderby'] : $query->get( 'orderby' );
|
576 |
|
577 |
$order_sql = "DATE({$wpdb->postmeta}.meta_value) {$order}, TIME({$wpdb->postmeta}.meta_value) {$order}";
|
578 |
|
738 |
|
739 |
) {
|
740 |
if ( isset( $term->term_id ) ) {
|
741 |
+
if ( ! has_term( $term, TribeEvents::TAXONOMY, $record->ID ) ) {
|
|
|
|
|
742 |
continue;
|
743 |
}
|
744 |
}
|
793 |
* Customized WP_Query wrapper to setup event queries with default arguments.
|
794 |
*
|
795 |
* @param array $args
|
796 |
+
* @param bool $full
|
797 |
* @return array|WP_Query
|
798 |
*/
|
799 |
public static function getEvents( $args = array(), $full = false ) {
|
lib/tribe-field.class.php
CHANGED
@@ -103,30 +103,44 @@ if ( !class_exists('TribeField') ) {
|
|
103 |
|
104 |
// parse args with defaults and extract them
|
105 |
$args = wp_parse_args($field, $this->defaults);
|
106 |
-
extract($args);
|
107 |
|
108 |
// sanitize the values just to be safe
|
109 |
-
$id = esc_attr($id);
|
110 |
-
$type = esc_attr($type);
|
111 |
-
$name = esc_attr($name);
|
112 |
-
$class = sanitize_html_class($class);
|
113 |
-
$label = wp_kses($label, array('a' => array('href' => array(),'title' => array()),'br' => array(),'em' => array(),'strong' => array(), 'b' => array(), 'i' => array(), 'u' => array(), 'img' => array('title' => array(), 'src' => array(), 'alt' => array()) ));
|
114 |
-
$tooltip = wp_kses($tooltip, array('a' => array('href' => array(),'title' => array()),'br' => array(),'em' => array(),'strong' => array(), 'b' => array(), 'i' => array(), 'u' => array(), 'img' => array('title' => array(), 'src' => array(), 'alt' => array()), 'code' => array('span' => array()), 'span' => array() ));
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
$
|
122 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
|
124 |
|
125 |
// set the ID
|
126 |
$this->id = apply_filters( 'tribe_field_id', $id );
|
127 |
|
128 |
// set each instance variable and filter
|
129 |
-
foreach ($this->defaults as $key => $value) {
|
130 |
$this->{$key} = apply_filters( 'tribe_field_'.$key, $$key, $this->id );
|
131 |
}
|
132 |
|
@@ -148,7 +162,7 @@ if ( !class_exists('TribeField') ) {
|
|
148 |
|
149 |
if ($this->conditional) {
|
150 |
|
151 |
-
if ( $this->display_callback &&
|
152 |
|
153 |
// if there's a callback, run it
|
154 |
call_user_func($this->display_callback);
|
@@ -427,10 +441,10 @@ if ( !class_exists('TribeField') ) {
|
|
427 |
$field .= $this->doFieldDivStart();
|
428 |
if ( is_array($this->options) ) {
|
429 |
foreach ($this->options as $option_id => $title) {
|
430 |
-
$field .= '<label title="'
|
431 |
$field .= '<input type="radio"';
|
432 |
$field .= $this->doFieldName();
|
433 |
-
$field .= ' value="'
|
434 |
$field .= $title;
|
435 |
$field .= '</label>';
|
436 |
}
|
@@ -464,10 +478,10 @@ if ( !class_exists('TribeField') ) {
|
|
464 |
|
465 |
if ( is_array($this->options) ) {
|
466 |
foreach ($this->options as $option_id => $title) {
|
467 |
-
$field .= '<label title="'
|
468 |
$field .= '<input type="checkbox"';
|
469 |
$field .= $this->doFieldName(true);
|
470 |
-
$field .= ' value="'
|
471 |
$field .= $title;
|
472 |
$field .= '</label>';
|
473 |
}
|
@@ -517,10 +531,10 @@ if ( !class_exists('TribeField') ) {
|
|
517 |
$field .= $this->doFieldName();
|
518 |
$field .= '>';
|
519 |
foreach ($this->options as $option_id => $title) {
|
520 |
-
$field .= '<option value="'
|
521 |
$field .= selected( $this->value, $option_id, false );
|
522 |
$field .= isset($this->value[0]) ? selected( $this->value[0], $option_id, false ) : '';
|
523 |
-
$field .= '>'
|
524 |
}
|
525 |
$field .= '</select>';
|
526 |
$field .= $this->doScreenReaderLabel();
|
103 |
|
104 |
// parse args with defaults and extract them
|
105 |
$args = wp_parse_args($field, $this->defaults);
|
|
|
106 |
|
107 |
// sanitize the values just to be safe
|
108 |
+
$id = esc_attr( $id );
|
109 |
+
$type = esc_attr( $args['type'] );
|
110 |
+
$name = esc_attr( $args['name'] );
|
111 |
+
$class = sanitize_html_class( $args['class'] );
|
112 |
+
$label = wp_kses( $args['label'], array( 'a' => array( 'href' => array(),'title' => array() ),'br' => array(),'em' => array(),'strong' => array(), 'b' => array(), 'i' => array(), 'u' => array(), 'img' => array( 'title' => array(), 'src' => array(), 'alt' => array() ) ) );
|
113 |
+
$tooltip = wp_kses( $args['tooltip'], array( 'a' => array( 'href' => array(),'title' => array() ),'br' => array(),'em' => array(),'strong' => array(), 'b' => array(), 'i' => array(), 'u' => array(), 'img' => array( 'title' => array(), 'src' => array(), 'alt' => array() ), 'code' => array('span' => array()), 'span' => array() ) );
|
114 |
+
$attributes = $args['attributes'];
|
115 |
+
if (is_array($attributes)) {
|
116 |
+
foreach ( $attributes as $key => &$val ) {
|
117 |
+
$val = esc_attr( $val );
|
118 |
+
}
|
119 |
+
}
|
120 |
+
if ( is_array( $args['options'] ) ) {
|
121 |
+
$options = array();
|
122 |
+
foreach ( $args['options'] as $key => $val ) {
|
123 |
+
$options[$key] = $val;
|
124 |
+
}
|
125 |
+
} else {
|
126 |
+
$options = $args['options'];
|
127 |
+
}
|
128 |
+
$size = esc_attr( $args['size'] );
|
129 |
+
$html = $args['html'];
|
130 |
+
$error = (bool) $args['error'];
|
131 |
+
$value = esc_attr( $value );
|
132 |
+
$conditional = $args['conditional'];
|
133 |
+
$display_callback = $args['display_callback'];
|
134 |
+
$if_empty = (bool) $args['if_empty'];
|
135 |
+
$can_be_empty = (bool) $args['can_be_empty'];
|
136 |
+
$clear_after = (bool) $args['clear_after'];
|
137 |
|
138 |
|
139 |
// set the ID
|
140 |
$this->id = apply_filters( 'tribe_field_id', $id );
|
141 |
|
142 |
// set each instance variable and filter
|
143 |
+
foreach ( $this->defaults as $key => $value ) {
|
144 |
$this->{$key} = apply_filters( 'tribe_field_'.$key, $$key, $this->id );
|
145 |
}
|
146 |
|
162 |
|
163 |
if ($this->conditional) {
|
164 |
|
165 |
+
if ( $this->display_callback && is_callable($this->display_callback) ) {
|
166 |
|
167 |
// if there's a callback, run it
|
168 |
call_user_func($this->display_callback);
|
441 |
$field .= $this->doFieldDivStart();
|
442 |
if ( is_array($this->options) ) {
|
443 |
foreach ($this->options as $option_id => $title) {
|
444 |
+
$field .= '<label title="'.esc_attr( $title ).'">';
|
445 |
$field .= '<input type="radio"';
|
446 |
$field .= $this->doFieldName();
|
447 |
+
$field .= ' value="'.esc_attr( $option_id ).'" '.checked( $this->value, $option_id, false ).'/>';
|
448 |
$field .= $title;
|
449 |
$field .= '</label>';
|
450 |
}
|
478 |
|
479 |
if ( is_array($this->options) ) {
|
480 |
foreach ($this->options as $option_id => $title) {
|
481 |
+
$field .= '<label title="'.esc_attr( $title ).'">';
|
482 |
$field .= '<input type="checkbox"';
|
483 |
$field .= $this->doFieldName(true);
|
484 |
+
$field .= ' value="'.esc_attr( $option_id ).'" '.checked( in_array($option_id, $this->value), true, false ).'/>';
|
485 |
$field .= $title;
|
486 |
$field .= '</label>';
|
487 |
}
|
531 |
$field .= $this->doFieldName();
|
532 |
$field .= '>';
|
533 |
foreach ($this->options as $option_id => $title) {
|
534 |
+
$field .= '<option value="'.esc_attr( $option_id ).'"';
|
535 |
$field .= selected( $this->value, $option_id, false );
|
536 |
$field .= isset($this->value[0]) ? selected( $this->value[0], $option_id, false ) : '';
|
537 |
+
$field .= '>'.esc_html( $title ).'</option>';
|
538 |
}
|
539 |
$field .= '</select>';
|
540 |
$field .= $this->doScreenReaderLabel();
|
lib/tribe-settings-tab.class.php
CHANGED
@@ -156,7 +156,7 @@ if ( !class_exists( 'TribeSettingsTab' ) ) {
|
|
156 |
* @return void
|
157 |
*/
|
158 |
public function doContent() {
|
159 |
-
if ( $this->display_callback &&
|
160 |
call_user_func( $this->display_callback ); return;
|
161 |
}
|
162 |
|
156 |
* @return void
|
157 |
*/
|
158 |
public function doContent() {
|
159 |
+
if ( $this->display_callback && is_callable( $this->display_callback ) ) {
|
160 |
call_user_func( $this->display_callback ); return;
|
161 |
}
|
162 |
|
lib/tribe-template-factory.class.php
CHANGED
@@ -68,7 +68,6 @@ if( !class_exists('Tribe_Template_Factory') ) {
|
|
68 |
public function __construct() {
|
69 |
$this->hooks();
|
70 |
$this->asset_packages();
|
71 |
-
$this->body_class();
|
72 |
}
|
73 |
|
74 |
/**
|
@@ -166,31 +165,7 @@ if( !class_exists('Tribe_Template_Factory') ) {
|
|
166 |
* @since 3.0
|
167 |
**/
|
168 |
public function event_classes( $classes ) {
|
169 |
-
|
170 |
-
global $post, $wp_query;
|
171 |
-
|
172 |
-
$classes = array_merge($classes, array( 'hentry', 'vevent', 'type-tribe_events', 'post-' . $post->ID, 'tribe-clearfix' ));
|
173 |
-
$tribe_cat_slugs = tribe_get_event_cat_slugs( $post->ID );
|
174 |
-
|
175 |
-
foreach( $tribe_cat_slugs as $tribe_cat_slug ) {
|
176 |
-
$classes[] = 'tribe-events-category-'. $tribe_cat_slug;
|
177 |
-
}
|
178 |
-
if ( $venue_id = tribe_get_venue_id( $post->ID ) ) {
|
179 |
-
$classes[] = 'tribe-events-venue-'. $venue_id;
|
180 |
-
}
|
181 |
-
if ( $organizer_id = tribe_get_organizer_id( $post->ID ) ) {
|
182 |
-
$classes[] = 'tribe-events-organizer-'. $organizer_id;
|
183 |
-
}
|
184 |
-
// added first class for css
|
185 |
-
if ( ( $wp_query->current_post == 0 ) && !tribe_is_day() ) {
|
186 |
-
$classes[] = 'tribe-events-first';
|
187 |
-
}
|
188 |
-
// added last class for css
|
189 |
-
if ( $wp_query->current_post == $wp_query->post_count-1 ) {
|
190 |
-
$classes[] = 'tribe-events-last';
|
191 |
-
}
|
192 |
-
|
193 |
-
return $classes;
|
194 |
}
|
195 |
|
196 |
/**
|
@@ -249,6 +224,7 @@ if( !class_exists('Tribe_Template_Factory') ) {
|
|
249 |
}
|
250 |
if ( is_tax( $tribe->get_event_taxonomy() ) ) {
|
251 |
$tax_term = get_term_by( 'slug', get_query_var( 'term' ), $tribe->get_event_taxonomy() );
|
|
|
252 |
}
|
253 |
|
254 |
// Set an appropriate notice
|
@@ -256,19 +232,19 @@ if( !class_exists('Tribe_Template_Factory') ) {
|
|
256 |
TribeEvents::setNotice( 'event-search-no-results', sprintf( __( 'There were no results found for <strong>"%s"</strong>.', 'tribe-events-calendar' ), esc_html($search_term) ) );
|
257 |
}
|
258 |
elseif ( ! empty( $geographic_term ) ) {
|
259 |
-
TribeEvents::setNotice( 'event-search-no-results', sprintf( __( 'No results were found for events in or near <strong>"%s"</strong>.', 'tribe-events-calendar
|
260 |
}
|
261 |
elseif ( ! empty( $tax_term ) && tribe_is_upcoming() && ( date('Y-m-d') === date('Y-m-d', strtotime($tribe->date) ) ) ) {
|
262 |
-
TribeEvents::setNotice( 'events-not-found', sprintf( __('No upcoming events listed under %s. Check out upcoming events for this category or view the full calendar.', 'tribe-events-calendar')
|
263 |
}
|
264 |
elseif ( ! empty( $tax_term ) && tribe_is_upcoming() ) {
|
265 |
-
TribeEvents::setNotice( 'events-not-found', sprintf( __('No matching events listed under %s. Check out upcoming events for this category or view the full calendar.', 'tribe-events-calendar')
|
266 |
}
|
267 |
-
elseif ( ! empty( $tax_term ) &&tribe_is_past() ) {
|
268 |
-
TribeEvents::setNotice( 'events-past-not-found', __('No previous events ', 'tribe-events-calendar')
|
269 |
}
|
270 |
else {
|
271 |
-
TribeEvents::setNotice( 'event-search-no-results', __( 'There were no results found.', 'tribe-events-calendar
|
272 |
}
|
273 |
}
|
274 |
|
@@ -531,7 +507,7 @@ if( !class_exists('Tribe_Template_Factory') ) {
|
|
531 |
break;
|
532 |
case 'admin-ui' : // Tribe Events
|
533 |
$path = self::getMinFile( $resources_url . 'events-admin.css', true );
|
534 |
-
wp_enqueue_style( $prefix . '-admin-ui', $path );
|
535 |
break;
|
536 |
case 'admin' :
|
537 |
$deps = array_merge( $deps, array( 'jquery', 'jquery-ui-datepicker' ) );
|
@@ -602,10 +578,10 @@ if( !class_exists('Tribe_Template_Factory') ) {
|
|
602 |
// Load up stylesheet from theme or plugin
|
603 |
if( $styleUrl && $stylesheet_option == 'tribe' ) {
|
604 |
$full_path = self::getMinFile( trailingslashit( $tec->pluginUrl ) . 'resources/tribe-events-full.css', true );
|
605 |
-
wp_enqueue_style( 'full-calendar-style', $full_path );
|
606 |
-
wp_enqueue_style( TribeEvents::POSTTYPE . '-calendar-style', $styleUrl );
|
607 |
} else {
|
608 |
-
wp_enqueue_style( TribeEvents::POSTTYPE . '-calendar-style', $styleUrl );
|
609 |
}
|
610 |
if( $styleOverrideUrl ) {
|
611 |
wp_enqueue_style( TribeEvents::POSTTYPE . '-calendar-override-style', $styleOverrideUrl );
|
68 |
public function __construct() {
|
69 |
$this->hooks();
|
70 |
$this->asset_packages();
|
|
|
71 |
}
|
72 |
|
73 |
/**
|
165 |
* @since 3.0
|
166 |
**/
|
167 |
public function event_classes( $classes ) {
|
168 |
+
return $classes;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
169 |
}
|
170 |
|
171 |
/**
|
224 |
}
|
225 |
if ( is_tax( $tribe->get_event_taxonomy() ) ) {
|
226 |
$tax_term = get_term_by( 'slug', get_query_var( 'term' ), $tribe->get_event_taxonomy() );
|
227 |
+
$tax_term = esc_html( $tax_term->name );
|
228 |
}
|
229 |
|
230 |
// Set an appropriate notice
|
232 |
TribeEvents::setNotice( 'event-search-no-results', sprintf( __( 'There were no results found for <strong>"%s"</strong>.', 'tribe-events-calendar' ), esc_html($search_term) ) );
|
233 |
}
|
234 |
elseif ( ! empty( $geographic_term ) ) {
|
235 |
+
TribeEvents::setNotice( 'event-search-no-results', sprintf( __( 'No results were found for events in or near <strong>"%s"</strong>.', 'tribe-events-calendar' ), esc_html($geographic_term) ) );
|
236 |
}
|
237 |
elseif ( ! empty( $tax_term ) && tribe_is_upcoming() && ( date('Y-m-d') === date('Y-m-d', strtotime($tribe->date) ) ) ) {
|
238 |
+
TribeEvents::setNotice( 'events-not-found', sprintf( __('No upcoming events listed under %s. Check out upcoming events for this category or view the full calendar.', 'tribe-events-calendar'), $tax_term ) );
|
239 |
}
|
240 |
elseif ( ! empty( $tax_term ) && tribe_is_upcoming() ) {
|
241 |
+
TribeEvents::setNotice( 'events-not-found', sprintf( __('No matching events listed under %s. Check out upcoming events for this category or view the full calendar.', 'tribe-events-calendar'), $tax_term ) );
|
242 |
}
|
243 |
+
elseif ( ! empty( $tax_term ) && tribe_is_past() ) {
|
244 |
+
TribeEvents::setNotice( 'events-past-not-found', __('No previous events ', 'tribe-events-calendar') );
|
245 |
}
|
246 |
else {
|
247 |
+
TribeEvents::setNotice( 'event-search-no-results', __( 'There were no results found.', 'tribe-events-calendar' ) );
|
248 |
}
|
249 |
}
|
250 |
|
507 |
break;
|
508 |
case 'admin-ui' : // Tribe Events
|
509 |
$path = self::getMinFile( $resources_url . 'events-admin.css', true );
|
510 |
+
wp_enqueue_style( $prefix . '-admin-ui', $path, array(), TribeEvents::VERSION );
|
511 |
break;
|
512 |
case 'admin' :
|
513 |
$deps = array_merge( $deps, array( 'jquery', 'jquery-ui-datepicker' ) );
|
578 |
// Load up stylesheet from theme or plugin
|
579 |
if( $styleUrl && $stylesheet_option == 'tribe' ) {
|
580 |
$full_path = self::getMinFile( trailingslashit( $tec->pluginUrl ) . 'resources/tribe-events-full.css', true );
|
581 |
+
wp_enqueue_style( 'full-calendar-style', $full_path, array(), apply_filters( 'tribe_events_css_version', TribeEvents::VERSION ) );
|
582 |
+
wp_enqueue_style( TribeEvents::POSTTYPE . '-calendar-style', $styleUrl, array(), apply_filters( 'tribe_events_css_version', TribeEvents::VERSION ) );
|
583 |
} else {
|
584 |
+
wp_enqueue_style( TribeEvents::POSTTYPE . '-calendar-style', $styleUrl, array(), apply_filters( 'tribe_events_css_version', TribeEvents::VERSION ) );
|
585 |
}
|
586 |
if( $styleOverrideUrl ) {
|
587 |
wp_enqueue_style( TribeEvents::POSTTYPE . '-calendar-override-style', $styleOverrideUrl );
|
lib/tribe-templates.class.php
CHANGED
@@ -196,38 +196,66 @@ if (!class_exists('TribeEventsTemplates')) {
|
|
196 |
/**
|
197 |
* Fix issues where themes display the_title() before the main loop starts.
|
198 |
*
|
199 |
-
* With
|
200 |
* event views such as month view prominently displaying the title of the most recent event post (which may
|
201 |
-
* not even be included in the
|
202 |
*
|
203 |
-
* There's no bulletproof solution to this, but
|
204 |
-
*
|
205 |
*
|
206 |
-
* define( 'TRIBE_MODIFY_GLOBAL_TITLE',
|
|
|
|
|
|
|
|
|
|
|
207 |
*/
|
208 |
public static function maybe_modify_global_post_title() {
|
209 |
global $post;
|
210 |
|
211 |
-
// We will only interfere with event queries, where a post is set and this behaviour
|
212 |
-
if ( ! tribe_is_event_query() ||
|
213 |
if ( ! isset($post) || ! is_a( $post, 'WP_Post') ) return;
|
214 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
215 |
// Set the title to an empty string (but record the original)
|
216 |
self::$original_post_title = $post->post_title;
|
217 |
$post->post_title = apply_filters( 'tribe_set_global_post_title', '' );
|
218 |
|
219 |
// Restore as soon as we're ready to display one of our own views
|
220 |
add_action( 'tribe_pre_get_view', array( __CLASS__, 'restore_global_post_title' ) );
|
|
|
|
|
|
|
221 |
}
|
222 |
|
223 |
|
224 |
/**
|
225 |
-
* Restores the global $post title if it has previously been modified
|
|
|
|
|
226 |
*/
|
227 |
public static function restore_global_post_title() {
|
228 |
global $post;
|
229 |
$post->post_title = self::$original_post_title;
|
230 |
-
remove_action( 'tribe_pre_get_view', array( __CLASS__, 'restore_global_post_title' ) );
|
231 |
}
|
232 |
|
233 |
|
@@ -270,7 +298,8 @@ if (!class_exists('TribeEventsTemplates')) {
|
|
270 |
}
|
271 |
|
272 |
// apply filters
|
273 |
-
|
|
|
274 |
|
275 |
}
|
276 |
|
@@ -300,7 +329,8 @@ if (!class_exists('TribeEventsTemplates')) {
|
|
300 |
}
|
301 |
|
302 |
// apply filters
|
303 |
-
|
|
|
304 |
|
305 |
}
|
306 |
|
@@ -458,7 +488,7 @@ if (!class_exists('TribeEventsTemplates')) {
|
|
458 |
// check the theme for specific file requested
|
459 |
$file = locate_template( array( 'tribe-events/'.$template ), false, false );
|
460 |
if ( ! $file ) {
|
461 |
-
// if not found, it could be our plugin requesting the file with the namespace,
|
462 |
// so check the theme for the path without the namespace
|
463 |
$files = array();
|
464 |
foreach ( array_keys( $template_base_paths ) as $namespace ) {
|
@@ -468,13 +498,13 @@ if (!class_exists('TribeEventsTemplates')) {
|
|
468 |
}
|
469 |
$file = locate_template( $files, false, false );
|
470 |
if ( $file ) {
|
471 |
-
_deprecated_function( sprintf( __( 'Template overrides should be moved to the correct subdirectory: %s', 'tribe-events' ), str_replace( get_stylesheet_directory() . '/tribe-events/', '', $file ) ) , '3.2', $template );
|
472 |
}
|
473 |
}
|
474 |
}
|
475 |
|
476 |
// if the theme file wasn't found, check our plugins views dirs
|
477 |
-
if ( ! $file ) {
|
478 |
|
479 |
foreach ( $template_base_paths as $template_base_path ) {
|
480 |
|
@@ -488,12 +518,12 @@ if (!class_exists('TribeEventsTemplates')) {
|
|
488 |
// return the first one found
|
489 |
if ( file_exists( $file ) )
|
490 |
break;
|
491 |
-
else
|
492 |
$file = false;
|
493 |
}
|
494 |
}
|
495 |
|
496 |
-
// file wasn't found anywhere in the theme or in our plugin at the specifically requested path,
|
497 |
// and there are overrides, so look in our plugin for the file with the namespace added
|
498 |
// since it might be an old override requesting the file without the namespace
|
499 |
if ( ! $file && $overrides_exist ) {
|
@@ -509,7 +539,7 @@ if (!class_exists('TribeEventsTemplates')) {
|
|
509 |
|
510 |
// return the first one found
|
511 |
if ( file_exists( $file ) ) {
|
512 |
-
_deprecated_function( sprintf( __( 'Template overrides should be moved to the correct subdirectory: tribe_get_template_part(\'%s\')', 'tribe-events' ), $template ) , '3.2', 'tribe_get_template_part(\''.$_namespace.$template.'\')');
|
513 |
break;
|
514 |
}
|
515 |
}
|
196 |
/**
|
197 |
* Fix issues where themes display the_title() before the main loop starts.
|
198 |
*
|
199 |
+
* With some themes the title of single events can be displayed twice and, more crucially, it may result in the
|
200 |
* event views such as month view prominently displaying the title of the most recent event post (which may
|
201 |
+
* not even be included in the view output).
|
202 |
*
|
203 |
+
* There's no bulletproof solution to this problem, but for affected themes a preventative measure can be turned
|
204 |
+
* on by adding the following to wp-config.php:
|
205 |
*
|
206 |
+
* define( 'TRIBE_MODIFY_GLOBAL_TITLE', true );
|
207 |
+
*
|
208 |
+
* Note: this reverses the situation in version 3.2, when this behaviour was enabled by default. In response to
|
209 |
+
* feedback it will now be disabled by default and will need to be turned on by adding the above line.
|
210 |
+
*
|
211 |
+
* @see issues #24294, #23260
|
212 |
*/
|
213 |
public static function maybe_modify_global_post_title() {
|
214 |
global $post;
|
215 |
|
216 |
+
// We will only interfere with event queries, where a post is set and this behaviour is enabled
|
217 |
+
if ( ! tribe_is_event_query() || ! defined('TRIBE_MODIFY_GLOBAL_TITLE') || ! TRIBE_MODIFY_GLOBAL_TITLE ) return;
|
218 |
if ( ! isset($post) || ! is_a( $post, 'WP_Post') ) return;
|
219 |
|
220 |
+
// Wait until late in the wp_title hook to actually make a change - this should allow single event titles
|
221 |
+
// to be used within the title element itself
|
222 |
+
add_filter( 'wp_title', array( __CLASS__, 'modify_global_post_title' ), 1000 );
|
223 |
+
}
|
224 |
+
|
225 |
+
/**
|
226 |
+
* Actually modifies the global $post object's title property, setting it to an empty string.
|
227 |
+
*
|
228 |
+
* This is expected to be called late on during the wp_title action, but does not in fact alter the string
|
229 |
+
* it is passed.
|
230 |
+
*
|
231 |
+
* @see TribeEventsTemplates::maybe_modify_global_post_title()
|
232 |
+
* @param string $title
|
233 |
+
* @return string
|
234 |
+
*/
|
235 |
+
public function modify_global_post_title( $title = '' ) {
|
236 |
+
global $post;
|
237 |
+
|
238 |
// Set the title to an empty string (but record the original)
|
239 |
self::$original_post_title = $post->post_title;
|
240 |
$post->post_title = apply_filters( 'tribe_set_global_post_title', '' );
|
241 |
|
242 |
// Restore as soon as we're ready to display one of our own views
|
243 |
add_action( 'tribe_pre_get_view', array( __CLASS__, 'restore_global_post_title' ) );
|
244 |
+
|
245 |
+
// Now return the title unmodified
|
246 |
+
return $title;
|
247 |
}
|
248 |
|
249 |
|
250 |
/**
|
251 |
+
* Restores the global $post title if it has previously been modified.
|
252 |
+
*
|
253 |
+
* @see TribeEventsTemplates::modify_global_post_title().
|
254 |
*/
|
255 |
public static function restore_global_post_title() {
|
256 |
global $post;
|
257 |
$post->post_title = self::$original_post_title;
|
258 |
+
remove_action( 'tribe_pre_get_view', array( __CLASS__, 'restore_global_post_title' ) );
|
259 |
}
|
260 |
|
261 |
|
298 |
}
|
299 |
|
300 |
// apply filters
|
301 |
+
// @todo: remove deprecated filter in 3.4
|
302 |
+
return apply_filters( 'tribe_events_current_view_template', apply_filters( 'tribe_current_events_page_template', $template ) );
|
303 |
|
304 |
}
|
305 |
|
329 |
}
|
330 |
|
331 |
// apply filters
|
332 |
+
// @todo remove deprecated filter in 3.4
|
333 |
+
return apply_filters( 'tribe_events_current_template_class', apply_filters( 'tribe_current_events_template_class', $class ) );
|
334 |
|
335 |
}
|
336 |
|
488 |
// check the theme for specific file requested
|
489 |
$file = locate_template( array( 'tribe-events/'.$template ), false, false );
|
490 |
if ( ! $file ) {
|
491 |
+
// if not found, it could be our plugin requesting the file with the namespace,
|
492 |
// so check the theme for the path without the namespace
|
493 |
$files = array();
|
494 |
foreach ( array_keys( $template_base_paths ) as $namespace ) {
|
498 |
}
|
499 |
$file = locate_template( $files, false, false );
|
500 |
if ( $file ) {
|
501 |
+
_deprecated_function( sprintf( __( 'Template overrides should be moved to the correct subdirectory: %s', 'tribe-events-calendar' ), str_replace( get_stylesheet_directory() . '/tribe-events/', '', $file ) ) , '3.2', $template );
|
502 |
}
|
503 |
}
|
504 |
}
|
505 |
|
506 |
// if the theme file wasn't found, check our plugins views dirs
|
507 |
+
if ( ! $file ) {
|
508 |
|
509 |
foreach ( $template_base_paths as $template_base_path ) {
|
510 |
|
518 |
// return the first one found
|
519 |
if ( file_exists( $file ) )
|
520 |
break;
|
521 |
+
else
|
522 |
$file = false;
|
523 |
}
|
524 |
}
|
525 |
|
526 |
+
// file wasn't found anywhere in the theme or in our plugin at the specifically requested path,
|
527 |
// and there are overrides, so look in our plugin for the file with the namespace added
|
528 |
// since it might be an old override requesting the file without the namespace
|
529 |
if ( ! $file && $overrides_exist ) {
|
539 |
|
540 |
// return the first one found
|
541 |
if ( file_exists( $file ) ) {
|
542 |
+
_deprecated_function( sprintf( __( 'Template overrides should be moved to the correct subdirectory: tribe_get_template_part(\'%s\')', 'tribe-events-calendar' ), $template ) , '3.2', 'tribe_get_template_part(\''.$_namespace.$template.'\')');
|
543 |
break;
|
544 |
}
|
545 |
}
|
license.txt
CHANGED
File without changes
|
public/advanced-functions/event.php
CHANGED
File without changes
|
public/advanced-functions/meta.php
CHANGED
@@ -33,7 +33,33 @@ if ( class_exists( 'Tribe_Meta_Factory' ) ) {
|
|
33 |
$start_time = tribe_get_start_date(null, false, $time_format );
|
34 |
$end_time = tribe_get_end_date(null, false, $time_format );
|
35 |
|
36 |
-
if (
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
// If multiday, show start date+time and end date+time
|
38 |
$html = Tribe_Meta_Factory::template(
|
39 |
__( 'Start:', 'tribe-events-calendar' ),
|
@@ -49,49 +75,35 @@ if ( class_exists( 'Tribe_Meta_Factory' ) ) {
|
|
49 |
tribe_get_end_date()
|
50 |
),
|
51 |
$meta_id );
|
52 |
-
}
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
sprintf( '<abbr class="tribe-events-abbr updated published dtstart" title="%s">%s</abbr>',
|
69 |
-
tribe_get_start_date( null, false, TribeDateUtils::DBDATEFORMAT ),
|
70 |
-
tribe_get_start_date(null, false)
|
71 |
),
|
72 |
$meta_id );
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
} else {
|
83 |
-
// show start and end time
|
84 |
-
$html .= Tribe_Meta_Factory::template(
|
85 |
-
__( 'Time:', 'tribe-events-calendar' ),
|
86 |
-
sprintf( '<abbr class="tribe-events-abbr dtend" title="%s">%s</abbr>',
|
87 |
-
tribe_get_end_date( null, false, TribeDateUtils::DBDATEFORMAT ),
|
88 |
-
$start_time .' - '. $end_time
|
89 |
-
),
|
90 |
-
$meta_id );
|
91 |
-
}
|
92 |
}
|
93 |
-
|
94 |
-
}
|
95 |
return apply_filters( 'tribe_event_meta_event_date', $html );
|
96 |
}
|
97 |
|
@@ -306,7 +318,7 @@ if ( class_exists( 'Tribe_Meta_Factory' ) ) {
|
|
306 |
'classes' => array( 'meta_before' => array('tribe-events-event-cost') ),
|
307 |
'label' => __( 'Cost:', 'tribe-events-calendar' ),
|
308 |
'priority' => 20,
|
309 |
-
'callback' => '
|
310 |
'group' => 'tribe_event_details',
|
311 |
'show_on_meta' => true
|
312 |
) );
|
33 |
$start_time = tribe_get_start_date(null, false, $time_format );
|
34 |
$end_time = tribe_get_end_date(null, false, $time_format );
|
35 |
|
36 |
+
if ( tribe_event_is_all_day() ) {
|
37 |
+
if ( tribe_event_is_multiday() ) {
|
38 |
+
$html = Tribe_Meta_Factory::template(
|
39 |
+
__( 'Start:', 'tribe-events-calendar' ),
|
40 |
+
sprintf( '<abbr class="tribe-events-abbr updated published dtstart" title="%s">%s</abbr>',
|
41 |
+
tribe_get_start_date( null, false, TribeDateUtils::DBDATEFORMAT ),
|
42 |
+
tribe_get_start_date()
|
43 |
+
),
|
44 |
+
$meta_id );
|
45 |
+
$html .= Tribe_Meta_Factory::template(
|
46 |
+
__( 'End:', 'tribe-events-calendar' ),
|
47 |
+
sprintf( '<abbr class="tribe-events-abbr dtend" title="%s">%s</abbr>',
|
48 |
+
tribe_get_end_date( null, false, TribeDateUtils::DBDATEFORMAT ),
|
49 |
+
tribe_get_end_date()
|
50 |
+
),
|
51 |
+
$meta_id );
|
52 |
+
} else {
|
53 |
+
// If all day event, show only start date
|
54 |
+
$html = Tribe_Meta_Factory::template(
|
55 |
+
__( 'Date:', 'tribe-events-calendar' ),
|
56 |
+
sprintf( '<abbr class="tribe-events-abbr updated published dtstart" title="%s">%s</abbr>',
|
57 |
+
tribe_get_start_date( null, false, TribeDateUtils::DBDATEFORMAT ),
|
58 |
+
tribe_get_start_date()
|
59 |
+
),
|
60 |
+
$meta_id );
|
61 |
+
}
|
62 |
+
} elseif ( tribe_event_is_multiday() ) {
|
63 |
// If multiday, show start date+time and end date+time
|
64 |
$html = Tribe_Meta_Factory::template(
|
65 |
__( 'Start:', 'tribe-events-calendar' ),
|
75 |
tribe_get_end_date()
|
76 |
),
|
77 |
$meta_id );
|
78 |
+
} else {
|
79 |
+
// show start date
|
80 |
+
$html = Tribe_Meta_Factory::template(
|
81 |
+
__( 'Date:', 'tribe-events-calendar' ),
|
82 |
+
sprintf( '<abbr class="tribe-events-abbr updated published dtstart" title="%s">%s</abbr>',
|
83 |
+
tribe_get_start_date( null, false, TribeDateUtils::DBDATEFORMAT ),
|
84 |
+
tribe_get_start_date(null, false)
|
85 |
+
),
|
86 |
+
$meta_id );
|
87 |
+
if ( $start_time == $end_time ) {
|
88 |
+
// if start and end time are the same, just show the start time
|
89 |
+
$html .= Tribe_Meta_Factory::template(
|
90 |
+
__( 'Time:', 'tribe-events-calendar' ),
|
91 |
+
sprintf( '<abbr class="tribe-events-abbr dtend" title="%s">%s</abbr>',
|
92 |
+
tribe_get_end_date( null, false, TribeDateUtils::DBDATEFORMAT ),
|
93 |
+
$start_time
|
|
|
|
|
|
|
94 |
),
|
95 |
$meta_id );
|
96 |
+
} else {
|
97 |
+
// show start and end time
|
98 |
+
$html .= Tribe_Meta_Factory::template(
|
99 |
+
__( 'Time:', 'tribe-events-calendar' ),
|
100 |
+
sprintf( '<abbr class="tribe-events-abbr dtend" title="%s">%s</abbr>',
|
101 |
+
tribe_get_end_date( null, false, TribeDateUtils::DBDATEFORMAT ),
|
102 |
+
$start_time .' - '. $end_time
|
103 |
+
),
|
104 |
+
$meta_id );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
}
|
106 |
+
}
|
|
|
107 |
return apply_filters( 'tribe_event_meta_event_date', $html );
|
108 |
}
|
109 |
|
318 |
'classes' => array( 'meta_before' => array('tribe-events-event-cost') ),
|
319 |
'label' => __( 'Cost:', 'tribe-events-calendar' ),
|
320 |
'priority' => 20,
|
321 |
+
'callback' => 'tribe_get_formatted_cost',
|
322 |
'group' => 'tribe_event_details',
|
323 |
'show_on_meta' => true
|
324 |
) );
|
public/advanced-functions/organizer.php
CHANGED
File without changes
|
public/advanced-functions/venue.php
CHANGED
File without changes
|
public/template-tags/date.php
CHANGED
@@ -66,14 +66,22 @@ if( class_exists( 'TribeEvents' ) ) {
|
|
66 |
$event = get_post( $event );
|
67 |
}
|
68 |
|
69 |
-
if( tribe_event_is_all_day( $event ) )
|
70 |
$displayTime = false;
|
|
|
71 |
|
72 |
if( empty($event->EventEndDate) && is_object( $event ) ) {
|
73 |
$event->EventEndDate = tribe_get_event_meta( $event->ID, '_EventEndDate', true );
|
74 |
}
|
75 |
|
76 |
if( isset($event->EventEndDate) ){
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
$date = strtotime( $event->EventEndDate );
|
78 |
} else{
|
79 |
return; // '—';
|
66 |
$event = get_post( $event );
|
67 |
}
|
68 |
|
69 |
+
if( tribe_event_is_all_day( $event ) ) {
|
70 |
$displayTime = false;
|
71 |
+
}
|
72 |
|
73 |
if( empty($event->EventEndDate) && is_object( $event ) ) {
|
74 |
$event->EventEndDate = tribe_get_event_meta( $event->ID, '_EventEndDate', true );
|
75 |
}
|
76 |
|
77 |
if( isset($event->EventEndDate) ){
|
78 |
+
if ( tribe_event_is_all_day( $event ) && TribeDateUtils::timeOnly( $event->EventEndDate ) != '00:00:00' && tribe_get_option( 'multiDayCutoff', '00:00' ) != '00:00' ) {
|
79 |
+
// set the event end date to be one day earlier, if it's an all day event and the cutoff is past midnight
|
80 |
+
// @todo remove this once we can have all day events without a start / end time
|
81 |
+
$event->EventEndDate = date_create( $event->EventEndDate );
|
82 |
+
$event->EventEndDate->modify( '-1 day' );
|
83 |
+
$event->EventEndDate = $event->EventEndDate->format( TribeDateUtils::DBDATEFORMAT );
|
84 |
+
}
|
85 |
$date = strtotime( $event->EventEndDate );
|
86 |
} else{
|
87 |
return; // '—';
|
public/template-tags/general.php
CHANGED
@@ -157,6 +157,7 @@ if ( class_exists( 'TribeEvents' ) ) {
|
|
157 |
* Queries the events using WordPress get_posts() by setting the post type and sorting by event date.
|
158 |
*
|
159 |
* @param array $args query vars with added defaults including post_type of events, sorted (orderby) by event date (order) ascending
|
|
|
160 |
* @return array List of posts.
|
161 |
* @link http://codex.wordpress.org/Template_Tags/get_posts
|
162 |
* @link http://codex.wordpress.org/Function_Reference/get_post
|
@@ -164,8 +165,8 @@ if ( class_exists( 'TribeEvents' ) ) {
|
|
164 |
* @see get_posts()
|
165 |
* @since 2.0
|
166 |
*/
|
167 |
-
function tribe_get_events( $args = array() ) {
|
168 |
-
return apply_filters( 'tribe_get_events', TribeEventsQuery::getEvents( $args ), $args );
|
169 |
}
|
170 |
|
171 |
/**
|
@@ -194,11 +195,11 @@ if ( class_exists( 'TribeEvents' ) ) {
|
|
194 |
*/
|
195 |
function tribe_event_is_multiday( $postId = null ) {
|
196 |
$postId = TribeEvents::postIdHelper( $postId );
|
197 |
-
$start = (array)tribe_get_event_meta( $postId, '_EventStartDate', false );
|
198 |
sort( $start );
|
199 |
$start = strtotime( $start[0] );
|
200 |
$end = strtotime( tribe_get_event_meta( $postId, '_EventEndDate', true ) );
|
201 |
-
$output =
|
202 |
return apply_filters( 'tribe_event_is_multiday', $output, $postId, $start, $end );
|
203 |
}
|
204 |
|
@@ -405,8 +406,7 @@ if ( class_exists( 'TribeEvents' ) ) {
|
|
405 |
$before = convert_chars( $before );
|
406 |
$before = wpautop( $before );
|
407 |
$before = '<div class="tribe-events-before-html">'. stripslashes( shortcode_unautop( $before ) ) .'</div>';
|
408 |
-
$before = $before.'<span class="tribe-events-ajax-loading"><img class="tribe-events-spinner-medium" src="'.tribe_events_resource_url('images/tribe-loading.gif').'" alt="'.__('Loading Events', 'tribe-events').'" /></span>';
|
409 |
-
$before = apply_filters( 'tribe_events_before_html', $before );
|
410 |
|
411 |
echo apply_filters( 'tribe_events_before_html', $before );
|
412 |
}
|
@@ -435,10 +435,32 @@ if ( class_exists( 'TribeEvents' ) ) {
|
|
435 |
* @since 3.0
|
436 |
**/
|
437 |
function tribe_events_event_classes() {
|
438 |
-
|
439 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
440 |
}
|
441 |
-
|
442 |
/**
|
443 |
* Prints out data attributes used in the template header tags
|
444 |
*
|
@@ -529,7 +551,6 @@ if ( class_exists( 'TribeEvents' ) ) {
|
|
529 |
/**
|
530 |
* Get an event's cost
|
531 |
*
|
532 |
-
*
|
533 |
* @param null|int $postId (optional)
|
534 |
* @param bool $withCurrencySymbol Include the currency symbol
|
535 |
* @return string Cost of the event.
|
@@ -550,17 +571,31 @@ if ( class_exists( 'TribeEvents' ) ) {
|
|
550 |
|
551 |
if ( $withCurrencySymbol && is_numeric( $cost ) ) {
|
552 |
$currency = tribe_get_event_meta( $postId, '_EventCurrencySymbol', true );
|
|
|
553 |
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
|
558 |
-
$cost = $currency . $cost;
|
559 |
}
|
560 |
|
561 |
return apply_filters( 'tribe_get_cost', $cost, $postId, $withCurrencySymbol );
|
562 |
}
|
563 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
564 |
/**
|
565 |
* Get the minimum cost of all events.
|
566 |
*
|
@@ -1125,4 +1160,21 @@ if ( class_exists( 'TribeEvents' ) ) {
|
|
1125 |
return apply_filters( 'tribe_events_is_view_enabled', $enabled, $view, $enabled_views );
|
1126 |
}
|
1127 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1128 |
}
|
157 |
* Queries the events using WordPress get_posts() by setting the post type and sorting by event date.
|
158 |
*
|
159 |
* @param array $args query vars with added defaults including post_type of events, sorted (orderby) by event date (order) ascending
|
160 |
+
* @param bool $full (optional) if the full query object is required or just an array of event posts
|
161 |
* @return array List of posts.
|
162 |
* @link http://codex.wordpress.org/Template_Tags/get_posts
|
163 |
* @link http://codex.wordpress.org/Function_Reference/get_post
|
165 |
* @see get_posts()
|
166 |
* @since 2.0
|
167 |
*/
|
168 |
+
function tribe_get_events( $args = array(), $full = false ) {
|
169 |
+
return apply_filters( 'tribe_get_events', TribeEventsQuery::getEvents( $args, $full ), $args, $full );
|
170 |
}
|
171 |
|
172 |
/**
|
195 |
*/
|
196 |
function tribe_event_is_multiday( $postId = null ) {
|
197 |
$postId = TribeEvents::postIdHelper( $postId );
|
198 |
+
$start = (array) tribe_get_event_meta( $postId, '_EventStartDate', false );
|
199 |
sort( $start );
|
200 |
$start = strtotime( $start[0] );
|
201 |
$end = strtotime( tribe_get_event_meta( $postId, '_EventEndDate', true ) );
|
202 |
+
$output = ( $end > strtotime( tribe_event_end_of_day( $start[0] ) ) );
|
203 |
return apply_filters( 'tribe_event_is_multiday', $output, $postId, $start, $end );
|
204 |
}
|
205 |
|
406 |
$before = convert_chars( $before );
|
407 |
$before = wpautop( $before );
|
408 |
$before = '<div class="tribe-events-before-html">'. stripslashes( shortcode_unautop( $before ) ) .'</div>';
|
409 |
+
$before = $before.'<span class="tribe-events-ajax-loading"><img class="tribe-events-spinner-medium" src="'.tribe_events_resource_url('images/tribe-loading.gif').'" alt="'.__('Loading Events', 'tribe-events-calendar').'" /></span>';
|
|
|
410 |
|
411 |
echo apply_filters( 'tribe_events_before_html', $before );
|
412 |
}
|
435 |
* @since 3.0
|
436 |
**/
|
437 |
function tribe_events_event_classes() {
|
438 |
+
global $post, $wp_query;
|
439 |
+
|
440 |
+
$classes = array( 'hentry', 'vevent', 'type-tribe_events', 'post-' . $post->ID, 'tribe-clearfix' );
|
441 |
+
$tribe_cat_slugs = tribe_get_event_cat_slugs( $post->ID );
|
442 |
+
|
443 |
+
foreach( $tribe_cat_slugs as $tribe_cat_slug ) {
|
444 |
+
$classes[] = 'tribe-events-category-'. $tribe_cat_slug;
|
445 |
+
}
|
446 |
+
if ( $venue_id = tribe_get_venue_id( $post->ID ) ) {
|
447 |
+
$classes[] = 'tribe-events-venue-'. $venue_id;
|
448 |
+
}
|
449 |
+
if ( $organizer_id = tribe_get_organizer_id( $post->ID ) ) {
|
450 |
+
$classes[] = 'tribe-events-organizer-'. $organizer_id;
|
451 |
+
}
|
452 |
+
// added first class for css
|
453 |
+
if ( ( $wp_query->current_post == 0 ) && !tribe_is_day() ) {
|
454 |
+
$classes[] = 'tribe-events-first';
|
455 |
+
}
|
456 |
+
// added last class for css
|
457 |
+
if ( $wp_query->current_post == $wp_query->post_count-1 ) {
|
458 |
+
$classes[] = 'tribe-events-last';
|
459 |
+
}
|
460 |
+
|
461 |
+
$classes = apply_filters('tribe_events_event_classes', $classes);
|
462 |
+
echo implode(' ', $classes);
|
463 |
}
|
|
|
464 |
/**
|
465 |
* Prints out data attributes used in the template header tags
|
466 |
*
|
551 |
/**
|
552 |
* Get an event's cost
|
553 |
*
|
|
|
554 |
* @param null|int $postId (optional)
|
555 |
* @param bool $withCurrencySymbol Include the currency symbol
|
556 |
* @return string Cost of the event.
|
571 |
|
572 |
if ( $withCurrencySymbol && is_numeric( $cost ) ) {
|
573 |
$currency = tribe_get_event_meta( $postId, '_EventCurrencySymbol', true );
|
574 |
+
if ( ! $currency ) $currency = tribe_get_option( 'defaultCurrencySymbol', '$' );
|
575 |
|
576 |
+
$reverse_position = tribe_get_event_meta( $postId, '_EventCurrencyPosition', true );
|
577 |
+
if ( ! $reverse_position ) $reverse_position = tribe_get_option( 'reverseCurrencyPosition', false );
|
578 |
+
else $reverse_position = ( 'suffix' === $reverse_position );
|
579 |
|
580 |
+
$cost = $reverse_position ? $cost . $currency : $currency . $cost;
|
581 |
}
|
582 |
|
583 |
return apply_filters( 'tribe_get_cost', $cost, $postId, $withCurrencySymbol );
|
584 |
}
|
585 |
|
586 |
+
/**
|
587 |
+
* Returns the event cost complete with currency symbol.
|
588 |
+
*
|
589 |
+
* Essentially an alias of tribe_get_cost(), as if called with the $withCurrencySymbol
|
590 |
+
* argument set to true. Useful for callbacks.
|
591 |
+
*
|
592 |
+
* @param null $postId
|
593 |
+
* @return mixed|void
|
594 |
+
*/
|
595 |
+
function tribe_get_formatted_cost( $postId = null ) {
|
596 |
+
return apply_filters( 'tribe_get_formatted_cost', tribe_get_cost( $postId, true ) );
|
597 |
+
}
|
598 |
+
|
599 |
/**
|
600 |
* Get the minimum cost of all events.
|
601 |
*
|
1160 |
return apply_filters( 'tribe_events_is_view_enabled', $enabled, $view, $enabled_views );
|
1161 |
}
|
1162 |
|
1163 |
+
/**
|
1164 |
+
* Effectively aliases WP's get_the_excerpt() function, except that it additionally strips shortcodes
|
1165 |
+
* during ajax requests.
|
1166 |
+
*
|
1167 |
+
* The reason for this is that shortcodes added by other plugins/themes may not have been registered
|
1168 |
+
* by the time our ajax responses are generated. To avoid leaving unparsed shortcodes in our excerpts
|
1169 |
+
* then we strip out anything that looks like one.
|
1170 |
+
*
|
1171 |
+
* If this is undesirable the use of this function can simply be replaced within template overrides by
|
1172 |
+
* WP's own get_the_excerpt() function.
|
1173 |
+
*
|
1174 |
+
* @return string
|
1175 |
+
*/
|
1176 |
+
function tribe_events_get_the_excerpt() {
|
1177 |
+
if ( ! defined('DOING_AJAX' ) || ! DOING_AJAX ) return get_the_excerpt();
|
1178 |
+
return preg_replace( '#\[.+\]#U', '', get_the_excerpt() );
|
1179 |
+
}
|
1180 |
}
|
public/template-tags/loop.php
CHANGED
@@ -201,7 +201,30 @@ if( class_exists( 'TribeEvents' ) ) {
|
|
201 |
$output = $tribe_ecp->getLink('upcoming');
|
202 |
return apply_filters('tribe_get_upcoming_link', $output);
|
203 |
}
|
204 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
205 |
/**
|
206 |
* Link to Past Events
|
207 |
*
|
201 |
$output = $tribe_ecp->getLink('upcoming');
|
202 |
return apply_filters('tribe_get_upcoming_link', $output);
|
203 |
}
|
204 |
+
|
205 |
+
/**
|
206 |
+
* Used to determine if a link to past events should be displayed.
|
207 |
+
*
|
208 |
+
* @return bool
|
209 |
+
* @since 3.3
|
210 |
+
*/
|
211 |
+
function tribe_has_past_events() {
|
212 |
+
global $wp_query;
|
213 |
+
$past_events = false;
|
214 |
+
|
215 |
+
if ( tribe_is_event_query() ) {
|
216 |
+
// Reform the current event query to look for past events
|
217 |
+
$args = (array) $wp_query->query;
|
218 |
+
$args['eventDisplay'] = 'past';
|
219 |
+
$args['posts_per_page'] = 1;
|
220 |
+
|
221 |
+
$events = tribe_get_events( $args );
|
222 |
+
$past_events = count( $events ) > 0;
|
223 |
+
}
|
224 |
+
|
225 |
+
return apply_filters( 'tribe_has_past_events', $past_events );
|
226 |
+
}
|
227 |
+
|
228 |
/**
|
229 |
* Link to Past Events
|
230 |
*
|
public/template-tags/meta.php
CHANGED
@@ -64,7 +64,7 @@ if ( class_exists('TribeEvents') ) {
|
|
64 |
$group_html = '';
|
65 |
|
66 |
// internal check for hiding items in the meta
|
67 |
-
if(
|
68 |
return false;
|
69 |
}
|
70 |
$meta_pos_int = 0;
|
64 |
$group_html = '';
|
65 |
|
66 |
// internal check for hiding items in the meta
|
67 |
+
if( ! $meta_group['show_on_meta'] ){
|
68 |
return false;
|
69 |
}
|
70 |
$meta_pos_int = 0;
|
public/template-tags/options.php
CHANGED
File without changes
|
readme.txt
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
=== The Events Calendar ===
|
2 |
|
3 |
-
Contributors: ModernTribe,
|
4 |
Tags: events, calendar, event, venue, organizer, dates, date, google maps, conference, workshop, concert, meeting, seminar, summit, class, modern tribe, tribe, widget
|
5 |
Donate link: http://m.tri.be/29
|
6 |
Requires at least: 3.6
|
7 |
-
Tested up to: 3.
|
8 |
-
Stable tag: 3.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -121,9 +121,9 @@ If you're unclear about the installation process or get stuck, check out our <a
|
|
121 |
|
122 |
= Are there any troubleshooting steps you'd suggest I try that might resolve my issue before I post a new thread? =
|
123 |
|
124 |
-
First, make sure that you're running the latest version of The Events Calendar (3.
|
125 |
|
126 |
-
The most common issues we see are either plugin or theme conflicts. You can test if a plugin or theme is conflicting by manually deactivating other plugins until just The Events Calendar 3.
|
127 |
|
128 |
Note that we aren't going to say "tough luck" if you identify a plugin/theme conflict. While we can't guarantee 100% integration with any plugin or theme out there, we will do our best (and reach out the plugin/theme author as needed) to figure out a solution that benefits everyone.
|
129 |
|
@@ -151,9 +151,10 @@ Currently, the following add-ons are available for The Events Calendar/Events Ca
|
|
151 |
* <a href="http://m.tri.be/2g">Community Events</a>, for allowing frontend event submission from your readers.
|
152 |
* <a href="http://m.tri.be/2h">Facebook Events</a>, for importing events directly from an organization or page on Facebook.
|
153 |
* <a href="http://m.tri.be/2f">WooCommerce Tickets</a>, for harnessing the power of WooCommerce to sell event tickets directly on your site without being subject to fees or relying on a third-party service.
|
|
|
|
|
|
|
154 |
* Filter Bar (COMING SOON) for adding advanced frontend filtering capabilities to your events calendar.
|
155 |
-
* EDD Tickets (COMING SOON), for using our ticketing framework to sell tickets on your events through The Events Calendar + Easy Digital Downloads.
|
156 |
-
* WPEC Tickets (COMING SOON), for using WP-eCommerce + The Events Calendar to sell event tickets directly from the frontend of your site.
|
157 |
|
158 |
= I have a feature idea. What's the best way to tell you about it? =
|
159 |
|
@@ -225,8 +226,8 @@ The plugin is produced by <a href="http://m.tri.be/2s">Modern Tribe Inc</a>.
|
|
225 |
* Danish from Anonymous
|
226 |
* Dutch from Erik Massop
|
227 |
* Finnish by Ari-Pekka Koponen
|
228 |
-
* French from
|
229 |
-
* German from
|
230 |
* Greek from Maria Tsilimidou
|
231 |
* Icelandic by Baldvin Berndsen
|
232 |
* Italian from Roberto Scano
|
@@ -239,7 +240,7 @@ The plugin is produced by <a href="http://m.tri.be/2s">Modern Tribe Inc</a>.
|
|
239 |
* Swedish from Ben Andersen
|
240 |
* Turkish by Burak Pehlevan
|
241 |
|
242 |
-
* Previous translators include Mikhail Michouris, Ed Boon, Rick van Dalen, Jacob Roel Meijering, hristian Andersen, Filippo Montanari, David Decker, Kamil Szymanski, "Terje With Lunndal", Sagi Shrieber, Matthew Meyer, Arno Faure, Fanny Heraud, Vincent G from Host1Free, , Petri Kajander, Fran Rosa, Nico (wsMaurik), Panos Efstratiou, Dominique Monhardt, Thomas Butzek, Kjell Vestnes, Luiza Libardi, Diego Meneghetti, and Alexey Fedorov
|
243 |
|
244 |
== Add-Ons ==
|
245 |
|
@@ -259,9 +260,10 @@ Our Premium Plugins:
|
|
259 |
* <a href="http://m.tri.be/2g" target="_blank">The Events Calendar: Community Events</a>
|
260 |
* <a href="http://m.tri.be/2h" target="_blank">The Events Calendar: Facebook Events</a>
|
261 |
* <a href="http://m.tri.be/2i" target="_blank">The Events Calendar: WooCommerce Tickets</a>
|
262 |
-
* The Events Calendar:
|
263 |
-
* The Events Calendar:
|
264 |
-
* The Events Calendar:
|
|
|
265 |
|
266 |
== Versioning ==
|
267 |
|
@@ -289,6 +291,29 @@ At no point during the 3.0 lifecycle will the major version change. But you can
|
|
289 |
|
290 |
3.x is a complete overhaul of the plugin, and as a result we're starting the changelog fresh. For release notes from the 2.x lifecycle, see <a href="http://m.tri.be/k">our 2.x release notes.</a>
|
291 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
292 |
= 3.2 =
|
293 |
|
294 |
* Incorporated the much-fabled CSV importer! Import CSV files directly into your The Events Calendar/Events Calendar PRO site (for an overview on how to use it, read this: http://m.tri.be/9t)
|
@@ -391,14 +416,17 @@ Still not happy? Shoot us an email to pro@tri.be or tweet to @moderntribeinc and
|
|
391 |
|
392 |
IMPORTANT NOTICE: 3.x upgrade is a HUGE upgrade from 2.x versions. If you are upgrading from an older version, please test thoroughly before updating on your live website.
|
393 |
|
394 |
-
= 3.
|
395 |
|
396 |
-
|
|
|
|
|
397 |
|
|
|
398 |
|
399 |
= 3.1 =
|
400 |
|
401 |
-
|
402 |
|
403 |
= 3.0 =
|
404 |
|
1 |
=== The Events Calendar ===
|
2 |
|
3 |
+
Contributors: ModernTribe, roblagatta, MZAWeb, ryancurban, faction23, jazbek, jbrinley, kyleunzicker, leahkoerper, WebsiteBakery, barry.hughes, kellykathryn, neillmcshea, peterchester, reid.peifer, shane.pearlman
|
4 |
Tags: events, calendar, event, venue, organizer, dates, date, google maps, conference, workshop, concert, meeting, seminar, summit, class, modern tribe, tribe, widget
|
5 |
Donate link: http://m.tri.be/29
|
6 |
Requires at least: 3.6
|
7 |
+
Tested up to: 3.8
|
8 |
+
Stable tag: 3.3
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
121 |
|
122 |
= Are there any troubleshooting steps you'd suggest I try that might resolve my issue before I post a new thread? =
|
123 |
|
124 |
+
First, make sure that you're running the latest version of The Events Calendar (3.3 as of this release). If you're running Events Calendar PRO it needs to match the version number of The Events Calendar. And if you've got any other add-ons, make sure those are current / running the latest code as well.
|
125 |
|
126 |
+
The most common issues we see are either plugin or theme conflicts. You can test if a plugin or theme is conflicting by manually deactivating other plugins until just The Events Calendar 3.3 is running on your site. If the issue persists from there, revert to the default Twenty Thirteen theme. If the issue is resolved after deactivating a specific plugin or your theme, you'll know that is the source of the conflict.
|
127 |
|
128 |
Note that we aren't going to say "tough luck" if you identify a plugin/theme conflict. While we can't guarantee 100% integration with any plugin or theme out there, we will do our best (and reach out the plugin/theme author as needed) to figure out a solution that benefits everyone.
|
129 |
|
151 |
* <a href="http://m.tri.be/2g">Community Events</a>, for allowing frontend event submission from your readers.
|
152 |
* <a href="http://m.tri.be/2h">Facebook Events</a>, for importing events directly from an organization or page on Facebook.
|
153 |
* <a href="http://m.tri.be/2f">WooCommerce Tickets</a>, for harnessing the power of WooCommerce to sell event tickets directly on your site without being subject to fees or relying on a third-party service.
|
154 |
+
* <a href="http://m.tri.be/ci">EDD Tickets</a>, for using our ticketing framework to sell tickets on your events through The Events Calendar + Easy Digital Downloads.
|
155 |
+
* <a href="http://m.tri.be/cu">WPEC Tickets</a>, for using WP-eCommerce + The Events Calendar to sell event tickets directly from the frontend of your site.
|
156 |
+
* <a href="http://m.tri.be/dp">Shopp Tickets</a>, for harnessing the power of Shopp to sell event tickets on your WordPress site.
|
157 |
* Filter Bar (COMING SOON) for adding advanced frontend filtering capabilities to your events calendar.
|
|
|
|
|
158 |
|
159 |
= I have a feature idea. What's the best way to tell you about it? =
|
160 |
|
226 |
* Danish from Anonymous
|
227 |
* Dutch from Erik Massop
|
228 |
* Finnish by Ari-Pekka Koponen
|
229 |
+
* French from Bastien BC
|
230 |
+
* German from Oliver Heinrich
|
231 |
* Greek from Maria Tsilimidou
|
232 |
* Icelandic by Baldvin Berndsen
|
233 |
* Italian from Roberto Scano
|
240 |
* Swedish from Ben Andersen
|
241 |
* Turkish by Burak Pehlevan
|
242 |
|
243 |
+
* Previous translators include Mikhail Michouris, Ed Boon, Rick van Dalen, Jacob Roel Meijering, hristian Andersen, Michael Sebel, Filippo Montanari, David Decker, Kamil Szymanski, "Terje With Lunndal", Sagi Shrieber, Matthew Meyer, Arno Faure, Fanny Heraud, Vincent G from Host1Free, , Petri Kajander, Fran Rosa, Nico (wsMaurik), Panos Efstratiou, Dominique Monhardt, Thomas Butzek, Kjell Vestnes, Luiza Libardi, Diego Meneghetti, Beno Burgener and Alexey Fedorov
|
244 |
|
245 |
== Add-Ons ==
|
246 |
|
260 |
* <a href="http://m.tri.be/2g" target="_blank">The Events Calendar: Community Events</a>
|
261 |
* <a href="http://m.tri.be/2h" target="_blank">The Events Calendar: Facebook Events</a>
|
262 |
* <a href="http://m.tri.be/2i" target="_blank">The Events Calendar: WooCommerce Tickets</a>
|
263 |
+
* <a href="http://m.tri.be/ci" target="_blank">The Events Calendar: EDD Tickets Tickets</a>
|
264 |
+
* <a href="http://m.tri.be/cu" target="_blank">The Events Calendar: WPEC Tickets</a>
|
265 |
+
* <a href="http://m.tri.be/dp" target="_blank">The Events Calendar: Shopp Tickets</a>
|
266 |
+
* The Events Calendar: Filter Bar (coming early 2014)
|
267 |
|
268 |
== Versioning ==
|
269 |
|
291 |
|
292 |
3.x is a complete overhaul of the plugin, and as a result we're starting the changelog fresh. For release notes from the 2.x lifecycle, see <a href="http://m.tri.be/k">our 2.x release notes.</a>
|
293 |
|
294 |
+
= 3.3 =
|
295 |
+
|
296 |
+
* Improved support for international date formats (big props to jeroenjoosen on the forums for the original report on this!)
|
297 |
+
* Localization improvements for displaying the event cost field (thanks to mastafu on the forums for the heads up!)
|
298 |
+
* List view will now link to a page of previous events if there are indeed previous events to show (props to oceanfilm on the forums for pointing this out!)
|
299 |
+
* Fixed an issue with empty category views that could result in a fatal error (thanks to mastafu on the forums for this one, too!)
|
300 |
+
* Fixed an issue where titles for single events were empty in some installations
|
301 |
+
* Fixes for the tribe_get_the_day_link_date() function (thanks to @nathanielks on Twitter for catching + patching this one for us!)
|
302 |
+
* Fixed admin menu highlighting when editing tags for events
|
303 |
+
* Google maps will now be included properly on pages with https URLs (thanks to bmitchellini on the forums for the first report here!)
|
304 |
+
* Tag queries that don't specify a post type will no longer be modified to be an events query (thanks to Jason on the forums for reporting this first!)
|
305 |
+
* Fixed an issue that caused some events not to show on month view when viewing a category (thanks to yorkshiretots on the forum for catching this!)
|
306 |
+
* All day events are now saved with a start/end time that is determined by the end of day cutoff. This fix will not modify previously created all day events (thanks to wallyglenn on the forums for spotting this!)
|
307 |
+
* Fixed a lot of strings that were not getting included in our language files and updated our POT file
|
308 |
+
* Removed an invalid iCal link from the markup to prevent it being indexed by search engines (Thanks to Kevin Lisota for the original report!)
|
309 |
+
* Fixed an XSS vulnerability in the Tribe Bar (Mega props to Yasser Khan and Chuck Tsang for the research and responsible disclosure!)
|
310 |
+
* Implemented performance improvements in some queries for large amounts of data
|
311 |
+
* Fixed a bug that was making our date pickers ignore the start-of-the-week setting in WordPress core (thanks to Katarina for the original report!)
|
312 |
+
* Added CSS classes to the list widget events (thanks to Andy Fragen for requesting these!)
|
313 |
+
* Fixed some small CSS bugs
|
314 |
+
* Incorporated updated German translation files, courtesy of Oliver Heinrich
|
315 |
+
* Incorporated updated French translation files, courtesy of Bastien BC
|
316 |
+
|
317 |
= 3.2 =
|
318 |
|
319 |
* Incorporated the much-fabled CSV importer! Import CSV files directly into your The Events Calendar/Events Calendar PRO site (for an overview on how to use it, read this: http://m.tri.be/9t)
|
416 |
|
417 |
IMPORTANT NOTICE: 3.x upgrade is a HUGE upgrade from 2.x versions. If you are upgrading from an older version, please test thoroughly before updating on your live website.
|
418 |
|
419 |
+
= 3.3 =
|
420 |
|
421 |
+
Please see the changelog for the complete list of changes in this release. Remember to always make a backup of your database and files before updating!
|
422 |
+
|
423 |
+
= 3.2 =
|
424 |
|
425 |
+
Please see the changelog for the complete list of changes in this release. Remember to always make a backup of your database and files before updating!
|
426 |
|
427 |
= 3.1 =
|
428 |
|
429 |
+
Please see the changelog for the complete list of changes in this release. Remember to always make a backup of your database and files before updating!
|
430 |
|
431 |
= 3.0 =
|
432 |
|
resources/app-shop.js
CHANGED
File without changes
|
resources/debugger.css
CHANGED
File without changes
|
resources/events-admin.css
CHANGED
@@ -135,6 +135,8 @@ td.tribe_message {padding-bottom: 10px !important;}
|
|
135 |
/* Modern Tribe box */
|
136 |
#modern-tribe-info {margin: 20px 0; background-color: #f9f9f9; padding: 8px 20px 12px; border: 1px solid #ccc; border-radius: 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px; -khtml-border-radius: 4px; -o-border-radius: 4px;}
|
137 |
#modern-tribe-info img {margin: 10px 0; width: 250px; height: 18px;}
|
|
|
|
|
138 |
|
139 |
/* sizes */
|
140 |
.tribe-field-textarea.tribe-size-small textarea {width: 180px; height: 60px;}
|
135 |
/* Modern Tribe box */
|
136 |
#modern-tribe-info {margin: 20px 0; background-color: #f9f9f9; padding: 8px 20px 12px; border: 1px solid #ccc; border-radius: 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px; -khtml-border-radius: 4px; -o-border-radius: 4px;}
|
137 |
#modern-tribe-info img {margin: 10px 0; width: 250px; height: 18px;}
|
138 |
+
#modern-tribe-info ul {margin-left: 20px; list-style: disc;}
|
139 |
+
#modern-tribe-info ul ul {list-style: circle;}
|
140 |
|
141 |
/* sizes */
|
142 |
.tribe-field-textarea.tribe-size-small textarea {width: 180px; height: 60px;}
|
resources/events-admin.js
CHANGED
@@ -13,13 +13,20 @@ jQuery(document).ready(function($) {
|
|
13 |
//not done by default on front end
|
14 |
$('.hide-if-js').hide();
|
15 |
|
16 |
-
if(typeof(TEC) != 'undefined'){
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
var datepickerOpts = {
|
18 |
dateFormat: 'yy-mm-dd',
|
19 |
showAnim: 'fadeIn',
|
20 |
changeMonth: true,
|
21 |
changeYear: true,
|
22 |
numberOfMonths: 3,
|
|
|
23 |
showButtonPanel: true,
|
24 |
onSelect: function(selectedDate) {
|
25 |
var option = this.id == "EventStartDate" ? "minDate" : "maxDate";
|
13 |
//not done by default on front end
|
14 |
$('.hide-if-js').hide();
|
15 |
|
16 |
+
if(typeof(TEC) != 'undefined'){
|
17 |
+
|
18 |
+
var startofweek = 0;
|
19 |
+
|
20 |
+
if($('#tribe-event-datepickers').length)
|
21 |
+
startofweek = $('#tribe-event-datepickers').data('startofweek');
|
22 |
+
|
23 |
var datepickerOpts = {
|
24 |
dateFormat: 'yy-mm-dd',
|
25 |
showAnim: 'fadeIn',
|
26 |
changeMonth: true,
|
27 |
changeYear: true,
|
28 |
numberOfMonths: 3,
|
29 |
+
firstDay: startofweek,
|
30 |
showButtonPanel: true,
|
31 |
onSelect: function(selectedDate) {
|
32 |
var option = this.id == "EventStartDate" ? "minDate" : "maxDate";
|
resources/events-admin.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.events-cal #icon-edit{background:url(images/events-screen-icon.png) no-repeat 6px 3px;-webkit-background-size:23px 25px;background-size:23px 25px}#adminmenu #menu-posts-tribe_events div.wp-menu-image{background:url(images/menu.png) no-repeat 0 -32px;-webkit-background-size:29px 64px;background-size:29px 64px}#adminmenu #menu-posts-tribe_events:hover div.wp-menu-image,#adminmenu #menu-posts-tribe_events.wp-has-current-submenu div.wp-menu-image{background-position:0 0}.invalid input{border:2px solid red !important}.valid input{border:1px solid green}.clearfix{zoom:1}.placeholder{cursor:text;padding:4px 4px 4px 4px;color:#999}input:placeholder,textarea:placeholder{color:#999}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999}.events-cal .tablenav select[name=m],.events-cal #post-query-submit{display:none}.fixed .column-start-date,.fixed .column-end-date,.fixed .column-events-cats{width:14%}#additional-field-table input,#additional-field-table select,#additional-field-table textarea{width:200px}#additional-field-table tbody tr{height:72px}.view-calendar-link{display:inline-block;font-weight:normal;padding:0;height:14.5px}.view-calendar-link-div{display:inline-block;position:absolute;left:200px;margin-top:18px}.notice{background-color:#ffffe0;border:1px solid #e6db55;margin:5px 0 15px}.bubble{border-color:#dfdfdf;border-width:1px;border-style:solid;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;padding:10px;border-style:solid;border-spacing:0;background-color:#f9f9f9}.eventForm{margin-top:-20px}.eventForm td{padding:0 6px 10px 0;font-size:12px;vertical-align:middle}.eventForm #event-meta td{vertical-align:top}.eventForm #event-meta td div{margin-bottom:10px}.eventForm #event-meta td div:last-child{margin-bottom:20px}.eventForm select,.eventForm input{font-size:11px}.eventForm h4{font-size:1.2em;margin:1em 0 1em}.eventForm h4.event-time{margin-top:0}.tribe-community-event-info{margin:10px;width:100%}.eventtable,#EventInfo{margin:0;padding-top:0;width:100%}#event_tickets,.eventtable.ticket_list.eventForm{table-layout:fixed}#ticket_start_date,#ticket_end_date{width:100px}.form-table form input{border:0}#submitLabel{display:block}#submitLabel input{display:block;padding:0}#EventBriteDetailDiv h4,.tribe-community-event-info h4,.eventForm .tribe_sectionheader h4{text-transform:uppercase;border-bottom:1px solid #e5e5e5;padding-bottom:6px}.eventForm .tribe_sectionheader{padding-bottom:5px !important}td.tribe_message{padding-bottom:10px !important}#tribe_thanks{float:left;width:200px;margin:5px 0 0 0}.tribe_brand{font-weight:normal;margin:8px 0;font-family:Georgia !important;font-size:17px !important}.eventForm p{margin:0 0 10px 0 !important}.tribe-events-error{display:none}.tribe-events-multi-event-day{color:#0f81bb}.ui-front{z-index:1000000}.events-cal .ui-widget-overlay.ui-front{z-index:90}.tribe-community-event-info small,#EventBriteDetailDiv small{color:#a3a3a3;font-size:10px}#eventBriteTicketing,#mainDonateRow{background:url(images/bg_fade.png) repeat-x top left;background-color:#fff;padding:10px 15px;border:1px solid #e2e2e2;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;-moz-border-radius-topleft:0;-moz-border-radius-topright:0;-webkit-border-top-left-radius:0;-webkit-border-top-right-radius:0;border-radius:3px;margin:-11px 6px 0}#eventBriteTicketing h2{background:url(images/eb_press_little.gif) no-repeat top right;height:80px;margin:0}.tribe-community-event-info,table.eventForm{width:100%}#custom-recurrence-weeks label{width:45px;display:block;float:left;margin-bottom:3px}#custom-recurrence-frequency input{width:30px}#custom-recurrence-years label{width:50px;display:block;float:left;margin-bottom:3px}#recurrence-changed-row{color:red;display:none}#rec-end-error{color:red}#rec-days-error{color:red}.rec-error{display:none}#recurrence-pattern-description{font-style:italic}.recurrence-pattern-description-row{display:none}#tribe-upgrade{margin:20px 0 30px;border:1px solid #ccc;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;padding:0 20px 20px;background:#f6f6f6}#tribe-upgrade .message{border-style:solid;border-width:1px;padding:6px 12px;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-color:#ffffe0;border-color:#e6db55}.chosen,.tribe-chosen,.chzn-container{margin-right:10px !important}.venue-dropdown,.organizer-dropdown,.events-dropdown,#eventsDefaultState,#defaultCountry,#StateProvinceSelect{width:220px !important}.multi-day-cutoff-dropdown{width:100px !important}.widget-liquid-right .widget,.inactive-sidebar .widget,.widget-liquid-right .sidebar-description{overflow:visible !important}.tribe-settings-form{max-width:1000px}.tribe-settings-form fieldset{padding:10px 0;display:inline-block;clear:both}.tribe-settings-form legend{width:220px;margin-right:20px;float:left;font-weight:bold}.tribe-settings-form fieldset.tribe-field-license_key legend{width:auto}.tribe-settings-form .tribe-field-wrap{float:left;max-width:500px}.tribe-settings-form .tribe-field-radio label,.tribe-settings-form .tribe-field-checkbox_list label{display:block;margin:5px 0}.tribe-settings-form .tribe-field-radio label input,.tribe-settings-form .tribe-field-checkbox_list label input{margin-right:5px}.tribe-settings-form .tribe-settings-form-wrap fieldset,.tribe-settings-form .tribe-settings-form-wrap .description,.tribe-settings-form fieldset[id^="tribe-field-geoloc_"]{padding-left:12px}.tribe-settings-form .tribe-settings-form-wrap fieldset .description{padding-left:0;margin-left:0;max-width:450px}.tribe-settings-form .tribe-settings-form-wrap h3{margin-bottom:10px;background-color:#f9f9f9;padding:6px 0 6px 12px}.tribe-settings-form .tribe-settings-form-wrap h3 ~ h3{margin-top:2.25em}.tribe-settings-form .tribe-settings-form-wrap h3+p{margin:0 0 10px;padding-left:12px}.tribe_settings .tribe-field-indent{margin-left:245px}.tribe_settings #pu_dashboard_message{display:none}.tribe_settings .tribe-errors-list{margin-left:15px}.tribe_settings .expiring-license{color:red}.tribe_settings .tribe-error{border:1px solid #F00}.tribe_settings .tribe-field-description{position:relative;top:-12px;margin-bottom:0}.tribe_settings #ical-link{top:-14px}.tribe-settings-form #tribe-field-stylesheetOption label{margin-left:20px}.tribe-settings-form #tribe-field-stylesheetOption input{margin-left:-20px;margin-right:8px}.tribe-settings-form #tribe-field-stylesheetOption p.description{color:#999}#modern-tribe-info{margin:20px 0;background-color:#f9f9f9;padding:8px 20px 12px;border:1px solid #ccc;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px;-khtml-border-radius:4px;-o-border-radius:4px}#modern-tribe-info img{margin:10px 0;width:250px;height:18px}.tribe-field-textarea.tribe-size-small textarea{width:180px;height:60px}.tribe-field-textarea.tribe-size-medium textarea{width:300px;height:80px}.tribe-field-textarea.tribe-size-large textarea{width:450px;height:120px}.tribe-field-text.tribe-size-small input,.tribe-field-license_key.tribe-size-small input{width:50px}.tribe-field-text.tribe-size-medium input,.tribe-field-license_key.tribe-size-medium input{width:225px}.tribe-field-text.tribe-size-large input,.tribe-field-license_key.tribe-size-large input{width:450px}.tribe-field-dropdown.tribe-size-small select{width:100px}.tribe-field-dropdown.tribe-size-medium select{width:300px}.tribe-field-dropdown.tribe-size-large select{width:450px}.tribe-field-dropdown_chosen.tribe-size-small select{width:100px}.tribe-field-dropdown_chosen.tribe-size-medium select{width:200px}.tribe-field-dropdown_chosen.tribe-size-large select{width:300px}.ajax-loading-license,.valid-key,.invalid-key{display:none;margin:0 5px}.ajax-loading-license{position:relative;top:5px}.valid-key{color:green}.invalid-key{color:red}#additional-field-table{margin-bottom:20px}#tribe-help-general,#tribe-help-sidebar{float:left}#tribe-help-general{width:70%}#tribe-help-sidebar{width:25%;max-width:200px;margin:20px 0 0 5%}#tribe-help-plugin-info{border:1px solid #CCC;padding:0 12px}.tribe-admin-box-left{float:left;width:20%;margin:20px 0;background-color:#f9f9f9;padding:0 20px 15px;border:1px solid #ccc;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px;-khtml-border-radius:4px;-o-border-radius:4px}.tribe-admin-box-right{float:right;width:68%;margin:20px 0;background-color:#f9f9f9;padding:0 20px 15px;border:1px solid #ccc;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px;-khtml-border-radius:4px;-o-border-radius:4px}.ajax-loader{float:right;margin:10px}.tribe-arrangeable-item{border:1px solid lightGrey;-moz-border-radius:6px;border-radius:6px}.tribe-arrangeable-item .ui-state-default{border:0}.tribe-arrangeable-item-top{padding:6px}.tribe-arrangeable-item-top:hover{cursor:move}.tribe-arrangeable-action{float:right}.tribe-arrangeable-child{display:none;padding:25px;border-top:1px solid lightGrey;background-color:#f9f9f9}.tribe-arrangeable-child label{margin:0 0 7px 0;display:block}.tribe_events_active_filter_type_options{margin:10px 0}.tribe_events_active_filter_type_options label{margin:7px 0}.tribe-settings-form .tribe-settings-form-wrap fieldset .tribe-style-selection{margin-bottom:18px}.OrganizerInfo td small{display:block;max-width:250px;margin:0}.OrganizerInfo .organizer-email{vertical-align:top}.tribe-settings-form-wrap p,.tribe-settings-form-wrap ul{margin-left:15px}.tribe-settings-form-wrap ul{list-style-type:square;margin-left:35px}.ui-widget-overlay{background:#666 url(images/ui-bg_diagonals-thick_20_666666_40x40.png) 50% 50% repeat;opacity:.50;filter:Alpha(Opacity=50)}.ui-widget-shadow{margin:-5px 0 0 -5px;padding:5px;background:#000 url(images/ui-bg_flat_10_000000_40x100.png) 50% 50% repeat-x;opacity:.20;filter:Alpha(Opacity=20);-moz-border-radius:5px;-webkit-border-radius:5px}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;z-index:99999;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-dialog{position:relative;padding:.2em;width:375px}.ui-dialog .ui-dialog-titlebar{padding:.5em .3em .3em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0 .2em}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:19px;margin:-10px 0 0 0;padding:1px;height:18px}.ui-dialog .ui-dialog-titlebar-close span{display:block;margin-left:-8px;margin-top:-8px}.ui-dialog .ui-dialog-titlebar-close:hover,.ui-dialog .ui-dialog-titlebar-close:focus{padding:0}.ui-dialog .ui-dialog-content{border:0;padding:.5em 1em;background:0;overflow:auto;zoom:1}.ui-dialog .ui-dialog-buttonpane{text-align:right;border-width:1px 0 0 0;background-image:none;margin:.5em 0 0 0;padding:.3em 1em .5em !important}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em !important;cursor:pointer;padding:.2em .6em .3em;line-height:1.4em;width:auto;overflow:visible;text-shadow:none}.ui-dialog .ui-resizable-se{width:14px;height:14px;right:3px;bottom:3px}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:none !important;text-align:center}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button .ui-button-text{display:block;line-height:1.4}.ui-datepicker{font-size:8pt}#ui-datepicker-div{display:none}#tribe-loading{display:none;position:absolute;width:100%;height:100%;left:0;top:0;background:#fff;background:rgba(255,255,255,0.8);z-index:4;webkit-transition:all 1s linear;-moz-transition:all 1s linear;-o-transition:all 1s linear;-ms-transition:all 1s linear;transition:all 1s linear}#tribe-loading span{position:absolute;width:32px;height:32px;left:50%;top:50%;margin:-16px 0 0 -16px;background:url(images/tribe-loading.gif) 0 0 no-repeat;-webkit-background-size:32px 32px;background-size:32px 32px}@media only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2){.events-cal #icon-edit{background-image:url(images/events-screen-icon@2x.png)}#adminmenu #menu-posts-tribe_events div.wp-menu-image{background-image:url(images/menu@2x.png)}#tribe-loading span{background-image:url(images/tribe-loading@2x.gif)}}
|
1 |
+
.events-cal #icon-edit{background:url(images/events-screen-icon.png) no-repeat 6px 3px;-webkit-background-size:23px 25px;background-size:23px 25px}#adminmenu #menu-posts-tribe_events div.wp-menu-image{background:url(images/menu.png) no-repeat 0 -32px;-webkit-background-size:29px 64px;background-size:29px 64px}#adminmenu #menu-posts-tribe_events:hover div.wp-menu-image,#adminmenu #menu-posts-tribe_events.wp-has-current-submenu div.wp-menu-image{background-position:0 0}.invalid input{border:2px solid red !important}.valid input{border:1px solid green}.clearfix{zoom:1}.placeholder{cursor:text;padding:4px 4px 4px 4px;color:#999}input:placeholder,textarea:placeholder{color:#999}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999}.events-cal .tablenav select[name=m],.events-cal #post-query-submit{display:none}.fixed .column-start-date,.fixed .column-end-date,.fixed .column-events-cats{width:14%}#additional-field-table input,#additional-field-table select,#additional-field-table textarea{width:200px}#additional-field-table tbody tr{height:72px}.view-calendar-link{display:inline-block;font-weight:normal;padding:0;height:14.5px}.view-calendar-link-div{display:inline-block;position:absolute;left:200px;margin-top:18px}.notice{background-color:#ffffe0;border:1px solid #e6db55;margin:5px 0 15px}.bubble{border-color:#dfdfdf;border-width:1px;border-style:solid;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;padding:10px;border-style:solid;border-spacing:0;background-color:#f9f9f9}.eventForm{margin-top:-20px}.eventForm td{padding:0 6px 10px 0;font-size:12px;vertical-align:middle}.eventForm #event-meta td{vertical-align:top}.eventForm #event-meta td div{margin-bottom:10px}.eventForm #event-meta td div:last-child{margin-bottom:20px}.eventForm select,.eventForm input{font-size:11px}.eventForm h4{font-size:1.2em;margin:1em 0 1em}.eventForm h4.event-time{margin-top:0}.tribe-community-event-info{margin:10px;width:100%}.eventtable,#EventInfo{margin:0;padding-top:0;width:100%}#event_tickets,.eventtable.ticket_list.eventForm{table-layout:fixed}#ticket_start_date,#ticket_end_date{width:100px}.form-table form input{border:0}#submitLabel{display:block}#submitLabel input{display:block;padding:0}#EventBriteDetailDiv h4,.tribe-community-event-info h4,.eventForm .tribe_sectionheader h4{text-transform:uppercase;border-bottom:1px solid #e5e5e5;padding-bottom:6px}.eventForm .tribe_sectionheader{padding-bottom:5px !important}td.tribe_message{padding-bottom:10px !important}#tribe_thanks{float:left;width:200px;margin:5px 0 0 0}.tribe_brand{font-weight:normal;margin:8px 0;font-family:Georgia !important;font-size:17px !important}.eventForm p{margin:0 0 10px 0 !important}.tribe-events-error{display:none}.tribe-events-multi-event-day{color:#0f81bb}.ui-front{z-index:1000000}.events-cal .ui-widget-overlay.ui-front{z-index:90}.tribe-community-event-info small,#EventBriteDetailDiv small{color:#a3a3a3;font-size:10px}#eventBriteTicketing,#mainDonateRow{background:url(images/bg_fade.png) repeat-x top left;background-color:#fff;padding:10px 15px;border:1px solid #e2e2e2;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;-moz-border-radius-topleft:0;-moz-border-radius-topright:0;-webkit-border-top-left-radius:0;-webkit-border-top-right-radius:0;border-radius:3px;margin:-11px 6px 0}#eventBriteTicketing h2{background:url(images/eb_press_little.gif) no-repeat top right;height:80px;margin:0}.tribe-community-event-info,table.eventForm{width:100%}#custom-recurrence-weeks label{width:45px;display:block;float:left;margin-bottom:3px}#custom-recurrence-frequency input{width:30px}#custom-recurrence-years label{width:50px;display:block;float:left;margin-bottom:3px}#recurrence-changed-row{color:red;display:none}#rec-end-error{color:red}#rec-days-error{color:red}.rec-error{display:none}#recurrence-pattern-description{font-style:italic}.recurrence-pattern-description-row{display:none}#tribe-upgrade{margin:20px 0 30px;border:1px solid #ccc;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;padding:0 20px 20px;background:#f6f6f6}#tribe-upgrade .message{border-style:solid;border-width:1px;padding:6px 12px;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-color:#ffffe0;border-color:#e6db55}.chosen,.tribe-chosen,.chzn-container{margin-right:10px !important}.venue-dropdown,.organizer-dropdown,.events-dropdown,#eventsDefaultState,#defaultCountry,#StateProvinceSelect{width:220px !important}.multi-day-cutoff-dropdown{width:100px !important}.widget-liquid-right .widget,.inactive-sidebar .widget,.widget-liquid-right .sidebar-description{overflow:visible !important}.tribe-settings-form{max-width:1000px}.tribe-settings-form fieldset{padding:10px 0;display:inline-block;clear:both}.tribe-settings-form legend{width:220px;margin-right:20px;float:left;font-weight:bold}.tribe-settings-form fieldset.tribe-field-license_key legend{width:auto}.tribe-settings-form .tribe-field-wrap{float:left;max-width:500px}.tribe-settings-form .tribe-field-radio label,.tribe-settings-form .tribe-field-checkbox_list label{display:block;margin:5px 0}.tribe-settings-form .tribe-field-radio label input,.tribe-settings-form .tribe-field-checkbox_list label input{margin-right:5px}.tribe-settings-form .tribe-settings-form-wrap fieldset,.tribe-settings-form .tribe-settings-form-wrap .description,.tribe-settings-form fieldset[id^="tribe-field-geoloc_"]{padding-left:12px}.tribe-settings-form .tribe-settings-form-wrap fieldset .description{padding-left:0;margin-left:0;max-width:450px}.tribe-settings-form .tribe-settings-form-wrap h3{margin-bottom:10px;background-color:#f9f9f9;padding:6px 0 6px 12px}.tribe-settings-form .tribe-settings-form-wrap h3 ~ h3{margin-top:2.25em}.tribe-settings-form .tribe-settings-form-wrap h3+p{margin:0 0 10px;padding-left:12px}.tribe_settings .tribe-field-indent{margin-left:245px}.tribe_settings #pu_dashboard_message{display:none}.tribe_settings .tribe-errors-list{margin-left:15px}.tribe_settings .expiring-license{color:red}.tribe_settings .tribe-error{border:1px solid #F00}.tribe_settings .tribe-field-description{position:relative;top:-12px;margin-bottom:0}.tribe_settings #ical-link{top:-14px}.tribe-settings-form #tribe-field-stylesheetOption label{margin-left:20px}.tribe-settings-form #tribe-field-stylesheetOption input{margin-left:-20px;margin-right:8px}.tribe-settings-form #tribe-field-stylesheetOption p.description{color:#999}#modern-tribe-info{margin:20px 0;background-color:#f9f9f9;padding:8px 20px 12px;border:1px solid #ccc;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px;-khtml-border-radius:4px;-o-border-radius:4px}#modern-tribe-info img{margin:10px 0;width:250px;height:18px}#modern-tribe-info ul{margin-left:20px;list-style:disc}#modern-tribe-info ul ul{list-style:circle}.tribe-field-textarea.tribe-size-small textarea{width:180px;height:60px}.tribe-field-textarea.tribe-size-medium textarea{width:300px;height:80px}.tribe-field-textarea.tribe-size-large textarea{width:450px;height:120px}.tribe-field-text.tribe-size-small input,.tribe-field-license_key.tribe-size-small input{width:50px}.tribe-field-text.tribe-size-medium input,.tribe-field-license_key.tribe-size-medium input{width:225px}.tribe-field-text.tribe-size-large input,.tribe-field-license_key.tribe-size-large input{width:450px}.tribe-field-dropdown.tribe-size-small select{width:100px}.tribe-field-dropdown.tribe-size-medium select{width:300px}.tribe-field-dropdown.tribe-size-large select{width:450px}.tribe-field-dropdown_chosen.tribe-size-small select{width:100px}.tribe-field-dropdown_chosen.tribe-size-medium select{width:200px}.tribe-field-dropdown_chosen.tribe-size-large select{width:300px}.ajax-loading-license,.valid-key,.invalid-key{display:none;margin:0 5px}.ajax-loading-license{position:relative;top:5px}.valid-key{color:green}.invalid-key{color:red}#additional-field-table{margin-bottom:20px}#tribe-help-general,#tribe-help-sidebar{float:left}#tribe-help-general{width:70%}#tribe-help-sidebar{width:25%;max-width:200px;margin:20px 0 0 5%}#tribe-help-plugin-info{border:1px solid #CCC;padding:0 12px}.tribe-admin-box-left{float:left;width:20%;margin:20px 0;background-color:#f9f9f9;padding:0 20px 15px;border:1px solid #ccc;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px;-khtml-border-radius:4px;-o-border-radius:4px}.tribe-admin-box-right{float:right;width:68%;margin:20px 0;background-color:#f9f9f9;padding:0 20px 15px;border:1px solid #ccc;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px;-khtml-border-radius:4px;-o-border-radius:4px}.ajax-loader{float:right;margin:10px}.tribe-arrangeable-item{border:1px solid lightGrey;-moz-border-radius:6px;border-radius:6px}.tribe-arrangeable-item .ui-state-default{border:0}.tribe-arrangeable-item-top{padding:6px}.tribe-arrangeable-item-top:hover{cursor:move}.tribe-arrangeable-action{float:right}.tribe-arrangeable-child{display:none;padding:25px;border-top:1px solid lightGrey;background-color:#f9f9f9}.tribe-arrangeable-child label{margin:0 0 7px 0;display:block}.tribe_events_active_filter_type_options{margin:10px 0}.tribe_events_active_filter_type_options label{margin:7px 0}.tribe-settings-form .tribe-settings-form-wrap fieldset .tribe-style-selection{margin-bottom:18px}.OrganizerInfo td small{display:block;max-width:250px;margin:0}.OrganizerInfo .organizer-email{vertical-align:top}.tribe-settings-form-wrap p,.tribe-settings-form-wrap ul{margin-left:15px}.tribe-settings-form-wrap ul{list-style-type:square;margin-left:35px}.ui-widget-overlay{background:#666 url(images/ui-bg_diagonals-thick_20_666666_40x40.png) 50% 50% repeat;opacity:.50;filter:Alpha(Opacity=50)}.ui-widget-shadow{margin:-5px 0 0 -5px;padding:5px;background:#000 url(images/ui-bg_flat_10_000000_40x100.png) 50% 50% repeat-x;opacity:.20;filter:Alpha(Opacity=20);-moz-border-radius:5px;-webkit-border-radius:5px}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;z-index:99999;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-dialog{position:relative;padding:.2em;width:375px}.ui-dialog .ui-dialog-titlebar{padding:.5em .3em .3em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0 .2em}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:19px;margin:-10px 0 0 0;padding:1px;height:18px}.ui-dialog .ui-dialog-titlebar-close span{display:block;margin-left:-8px;margin-top:-8px}.ui-dialog .ui-dialog-titlebar-close:hover,.ui-dialog .ui-dialog-titlebar-close:focus{padding:0}.ui-dialog .ui-dialog-content{border:0;padding:.5em 1em;background:0;overflow:auto;zoom:1}.ui-dialog .ui-dialog-buttonpane{text-align:right;border-width:1px 0 0 0;background-image:none;margin:.5em 0 0 0;padding:.3em 1em .5em !important}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em !important;cursor:pointer;padding:.2em .6em .3em;line-height:1.4em;width:auto;overflow:visible;text-shadow:none}.ui-dialog .ui-resizable-se{width:14px;height:14px;right:3px;bottom:3px}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:none !important;text-align:center}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button .ui-button-text{display:block;line-height:1.4}.ui-datepicker{font-size:8pt}#ui-datepicker-div{display:none}#tribe-loading{display:none;position:absolute;width:100%;height:100%;left:0;top:0;background:#fff;background:rgba(255,255,255,0.8);z-index:4;webkit-transition:all 1s linear;-moz-transition:all 1s linear;-o-transition:all 1s linear;-ms-transition:all 1s linear;transition:all 1s linear}#tribe-loading span{position:absolute;width:32px;height:32px;left:50%;top:50%;margin:-16px 0 0 -16px;background:url(images/tribe-loading.gif) 0 0 no-repeat;-webkit-background-size:32px 32px;background-size:32px 32px}@media only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2){.events-cal #icon-edit{background-image:url(images/events-screen-icon@2x.png)}#adminmenu #menu-posts-tribe_events div.wp-menu-image{background-image:url(images/menu@2x.png)}#tribe-loading span{background-image:url(images/tribe-loading@2x.gif)}}
|
resources/events-admin.min.js
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
jQuery(document).ready(function(a){function g(b){"US"==b||"United States"==b?(a("#StateProvinceSelect_chzn").show(),a("#StateProvinceText").hide()):(""!=b?a("#StateProvinceText").show():a("#StateProvinceText").hide(),a("#StateProvinceSelect_chzn").hide())}function f(){return"true"==a('[name="is_recurring"]').val()&&!a('[name="recurrence_action"]').val()&&!a('[name="recurrence_action"]').val()}a(".chosen, .tribe-field-dropdown_chosen select").chosen();a(".select2, .tribe-field-dropdown_select2 select").select2({width:"250px"});
|
2 |
-
if(a('select[name="tribeEventsTemplate"]').length&&""===a('select[name="tribeEventsTemplate"]').val()){$templates=a('select[name="tribeEventsTemplate"]');var d=$templates.find("option:selected").text();$templates.prev(".select2-container").children().children("span").text(d)}a(".hide-if-js").hide();if("undefined"!=typeof TEC){d={dateFormat:"yy-mm-dd",showAnim:"fadeIn",changeMonth:!0,changeYear:!0,numberOfMonths:3,
|
3 |
-
d=a(this).data("datepicker");b=a.datepicker.parseDate(d.settings.dateFormat||a.datepicker._defaults.dateFormat,b,d.settings);q.not(this).not("#recurrence_end").datepicker("option",c,b)}};a.extend(d,TEC);var q=a("#EventStartDate, #EventEndDate, .datepicker").datepicker(d),n=function(){!0===a("#allDayCheckbox").prop("checked")?(a(".timeofdayoptions").hide(),a("#EventTimeFormatDiv").hide()):(a(".timeofdayoptions").show(),
|
4 |
-
var p=[29,31,28,31,30,31,30,31,31,30,31,30,31],r=[a("#28StartDays"),a("#29StartDays"),a("#30StartDays"),a("#31StartDays")],s=[a("#28EndDays"),a("#29EndDays"),a("#30EndDays"),a("#31EndDays")];a("select[name='EventStartMonth'], select[name='EventEndMonth']").change(function(){var b=a(this),c=b.attr("name"),c="EventStartMonth"==c?"Start":"End",b=b.attr("value");"0"==b.charAt(0)&&(b=b.replace("0",""));var d=a("select[name='Event"+
|
5 |
-
c+"Day']");a(".event"+c+"DateField").remove();"Start"==c?(c=r[p[b]-28],c.val(d.val()),a("select[name='EventStartMonth']").after(c)):(c=s[p[b]-28],c.val(d.val()),a('select[name="EventEndMonth"]').after(c))});a("select[name='EventStartMonth'], select[name='EventEndMonth']").change();a("select[name='EventStartYear']").change(function(){a("select[name='EventStartMonth']").change()});a("select[name='EventEndYear']").change(function(){a("select[name='EventEndMonth']").change()});
|
6 |
-
a("#isEventNo").attr("checked")||a("#isEventNo").attr("checked");return!0});var k=a(".venue"),d=a("#saved_venue");0<d.length&&"0"!=d.val()&&(k.hide(),a('[name="venue[Venue]"]').val(""));d.change(function(){"0"==a(this).val()?(k.fadeIn(),a("#EventCountry").val(0).trigger("liszt:updated"),a("#StateProvinceSelect").val(0).trigger("liszt:updated"),g("")):k.fadeOut()});var h=a(".organizer"),d=a("#saved_organizer");0<d.length&&"0"!=d.val()&&(h.hide(),a("input",
|
7 |
-
h.fadeIn():h.fadeOut()})}g(a("#EventCountry > option:selected").val());var d=a('[name="hideSubsequentRecurrencesDefault"]'),l=a('[name="userToggleSubsequentRecurrences"]');if(d.length&&l.length){var m=a("#tribe-field-userToggleSubsequentRecurrences");d.is(":checked")&&(l.prop("checked",!1),m.hide());d.on("click",function(){a(this).is(":checked")?(l.prop("checked",!1),m.hide()):m.show()})}a("#EventCountry").change(function(){var b=a(this).find("option:selected").val();
|
8 |
-
|
9 |
a("[name='action'] option:selected").val())if(confirm("Are you sure you want to trash all occurrences of these events? All recurrence data will be lost.")){var c=[];a('[name="post[]"]:checked').each(function(){var b=a(this).val();c[b]&&a(this).prop("checked",!1);c[b]=!0})}else b.preventDefault()});a("#EventInfo input, #EventInfo select").change(function(){a(".rec-error").hide()});var e=a('.wp-admin.events-cal #post #publishing-action input[type="submit"]');e.click(function(b){a(this).data("clicked",
|
10 |
!0)});a(".wp-admin.events-cal #post").submit(function(b){var c=a(this);f()&&(b.preventDefault(),a("#recurring-dialog").dialog({modal:!0,buttons:[{text:"Only This Event",click:function(){a('[name="recurrence_action"]').val(3);e.data("clicked")&&a('<input type="hidden" name="'+e.attr("name")+'" value="'+e.val()+'"/>').appendTo(c);a(this).dialog("close");c.submit()}},{text:"All Events",click:function(){a('[name="recurrence_action"]').val(2);e.data("clicked")&&a('<input type="hidden" name="'+e.attr("name")+
|
11 |
'" value="'+e.val()+'"/>').appendTo(c);a(this).dialog("close");c.submit()}}],close:function(){e.data("clicked",null)}}))});a(".wp-admin.events-cal .submitdelete").click(function(b){var c=a(this);f()&&(b.preventDefault(),a("#deletion-dialog").dialog({modal:!0,buttons:[{text:"Only This Event",click:function(){document.location=c.attr("href")+"&event_start="+a(this).data("start")}},{text:"All Events",click:function(){document.location=c.attr("href")+"&deleteAll"}}]}))});a('[name="recurrence[type]"]').change(function(){var b=
|
1 |
jQuery(document).ready(function(a){function g(b){"US"==b||"United States"==b?(a("#StateProvinceSelect_chzn").show(),a("#StateProvinceText").hide()):(""!=b?a("#StateProvinceText").show():a("#StateProvinceText").hide(),a("#StateProvinceSelect_chzn").hide())}function f(){return"true"==a('[name="is_recurring"]').val()&&!a('[name="recurrence_action"]').val()&&!a('[name="recurrence_action"]').val()}a(".chosen, .tribe-field-dropdown_chosen select").chosen();a(".select2, .tribe-field-dropdown_select2 select").select2({width:"250px"});
|
2 |
+
if(a('select[name="tribeEventsTemplate"]').length&&""===a('select[name="tribeEventsTemplate"]').val()){$templates=a('select[name="tribeEventsTemplate"]');var d=$templates.find("option:selected").text();$templates.prev(".select2-container").children().children("span").text(d)}a(".hide-if-js").hide();if("undefined"!=typeof TEC){d=0;a("#tribe-event-datepickers").length&&(d=a("#tribe-event-datepickers").data("startofweek"));d={dateFormat:"yy-mm-dd",showAnim:"fadeIn",changeMonth:!0,changeYear:!0,numberOfMonths:3,
|
3 |
+
firstDay:d,showButtonPanel:!0,onSelect:function(b){var c="EventStartDate"==this.id?"minDate":"maxDate",d=a(this).data("datepicker");b=a.datepicker.parseDate(d.settings.dateFormat||a.datepicker._defaults.dateFormat,b,d.settings);q.not(this).not("#recurrence_end").datepicker("option",c,b)}};a.extend(d,TEC);var q=a("#EventStartDate, #EventEndDate, .datepicker").datepicker(d),n=function(){!0===a("#allDayCheckbox").prop("checked")?(a(".timeofdayoptions").hide(),a("#EventTimeFormatDiv").hide()):(a(".timeofdayoptions").show(),
|
4 |
+
a("#EventTimeFormatDiv").show())};a("#allDayCheckbox").click(function(){n()});n();var p=[29,31,28,31,30,31,30,31,31,30,31,30,31],r=[a("#28StartDays"),a("#29StartDays"),a("#30StartDays"),a("#31StartDays")],s=[a("#28EndDays"),a("#29EndDays"),a("#30EndDays"),a("#31EndDays")];a("select[name='EventStartMonth'], select[name='EventEndMonth']").change(function(){var b=a(this),c=b.attr("name"),c="EventStartMonth"==c?"Start":"End",b=b.attr("value");"0"==b.charAt(0)&&(b=b.replace("0",""));var d=a("select[name='Event"+
|
5 |
+
c+"Year']").attr("value")%4;2==b&&0==d&&(b=0);d=a("select[name='Event"+c+"Day']");a(".event"+c+"DateField").remove();"Start"==c?(c=r[p[b]-28],c.val(d.val()),a("select[name='EventStartMonth']").after(c)):(c=s[p[b]-28],c.val(d.val()),a('select[name="EventEndMonth"]').after(c))});a("select[name='EventStartMonth'], select[name='EventEndMonth']").change();a("select[name='EventStartYear']").change(function(){a("select[name='EventStartMonth']").change()});a("select[name='EventEndYear']").change(function(){a("select[name='EventEndMonth']").change()});
|
6 |
+
a("form[name='post']").submit(function(){!0===a("#isEventNo").attr("checked")||a("#isEventNo").attr("checked");return!0});var k=a(".venue"),d=a("#saved_venue");0<d.length&&"0"!=d.val()&&(k.hide(),a('[name="venue[Venue]"]').val(""));d.change(function(){"0"==a(this).val()?(k.fadeIn(),a("#EventCountry").val(0).trigger("liszt:updated"),a("#StateProvinceSelect").val(0).trigger("liszt:updated"),g("")):k.fadeOut()});var h=a(".organizer"),d=a("#saved_organizer");0<d.length&&"0"!=d.val()&&(h.hide(),a("input",
|
7 |
+
h).val(""));d.change(function(){"0"==a(this).val()?h.fadeIn():h.fadeOut()})}g(a("#EventCountry > option:selected").val());var d=a('[name="hideSubsequentRecurrencesDefault"]'),l=a('[name="userToggleSubsequentRecurrences"]');if(d.length&&l.length){var m=a("#tribe-field-userToggleSubsequentRecurrences");d.is(":checked")&&(l.prop("checked",!1),m.hide());d.on("click",function(){a(this).is(":checked")?(l.prop("checked",!1),m.hide()):m.show()})}a("#EventCountry").change(function(){var b=a(this).find("option:selected").val();
|
8 |
+
g(b)});"true"==a('[name="is_recurring"]').val()&&!a('[name="recurrence_action"]').val()&&(d=function(){a("#recurrence-changed-row").show();a('[name="recurrence_action"]').val(2)},a(".recurrence-row input, .custom-recurrence-row input,.recurrence-row select, .custom-recurrence-row select").change(d),a('[name="recurrence[end]"]').datepicker("option","onSelect",d));a('[name="recurrence[end]"]').datepicker("option","onSelect",function(){a('[name="recurrence[end]"]').removeClass("placeholder")});a(".wp-admin.events-cal.edit-php #doaction").click(function(b){if("trash"==
|
9 |
a("[name='action'] option:selected").val())if(confirm("Are you sure you want to trash all occurrences of these events? All recurrence data will be lost.")){var c=[];a('[name="post[]"]:checked').each(function(){var b=a(this).val();c[b]&&a(this).prop("checked",!1);c[b]=!0})}else b.preventDefault()});a("#EventInfo input, #EventInfo select").change(function(){a(".rec-error").hide()});var e=a('.wp-admin.events-cal #post #publishing-action input[type="submit"]');e.click(function(b){a(this).data("clicked",
|
10 |
!0)});a(".wp-admin.events-cal #post").submit(function(b){var c=a(this);f()&&(b.preventDefault(),a("#recurring-dialog").dialog({modal:!0,buttons:[{text:"Only This Event",click:function(){a('[name="recurrence_action"]').val(3);e.data("clicked")&&a('<input type="hidden" name="'+e.attr("name")+'" value="'+e.val()+'"/>').appendTo(c);a(this).dialog("close");c.submit()}},{text:"All Events",click:function(){a('[name="recurrence_action"]').val(2);e.data("clicked")&&a('<input type="hidden" name="'+e.attr("name")+
|
11 |
'" value="'+e.val()+'"/>').appendTo(c);a(this).dialog("close");c.submit()}}],close:function(){e.data("clicked",null)}}))});a(".wp-admin.events-cal .submitdelete").click(function(b){var c=a(this);f()&&(b.preventDefault(),a("#deletion-dialog").dialog({modal:!0,buttons:[{text:"Only This Event",click:function(){document.location=c.attr("href")+"&event_start="+a(this).data("start")}},{text:"All Events",click:function(){document.location=c.attr("href")+"&deleteAll"}}]}))});a('[name="recurrence[type]"]').change(function(){var b=
|
resources/jquery-ecp-plugins.js
CHANGED
File without changes
|
resources/tickets.css
CHANGED
@@ -57,4 +57,8 @@ p.ticket_name {
|
|
57 |
|
58 |
#tribe_ticket_header_remove {
|
59 |
display: none;
|
60 |
-
}
|
|
|
|
|
|
|
|
57 |
|
58 |
#tribe_ticket_header_remove {
|
59 |
display: none;
|
60 |
+
}
|
61 |
+
|
62 |
+
.ticket_time{
|
63 |
+
display:none;
|
64 |
+
}
|
resources/tickets.js
CHANGED
@@ -42,6 +42,7 @@ var ticketHeaderImage = window.ticketHeaderImage || {};
|
|
42 |
|
43 |
|
44 |
$(document).ready(function () {
|
|
|
45 |
var datepickerOpts = {
|
46 |
dateFormat: 'yy-mm-dd',
|
47 |
showAnim: 'fadeIn',
|
@@ -50,20 +51,25 @@ var ticketHeaderImage = window.ticketHeaderImage || {};
|
|
50 |
numberOfMonths: 3,
|
51 |
showButtonPanel: true,
|
52 |
onChange: function () {
|
53 |
-
alert('lala');
|
54 |
},
|
55 |
onSelect: function (dateText, inst) {
|
56 |
var the_date = $.datepicker.parseDate('yy-mm-dd', dateText);
|
57 |
if (inst.id === "ticket_start_date") {
|
58 |
-
$("#ticket_end_date").datepicker('option', 'minDate', the_date)
|
|
|
|
|
|
|
|
|
59 |
} else {
|
60 |
$("#ticket_start_date").datepicker('option', 'maxDate', the_date)
|
61 |
-
|
|
|
|
|
|
|
62 |
}
|
63 |
}
|
64 |
};
|
65 |
|
66 |
-
|
67 |
$("#ticket_start_date").datepicker(datepickerOpts).keyup(function (e) {
|
68 |
if (e.keyCode == 8 || e.keyCode == 46) {
|
69 |
$.datepicker._clearDate(this);
|
@@ -130,6 +136,7 @@ var ticketHeaderImage = window.ticketHeaderImage || {};
|
|
130 |
if (response.success) {
|
131 |
ticket_clear_form();
|
132 |
$('td.ticket_list_container').empty().html(response.data);
|
|
|
133 |
}
|
134 |
},
|
135 |
'json'
|
@@ -207,8 +214,12 @@ var ticketHeaderImage = window.ticketHeaderImage || {};
|
|
207 |
$('#ticket_description').val(response.data.description);
|
208 |
$('#ticket_price').val(response.data.price);
|
209 |
|
210 |
-
|
211 |
-
|
|
|
|
|
|
|
|
|
212 |
|
213 |
if (response.data.start_date) {
|
214 |
var start_hour = response.data.start_date.substring(11, 13);
|
@@ -224,6 +235,8 @@ var ticketHeaderImage = window.ticketHeaderImage || {};
|
|
224 |
|
225 |
$('#ticket_start_hour').val(start_hour);
|
226 |
$('#ticket_start_meridian').val(start_meridian);
|
|
|
|
|
227 |
}
|
228 |
|
229 |
if (response.data.end_date) {
|
@@ -244,6 +257,8 @@ var ticketHeaderImage = window.ticketHeaderImage || {};
|
|
244 |
|
245 |
$('#ticket_start_minute').val(response.data.start_date.substring(14, 16));
|
246 |
$('#ticket_end_minute').val(response.data.end_date.substring(14, 16));
|
|
|
|
|
247 |
}
|
248 |
|
249 |
$('tr.ticket_advanced_' + response.data.provider_class).remove();
|
@@ -294,6 +309,9 @@ var ticketHeaderImage = window.ticketHeaderImage || {};
|
|
294 |
$('#ticket_form input:not(:button):not(:radio):not(:checkbox)').val('');
|
295 |
$('#ticket_form input:checkbox').attr('checked', false);
|
296 |
|
|
|
|
|
|
|
297 |
$('#ticket_form textarea').val('');
|
298 |
|
299 |
$('#ticket_form').hide();
|
@@ -324,4 +342,4 @@ var ticketHeaderImage = window.ticketHeaderImage || {};
|
|
324 |
}
|
325 |
});
|
326 |
|
327 |
-
})(window, jQuery);
|
42 |
|
43 |
|
44 |
$(document).ready(function () {
|
45 |
+
|
46 |
var datepickerOpts = {
|
47 |
dateFormat: 'yy-mm-dd',
|
48 |
showAnim: 'fadeIn',
|
51 |
numberOfMonths: 3,
|
52 |
showButtonPanel: true,
|
53 |
onChange: function () {
|
|
|
54 |
},
|
55 |
onSelect: function (dateText, inst) {
|
56 |
var the_date = $.datepicker.parseDate('yy-mm-dd', dateText);
|
57 |
if (inst.id === "ticket_start_date") {
|
58 |
+
$("#ticket_end_date").datepicker('option', 'minDate', the_date);
|
59 |
+
if (the_date)
|
60 |
+
$(".ticket_start_time").show();
|
61 |
+
else
|
62 |
+
$(".ticket_start_time").hide();
|
63 |
} else {
|
64 |
$("#ticket_start_date").datepicker('option', 'maxDate', the_date)
|
65 |
+
if (the_date)
|
66 |
+
$(".ticket_end_time").show();
|
67 |
+
else
|
68 |
+
$(".ticket_end_time").hide();
|
69 |
}
|
70 |
}
|
71 |
};
|
72 |
|
|
|
73 |
$("#ticket_start_date").datepicker(datepickerOpts).keyup(function (e) {
|
74 |
if (e.keyCode == 8 || e.keyCode == 46) {
|
75 |
$.datepicker._clearDate(this);
|
136 |
if (response.success) {
|
137 |
ticket_clear_form();
|
138 |
$('td.ticket_list_container').empty().html(response.data);
|
139 |
+
$('.ticket_time').hide();
|
140 |
}
|
141 |
},
|
142 |
'json'
|
214 |
$('#ticket_description').val(response.data.description);
|
215 |
$('#ticket_price').val(response.data.price);
|
216 |
|
217 |
+
var start_date = response.data.start_date.substring(0, 10);
|
218 |
+
var end_date = response.data.end_date.substring(0, 10);
|
219 |
+
|
220 |
+
$('#ticket_start_date').val( start_date );
|
221 |
+
$('#ticket_end_date').val( end_date );
|
222 |
+
|
223 |
|
224 |
if (response.data.start_date) {
|
225 |
var start_hour = response.data.start_date.substring(11, 13);
|
235 |
|
236 |
$('#ticket_start_hour').val(start_hour);
|
237 |
$('#ticket_start_meridian').val(start_meridian);
|
238 |
+
|
239 |
+
$('.ticket_start_time').show();
|
240 |
}
|
241 |
|
242 |
if (response.data.end_date) {
|
257 |
|
258 |
$('#ticket_start_minute').val(response.data.start_date.substring(14, 16));
|
259 |
$('#ticket_end_minute').val(response.data.end_date.substring(14, 16));
|
260 |
+
|
261 |
+
$('.ticket_end_time').show();
|
262 |
}
|
263 |
|
264 |
$('tr.ticket_advanced_' + response.data.provider_class).remove();
|
309 |
$('#ticket_form input:not(:button):not(:radio):not(:checkbox)').val('');
|
310 |
$('#ticket_form input:checkbox').attr('checked', false);
|
311 |
|
312 |
+
$('.ticket_start_time').hide();
|
313 |
+
$('.ticket_end_time').hide();
|
314 |
+
|
315 |
$('#ticket_form textarea').val('');
|
316 |
|
317 |
$('#ticket_form').hide();
|
342 |
}
|
343 |
});
|
344 |
|
345 |
+
})(window, jQuery);
|
resources/tickets.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
#ticket_form{display:none}#ticket_form input[type=radio]{margin-right:5px}#ticket_form span{margin-right:10px}.ticket_list tr td{padding:4px 7px 2px;vertical-align:top}.ticket_list tr td div.ticket_controls{visibility:hidden}.ticket_list tr:hover td div.ticket_controls{visibility:visible}.ticket_list h4{text-transform:uppercase;border-bottom:1px solid #e5e5e5;padding-bottom:6px}.ticket_list h4 a{font-weight:normal;font-size:11px;text-transform:none}p.ticket_name{font-size:13px;font-weight:bold}.ticket_form p.description{display:inline}.ticket_form h4.ticket_form_title_edit{display:none}#tribe_ticket_header_preview img{max-width:95% !important;height:auto !important}#tribe_ticket_header_remove{display:none}
|
1 |
+
#ticket_form{display:none}#ticket_form input[type=radio]{margin-right:5px}#ticket_form span{margin-right:10px}.ticket_list tr td{padding:4px 7px 2px;vertical-align:top}.ticket_list tr td div.ticket_controls{visibility:hidden}.ticket_list tr:hover td div.ticket_controls{visibility:visible}.ticket_list h4{text-transform:uppercase;border-bottom:1px solid #e5e5e5;padding-bottom:6px}.ticket_list h4 a{font-weight:normal;font-size:11px;text-transform:none}p.ticket_name{font-size:13px;font-weight:bold}.ticket_form p.description{display:inline}.ticket_form h4.ticket_form_title_edit{display:none}#tribe_ticket_header_preview img{max-width:95% !important;height:auto !important}#tribe_ticket_header_remove{display:none}.ticket_time{display:none}
|
resources/tickets.min.js
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
var ticketHeaderImage=window.ticketHeaderImage||{};
|
2 |
(function(m,a,n){ticketHeaderImage={uploader:function(){var a=wp.media({title:HeaderImageData.title,multiple:!1,library:{type:"image"},button:{text:HeaderImageData.button}});a.on("close",function(){var c=a.state().get("selection").toJSON();c.length&&ticketHeaderImage.render(c[0])});a.open();return!1},render:function(e){a("#tribe_ticket_header_preview").html(ticketHeaderImage.imgHTML(e));a("#tribe_ticket_header_image_id").val(e.id);a("#tribe_ticket_header_remove").show()},imgHTML:function(a){var c=
|
3 |
-
'<img src="'+a.url+'" ',c=c+('width="'+a.width+'" '),c=c+('height="'+a.height+'" ');return c+"/>"}};a(document).ready(function(){function e(){a("a#ticket_form_toggle").show();a("#ticket_form input:not(:button):not(:radio):not(:checkbox)").val("");a("#ticket_form input:checkbox").attr("checked",!1);a("#ticket_form textarea").val("");a("#ticket_form").hide()}function c(){jQuery("#event_tickets").css("opacity","0.5");jQuery("#tribe-loading").show()}
|
4 |
-
"1");jQuery("#tribe-loading").hide()}var f={dateFormat:"yy-mm-dd",showAnim:"fadeIn",changeMonth:!0,changeYear:!0,numberOfMonths:3,showButtonPanel:!0,onChange:function(){
|
5 |
-
a("#
|
6 |
-
a(this).hide();e();a("#ticket_form").show();a("html, body").animate({scrollTop:a("#ticket_form_table").offset().top-50},500);b.preventDefault()});a("#ticket_form_cancel").click(function(){e();a("html, body").animate({scrollTop:a("#event_tickets").offset().top-50},500)});a("#ticket_form_save").click(function(){c();var b={action:"tribe-ticket-add-"+a("input[name=ticket_provider]:checked").val(),
|
7 |
-
a.post(ajaxurl,b,function(b){b.success&&(e(),a("td.ticket_list_container").empty().html(b.data))},"json").complete(function(){a("html, body").animate({scrollTop:a("#event_tickets").offset().top-50},500);g()})});a("#tribetickets").on("click",".ticket_delete",function(b){b.preventDefault();c();b={action:"tribe-ticket-delete-"+a(this).attr("attr-provider"),post_ID:a("#post_ID").val(),
|
8 |
-
(e(),a("td.ticket_list_container").empty().html(b.data))},"json").complete(function(){g()})});a("#tribetickets").on("click",".ticket_edit",function(b){b.preventDefault();a("h4.ticket_form_title_edit").show();a("h4.ticket_form_title_add").hide();c();b={action:"tribe-ticket-edit-"+a(this).attr("attr-provider"),post_ID:a("#post_ID").val(),ticket_id:a(this).attr("attr-ticket-id"),nonce:TribeTickets.edit_ticket_nonce};
|
9 |
-
a("#
|
10 |
-
(c="pm",d=parseInt(d)-12,d=("0"+d).slice(-2)),12===parseInt(d)&&(c="pm"),a("#ticket_end_hour").val(d),a("#ticket_end_meridian").val(c),a("#ticket_start_minute").val(b.data.start_date.substring(14,16)),a("#ticket_end_minute").val(b.data.end_date.substring(14,16)));a("tr.ticket_advanced_"+b.data.provider_class).remove();a("tr.ticket.bottom").before(b.data.advanced_fields);
|
11 |
-
"json").complete(function(){a("html, body").animate({scrollTop:a("#ticket_form_table").offset().top-50},500);g()})}).on("click","#tribe_ticket_header_image",function(a){a.preventDefault();ticketHeaderImage.uploader("","")});var h=a("#tribe_ticket_header_remove"),k=a("#tribe_ticket_header_preview");k.find("img").length&&h.show();h.live("click",function(b){b.preventDefault();
|
12 |
-
f.removeAttr("width").removeAttr("height"),a("#tribetickets").width()<f.width()&&f.css("width","95%"))})})(window,jQuery);
|
1 |
var ticketHeaderImage=window.ticketHeaderImage||{};
|
2 |
(function(m,a,n){ticketHeaderImage={uploader:function(){var a=wp.media({title:HeaderImageData.title,multiple:!1,library:{type:"image"},button:{text:HeaderImageData.button}});a.on("close",function(){var c=a.state().get("selection").toJSON();c.length&&ticketHeaderImage.render(c[0])});a.open();return!1},render:function(e){a("#tribe_ticket_header_preview").html(ticketHeaderImage.imgHTML(e));a("#tribe_ticket_header_image_id").val(e.id);a("#tribe_ticket_header_remove").show()},imgHTML:function(a){var c=
|
3 |
+
'<img src="'+a.url+'" ',c=c+('width="'+a.width+'" '),c=c+('height="'+a.height+'" ');return c+"/>"}};a(document).ready(function(){function e(){a("a#ticket_form_toggle").show();a("#ticket_form input:not(:button):not(:radio):not(:checkbox)").val("");a("#ticket_form input:checkbox").attr("checked",!1);a(".ticket_start_time").hide();a(".ticket_end_time").hide();a("#ticket_form textarea").val("");a("#ticket_form").hide()}function c(){jQuery("#event_tickets").css("opacity","0.5");jQuery("#tribe-loading").show()}
|
4 |
+
function g(){jQuery("#event_tickets").css("opacity","1");jQuery("#tribe-loading").hide()}var f={dateFormat:"yy-mm-dd",showAnim:"fadeIn",changeMonth:!0,changeYear:!0,numberOfMonths:3,showButtonPanel:!0,onChange:function(){},onSelect:function(b,l){var d=a.datepicker.parseDate("yy-mm-dd",b);"ticket_start_date"===l.id?(a("#ticket_end_date").datepicker("option","minDate",d),d?a(".ticket_start_time").show():a(".ticket_start_time").hide()):(a("#ticket_start_date").datepicker("option","maxDate",d),d?a(".ticket_end_time").show():
|
5 |
+
a(".ticket_end_time").hide())}};a("#ticket_start_date").datepicker(f).keyup(function(b){(8==b.keyCode||46==b.keyCode)&&a.datepicker._clearDate(this)});a("#ticket_end_date").datepicker(f).keyup(function(b){(8==b.keyCode||46==b.keyCode)&&a.datepicker._clearDate(this)});a("input[name=ticket_provider]:radio").change(function(){a("tr.ticket_advanced").hide();a("tr.ticket_advanced_"+this.value).show()});a("input[name=ticket_provider]:checked").each(function(){a("tr.ticket_advanced").hide();a("tr.ticket_advanced_"+
|
6 |
+
this.value).show()});a("a#ticket_form_toggle").click(function(b){a("h4.ticket_form_title_edit").hide();a("h4.ticket_form_title_add").show();a(this).hide();e();a("#ticket_form").show();a("html, body").animate({scrollTop:a("#ticket_form_table").offset().top-50},500);b.preventDefault()});a("#ticket_form_cancel").click(function(){e();a("html, body").animate({scrollTop:a("#event_tickets").offset().top-50},500)});a("#ticket_form_save").click(function(){c();var b={action:"tribe-ticket-add-"+a("input[name=ticket_provider]:checked").val(),
|
7 |
+
formdata:a(".ticket_field").serialize(),post_ID:a("#post_ID").val(),nonce:TribeTickets.add_ticket_nonce};a.post(ajaxurl,b,function(b){b.success&&(e(),a("td.ticket_list_container").empty().html(b.data),a(".ticket_time").hide())},"json").complete(function(){a("html, body").animate({scrollTop:a("#event_tickets").offset().top-50},500);g()})});a("#tribetickets").on("click",".ticket_delete",function(b){b.preventDefault();c();b={action:"tribe-ticket-delete-"+a(this).attr("attr-provider"),post_ID:a("#post_ID").val(),
|
8 |
+
ticket_id:a(this).attr("attr-ticket-id"),nonce:TribeTickets.remove_ticket_nonce};a.post(ajaxurl,b,function(b){b.success&&(e(),a("td.ticket_list_container").empty().html(b.data))},"json").complete(function(){g()})});a("#tribetickets").on("click",".ticket_edit",function(b){b.preventDefault();a("h4.ticket_form_title_edit").show();a("h4.ticket_form_title_add").hide();c();b={action:"tribe-ticket-edit-"+a(this).attr("attr-provider"),post_ID:a("#post_ID").val(),ticket_id:a(this).attr("attr-ticket-id"),nonce:TribeTickets.edit_ticket_nonce};
|
9 |
+
a.post(ajaxurl,b,function(b){e();a("#ticket_id").val(b.data.ID);a("#ticket_name").val(b.data.name);a("#ticket_description").val(b.data.description);a("#ticket_price").val(b.data.price);var d=b.data.start_date.substring(0,10),c=b.data.end_date.substring(0,10);a("#ticket_start_date").val(d);a("#ticket_end_date").val(c);b.data.start_date&&(d=b.data.start_date.substring(11,13),c="am",12<parseInt(d)&&(c="pm",d=parseInt(d)-12,d=("0"+d).slice(-2)),12===parseInt(d)&&(c="pm"),a("#ticket_start_hour").val(d),
|
10 |
+
a("#ticket_start_meridian").val(c),a(".ticket_start_time").show());b.data.end_date&&(d=b.data.end_date.substring(11,13),c="am",12<parseInt(d)&&(c="pm",d=parseInt(d)-12,d=("0"+d).slice(-2)),12===parseInt(d)&&(c="pm"),a("#ticket_end_hour").val(d),a("#ticket_end_meridian").val(c),a("#ticket_start_minute").val(b.data.start_date.substring(14,16)),a("#ticket_end_minute").val(b.data.end_date.substring(14,16)),a(".ticket_end_time").show());a("tr.ticket_advanced_"+b.data.provider_class).remove();a("tr.ticket.bottom").before(b.data.advanced_fields);
|
11 |
+
a("input:radio[name=ticket_provider]").filter("[value="+b.data.provider_class+"]").click();a("a#ticket_form_toggle").hide();a("#ticket_form").show()},"json").complete(function(){a("html, body").animate({scrollTop:a("#ticket_form_table").offset().top-50},500);g()})}).on("click","#tribe_ticket_header_image",function(a){a.preventDefault();ticketHeaderImage.uploader("","")});var h=a("#tribe_ticket_header_remove"),k=a("#tribe_ticket_header_preview");k.find("img").length&&h.show();h.live("click",function(b){b.preventDefault();
|
12 |
+
k.html("");h.hide();a("#tribe_ticket_header_image_id").val("")});a("#tribe_ticket_header_preview img").length&&(f=a("#tribe_ticket_header_preview img"),f.removeAttr("width").removeAttr("height"),a("#tribetickets").width()<f.width()&&f.css("width","95%"))})})(window,jQuery);
|
resources/tribe-events-full.css
CHANGED
@@ -390,26 +390,22 @@ h2.tribe-events-page-title a:focus {
|
|
390 |
float: left;
|
391 |
margin-right: 5px;
|
392 |
text-align: left;
|
393 |
-
white-space: nowrap;
|
394 |
}
|
395 |
#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-next,
|
396 |
#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-next {
|
397 |
float: right;
|
398 |
margin-left: 5px;
|
399 |
text-align: right;
|
400 |
-
white-space: nowrap;
|
401 |
}
|
402 |
#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-left,
|
403 |
#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-left {
|
404 |
float: left;
|
405 |
text-align: left;
|
406 |
-
white-space: nowrap;
|
407 |
}
|
408 |
#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-right,
|
409 |
#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-right {
|
410 |
float: right;
|
411 |
text-align: right;
|
412 |
-
white-space: nowrap;
|
413 |
}
|
414 |
|
415 |
.tribe-events-ajax-loading {
|
390 |
float: left;
|
391 |
margin-right: 5px;
|
392 |
text-align: left;
|
|
|
393 |
}
|
394 |
#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-next,
|
395 |
#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-next {
|
396 |
float: right;
|
397 |
margin-left: 5px;
|
398 |
text-align: right;
|
|
|
399 |
}
|
400 |
#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-left,
|
401 |
#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-left {
|
402 |
float: left;
|
403 |
text-align: left;
|
|
|
404 |
}
|
405 |
#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-right,
|
406 |
#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-right {
|
407 |
float: right;
|
408 |
text-align: right;
|
|
|
409 |
}
|
410 |
|
411 |
.tribe-events-ajax-loading {
|
resources/tribe-events-full.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
#tribe-events-pg-template{max-width:1000px;margin:0 auto}.tribe-events-after-html{clear:both}#tribe-events-pg-template .tribe-events-content p,.tribe-events-before-html p,.tribe-events-after-html p{margin:0 0 10px;line-height:1.7}#tribe-events-pg-template .tribe-events-content h1,.tribe-events-before-html h1,.tribe-events-after-html h1,#tribe-events-pg-template .tribe-events-content h2,.tribe-events-before-html h2,.tribe-events-after-html h2,#tribe-events-pg-template .tribe-events-content h3,.tribe-events-before-html h3,.tribe-events-after-html h3,#tribe-events-pg-template .tribe-events-content h4,.tribe-events-before-html h4,.tribe-events-after-html h4,#tribe-events-pg-template .tribe-events-content h5,.tribe-events-before-html h5,.tribe-events-after-html h5,#tribe-events-pg-template .tribe-events-content h6,.tribe-events-before-html h6,.tribe-events-after-html h6{margin:24px 0;margin:20px 0;line-height:1.7}.tribe-events-before-html h1,.tribe-events-after-html h1,#tribe-events-pg-template .tribe-events-content h1{font-size:21px;line-height:1.5}.tribe-events-before-html h2,.tribe-events-after-html h2,#tribe-events-pg-template .tribe-events-content h2{font-size:18px;line-height:1.6}.tribe-events-before-html h3,.tribe-events-after-html h3,#tribe-events-pg-template .tribe-events-content h3{font-size:16px;line-height:1.8}.tribe-events-before-html h4,.tribe-events-after-html h4,#tribe-events-pg-template .tribe-events-content h4{font-size:14px;line-height:1.8}.tribe-events-before-html h5,.tribe-events-after-html h5,#tribe-events-pg-template .tribe-events-content h5{font-size:13px;line-height:1.8}.tribe-events-before-html h6,.tribe-events-after-html h6,#tribe-events-pg-template .tribe-events-content h6{font-size:12px;line-height:1.8}.tribe-events-before-html ul,.tribe-events-after-html ul,#tribe-events-pg-template .tribe-events-content ul{list-style:disc outside}.tribe-events-before-html ol,.tribe-events-after-html ol,#tribe-events-pg-template .tribe-events-content ol{list-style:decimal outside}.tribe-events-before-html ul li,.tribe-events-after-html ul li,.tribe-events-before-html ol li,.tribe-events-after-html ol li,#tribe-events-pg-template .tribe-events-content ul li,#tribe-events-pg-template .tribe-events-content ol li{margin:0 0 20px;line-height:1.7}.tribe-events-back{margin:0 0 20px 0}#tribe-events-content a,.tribe-events-event-meta a{text-decoration:none}.tribe-events-read-more{display:block}ul.tribe-events-sub-nav a,.tribe-events-back a,.tribe-events-list-widget .tribe-events-widget-link a,.tribe-events-adv-list-widget .tribe-events-widget-link a{text-decoration:none}ul.tribe-events-sub-nav a:hover,.tribe-events-back a:hover,.tribe-events-list-widget .tribe-events-widget-link a:hover,.tribe-events-adv-list-widget .tribe-events-widget-link a:hover{text-decoration:none}.tribe-events-day.page .hentry,.tribe-events-week.page .hentry{margin:0;padding:0 0 15px 0}.tribe-events-button,.entry-content .tribe-events-button{background-color:#666;color:#fff;background-image:none;font-size:11px;font-weight:bold;padding:6px 9px;text-align:center;text-transform:uppercase;letter-spacing:1px;-webkit-border-radius:3px;border-radius:3px;border:0;line-height:normal;cursor:pointer;-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.tribe-events-button.tribe-active{background-color:#666;color:#fff}.tribe-events-button.tribe-inactive,.tribe-events-button:hover,.entry-content .tribe-events-button:hover,.tribe-events-button.tribe-active:hover{background-color:#ddd;color:#444;text-decoration:none}a.tribe-events-ical,a.tribe-events-gcal{font-size:10px;font-weight:normal;padding:0 6px;float:right;text-decoration:none;line-height:18px;margin-top:21px;color:#fff;clear:both}.tribe-events-gcal{margin-right:9px}.single-tribe_events a.tribe-events-ical,.single-tribe_events a.tribe-events-gcal{float:none}.tribe-events-event-meta .tribe-events-gmap,.tribe-events-event-meta-desc .tribe-events-gmap{white-space:nowrap}.event .entry-title{color:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;padding:inherit}.updated-info{text-indent:-9999px;height:0}.tribe-events-event-image{margin:0 0 20px 0;text-align:center}.tribe-events-event-image img{max-width:100%;height:auto}.tribe-events-schedule h2{font-style:normal;font-weight:bold}.tribe-events-event-schedule-details{display:inline}.tribe-events-divider{padding:0 10px;font-weight:bold}.events-archive .entry-content,.events-archive .entry-header{width:98%}.events-archive span.edit-link{display:none}.tribe-events-notices{background:#d9edf7;border:1px solid #bce8f1;color:#3a87ad;margin:10px 0 18px;padding:8px 35px 8px 14px;text-shadow:0 1px 0 #fff;-webkit-border-radius:4px;border-radius:4px}div.tribe-events-notices>ul,div.tribe-events-notices>ul>li{margin:0;padding:0;list-style:none}#tribe-events-content p.tribe-events-promo{font-size:12px;color:#999}#tribe-events-content p.tribe-events-promo a{color:#666}.clearfix:before,.tribe-clearfix:before,.clearfix:after,.tribe-clearfix:after{content:"";display:table}.clearfix:after,.tribe-clearfix:after{clear:both}.clearfix,.tribe-clearfix{zoom:1}.tribe-clear{clear:both}.tribe-events-visuallyhidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.tribe-hide-text{text-indent:100%;white-space:nowrap;overflow:hidden}.tribe-events-error{display:none}.tribe-events-multi-event-day{color:#0f81bb}#tribe-events-content .tribe-events-abbr{border-bottom:0;cursor:default}.tribe-events-spinner{width:32px;height:32px;margin-left:-16px}.tribe-events-spinner-medium{width:24px;height:24px}.tribe-events-spinner-small{width:16px;height:16px;margin-left:-8px}*+html .events-archive h2.tribe-events-page-title{padding-bottom:30px}*+html .events-archive .tribe-events-list h2.tribe-events-page-title{padding-bottom:0}*+html #tribe-events-header{margin-bottom:30px}h2.tribe-events-page-title{font-size:24px;font-weight:normal;position:relative;z-index:0;margin-bottom:.5em;text-align:center;clear:none}.tribe-events-filter-view .tribe-events-list h2.tribe-events-page-title{width:100%;float:none}h2.tribe-events-page-title a{color:#000}h2.tribe-events-page-title a:hover,h2.tribe-events-page-title a:focus{color:#333;text-decoration:underline}#tribe-events-header,#tribe-events-footer{margin-bottom:.5em;clear:both}#tribe-events-header .tribe-events-sub-nav,#tribe-events-footer .tribe-events-sub-nav{list-style-type:none;margin:0;padding:0;overflow:hidden;line-height:normal;text-align:center}#tribe-events-header .tribe-events-sub-nav li,#tribe-events-footer .tribe-events-sub-nav li{display:inline-block;zoom:1;*display:inline;margin:0;vertical-align:middle}#tribe-events-header .tribe-events-sub-nav li,#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-previous{float:left;margin-right:5px;text-align:left;white-space:nowrap}#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-next,#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-next{float:right;margin-left:5px;text-align:right;white-space:nowrap}#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-left,#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-left{float:left;text-align:left;white-space:nowrap}#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-right,#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-right{float:right;text-align:right;white-space:nowrap}.tribe-events-ajax-loading{display:none;position:absolute;left:50%;margin-left:-27px;top:150px;padding:15px;background:#666;z-index:10;border-radius:5px;-webkit-box-shadow:none !important;box-shadow:none !important;-moz-box-shadow:none !important}.tribe-events-loading .tribe-events-ajax-loading{display:block}.tribe-events-ajax-loading.tribe-events-active-spinner,.tribe-events-ajax-loading.tribe-events-active-spinner img{display:block}#tribe-events-header{position:relative}#tribe-events-footer{margin-bottom:1em}.events-list #tribe-events-footer,.tribe-events-day #tribe-events-footer,.tribe-events-map #tribe-events-footer{margin:1.25em 0 18px;clear:both}.tribe-events-map #tribe-events-header{margin:1em 0}.single-tribe_events #tribe-events-header{margin:1em 0 20px}.single-tribe_events #tribe-events-header li,.single-tribe_events #tribe-events-footer li{width:48%}#tribe-events-content .tribe-events-nav-date{padding-top:16px}select.tribe-events-dropdown{width:auto;font-size:11px;margin:33px 9px 0 0}#tribe-events-events-picker,#tribe-events-picker{display:inline}@media only screen and (max-width:767px){#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-next,#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-previous,#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-next,#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-previous{display:block;width:50%;margin:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.tribe-events-sub-nav li a{display:block;padding:10px 15px;background:#666;color:#fff;white-space:normal}.tribe-events-sub-nav .tribe-events-nav-previous,.tribe-events-sub-nav .tribe-events-nav-left{padding:0 1px}.tribe-events-sub-nav .tribe-events-nav-next,.tribe-events-sub-nav .tribe-events-nav-right{padding:0 0 0 1px}}#tribe-events-content{position:relative;margin-bottom:48px;padding:2px 0}#tribe-events-content.tribe-events-list{padding:0}.tribe-events-list h2.tribe-events-page-title{margin-bottom:15px}#tribe-events-content.tribe-events-list{margin-bottom:60px}.tribe-events-list .vevent.hentry{border-bottom:1px solid #ddd;padding:2.25em 0;margin:0}.tribe-events-list .vevent.hentry.tribe-events-first{padding-top:0}.tribe-events-list h2.tribe-events-list-event-title{margin:0;padding:0;font-size:1.4em;line-height:1.4em;text-transform:none;letter-spacing:0;display:block;border:0}.tribe-events-list h2.tribe-events-list-event-title{float:none;display:inline}.tribe-events-event-details .tribe-events-event-meta address.tribe-events-address{font-style:normal;font-family:inherit;font-size:inherit;line-height:inherit}.tribe-events-list .tribe-events-event-image{float:left;width:30%;margin:0 3% 0 0}.tribe-events-list .tribe-events-event-image img{width:100%;height:auto;margin:0;padding:0}.tribe-events-list .tribe-events-event-image+div.tribe-events-content{float:left;width:67%;position:relative}.tribe-events-loop .tribe-events-event-meta{float:none;clear:both;border:0;margin:5px 0 15px 0;line-height:1.5;font-size:14px;font-weight:bold;overflow:visible}.tribe-events-list .tribe-events-loop .tribe-events-event-meta .recurringinfo{display:inline-block;zoom:1;*display:inline}.tribe-events-event-meta address.tribe-events-address{display:inline;font-style:normal;font-family:inherit;font-size:inherit;line-height:inherit;margin-right:10px}.tribe-events-list .tribe-events-loop .tribe-events-event-meta .event-is-recurring{position:relative}.tribe-events-list .time-details,.tribe-events-list .tribe-events-venue-details{line-height:1.2;margin:0;display:block}.tribe-events-list .time-details{margin:0 0 8px 0}.tribe-events-list .tribe-events-event-cost{float:right;margin:0 0 5px 5px}.tribe-events-list .tribe-events-event-cost span{font-weight:bold;background:#eee;border:1px solid #ddd;display:block;padding:5px 10px;text-align:center;line-height:1.3;font-style:normal;text-overflow:ellipsis}.tribe-events-list .tribe-events-loop .tribe-events-content{width:100%;padding:0}.tribe-events-list .tribe-events-loop .tribe-events-content p{margin:0}.tribe-events-list-separator-year{display:block;text-align:center;font-size:38px;color:#ccc;padding:1em 2.25em 0;font-weight:bold}.tribe-events-list-separator-month{display:block;text-transform:uppercase;font-weight:bold;font-size:14px;margin:2.5em 0 0;background-color:#EEE;padding:6px 10px}.tribe-events-list-separator-month+.vevent.hentry.tribe-events-first{padding-top:2.25em}.tribe-events-list .vevent.hentry.tribe-event-end-month{border-bottom:0;padding-bottom:0}@media only screen and (max-width:767px){.tribe-events-list .tribe-events-event-image{float:none;width:100%;margin:0 0 20px 0}.tribe-events-list .tribe-events-event-image+div.tribe-events-content{float:none;width:100%}.tribe-events-list .tribe-events-loop .tribe-events-event-meta .recurringinfo{display:block;margin:8px 0 0}.tribe-events-list .tribe-events-loop .tribe-events-event-meta .recurringinfo .tribe-events-divider{display:none}}.tribe-events-loop{clear:both}.tribe-events-loop .vevent.tribe-events-last{border-bottom:0}.tribe-events-loop .tribe-events-content{width:60%;float:left;padding:0 5% 0 0}.events-archive .tribe-events-content p,.single-tribe_venue .tribe-events-loop .tribe-events-content p{margin:0}.events-archive h3 .published,.single-tribe_venue h3 .published{font-size:18px;margin-top:0;font-style:italic;text-transform:none}.tribe-events-event-meta-desc,.tribe-events-event-day{color:#333}.single-tribe_events h2.tribe-events-single-event-title{font-size:1.7em;line-height:1;margin:0;padding:0}#tribe-events-content .tribe-events-single-event-description img.attachment-post-thumbnail{margin-left:auto;margin-right:auto;display:block;text-align:center}.tribe-events-meta-group .tribe-events-single-section-title{margin:20px 0 10px;font-size:1.4em;font-weight:bold}.tribe-events-meta-group+.tribe-events-single-section-title{margin-top:0}.tribe-events-event-meta .tribe-events-meta-group address.tribe-events-address{margin:0;display:block}#eventbrite-embed{width:100%;min-height:225px;margin:24px 0}.eventbrite-ticket-embed{margin:0 0 30px 0}.tribe-events-schedule{margin:20px 0 0}.single-tribe_events .tribe-events-schedule .tribe-events-divider,.single-tribe_events .tribe-events-schedule .recurringinfo,.single-tribe_events .tribe-events-schedule .tribe-events-cost{font-size:1.2em}.single-tribe_events .tribe-events-schedule h3{font-size:1.2em;display:inline-block;zoom:1;*display:inline;margin:0;padding:0;vertical-align:middle;white-space:nowrap}.single-tribe_events .tribe-events-schedule .tribe-events-cost{vertical-align:middle}.single-tribe_events .tribe-events-cal-links{display:inline-block;zoom:1;*display:inline;margin:0 0 20px 0;vertical-align:middle}.single-tribe_events a.tribe-events-ical,.single-tribe_events a.tribe-events-gcal{margin-bottom:0}.single-tribe_events .tribe-events-event-image{clear:both;text-align:center;margin-bottom:30px}.single-tribe_events .tribe-events-event-meta{background:#fafafa;border:1px solid #eee;margin:30px 0}.single-tribe_events .tribe-events-venue-map{width:58%;margin:20px 4% 2% 0;padding:5px;float:right;background:#eee;border:1px solid #ddd;border-radius:3px;display:inline-block;zoom:1;*display:inline;vertical-align:top}.single-tribe_events #tribe-events-gmap{height:0 !important;padding-top:50%;width:100% !important;margin:0 !important}.single-tribe_events .tribe-events-meta-group .tribe-events-venue-map{float:none;margin:20px 0 0;width:100%}.single-tribe_events .tribe-events-meta-group #tribe-events-gmap{height:0 !important;padding-top:100%;width:100% !important;margin-top:50px}.single-tribe_events .tribe-events-event-meta{font-size:13px}.tribe-events-event-meta .tribe-events-meta-group,.tribe-events-event-meta .column{float:left;width:33.3333%;padding:0 4%;text-align:left;margin:0 0 20px 0;display:inline-block;zoom:1;*display:inline;vertical-align:top;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.single-tribe_events .tribe-events-event-meta dl{margin:0}.single-tribe_events #tribe-events-content .tribe-events-event-meta dt{clear:left;font-weight:bold;line-height:1;list-style:none}.single-tribe_events #tribe-events-content .tribe-events-event-meta dd{padding:0;margin:0 0 10px 0;line-height:1.5;list-style:none;float:none}#tribe-events-content .tribe-events-event-meta dd span.adr{display:block}.single-tribe_events .tribe-events-content{width:100%;max-width:100%;padding:0}.sidebar.single-tribe_events .tribe-events-content{padding:0}@media only screen and (max-width:767px){.single-tribe_events .tribe-events-schedule h3{display:block;margin-bottom:10px}.single-tribe_events .tribe-events-schedule .recurringinfo .tribe-events-divider{display:none}.tribe-events-event-meta .tribe-events-meta-group,.tribe-events-event-meta .column{float:none;width:100%}}#tribe-events-content table.tribe-events-calendar{margin:12px 0 .6em;clear:both;font-size:12px;border-collapse:collapse}#tribe-events-content table.tribe-events-calendar,#tribe-events-content .tribe-events-calendar td{border:1px solid #bbb}.tribe-events-calendar div[id*="tribe-events-daynum-"],.tribe-events-calendar div[id*="tribe-events-daynum-"] a{background-color:#f5f5f5;color:#333;font-size:11px;font-weight:bold}.tribe-events-calendar td.tribe-events-present div[id*="tribe-events-daynum-"],.tribe-events-calendar td.tribe-events-present div[id*="tribe-events-daynum-"]>a{background-color:#666;color:#fff}.tribe-events-calendar td.tribe-events-past div[id*="tribe-events-daynum-"],.tribe-events-calendar td.tribe-events-past div[id*="tribe-events-daynum-"]>a{color:#999}#tribe-events-content .tribe-events-calendar td{height:110px;width:14.28%;color:#114b7d;vertical-align:top;padding:0 0 .5em;font-size:12px}.vevent.viewmore{font-weight:bold}.tribe-events-calendar .tribe-events-tooltip,.tribe-events-week .tribe-events-tooltip,.recurring-info-tooltip{border:1px solid #666;position:absolute;z-index:1001;bottom:30px;left:3px;width:320px;background-color:#f9f9f9;color:#333;line-height:1.4;display:none}.tribe-events-tooltip .tribe-events-arrow{width:18px;height:11px;background-image:url(images/tribe-tooltips.png);background-repeat:no-repeat;background-position:0 0;-webkit-background-size:44px 19px;background-size:44px 19px;display:block;position:absolute;bottom:-11px;left:20px}.tribe-events-calendar .tribe-events-right .tribe-events-tooltip,.tribe-events-week .tribe-events-right .tribe-events-tooltip,.recurring-info-tooltip{left:auto;right:3px}.tribe-events-right .tribe-events-tooltip .tribe-events-arrow{left:auto;right:30px}.recurringinfo{display:inline-block;vertical-align:middle;zoom:1;*display:inline;position:relative}.event-is-recurring{position:relative;font-style:normal;font-weight:500;color:rgba(0,0,0,.7)}.event-is-recurring:hover{color:#000}.recurring-info-tooltip.tribe-events-tooltip{left:10px;width:200px;padding-bottom:.8em}.events-archive.events-gridview #tribe-events-content table .vevent{margin:0 5%;padding:6px 8px;border-bottom:1px solid #e7e7e7}.events-archive.events-gridview #tribe-events-content table .tribe-events-last{border-bottom:0}.tribe-events-viewmore{margin:0 5%;padding:9px 8px;font-weight:bold;line-height:1;border-top:1px solid #e7e7e7}.tribe-events-calendar td .tribe-events-viewmore a{font-size:100%}.tribe-events-calendar th{width:250px;height:10px;background-color:#ddd;color:#333;padding:4px 0;text-align:center;text-transform:uppercase;letter-spacing:1px}.tribe-events-calendar td div[id*="tribe-events-daynum-"]{padding:6px 9px;line-height:1.2}.tribe-events-calendar td a{font-size:91.7%}.tribe-events-calendar div[id*="tribe-events-event-"],.tribe-events-calendar div[id*="tribe-events-daynum-"]{position:relative;margin:0}#tribe-events-content .tribe-events-calendar div[id*="tribe-events-event-"] h3.tribe-events-month-event-title{line-height:1.25;font-size:13px;font-weight:normal;font-family:sans-serif;font-weight:bold;text-transform:none;margin:0;padding:0;letter-spacing:0}.tribe-events-calendar div[id*="tribe-events-event-"] h3.tribe-events-month-event-title a{font-size:100%}#tribe-events-content .tribe-events-tooltip h4{margin:0;color:#fff;background-color:#666;font-size:12px;padding:0 6px;min-height:24px;line-height:24px;letter-spacing:1px;font-weight:normal}.tribe-events-tooltip .tribe-events-event-body{font-size:11px;padding:3px 6px 6px;font-weight:normal}.tribe-events-tooltip .duration{font-style:italic;margin:3px 0}.tribe-events-tooltip .tribe-events-event-thumb{float:left;padding:5px 5px 5px 0}.tribe-events-tooltip .tribe-events-event-thumb img{-webkit-box-shadow:none;box-shadow:none}.tribe-events-tooltip p.entry-summary{padding:0;font-size:11px;line-height:1.5}.tribe-events-list-widget ol li{margin-bottom:30px;list-style:none}.tribe-events-list-widget .duration{font-weight:bold}table.tribe-events-tickets .tickets_price{font-style:italic;color:#000;font-weight:bold}td.tickets_name{color:#777;font-size:13px}.single-tribe_events #tribe-events-content form.cart,.single-tribe_events #tribe-events-content div.cart{background:#fafafa;border:1px solid #eee;margin:30px 0;padding:0 4% 3%}table.tribe-events-tickets{margin:0;width:100%;border-bottom:0}table.tribe-events-tickets td{border-top:1px solid #ddd;border-bottom:1px solid #ddd;padding:8px 10px 8px 0;vertical-align:middle}table.tribe-events-tickets td.wpec{line-height:0}table.tribe-events-tickets td.woocommerce{border-bottom:0}table.tribe-events-tickets td.wpec img{display:none}table.tribe-events-tickets td fieldset{padding:14px .625em 4px;border:0;margin-top:8px}table.tribe-events-tickets .tickets_nostock{display:inline-block;text-align:center}h2.tribe-events-tickets-title{margin:20px 0 25px;font-size:1.4em;font-weight:bold}#tribe-events-bar{width:100%;min-width:220px;margin-bottom:30px;height:auto;position:relative;clear:none}#tribe-events-bar *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#tribe-bar-form{background:#f5f5f5;position:relative;margin:0;width:100%}#tribe-bar-form input{font-size:15px;margin:0 4px 0 0}#tribe-bar-form input[type="text"]{width:100%;padding:0 0 5px 0;background:0;border:0;border-bottom:1px dashed #b9b9b9;line-height:1;height:auto;font-weight:bold;border-radius:0;box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none}#tribe-bar-form input[type=text]:focus{outline:0}input[name*="tribe-bar-"]::-webkit-input-placeholder{color:#5f5f5f;font-weight:normal;font-style:italic;line-height:1.3}input[name*="tribe-bar-"]:-moz-placeholder{color:#5f5f5f;font-weight:normal;font-style:italic;line-height:1.3}.placeholder{color:#5f5f5f;font-weight:normal;font-style:italic;line-height:1.3}#tribe-bar-form .tribe-bar-submit input[type=submit]{font-size:13px;line-height:20px;letter-spacing:0;width:100%;height:auto;padding:10px;background-image:none;background:#666;color:#fff;border:0;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;-webkit-appearance:button}.tribe-bar-submit input[type=submit]:hover{background:#999;color:#fff}#tribe-bar-form label{display:block;font-size:11px;line-height:1;text-transform:uppercase;font-weight:bold;margin:0 0 5px 0;padding:0}#tribe-bar-dates .select2-choice{border-bottom:1px dashed #b9b9b9}#tribe-bar-form .tribe-bar-filters{position:relative;float:left;width:100%;margin:0}#tribe-bar-form #tribe-bar-views+.tribe-bar-filters{right:16.66667%;left:auto;width:83.3333%}#tribe-bar-form .tribe-bar-filters-inner{margin:0}#tribe-bar-form.tribe-bar-full .tribe-bar-filters{display:block !important}.tribe-bar-date-filter{float:left;width:25%;margin-bottom:0;padding:15px}.tribe-bar-search-filter{float:left;width:33.3333%;margin-bottom:0;padding:15px}.tribe-bar-submit{float:left;width:25%;margin-bottom:0;margin-left:16.6667%;padding:15px}#tribe-bar-form #tribe-bar-views{position:relative;left:83.3333%;right:auto;float:left;width:16.66667%;padding:0 0 0 5px;background:transparent;margin:0}#tribe-bar-views:hover,#tribe-bar-views label:hover{cursor:pointer}.tribe-bar-views-inner{padding:15px 0 45px 0;background:#e0e0e0;margin:0}#tribe-bar-form .tribe-bar-views-inner label{padding:0 15px;text-align:left}.tribe-bar-views-inner .select2-container{padding:0 15px}.tribe-select2-results-views.select2-drop{background:#dbdbdb;border:0;z-index:10001;box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none}#tribe-bar-form.tribe-bar-mini #tribe-bar-views{width:16.66667%}#tribe-bar-views .tribe-bar-views-list{list-style-type:none;margin:0 0 0 5px;padding:0;position:absolute;left:0;top:auto;z-index:99;border-radius:0 0 3px 3px}#tribe-bar-views li.tribe-bar-views-option{line-height:14px;margin:0 5px 0 0;padding:0;list-style:none;background:0;filter:"progid:DXImageTransform.Microsoft.gradient(enabled=false)";list-style:none;border:0;padding:0;display:none;box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none}#tribe-bar-views .tribe-bar-views-option:first-child,#tribe-bar-views .tribe-bar-views-option.tribe-bar-active,#tribe-bar-views.tribe-bar-views-open .tribe-bar-views-option{display:list-item}#tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option a{color:#444;text-align:left;display:block;text-decoration:none;padding:6px 15px;background:#e0e0e0}#tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option a:hover{background:#cacaca;color:inherit}#tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option.tribe-bar-active a:hover{background:#e0e0e0}#tribe-bar-views .tribe-bar-views-option:last-child a{border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;-moz-border-radius:0 0 3px 3px}.tribe-no-js #tribe-bar-views [name="tribe-bar-view"]{display:block}#tribe-bar-views [name="tribe-bar-view"]{display:none}#tribe-bar-views .tribe-bar-views-list{width:100%;float:left}#tribe-bar-views .tribe-bar-settings{display:none}#tribe-bar-form.tribe-bar-mini *{font-size:12px}#tribe-bar-form.tribe-bar-mini label{font-size:11px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.tribe-bar-mini .tribe-bar-filters{display:block !important;float:left;width:83.3333%}.tribe-bar-mini .tribe-bar-date-filter{padding:10px}.tribe-bar-mini .tribe-bar-search-filter{width:45%;padding:10px}.tribe-bar-mini .tribe-bar-submit{width:25%;margin-left:5%;padding:10px}#tribe-bar-form.tribe-bar-mini .tribe-bar-submit input[type=submit]{font-size:11px;padding:10px 5px;-webkit-appearance:button}.tribe-bar-mini #tribe-bar-views{width:16.66667%}.tribe-bar-mini .tribe-bar-views-inner{padding:10px 0 35px 0}.tribe-bar-mini .tribe-bar-views-inner label{padding:0 10px}.tribe-bar-mini #tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option a{padding:4px 10px}#tribe-bar-collapse-toggle{display:none;float:left;padding:15px;position:relative;font-size:13px;line-height:28px;font-weight:bold;text-transform:uppercase;background:#f5f5f5}#tribe-bar-collapse-toggle:hover{cursor:pointer}#tribe-bar-collapse-toggle span.tribe-bar-toggle-arrow{display:inline-block;margin:0 4px;position:absolute;right:10px}#tribe-bar-collapse-toggle span.tribe-bar-toggle-arrow:after{top:10px;right:0;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-color:rgba(136,183,213,0);border-top-color:inherit;border-width:8px}#tribe-bar-collapse-toggle.tribe-bar-filters-open span.tribe-bar-toggle-arrow:after{top:0;border-top-color:transparent;border-bottom-color:inherit}#tribe-bar-form.tribe-bar-collapse #tribe-bar-views+.tribe-bar-filters{display:none;margin-top:5px;overflow:hidden;clear:both;left:auto;right:auto;width:100%}.tribe-bar-collapse .tribe-bar-filters-inner>div,.tribe-bar-collapse #tribe-bar-views{width:100%;height:auto;margin:0}.tribe-bar-collapse #tribe-bar-collapse-toggle{display:block;width:70%}.tribe-bar-collapse #tribe-bar-collapse-toggle.tribe-bar-collapse-toggle-full-width{width:100%}#tribe-bar-form.tribe-bar-collapse #tribe-bar-views{float:left;left:auto;width:30%}#tribe-bar-form.tribe-bar-collapse .tribe-bar-views-inner{padding:10px 0 40px 0}#tribe-bar-form.tribe-bar-collapse .tribe-bar-views-inner label{margin:0}@media only screen and (max-width:767px){.tribe-bar-collapse #tribe-bar-collapse-toggle{width:60%}#tribe-bar-form.tribe-bar-collapse #tribe-bar-views{width:40%}}.tribe-bar-is-disabled .tribe-events-page-title{line-height:45px;text-align:left;clear:none;margin:0}.tribe-bar-disabled{float:right;position:relative;z-index:101}.tribe-bar-disabled #tribe-events-bar{width:auto;min-width:0;float:none}.tribe-bar-disabled #tribe-bar-form{width:auto;border-radius:3px}.tribe-bar-disabled .tribe-bar-filters{float:left}.tribe-bar-disabled .tribe-bar-filters .tribe-bar-date-filter{padding:5px 10px}.tribe-bar-disabled #tribe-bar-form label{font-size:10px}.tribe-bar-disabled #tribe-bar-form .tribe-bar-filters input[type="text"]{border:0;display:block;width:85px;margin:0;padding:0;font-size:13px;line-height:15px}.tribe-bar-disabled #tribe-bar-form #tribe-bar-views+.tribe-bar-filters{left:auto;right:50%;width:50%}.tribe-bar-disabled .tribe-bar-date-filter,.tribe-events-uses-geolocation .tribe-bar-disabled .tribe-bar-date-filter{width:auto}.tribe-bar-disabled #tribe-bar-form #tribe-bar-views{width:50%;float:left;left:50%;right:auto;padding:0}.tribe-bar-disabled .tribe-bar-views-inner{min-width:100px;padding:5px 0 25px 0;border-radius:0 3px 3px 0}.tribe-bar-disabled #tribe-bar-form .tribe-bar-views-inner label{padding:0 10px}.tribe-bar-disabled #tribe-bar-views .tribe-bar-views-list,.tribe-bar-disabled #tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option{margin:0}.tribe-bar-disabled #tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option a{padding:4px 10px;margin:0}.tribe-bar-disabled #tribe-bar-views .select2-container .select2-choice{line-height:18px;height:auto;font-size:13px}.tribe-bar-is-disabled .tribe-select2-results-views.select2-drop .select2-results li{padding:0 10px}.tribe-bar-disabled #tribe-bar-collapse-toggle,.tribe-bar-disabled .tribe-bar-submit{display:none}.tribe-select2-results-views span[class^="tribe-icon-"],.tribe-bar-views-list span[class^="tribe-icon-"],.tribe-bar-view-list a[class*="tribe-icon-"]{padding-left:24px;background-repeat:no-repeat;background-position:0 50%;min-height:16px;display:block}.tribe-select2-results-views span[class^="tribe-icon-"]{min-height:16px;display:inline-block}.tribe-select2-results-views span[class^="tribe-icon-"],.tribe-bar-views-list span[class^="tribe-icon-"],.tribe-bar-view-list a[class^="tribe-icon-"]{background-image:url(images/events-bar/icon-month.png);-webkit-background-size:15px 16px;background-size:15px 16px}.tribe-select2-results-views span.tribe-icon-list,.tribe-bar-views-list span.tribe-icon-list,.tribe-bar-view-list a.tribe-icon-list{background-image:url(images/events-bar/icon-list.png);-webkit-background-size:15px 10px;background-size:15px 10px}.tribe-bar-view-list a.tribe-icon-upcoming,.tribe-bar-view-list a.tribe-icon-month{padding-left:30px;background-position:10px 50%}.tribe-select2-results-views .tribe-icon-month,.tribe-bar-views-list span.tribe-icon-month,.tribe-bar-view-list a.tribe-icon-month{background-image:url(images/events-bar/icon-month.png);-webkit-background-size:15px 16px;background-size:15px 16px}.tribe-select2-results-views span.tribe-icon-week,.tribe-bar-views-list span.tribe-icon-week{background-image:url(images/events-bar/icon-week.png);-webkit-background-size:15px 16px;background-size:15px 16px}.tribe-select2-results-views span.tribe-icon-day,.tribe-bar-views-list span.tribe-icon-day{background-image:url(images/events-bar/icon-day.png);-webkit-background-size:15px 16px;background-size:15px 16px}.tribe-select2-results-views span.tribe-icon-photo,.tribe-bar-views-list span.tribe-icon-photo{background-image:url(images/events-bar/icon-photo.png);-webkit-background-size:15px 14px;background-size:15px 14px}.tribe-select2-results-views span.tribe-icon-map,.tribe-bar-views-list span.tribe-icon-map{background-image:url(images/events-bar/icon-map.png);-webkit-background-size:12px 16px;background-size:12px 16px;background-position:2px 50%}@media only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2){.tribe-events-tooltip .tribe-events-arrow{background-image:url(images/tribe-tooltips@2x.png)}#tribe-bar-filters .tribe-bar-button-search .tribe-bar-btn-small{background-image:url(images/events-bar/icon-search@2x.png)}#tribe-events-bar .tribe-bar-button-settings span{background-image:url(images/events-bar/icon-gear@2x.png)}#tribe-events-bar [class^="tribe-bar-button-"]:after{background-image:url(../vendor/select2/select2x2.png)}.tribe-select2-results-views span[class^="tribe-icon-"],.tribe-bar-views-list span[class^="tribe-icon-"],.tribe-bar-view-list a[class^="tribe-icon-"]{background-image:url(images/events-bar/icon-month@2x.png)}.tribe-select2-results-views span.tribe-icon-list,.tribe-bar-views-list span.tribe-icon-list,.tribe-bar-view-list a.tribe-icon-upcoming{background-image:url(images/events-bar/icon-list@2x.png)}.tribe-select2-results-views span.tribe-icon-month,.tribe-bar-views-list span.tribe-icon-month,.tribe-bar-view-list a.tribe-icon-month{background-image:url(images/events-bar/icon-month@2x.png)}.tribe-select2-results-views span.tribe-icon-week,.tribe-bar-views-list span.tribe-icon-week{background-image:url(images/events-bar/icon-week@2x.png)}.tribe-select2-results-views span.tribe-icon-day,.tribe-bar-views-list span.tribe-icon-day{background-image:url(images/events-bar/icon-day@2x.png)}.tribe-select2-results-views span.tribe-icon-photo,.tribe-bar-views-list span.tribe-icon-photo{background-image:url(images/events-bar/icon-photo@2x.png)}.tribe-select2-results-views span.tribe-icon-map,.tribe-bar-views-list span.tribe-icon-map{background-image:url(images/events-bar/icon-map@2x.png)}}
|
1 |
+
#tribe-events-pg-template{max-width:1000px;margin:0 auto}.tribe-events-after-html{clear:both}#tribe-events-pg-template .tribe-events-content p,.tribe-events-before-html p,.tribe-events-after-html p{margin:0 0 10px;line-height:1.7}#tribe-events-pg-template .tribe-events-content h1,.tribe-events-before-html h1,.tribe-events-after-html h1,#tribe-events-pg-template .tribe-events-content h2,.tribe-events-before-html h2,.tribe-events-after-html h2,#tribe-events-pg-template .tribe-events-content h3,.tribe-events-before-html h3,.tribe-events-after-html h3,#tribe-events-pg-template .tribe-events-content h4,.tribe-events-before-html h4,.tribe-events-after-html h4,#tribe-events-pg-template .tribe-events-content h5,.tribe-events-before-html h5,.tribe-events-after-html h5,#tribe-events-pg-template .tribe-events-content h6,.tribe-events-before-html h6,.tribe-events-after-html h6{margin:24px 0;margin:20px 0;line-height:1.7}.tribe-events-before-html h1,.tribe-events-after-html h1,#tribe-events-pg-template .tribe-events-content h1{font-size:21px;line-height:1.5}.tribe-events-before-html h2,.tribe-events-after-html h2,#tribe-events-pg-template .tribe-events-content h2{font-size:18px;line-height:1.6}.tribe-events-before-html h3,.tribe-events-after-html h3,#tribe-events-pg-template .tribe-events-content h3{font-size:16px;line-height:1.8}.tribe-events-before-html h4,.tribe-events-after-html h4,#tribe-events-pg-template .tribe-events-content h4{font-size:14px;line-height:1.8}.tribe-events-before-html h5,.tribe-events-after-html h5,#tribe-events-pg-template .tribe-events-content h5{font-size:13px;line-height:1.8}.tribe-events-before-html h6,.tribe-events-after-html h6,#tribe-events-pg-template .tribe-events-content h6{font-size:12px;line-height:1.8}.tribe-events-before-html ul,.tribe-events-after-html ul,#tribe-events-pg-template .tribe-events-content ul{list-style:disc outside}.tribe-events-before-html ol,.tribe-events-after-html ol,#tribe-events-pg-template .tribe-events-content ol{list-style:decimal outside}.tribe-events-before-html ul li,.tribe-events-after-html ul li,.tribe-events-before-html ol li,.tribe-events-after-html ol li,#tribe-events-pg-template .tribe-events-content ul li,#tribe-events-pg-template .tribe-events-content ol li{margin:0 0 20px;line-height:1.7}.tribe-events-back{margin:0 0 20px 0}#tribe-events-content a,.tribe-events-event-meta a{text-decoration:none}.tribe-events-read-more{display:block}ul.tribe-events-sub-nav a,.tribe-events-back a,.tribe-events-list-widget .tribe-events-widget-link a,.tribe-events-adv-list-widget .tribe-events-widget-link a{text-decoration:none}ul.tribe-events-sub-nav a:hover,.tribe-events-back a:hover,.tribe-events-list-widget .tribe-events-widget-link a:hover,.tribe-events-adv-list-widget .tribe-events-widget-link a:hover{text-decoration:none}.tribe-events-day.page .hentry,.tribe-events-week.page .hentry{margin:0;padding:0 0 15px 0}.tribe-events-button,.entry-content .tribe-events-button{background-color:#666;color:#fff;background-image:none;font-size:11px;font-weight:bold;padding:6px 9px;text-align:center;text-transform:uppercase;letter-spacing:1px;-webkit-border-radius:3px;border-radius:3px;border:0;line-height:normal;cursor:pointer;-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.tribe-events-button.tribe-active{background-color:#666;color:#fff}.tribe-events-button.tribe-inactive,.tribe-events-button:hover,.entry-content .tribe-events-button:hover,.tribe-events-button.tribe-active:hover{background-color:#ddd;color:#444;text-decoration:none}a.tribe-events-ical,a.tribe-events-gcal{font-size:10px;font-weight:normal;padding:0 6px;float:right;text-decoration:none;line-height:18px;margin-top:21px;color:#fff;clear:both}.tribe-events-gcal{margin-right:9px}.single-tribe_events a.tribe-events-ical,.single-tribe_events a.tribe-events-gcal{float:none}.tribe-events-event-meta .tribe-events-gmap,.tribe-events-event-meta-desc .tribe-events-gmap{white-space:nowrap}.event .entry-title{color:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;padding:inherit}.updated-info{text-indent:-9999px;height:0}.tribe-events-event-image{margin:0 0 20px 0;text-align:center}.tribe-events-event-image img{max-width:100%;height:auto}.tribe-events-schedule h2{font-style:normal;font-weight:bold}.tribe-events-event-schedule-details{display:inline}.tribe-events-divider{padding:0 10px;font-weight:bold}.events-archive .entry-content,.events-archive .entry-header{width:98%}.events-archive span.edit-link{display:none}.tribe-events-notices{background:#d9edf7;border:1px solid #bce8f1;color:#3a87ad;margin:10px 0 18px;padding:8px 35px 8px 14px;text-shadow:0 1px 0 #fff;-webkit-border-radius:4px;border-radius:4px}div.tribe-events-notices>ul,div.tribe-events-notices>ul>li{margin:0;padding:0;list-style:none}#tribe-events-content p.tribe-events-promo{font-size:12px;color:#999}#tribe-events-content p.tribe-events-promo a{color:#666}.clearfix:before,.tribe-clearfix:before,.clearfix:after,.tribe-clearfix:after{content:"";display:table}.clearfix:after,.tribe-clearfix:after{clear:both}.clearfix,.tribe-clearfix{zoom:1}.tribe-clear{clear:both}.tribe-events-visuallyhidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.tribe-hide-text{text-indent:100%;white-space:nowrap;overflow:hidden}.tribe-events-error{display:none}.tribe-events-multi-event-day{color:#0f81bb}#tribe-events-content .tribe-events-abbr{border-bottom:0;cursor:default}.tribe-events-spinner{width:32px;height:32px;margin-left:-16px}.tribe-events-spinner-medium{width:24px;height:24px}.tribe-events-spinner-small{width:16px;height:16px;margin-left:-8px}*+html .events-archive h2.tribe-events-page-title{padding-bottom:30px}*+html .events-archive .tribe-events-list h2.tribe-events-page-title{padding-bottom:0}*+html #tribe-events-header{margin-bottom:30px}h2.tribe-events-page-title{font-size:24px;font-weight:normal;position:relative;z-index:0;margin-bottom:.5em;text-align:center;clear:none}.tribe-events-filter-view .tribe-events-list h2.tribe-events-page-title{width:100%;float:none}h2.tribe-events-page-title a{color:#000}h2.tribe-events-page-title a:hover,h2.tribe-events-page-title a:focus{color:#333;text-decoration:underline}#tribe-events-header,#tribe-events-footer{margin-bottom:.5em;clear:both}#tribe-events-header .tribe-events-sub-nav,#tribe-events-footer .tribe-events-sub-nav{list-style-type:none;margin:0;padding:0;overflow:hidden;line-height:normal;text-align:center}#tribe-events-header .tribe-events-sub-nav li,#tribe-events-footer .tribe-events-sub-nav li{display:inline-block;zoom:1;*display:inline;margin:0;vertical-align:middle}#tribe-events-header .tribe-events-sub-nav li,#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-previous{float:left;margin-right:5px;text-align:left}#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-next,#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-next{float:right;margin-left:5px;text-align:right}#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-left,#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-left{float:left;text-align:left}#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-right,#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-right{float:right;text-align:right}.tribe-events-ajax-loading{display:none;position:absolute;left:50%;margin-left:-27px;top:150px;padding:15px;background:#666;z-index:10;border-radius:5px;-webkit-box-shadow:none !important;box-shadow:none !important;-moz-box-shadow:none !important}.tribe-events-loading .tribe-events-ajax-loading{display:block}.tribe-events-ajax-loading.tribe-events-active-spinner,.tribe-events-ajax-loading.tribe-events-active-spinner img{display:block}#tribe-events-header{position:relative}#tribe-events-footer{margin-bottom:1em}.events-list #tribe-events-footer,.tribe-events-day #tribe-events-footer,.tribe-events-map #tribe-events-footer{margin:1.25em 0 18px;clear:both}.tribe-events-map #tribe-events-header{margin:1em 0}.single-tribe_events #tribe-events-header{margin:1em 0 20px}.single-tribe_events #tribe-events-header li,.single-tribe_events #tribe-events-footer li{width:48%}#tribe-events-content .tribe-events-nav-date{padding-top:16px}select.tribe-events-dropdown{width:auto;font-size:11px;margin:33px 9px 0 0}#tribe-events-events-picker,#tribe-events-picker{display:inline}@media only screen and (max-width:767px){#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-next,#tribe-events-header .tribe-events-sub-nav .tribe-events-nav-previous,#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-next,#tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-previous{display:block;width:50%;margin:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.tribe-events-sub-nav li a{display:block;padding:10px 15px;background:#666;color:#fff;white-space:normal}.tribe-events-sub-nav .tribe-events-nav-previous,.tribe-events-sub-nav .tribe-events-nav-left{padding:0 1px}.tribe-events-sub-nav .tribe-events-nav-next,.tribe-events-sub-nav .tribe-events-nav-right{padding:0 0 0 1px}}#tribe-events-content{position:relative;margin-bottom:48px;padding:2px 0}#tribe-events-content.tribe-events-list{padding:0}.tribe-events-list h2.tribe-events-page-title{margin-bottom:15px}#tribe-events-content.tribe-events-list{margin-bottom:60px}.tribe-events-list .vevent.hentry{border-bottom:1px solid #ddd;padding:2.25em 0;margin:0}.tribe-events-list .vevent.hentry.tribe-events-first{padding-top:0}.tribe-events-list h2.tribe-events-list-event-title{margin:0;padding:0;font-size:1.4em;line-height:1.4em;text-transform:none;letter-spacing:0;display:block;border:0}.tribe-events-list h2.tribe-events-list-event-title{float:none;display:inline}.tribe-events-event-details .tribe-events-event-meta address.tribe-events-address{font-style:normal;font-family:inherit;font-size:inherit;line-height:inherit}.tribe-events-list .tribe-events-event-image{float:left;width:30%;margin:0 3% 0 0}.tribe-events-list .tribe-events-event-image img{width:100%;height:auto;margin:0;padding:0}.tribe-events-list .tribe-events-event-image+div.tribe-events-content{float:left;width:67%;position:relative}.tribe-events-loop .tribe-events-event-meta{float:none;clear:both;border:0;margin:5px 0 15px 0;line-height:1.5;font-size:14px;font-weight:bold;overflow:visible}.tribe-events-list .tribe-events-loop .tribe-events-event-meta .recurringinfo{display:inline-block;zoom:1;*display:inline}.tribe-events-event-meta address.tribe-events-address{display:inline;font-style:normal;font-family:inherit;font-size:inherit;line-height:inherit;margin-right:10px}.tribe-events-list .tribe-events-loop .tribe-events-event-meta .event-is-recurring{position:relative}.tribe-events-list .time-details,.tribe-events-list .tribe-events-venue-details{line-height:1.2;margin:0;display:block}.tribe-events-list .time-details{margin:0 0 8px 0}.tribe-events-list .tribe-events-event-cost{float:right;margin:0 0 5px 5px}.tribe-events-list .tribe-events-event-cost span{font-weight:bold;background:#eee;border:1px solid #ddd;display:block;padding:5px 10px;text-align:center;line-height:1.3;font-style:normal;text-overflow:ellipsis}.tribe-events-list .tribe-events-loop .tribe-events-content{width:100%;padding:0}.tribe-events-list .tribe-events-loop .tribe-events-content p{margin:0}.tribe-events-list-separator-year{display:block;text-align:center;font-size:38px;color:#ccc;padding:1em 2.25em 0;font-weight:bold}.tribe-events-list-separator-month{display:block;text-transform:uppercase;font-weight:bold;font-size:14px;margin:2.5em 0 0;background-color:#EEE;padding:6px 10px}.tribe-events-list-separator-month+.vevent.hentry.tribe-events-first{padding-top:2.25em}.tribe-events-list .vevent.hentry.tribe-event-end-month{border-bottom:0;padding-bottom:0}@media only screen and (max-width:767px){.tribe-events-list .tribe-events-event-image{float:none;width:100%;margin:0 0 20px 0}.tribe-events-list .tribe-events-event-image+div.tribe-events-content{float:none;width:100%}.tribe-events-list .tribe-events-loop .tribe-events-event-meta .recurringinfo{display:block;margin:8px 0 0}.tribe-events-list .tribe-events-loop .tribe-events-event-meta .recurringinfo .tribe-events-divider{display:none}}.tribe-events-loop{clear:both}.tribe-events-loop .vevent.tribe-events-last{border-bottom:0}.tribe-events-loop .tribe-events-content{width:60%;float:left;padding:0 5% 0 0}.events-archive .tribe-events-content p,.single-tribe_venue .tribe-events-loop .tribe-events-content p{margin:0}.events-archive h3 .published,.single-tribe_venue h3 .published{font-size:18px;margin-top:0;font-style:italic;text-transform:none}.tribe-events-event-meta-desc,.tribe-events-event-day{color:#333}.single-tribe_events h2.tribe-events-single-event-title{font-size:1.7em;line-height:1;margin:0;padding:0}#tribe-events-content .tribe-events-single-event-description img.attachment-post-thumbnail{margin-left:auto;margin-right:auto;display:block;text-align:center}.tribe-events-meta-group .tribe-events-single-section-title{margin:20px 0 10px;font-size:1.4em;font-weight:bold}.tribe-events-meta-group+.tribe-events-single-section-title{margin-top:0}.tribe-events-event-meta .tribe-events-meta-group address.tribe-events-address{margin:0;display:block}#eventbrite-embed{width:100%;min-height:225px;margin:24px 0}.eventbrite-ticket-embed{margin:0 0 30px 0}.tribe-events-schedule{margin:20px 0 0}.single-tribe_events .tribe-events-schedule .tribe-events-divider,.single-tribe_events .tribe-events-schedule .recurringinfo,.single-tribe_events .tribe-events-schedule .tribe-events-cost{font-size:1.2em}.single-tribe_events .tribe-events-schedule h3{font-size:1.2em;display:inline-block;zoom:1;*display:inline;margin:0;padding:0;vertical-align:middle;white-space:nowrap}.single-tribe_events .tribe-events-schedule .tribe-events-cost{vertical-align:middle}.single-tribe_events .tribe-events-cal-links{display:inline-block;zoom:1;*display:inline;margin:0 0 20px 0;vertical-align:middle}.single-tribe_events a.tribe-events-ical,.single-tribe_events a.tribe-events-gcal{margin-bottom:0}.single-tribe_events .tribe-events-event-image{clear:both;text-align:center;margin-bottom:30px}.single-tribe_events .tribe-events-event-meta{background:#fafafa;border:1px solid #eee;margin:30px 0}.single-tribe_events .tribe-events-venue-map{width:58%;margin:20px 4% 2% 0;padding:5px;float:right;background:#eee;border:1px solid #ddd;border-radius:3px;display:inline-block;zoom:1;*display:inline;vertical-align:top}.single-tribe_events #tribe-events-gmap{height:0 !important;padding-top:50%;width:100% !important;margin:0 !important}.single-tribe_events .tribe-events-meta-group .tribe-events-venue-map{float:none;margin:20px 0 0;width:100%}.single-tribe_events .tribe-events-meta-group #tribe-events-gmap{height:0 !important;padding-top:100%;width:100% !important;margin-top:50px}.single-tribe_events .tribe-events-event-meta{font-size:13px}.tribe-events-event-meta .tribe-events-meta-group,.tribe-events-event-meta .column{float:left;width:33.3333%;padding:0 4%;text-align:left;margin:0 0 20px 0;display:inline-block;zoom:1;*display:inline;vertical-align:top;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.single-tribe_events .tribe-events-event-meta dl{margin:0}.single-tribe_events #tribe-events-content .tribe-events-event-meta dt{clear:left;font-weight:bold;line-height:1;list-style:none}.single-tribe_events #tribe-events-content .tribe-events-event-meta dd{padding:0;margin:0 0 10px 0;line-height:1.5;list-style:none;float:none}#tribe-events-content .tribe-events-event-meta dd span.adr{display:block}.single-tribe_events .tribe-events-content{width:100%;max-width:100%;padding:0}.sidebar.single-tribe_events .tribe-events-content{padding:0}@media only screen and (max-width:767px){.single-tribe_events .tribe-events-schedule h3{display:block;margin-bottom:10px}.single-tribe_events .tribe-events-schedule .recurringinfo .tribe-events-divider{display:none}.tribe-events-event-meta .tribe-events-meta-group,.tribe-events-event-meta .column{float:none;width:100%}}#tribe-events-content table.tribe-events-calendar{margin:12px 0 .6em;clear:both;font-size:12px;border-collapse:collapse}#tribe-events-content table.tribe-events-calendar,#tribe-events-content .tribe-events-calendar td{border:1px solid #bbb}.tribe-events-calendar div[id*="tribe-events-daynum-"],.tribe-events-calendar div[id*="tribe-events-daynum-"] a{background-color:#f5f5f5;color:#333;font-size:11px;font-weight:bold}.tribe-events-calendar td.tribe-events-present div[id*="tribe-events-daynum-"],.tribe-events-calendar td.tribe-events-present div[id*="tribe-events-daynum-"]>a{background-color:#666;color:#fff}.tribe-events-calendar td.tribe-events-past div[id*="tribe-events-daynum-"],.tribe-events-calendar td.tribe-events-past div[id*="tribe-events-daynum-"]>a{color:#999}#tribe-events-content .tribe-events-calendar td{height:110px;width:14.28%;color:#114b7d;vertical-align:top;padding:0 0 .5em;font-size:12px}.vevent.viewmore{font-weight:bold}.tribe-events-calendar .tribe-events-tooltip,.tribe-events-week .tribe-events-tooltip,.recurring-info-tooltip{border:1px solid #666;position:absolute;z-index:1001;bottom:30px;left:3px;width:320px;background-color:#f9f9f9;color:#333;line-height:1.4;display:none}.tribe-events-tooltip .tribe-events-arrow{width:18px;height:11px;background-image:url(images/tribe-tooltips.png);background-repeat:no-repeat;background-position:0 0;-webkit-background-size:44px 19px;background-size:44px 19px;display:block;position:absolute;bottom:-11px;left:20px}.tribe-events-calendar .tribe-events-right .tribe-events-tooltip,.tribe-events-week .tribe-events-right .tribe-events-tooltip,.recurring-info-tooltip{left:auto;right:3px}.tribe-events-right .tribe-events-tooltip .tribe-events-arrow{left:auto;right:30px}.recurringinfo{display:inline-block;vertical-align:middle;zoom:1;*display:inline;position:relative}.event-is-recurring{position:relative;font-style:normal;font-weight:500;color:rgba(0,0,0,.7)}.event-is-recurring:hover{color:#000}.recurring-info-tooltip.tribe-events-tooltip{left:10px;width:200px;padding-bottom:.8em}.events-archive.events-gridview #tribe-events-content table .vevent{margin:0 5%;padding:6px 8px;border-bottom:1px solid #e7e7e7}.events-archive.events-gridview #tribe-events-content table .tribe-events-last{border-bottom:0}.tribe-events-viewmore{margin:0 5%;padding:9px 8px;font-weight:bold;line-height:1;border-top:1px solid #e7e7e7}.tribe-events-calendar td .tribe-events-viewmore a{font-size:100%}.tribe-events-calendar th{width:250px;height:10px;background-color:#ddd;color:#333;padding:4px 0;text-align:center;text-transform:uppercase;letter-spacing:1px}.tribe-events-calendar td div[id*="tribe-events-daynum-"]{padding:6px 9px;line-height:1.2}.tribe-events-calendar td a{font-size:91.7%}.tribe-events-calendar div[id*="tribe-events-event-"],.tribe-events-calendar div[id*="tribe-events-daynum-"]{position:relative;margin:0}#tribe-events-content .tribe-events-calendar div[id*="tribe-events-event-"] h3.tribe-events-month-event-title{line-height:1.25;font-size:13px;font-weight:normal;font-family:sans-serif;font-weight:bold;text-transform:none;margin:0;padding:0;letter-spacing:0}.tribe-events-calendar div[id*="tribe-events-event-"] h3.tribe-events-month-event-title a{font-size:100%}#tribe-events-content .tribe-events-tooltip h4{margin:0;color:#fff;background-color:#666;font-size:12px;padding:0 6px;min-height:24px;line-height:24px;letter-spacing:1px;font-weight:normal}.tribe-events-tooltip .tribe-events-event-body{font-size:11px;padding:3px 6px 6px;font-weight:normal}.tribe-events-tooltip .duration{font-style:italic;margin:3px 0}.tribe-events-tooltip .tribe-events-event-thumb{float:left;padding:5px 5px 5px 0}.tribe-events-tooltip .tribe-events-event-thumb img{-webkit-box-shadow:none;box-shadow:none}.tribe-events-tooltip p.entry-summary{padding:0;font-size:11px;line-height:1.5}.tribe-events-list-widget ol li{margin-bottom:30px;list-style:none}.tribe-events-list-widget .duration{font-weight:bold}table.tribe-events-tickets .tickets_price{font-style:italic;color:#000;font-weight:bold}td.tickets_name{color:#777;font-size:13px}.single-tribe_events #tribe-events-content form.cart,.single-tribe_events #tribe-events-content div.cart{background:#fafafa;border:1px solid #eee;margin:30px 0;padding:0 4% 3%}table.tribe-events-tickets{margin:0;width:100%;border-bottom:0}table.tribe-events-tickets td{border-top:1px solid #ddd;border-bottom:1px solid #ddd;padding:8px 10px 8px 0;vertical-align:middle}table.tribe-events-tickets td.wpec{line-height:0}table.tribe-events-tickets td.woocommerce{border-bottom:0}table.tribe-events-tickets td.wpec img{display:none}table.tribe-events-tickets td fieldset{padding:14px .625em 4px;border:0;margin-top:8px}table.tribe-events-tickets .tickets_nostock{display:inline-block;text-align:center}h2.tribe-events-tickets-title{margin:20px 0 25px;font-size:1.4em;font-weight:bold}#tribe-events-bar{width:100%;min-width:220px;margin-bottom:30px;height:auto;position:relative;clear:none}#tribe-events-bar *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#tribe-bar-form{background:#f5f5f5;position:relative;margin:0;width:100%}#tribe-bar-form input{font-size:15px;margin:0 4px 0 0}#tribe-bar-form input[type="text"]{width:100%;padding:0 0 5px 0;background:0;border:0;border-bottom:1px dashed #b9b9b9;line-height:1;height:auto;font-weight:bold;border-radius:0;box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none}#tribe-bar-form input[type=text]:focus{outline:0}input[name*="tribe-bar-"]::-webkit-input-placeholder{color:#5f5f5f;font-weight:normal;font-style:italic;line-height:1.3}input[name*="tribe-bar-"]:-moz-placeholder{color:#5f5f5f;font-weight:normal;font-style:italic;line-height:1.3}.placeholder{color:#5f5f5f;font-weight:normal;font-style:italic;line-height:1.3}#tribe-bar-form .tribe-bar-submit input[type=submit]{font-size:13px;line-height:20px;letter-spacing:0;width:100%;height:auto;padding:10px;background-image:none;background:#666;color:#fff;border:0;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;-webkit-appearance:button}.tribe-bar-submit input[type=submit]:hover{background:#999;color:#fff}#tribe-bar-form label{display:block;font-size:11px;line-height:1;text-transform:uppercase;font-weight:bold;margin:0 0 5px 0;padding:0}#tribe-bar-dates .select2-choice{border-bottom:1px dashed #b9b9b9}#tribe-bar-form .tribe-bar-filters{position:relative;float:left;width:100%;margin:0}#tribe-bar-form #tribe-bar-views+.tribe-bar-filters{right:16.66667%;left:auto;width:83.3333%}#tribe-bar-form .tribe-bar-filters-inner{margin:0}#tribe-bar-form.tribe-bar-full .tribe-bar-filters{display:block !important}.tribe-bar-date-filter{float:left;width:25%;margin-bottom:0;padding:15px}.tribe-bar-search-filter{float:left;width:33.3333%;margin-bottom:0;padding:15px}.tribe-bar-submit{float:left;width:25%;margin-bottom:0;margin-left:16.6667%;padding:15px}#tribe-bar-form #tribe-bar-views{position:relative;left:83.3333%;right:auto;float:left;width:16.66667%;padding:0 0 0 5px;background:transparent;margin:0}#tribe-bar-views:hover,#tribe-bar-views label:hover{cursor:pointer}.tribe-bar-views-inner{padding:15px 0 45px 0;background:#e0e0e0;margin:0}#tribe-bar-form .tribe-bar-views-inner label{padding:0 15px;text-align:left}.tribe-bar-views-inner .select2-container{padding:0 15px}.tribe-select2-results-views.select2-drop{background:#dbdbdb;border:0;z-index:10001;box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none}#tribe-bar-form.tribe-bar-mini #tribe-bar-views{width:16.66667%}#tribe-bar-views .tribe-bar-views-list{list-style-type:none;margin:0 0 0 5px;padding:0;position:absolute;left:0;top:auto;z-index:99;border-radius:0 0 3px 3px}#tribe-bar-views li.tribe-bar-views-option{line-height:14px;margin:0 5px 0 0;padding:0;list-style:none;background:0;filter:"progid:DXImageTransform.Microsoft.gradient(enabled=false)";list-style:none;border:0;padding:0;display:none;box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none}#tribe-bar-views .tribe-bar-views-option:first-child,#tribe-bar-views .tribe-bar-views-option.tribe-bar-active,#tribe-bar-views.tribe-bar-views-open .tribe-bar-views-option{display:list-item}#tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option a{color:#444;text-align:left;display:block;text-decoration:none;padding:6px 15px;background:#e0e0e0}#tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option a:hover{background:#cacaca;color:inherit}#tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option.tribe-bar-active a:hover{background:#e0e0e0}#tribe-bar-views .tribe-bar-views-option:last-child a{border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;-moz-border-radius:0 0 3px 3px}.tribe-no-js #tribe-bar-views [name="tribe-bar-view"]{display:block}#tribe-bar-views [name="tribe-bar-view"]{display:none}#tribe-bar-views .tribe-bar-views-list{width:100%;float:left}#tribe-bar-views .tribe-bar-settings{display:none}#tribe-bar-form.tribe-bar-mini *{font-size:12px}#tribe-bar-form.tribe-bar-mini label{font-size:11px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.tribe-bar-mini .tribe-bar-filters{display:block !important;float:left;width:83.3333%}.tribe-bar-mini .tribe-bar-date-filter{padding:10px}.tribe-bar-mini .tribe-bar-search-filter{width:45%;padding:10px}.tribe-bar-mini .tribe-bar-submit{width:25%;margin-left:5%;padding:10px}#tribe-bar-form.tribe-bar-mini .tribe-bar-submit input[type=submit]{font-size:11px;padding:10px 5px;-webkit-appearance:button}.tribe-bar-mini #tribe-bar-views{width:16.66667%}.tribe-bar-mini .tribe-bar-views-inner{padding:10px 0 35px 0}.tribe-bar-mini .tribe-bar-views-inner label{padding:0 10px}.tribe-bar-mini #tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option a{padding:4px 10px}#tribe-bar-collapse-toggle{display:none;float:left;padding:15px;position:relative;font-size:13px;line-height:28px;font-weight:bold;text-transform:uppercase;background:#f5f5f5}#tribe-bar-collapse-toggle:hover{cursor:pointer}#tribe-bar-collapse-toggle span.tribe-bar-toggle-arrow{display:inline-block;margin:0 4px;position:absolute;right:10px}#tribe-bar-collapse-toggle span.tribe-bar-toggle-arrow:after{top:10px;right:0;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-color:rgba(136,183,213,0);border-top-color:inherit;border-width:8px}#tribe-bar-collapse-toggle.tribe-bar-filters-open span.tribe-bar-toggle-arrow:after{top:0;border-top-color:transparent;border-bottom-color:inherit}#tribe-bar-form.tribe-bar-collapse #tribe-bar-views+.tribe-bar-filters{display:none;margin-top:5px;overflow:hidden;clear:both;left:auto;right:auto;width:100%}.tribe-bar-collapse .tribe-bar-filters-inner>div,.tribe-bar-collapse #tribe-bar-views{width:100%;height:auto;margin:0}.tribe-bar-collapse #tribe-bar-collapse-toggle{display:block;width:70%}.tribe-bar-collapse #tribe-bar-collapse-toggle.tribe-bar-collapse-toggle-full-width{width:100%}#tribe-bar-form.tribe-bar-collapse #tribe-bar-views{float:left;left:auto;width:30%}#tribe-bar-form.tribe-bar-collapse .tribe-bar-views-inner{padding:10px 0 40px 0}#tribe-bar-form.tribe-bar-collapse .tribe-bar-views-inner label{margin:0}@media only screen and (max-width:767px){.tribe-bar-collapse #tribe-bar-collapse-toggle{width:60%}#tribe-bar-form.tribe-bar-collapse #tribe-bar-views{width:40%}}.tribe-bar-is-disabled .tribe-events-page-title{line-height:45px;text-align:left;clear:none;margin:0}.tribe-bar-disabled{float:right;position:relative;z-index:101}.tribe-bar-disabled #tribe-events-bar{width:auto;min-width:0;float:none}.tribe-bar-disabled #tribe-bar-form{width:auto;border-radius:3px}.tribe-bar-disabled .tribe-bar-filters{float:left}.tribe-bar-disabled .tribe-bar-filters .tribe-bar-date-filter{padding:5px 10px}.tribe-bar-disabled #tribe-bar-form label{font-size:10px}.tribe-bar-disabled #tribe-bar-form .tribe-bar-filters input[type="text"]{border:0;display:block;width:85px;margin:0;padding:0;font-size:13px;line-height:15px}.tribe-bar-disabled #tribe-bar-form #tribe-bar-views+.tribe-bar-filters{left:auto;right:50%;width:50%}.tribe-bar-disabled .tribe-bar-date-filter,.tribe-events-uses-geolocation .tribe-bar-disabled .tribe-bar-date-filter{width:auto}.tribe-bar-disabled #tribe-bar-form #tribe-bar-views{width:50%;float:left;left:50%;right:auto;padding:0}.tribe-bar-disabled .tribe-bar-views-inner{min-width:100px;padding:5px 0 25px 0;border-radius:0 3px 3px 0}.tribe-bar-disabled #tribe-bar-form .tribe-bar-views-inner label{padding:0 10px}.tribe-bar-disabled #tribe-bar-views .tribe-bar-views-list,.tribe-bar-disabled #tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option{margin:0}.tribe-bar-disabled #tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option a{padding:4px 10px;margin:0}.tribe-bar-disabled #tribe-bar-views .select2-container .select2-choice{line-height:18px;height:auto;font-size:13px}.tribe-bar-is-disabled .tribe-select2-results-views.select2-drop .select2-results li{padding:0 10px}.tribe-bar-disabled #tribe-bar-collapse-toggle,.tribe-bar-disabled .tribe-bar-submit{display:none}.tribe-select2-results-views span[class^="tribe-icon-"],.tribe-bar-views-list span[class^="tribe-icon-"],.tribe-bar-view-list a[class*="tribe-icon-"]{padding-left:24px;background-repeat:no-repeat;background-position:0 50%;min-height:16px;display:block}.tribe-select2-results-views span[class^="tribe-icon-"]{min-height:16px;display:inline-block}.tribe-select2-results-views span[class^="tribe-icon-"],.tribe-bar-views-list span[class^="tribe-icon-"],.tribe-bar-view-list a[class^="tribe-icon-"]{background-image:url(images/events-bar/icon-month.png);-webkit-background-size:15px 16px;background-size:15px 16px}.tribe-select2-results-views span.tribe-icon-list,.tribe-bar-views-list span.tribe-icon-list,.tribe-bar-view-list a.tribe-icon-list{background-image:url(images/events-bar/icon-list.png);-webkit-background-size:15px 10px;background-size:15px 10px}.tribe-bar-view-list a.tribe-icon-upcoming,.tribe-bar-view-list a.tribe-icon-month{padding-left:30px;background-position:10px 50%}.tribe-select2-results-views .tribe-icon-month,.tribe-bar-views-list span.tribe-icon-month,.tribe-bar-view-list a.tribe-icon-month{background-image:url(images/events-bar/icon-month.png);-webkit-background-size:15px 16px;background-size:15px 16px}.tribe-select2-results-views span.tribe-icon-week,.tribe-bar-views-list span.tribe-icon-week{background-image:url(images/events-bar/icon-week.png);-webkit-background-size:15px 16px;background-size:15px 16px}.tribe-select2-results-views span.tribe-icon-day,.tribe-bar-views-list span.tribe-icon-day{background-image:url(images/events-bar/icon-day.png);-webkit-background-size:15px 16px;background-size:15px 16px}.tribe-select2-results-views span.tribe-icon-photo,.tribe-bar-views-list span.tribe-icon-photo{background-image:url(images/events-bar/icon-photo.png);-webkit-background-size:15px 14px;background-size:15px 14px}.tribe-select2-results-views span.tribe-icon-map,.tribe-bar-views-list span.tribe-icon-map{background-image:url(images/events-bar/icon-map.png);-webkit-background-size:12px 16px;background-size:12px 16px;background-position:2px 50%}@media only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2){.tribe-events-tooltip .tribe-events-arrow{background-image:url(images/tribe-tooltips@2x.png)}#tribe-bar-filters .tribe-bar-button-search .tribe-bar-btn-small{background-image:url(images/events-bar/icon-search@2x.png)}#tribe-events-bar .tribe-bar-button-settings span{background-image:url(images/events-bar/icon-gear@2x.png)}#tribe-events-bar [class^="tribe-bar-button-"]:after{background-image:url(../vendor/select2/select2x2.png)}.tribe-select2-results-views span[class^="tribe-icon-"],.tribe-bar-views-list span[class^="tribe-icon-"],.tribe-bar-view-list a[class^="tribe-icon-"]{background-image:url(images/events-bar/icon-month@2x.png)}.tribe-select2-results-views span.tribe-icon-list,.tribe-bar-views-list span.tribe-icon-list,.tribe-bar-view-list a.tribe-icon-upcoming{background-image:url(images/events-bar/icon-list@2x.png)}.tribe-select2-results-views span.tribe-icon-month,.tribe-bar-views-list span.tribe-icon-month,.tribe-bar-view-list a.tribe-icon-month{background-image:url(images/events-bar/icon-month@2x.png)}.tribe-select2-results-views span.tribe-icon-week,.tribe-bar-views-list span.tribe-icon-week{background-image:url(images/events-bar/icon-week@2x.png)}.tribe-select2-results-views span.tribe-icon-day,.tribe-bar-views-list span.tribe-icon-day{background-image:url(images/events-bar/icon-day@2x.png)}.tribe-select2-results-views span.tribe-icon-photo,.tribe-bar-views-list span.tribe-icon-photo{background-image:url(images/events-bar/icon-photo@2x.png)}.tribe-select2-results-views span.tribe-icon-map,.tribe-bar-views-list span.tribe-icon-map{background-image:url(images/events-bar/icon-map@2x.png)}}
|
resources/tribe-settings.js
CHANGED
File without changes
|
resources/warning.png
CHANGED
File without changes
|
the-events-calendar.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: The Events Calendar
|
4 |
Description: The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events. Beautiful. Solid. Awesome.
|
5 |
-
Version: 3.
|
6 |
Author: Modern Tribe, Inc.
|
7 |
Author URI: http://m.tri.be/1x
|
8 |
Text Domain: tribe-events-calendar
|
@@ -31,6 +31,8 @@ require_once( dirname(__FILE__) . '/lib/the-events-calendar.class.php' );
|
|
31 |
|
32 |
TribeEvents::instance();
|
33 |
|
|
|
|
|
34 |
if ( is_admin() && ( !defined( 'DOING_AJAX' ) || !DOING_AJAX ) ) {
|
35 |
register_deactivation_hook( __FILE__, array( 'TribeEvents', 'resetActivationMessage' ) );
|
36 |
}
|
2 |
/*
|
3 |
Plugin Name: The Events Calendar
|
4 |
Description: The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events. Beautiful. Solid. Awesome.
|
5 |
+
Version: 3.3
|
6 |
Author: Modern Tribe, Inc.
|
7 |
Author URI: http://m.tri.be/1x
|
8 |
Text Domain: tribe-events-calendar
|
31 |
|
32 |
TribeEvents::instance();
|
33 |
|
34 |
+
register_activation_hook( __FILE__, 'flush_rewrite_rules' );
|
35 |
+
|
36 |
if ( is_admin() && ( !defined( 'DOING_AJAX' ) || !DOING_AJAX ) ) {
|
37 |
register_deactivation_hook( __FILE__, array( 'TribeEvents', 'resetActivationMessage' ) );
|
38 |
}
|
views/list/nav.php
CHANGED
@@ -10,6 +10,7 @@
|
|
10 |
* @author Modern Tribe Inc.
|
11 |
*
|
12 |
*/
|
|
|
13 |
|
14 |
if ( !defined('ABSPATH') ) { die('-1'); } ?>
|
15 |
|
@@ -26,7 +27,7 @@ if ( !defined('ABSPATH') ) { die('-1'); } ?>
|
|
26 |
<?php if( get_previous_posts_link() ) : ?>
|
27 |
<li class="tribe-events-nav-previous tribe-events-nav-left">
|
28 |
<a href="<?php echo tribe_get_upcoming_link() ?>" rel="pref"><?php _e( '« Previous Events', 'tribe-events-calendar' ) ?></a>
|
29 |
-
<?php
|
30 |
<li class="tribe-events-nav-previous tribe-events-nav-left tribe-events-past">
|
31 |
<a href="<?php echo tribe_get_past_link() ?>" rel="pref"><?php _e( '« Previous Events', 'tribe-events-calendar' ) ?></a>
|
32 |
<?php endif; ?>
|
10 |
* @author Modern Tribe Inc.
|
11 |
*
|
12 |
*/
|
13 |
+
global $wp_query;
|
14 |
|
15 |
if ( !defined('ABSPATH') ) { die('-1'); } ?>
|
16 |
|
27 |
<?php if( get_previous_posts_link() ) : ?>
|
28 |
<li class="tribe-events-nav-previous tribe-events-nav-left">
|
29 |
<a href="<?php echo tribe_get_upcoming_link() ?>" rel="pref"><?php _e( '« Previous Events', 'tribe-events-calendar' ) ?></a>
|
30 |
+
<?php elseif ( tribe_has_past_events() ) : ?>
|
31 |
<li class="tribe-events-nav-previous tribe-events-nav-left tribe-events-past">
|
32 |
<a href="<?php echo tribe_get_past_link() ?>" rel="pref"><?php _e( '« Previous Events', 'tribe-events-calendar' ) ?></a>
|
33 |
<?php endif; ?>
|
views/modules/address.php
CHANGED
@@ -43,6 +43,8 @@ $our_full_region = isset( $our_states[$our_province] ) ? $our_states[$our_provin
|
|
43 |
|
44 |
// Get our city
|
45 |
if( tribe_get_city( $postId ) ) {
|
|
|
|
|
46 |
$address_out []= ' <span class="locality">'. tribe_get_city( $postId ) .'</span>';
|
47 |
$address_out []= '<span class="delimiter">,</span> ';
|
48 |
}
|
43 |
|
44 |
// Get our city
|
45 |
if( tribe_get_city( $postId ) ) {
|
46 |
+
if( tribe_get_address( $postId ) )
|
47 |
+
$address_out []= '<span class="delimiter">,</span> ';
|
48 |
$address_out []= ' <span class="locality">'. tribe_get_city( $postId ) .'</span>';
|
49 |
$address_out []= '<span class="delimiter">,</span> ';
|
50 |
}
|
views/modules/bar.php
CHANGED
@@ -18,12 +18,15 @@
|
|
18 |
$filters = tribe_events_get_filters();
|
19 |
$views = tribe_events_get_views();
|
20 |
|
|
|
|
|
|
|
21 |
?>
|
22 |
|
23 |
<?php do_action('tribe_events_bar_before_template') ?>
|
24 |
<div id="tribe-events-bar">
|
25 |
|
26 |
-
<form id="tribe-bar-form" class="tribe-clearfix" name="tribe-bar-form" method="post" action="<?php echo
|
27 |
|
28 |
<!-- Mobile Filters Toggle -->
|
29 |
|
18 |
$filters = tribe_events_get_filters();
|
19 |
$views = tribe_events_get_views();
|
20 |
|
21 |
+
global $wp;
|
22 |
+
$current_url = esc_url( add_query_arg( $wp->query_string, '', home_url( $wp->request ) ) );
|
23 |
+
|
24 |
?>
|
25 |
|
26 |
<?php do_action('tribe_events_bar_before_template') ?>
|
27 |
<div id="tribe-events-bar">
|
28 |
|
29 |
+
<form id="tribe-bar-form" class="tribe-clearfix" name="tribe-bar-form" method="post" action="<?php echo esc_attr( $current_url ); ?>">
|
30 |
|
31 |
<!-- Mobile Filters Toggle -->
|
32 |
|
views/month/single-event.php
CHANGED
@@ -36,7 +36,7 @@ $end = tribe_get_end_date( $post, FALSE, 'U' );
|
|
36 |
<?php endif; ?>
|
37 |
|
38 |
<p class="entry-summary description">
|
39 |
-
<?php echo
|
40 |
</p><!-- .entry-summary -->
|
41 |
|
42 |
</div><!-- .tribe-events-event-body -->
|
36 |
<?php endif; ?>
|
37 |
|
38 |
<p class="entry-summary description">
|
39 |
+
<?php echo tribe_events_get_the_excerpt() ?>
|
40 |
</p><!-- .entry-summary -->
|
41 |
|
42 |
</div><!-- .tribe-events-event-body -->
|
views/widgets/list-widget.php
CHANGED
@@ -24,7 +24,7 @@
|
|
24 |
*/
|
25 |
?>
|
26 |
|
27 |
-
<li class="tribe-events-list-widget-events">
|
28 |
<h4 class="entry-title summary">
|
29 |
<a href="<?php echo tribe_get_event_link(); ?>" rel="bookmark"><?php the_title(); ?></a>
|
30 |
</h4>
|
24 |
*/
|
25 |
?>
|
26 |
|
27 |
+
<li class="tribe-events-list-widget-events <?php tribe_events_event_classes() ?>">
|
28 |
<h4 class="entry-title summary">
|
29 |
<a href="<?php echo tribe_get_event_link(); ?>" rel="bookmark"><?php the_title(); ?></a>
|
30 |
</h4>
|